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 41 42 43 44 45 46 47
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE glade-interface SYSTEM "glade-2.0.dtd">
<!-- Copyright (c) 2006 Fabrizio Pollastri -->
<glade-interface>
<widget class="GtkWindow" id="counter">
<property name="visible">True</property>
<property name="title" translatable="yes">AVC GTK counter example</property>
<property name="default_width">300</property>
<property name="default_height">50</property>
<property name="gravity">GDK_GRAVITY_CENTER</property>
<signal name="destroy" handler="on_destroy"/>
<child>
<widget class="GtkHBox" id="hbox1">
<property name="visible">True</property>
<property name="homogeneous">True</property>
<child>
<widget class="GtkLabel" id="counter">
<property name="visible">True</property>
<property name="xpad">5</property>
<property name="label" translatable="yes"><b>%d</b></property>
<property name="use_markup">True</property>
<property name="justify">GTK_JUSTIFY_CENTER</property>
</widget>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
</packing>
</child>
<child>
<widget class="GtkCheckButton" id="high_speed">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="label" translatable="yes">high speed</property>
<property name="use_underline">True</property>
<property name="response_id">0</property>
<property name="draw_indicator">True</property>
</widget>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
<property name="position">1</property>
</packing>
</child>
</widget>
</child>
</widget>
</glade-interface>
|