-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprefwidget.ui
394 lines (394 loc) · 11.6 KB
/
prefwidget.ui
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PrefWidget</class>
<widget class="QDialog" name="PrefWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>563</width>
<height>352</height>
</rect>
</property>
<property name="windowTitle">
<string>Timer Settings</string>
</property>
<layout class="QGridLayout">
<property name="margin">
<number>11</number>
</property>
<property name="spacing">
<number>6</number>
</property>
<item row="0" column="0" rowspan="4">
<widget class="QTreeWidget" name="m_list">
<property name="toolTip">
<string>List of countdowns you have set</string>
</property>
<property name="whatsThis">
<string>New countdowns are put here. You can add and remove them, and stop and start them.</string>
</property>
<property name="allColumnsShowFocus">
<bool>true</bool>
</property>
<column>
<property name="text">
<string>Counter</string>
</property>
</column>
<column>
<property name="text">
<string>Delay</string>
</property>
</column>
<column>
<property name="text">
<string>State</string>
</property>
</column>
<column>
<property name="text">
<string>Command</string>
</property>
</column>
</widget>
</item>
<item row="0" column="1">
<widget class="QPushButton" name="m_add">
<property name="toolTip">
<string>Add a new task</string>
</property>
<property name="whatsThis">
<string>Add a new task to the list.</string>
</property>
<property name="text">
<string>&New</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QPushButton" name="m_remove">
<property name="toolTip">
<string>Remove a task</string>
</property>
<property name="whatsThis">
<string>Remove a task from the list.</string>
</property>
<property name="text">
<string>&Remove</string>
</property>
</widget>
</item>
<item row="3" column="1">
<spacer>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="5" column="1">
<widget class="QGroupBox" name="m_state">
<property name="enabled">
<bool>false</bool>
</property>
<property name="title">
<string>State</string>
</property>
<layout class="QGridLayout">
<property name="margin">
<number>11</number>
</property>
<property name="spacing">
<number>6</number>
</property>
<item row="2" column="0" colspan="3">
<widget class="QSlider" name="m_slider">
<property name="toolTip">
<string>Speed up or slow down your countdown</string>
</property>
<property name="whatsThis">
<string>You can use this slider to adjust the time.</string>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="1" column="0" colspan="3">
<widget class="QLCDNumber" name="m_counter">
<property name="toolTip">
<string>Time in seconds until command is executed</string>
</property>
<property name="whatsThis">
<string>This number is how many seconds are left for the selected countdown.</string>
</property>
<property name="digitCount">
<number>6</number>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QToolButton" name="m_pause">
<property name="toolTip">
<string>Pause a countdown</string>
</property>
<property name="whatsThis">
<string>Use this to pause a timer countdown.</string>
</property>
<property name="text">
<string>||</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QToolButton" name="m_start">
<property name="toolTip">
<string>Start a countdown</string>
</property>
<property name="whatsThis">
<string>Use this to start or restart a countdown.</string>
</property>
<property name="text">
<string>></string>
</property>
</widget>
</item>
<item row="0" column="2">
<widget class="QToolButton" name="m_stop">
<property name="toolTip">
<string>Stop a countdown</string>
</property>
<property name="whatsThis">
<string>Use this to stop the countdown for a task.</string>
</property>
<property name="text">
<string>=</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item row="2" column="1">
<widget class="QPushButton" name="m_help">
<property name="toolTip">
<string>Detailed help documentation</string>
</property>
<property name="whatsThis">
<string>Click here to open the help documentation viewer.</string>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QGroupBox" name="m_settings">
<property name="enabled">
<bool>false</bool>
</property>
<property name="title">
<string>Settings</string>
</property>
<layout class="QGridLayout">
<property name="margin">
<number>11</number>
</property>
<property name="spacing">
<number>6</number>
</property>
<item row="3" column="0" colspan="8">
<widget class="QCheckBox" name="m_loop">
<property name="toolTip">
<string>Check this box if you want your countdown to start over after it finishes</string>
</property>
<property name="whatsThis">
<string>Check this box if you want your countdown to start over after it finishes</string>
</property>
<property name="text">
<string>&Loop</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="TextLabel2">
<property name="text">
<string>Delay:</string>
</property>
</widget>
</item>
<item row="1" column="5" colspan="2">
<widget class="QSpinBox" name="m_delay">
<property name="toolTip">
<string>Enter the seconds here</string>
</property>
<property name="whatsThis">
<string>You can change the amount of time in the countdown here.</string>
</property>
<property name="maximum">
<number>59</number>
</property>
</widget>
</item>
<item row="4" column="0" colspan="8">
<widget class="QCheckBox" name="m_one">
<property name="toolTip">
<string>Check this box if you only want to open one copy of your program</string>
</property>
<property name="whatsThis">
<string>Check this box if you only want one instance to open</string>
</property>
<property name="text">
<string>Start only &one instance</string>
</property>
</widget>
</item>
<item row="5" column="0" colspan="8">
<widget class="QCheckBox" name="m_consecutive">
<property name="toolTip">
<string>Check this box if you want to execute this task after the previous one finishes</string>
</property>
<property name="whatsThis">
<string>Check this box if you want to execute this task after the previous one finishes</string>
</property>
<property name="text">
<string>Consecutive task</string>
</property>
</widget>
</item>
<item row="1" column="7">
<widget class="QLabel" name="TextLabel3">
<property name="text">
<string>seconds</string>
</property>
</widget>
</item>
<item row="0" column="0" colspan="3">
<widget class="QLabel" name="TextLabel1">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="text">
<string>Command line:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QSpinBox" name="m_delayH">
<property name="toolTip">
<string>Enter the hours here</string>
</property>
</widget>
</item>
<item row="1" column="3">
<widget class="QSpinBox" name="m_delayM">
<property name="toolTip">
<string>Enter the minutes here</string>
</property>
<property name="maximum">
<number>59</number>
</property>
</widget>
</item>
<item row="1" column="2">
<widget class="QLabel" name="TextLabel4">
<property name="text">
<string>hours</string>
</property>
</widget>
</item>
<item row="1" column="4">
<widget class="QLabel" name="TextLabel5">
<property name="text">
<string>minutes</string>
</property>
</widget>
</item>
<item row="1" column="8">
<spacer>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item row="0" column="3" colspan="6">
<widget class="KUrlRequester" name="m_commandLine">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>1</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="sizeIncrement">
<size>
<width>1</width>
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>command you would like to run when time is up</string>
</property>
<property name="whatsThis">
<string>Enter a program you would like to run when the countdown is zero</string>
</property>
<property name="autoFillBackground">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>KUrlRequester</class>
<extends>QFrame</extends>
<header>kurlrequester.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<tabstops>
<tabstop>m_list</tabstop>
<tabstop>m_add</tabstop>
<tabstop>m_remove</tabstop>
<tabstop>m_commandLine</tabstop>
<tabstop>m_delayH</tabstop>
<tabstop>m_delayM</tabstop>
<tabstop>m_delay</tabstop>
<tabstop>m_loop</tabstop>
<tabstop>m_one</tabstop>
<tabstop>m_start</tabstop>
<tabstop>m_pause</tabstop>
<tabstop>m_stop</tabstop>
<tabstop>m_slider</tabstop>
<tabstop>m_help</tabstop>
</tabstops>
<includes>
<include location="global">kseparator.h</include>
</includes>
<resources/>
<connections/>
</ui>