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
|
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
<class>example</class>
<author>Copyright (c) 2006 Fabrizio Pollastri</author>
<widget class="QMainWindow">
<property name="name">
<cstring>countdown</cstring>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>280</width>
<height>75</height>
</rect>
</property>
<property name="caption">
<string>AVC Qt3 countdown example</string>
</property>
<widget class="QLabel">
<property name="name">
<cstring>counter</cstring>
</property>
<property name="geometry">
<rect>
<x>100</x>
<y>20</y>
<width>77</width>
<height>26</height>
</rect>
</property>
<property name="text">
<string><b>%d</b></string>
</property>
<property name="alignment">
<set>WordBreak|AlignCenter</set>
</property>
</widget>
</widget>
<toolbars>
</toolbars>
<layoutdefaults spacing="6" margin="11"/>
</UI>
|