blob: f74b011b3e23b019b327e807f8f8689c793fbeeb (
plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
<class>CruftDialog</class>
<widget class="QDialog">
<property name="name">
<cstring>Cruft</cstring>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>689</width>
<height>541</height>
</rect>
</property>
<property name="caption">
<string>Cruft</string>
</property>
<widget class="QFrame">
<property name="name">
<cstring>frame1</cstring>
</property>
<property name="geometry">
<rect>
<x>20</x>
<y>20</y>
<width>640</width>
<height>450</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>400</width>
<height>300</height>
</size>
</property>
<property name="frameShape">
<enum>StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>Raised</enum>
</property>
</widget>
<widget class="QPushButton">
<property name="name">
<cstring>pushButton1</cstring>
</property>
<property name="geometry">
<rect>
<x>280</x>
<y>480</y>
<width>111</width>
<height>41</height>
</rect>
</property>
<property name="text">
<string>Quit</string>
</property>
</widget>
</widget>
<connections>
<connection>
<sender>pushButton1</sender>
<signal>clicked()</signal>
<receiver>Cruft</receiver>
<slot>pushButton1_clicked()</slot>
</connection>
</connections>
<slots>
<slot>pushButton1_clicked()</slot>
</slots>
<layoutdefaults spacing="6" margin="11"/>
</UI>
|