-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGTK_err.glade
executable file
·40 lines (40 loc) · 1.53 KB
/
GTK_err.glade
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0"?>
<glade-interface>
<!-- interface-requires gtk+ 2.16 -->
<!-- interface-naming-policy project-wide -->
<widget class="GtkWindow" id="winMain">
<property name="width_request">300</property>
<property name="height_request">70</property>
<property name="visible">True</property>
<signal name="destroy" handler="on_winMain_destroy"/>
<child>
<widget class="GtkVBox" id="vbox1">
<property name="visible">True</property>
<property name="orientation">vertical</property>
<child>
<widget class="GtkLabel" id="msgErr">
<property name="visible">True</property>
<property name="label" translatable="yes">ERRORE: Collegare Arduino alla presa USB</property>
</widget>
<packing>
<property name="position">0</property>
</packing>
</child>
<child>
<widget class="GtkButton" id="cmdCancel">
<property name="label" translatable="yes">Esci</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<signal name="destroy" handler="on_cmdCancel_destroy"/>
<signal name="clicked" handler="on_cmdCancel_clicked"/>
</widget>
<packing>
<property name="expand">False</property>
<property name="position">1</property>
</packing>
</child>
</widget>
</child>
</widget>
</glade-interface>