blob: 9c8910286a34a847f096890acdc8e15038ea8ae6 (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
<class>DoubleProgressDialog</class>
<widget class="TQDialog">
<property name="name">
<cstring>DoubleProgressDialog</cstring>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>286</width>
<height>140</height>
</rect>
</property>
<property name="caption">
<string>Progress</string>
</property>
<vbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<widget class="TQLabel">
<property name="name">
<cstring>lbText</cstring>
</property>
<property name="text">
<string></string>
</property>
</widget>
<widget class="TQProgressBar">
<property name="name">
<cstring>pbBoxes</cstring>
</property>
</widget>
<widget class="TQProgressBar">
<property name="name">
<cstring>pbProgress</cstring>
</property>
</widget>
<widget class="TQLayoutWidget">
<property name="name">
<cstring>layout1</cstring>
</property>
<hbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<spacer>
<property name="name">
<cstring>spacer1</cstring>
</property>
<property name="orientation">
<enum>Horizontal</enum>
</property>
<property name="sizeType">
<enum>Expanding</enum>
</property>
<property name="sizeHint">
<size>
<width>41</width>
<height>20</height>
</size>
</property>
</spacer>
<widget class="TQPushButton">
<property name="name">
<cstring>pbCancel</cstring>
</property>
<property name="text">
<string>&Cancel</string>
</property>
</widget>
<spacer>
<property name="name">
<cstring>spacer2</cstring>
</property>
<property name="orientation">
<enum>Horizontal</enum>
</property>
<property name="sizeType">
<enum>Expanding</enum>
</property>
<property name="sizeHint">
<size>
<width>41</width>
<height>31</height>
</size>
</property>
</spacer>
</hbox>
</widget>
</vbox>
</widget>
<connections>
<connection>
<sender>pbCancel</sender>
<signal>clicked()</signal>
<receiver>DoubleProgressDialog</receiver>
<slot>cancelbutton()</slot>
</connection>
</connections>
<tabstops>
<tabstop>pbCancel</tabstop>
</tabstops>
<includes>
<include location="local" impldecl="in implementation">progress_dialog.ui.h</include>
</includes>
<Q_SIGNALS>
<signal>cancelPressed()</signal>
</Q_SIGNALS>
<Q_SLOTS>
<slot>setText( const TQString & str )</slot>
<slot>setNumberOfBoxes( int number )</slot>
<slot>setProgressOfBoxes( int number )</slot>
<slot>setNumberOfSteps( int number )</slot>
<slot>setProgress( int number )</slot>
<slot access="private" specifier="non virtual">cancelbutton()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
</UI>
|