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
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE glade-interface SYSTEM "glade-2.0.dtd">
<!--*- mode: xml -*-->
<glade-interface>
<widget class="GtkWindow" id="countdown">
<property name="visible">True</property>
<property name="title" translatable="yes">AVC GTK countdown example</property>
<property name="default_width">310</property>
<property name="default_height">50</property>
<property name="gravity">GDK_GRAVITY_CENTER</property>
<signal name="destroy" handler="on_destroy"/>
<child>
<widget class="GtkHButtonBox" id="hbuttonbox1">
<property name="visible">True</property>
<child>
<widget class="GtkButton" id="close_all">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="can_default">True</property>
<property name="label" translatable="yes">CLOSE ALL WINDOWS</property>
<property name="use_underline">True</property>
<property name="response_id">0</property>
</widget>
</child>
</widget>
</child>
</widget>
</glade-interface>
|