author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Thu, 02 Sep 2010 21:20:32 +0300 | |
changeset 34 | a33bf25e6f72 |
parent 22 | 79de32ba3296 |
permissions | -rw-r--r-- |
0 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<ui version="4.0"> |
|
3 |
<class>Form</class> |
|
4 |
<widget class="QWidget" name="Form"> |
|
5 |
<property name="geometry"> |
|
6 |
<rect> |
|
7 |
<x>0</x> |
|
8 |
<y>0</y> |
|
9 |
<width>393</width> |
|
10 |
<height>347</height> |
|
11 |
</rect> |
|
12 |
</property> |
|
13 |
<property name="windowTitle"> |
|
14 |
<string>Form</string> |
|
15 |
</property> |
|
16 |
<property name="styleSheet"> |
|
22
79de32ba3296
Revision: 201017
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
17 |
<string notr="true">QScrollArea { background:red; |
79de32ba3296
Revision: 201017
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
18 |
border: 5px dashed blue; } |
79de32ba3296
Revision: 201017
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
19 |
QScrollArea .QWidget { background:transparent; |
79de32ba3296
Revision: 201017
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
20 |
border: 5px dotted green;} |
0 | 21 |
QScrollArea::corner { background:yellow; } |
22 |
||
23 |
||
24 |
QScrollBar:horizontal { |
|
25 |
border: 2px solid green; |
|
26 |
background: cyan; |
|
27 |
height: 15px; |
|
28 |
margin: 0px 40px 0 0px; |
|
29 |
} |
|
30 |
||
31 |
QScrollBar::handle:horizontal { |
|
32 |
background: gray; |
|
33 |
min-width: 20px; |
|
34 |
} |
|
35 |
||
36 |
QScrollBar::add-line:horizontal { |
|
37 |
background: blue; |
|
38 |
width: 16px; |
|
39 |
subcontrol-position: right; |
|
40 |
subcontrol-origin: margin; |
|
41 |
border: 2px solid black; |
|
42 |
} |
|
43 |
||
44 |
QScrollBar::sub-line:horizontal { |
|
45 |
background: magenta; |
|
46 |
width: 16px; |
|
47 |
subcontrol-position: top right; |
|
48 |
subcontrol-origin: margin; |
|
49 |
border: 2px solid black; |
|
50 |
position: absolute; |
|
51 |
right: 20px; |
|
52 |
} |
|
53 |
||
54 |
QScrollBar:left-arrow:horizontal, QScrollBar::right-arrow:horizontal { |
|
55 |
width: 3px; |
|
56 |
height: 3px; |
|
57 |
background: pink; |
|
58 |
} |
|
59 |
||
60 |
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal { |
|
61 |
background: none; |
|
62 |
} |
|
63 |
||
64 |
||
65 |
||
66 |
QScrollBar:vertical { |
|
67 |
border: 2px solid grey; |
|
68 |
background: #32CC99; |
|
69 |
width: 15px; |
|
70 |
margin: 20px 0px 20px 0px; |
|
71 |
} |
|
72 |
QScrollBar::handle:vertical { |
|
73 |
background: white; |
|
74 |
min-height: 20px; |
|
75 |
} |
|
76 |
QScrollBar::add-line:vertical { |
|
77 |
border: 2px solid grey; |
|
78 |
background: #32CC99; |
|
79 |
height: 20px; |
|
80 |
subcontrol-position: bottom; |
|
81 |
subcontrol-origin: margin; |
|
82 |
} |
|
83 |
||
84 |
QScrollBar::sub-line:vertical { |
|
85 |
border: 2px solid grey; |
|
86 |
background: #32CC99; |
|
87 |
height: 20px; |
|
88 |
subcontrol-position: top; |
|
89 |
subcontrol-origin: margin; |
|
90 |
} |
|
91 |
||
92 |
QScrollBar:left-arrow:vertical, QScrollBar::right-arrow:vertical { |
|
93 |
border: 2px solid grey; |
|
94 |
width: 3px; |
|
95 |
height: 3px; |
|
96 |
background: white; |
|
97 |
} |
|
98 |
||
99 |
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { |
|
100 |
background: none; |
|
101 |
} |
|
102 |
||
103 |
||
104 |
||
105 |
</string> |
|
106 |
</property> |
|
107 |
<layout class="QVBoxLayout" name="verticalLayout_8"> |
|
108 |
<item> |
|
109 |
<widget class="QScrollArea" name="scrollArea"> |
|
110 |
<property name="widgetResizable"> |
|
111 |
<bool>true</bool> |
|
112 |
</property> |
|
113 |
<widget class="QWidget" name="scrollAreaWidgetContents"> |
|
114 |
<property name="geometry"> |
|
115 |
<rect> |
|
22
79de32ba3296
Revision: 201017
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
116 |
<x>0</x> |
79de32ba3296
Revision: 201017
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
117 |
<y>0</y> |
79de32ba3296
Revision: 201017
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
118 |
<width>520</width> |
79de32ba3296
Revision: 201017
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
119 |
<height>532</height> |
0 | 120 |
</rect> |
121 |
</property> |
|
122 |
<layout class="QGridLayout" name="gridLayout_3"> |
|
123 |
<item row="0" column="0"> |
|
124 |
<widget class="QGroupBox" name="groupBox_4"> |
|
125 |
<property name="title"> |
|
126 |
<string>GroupBox</string> |
|
127 |
</property> |
|
128 |
<layout class="QGridLayout" name="gridLayout_4"> |
|
129 |
<item row="0" column="0"> |
|
130 |
<widget class="QRadioButton" name="radioButton_56"> |
|
131 |
<property name="text"> |
|
132 |
<string>RadioButton</string> |
|
133 |
</property> |
|
134 |
</widget> |
|
135 |
</item> |
|
136 |
<item row="0" column="1"> |
|
137 |
<widget class="QRadioButton" name="radioButton_83"> |
|
138 |
<property name="text"> |
|
139 |
<string>RadioButton</string> |
|
140 |
</property> |
|
141 |
</widget> |
|
142 |
</item> |
|
143 |
<item row="1" column="0"> |
|
144 |
<widget class="QRadioButton" name="radioButton_82"> |
|
145 |
<property name="text"> |
|
146 |
<string>RadioButton</string> |
|
147 |
</property> |
|
148 |
</widget> |
|
149 |
</item> |
|
150 |
<item row="1" column="1"> |
|
151 |
<widget class="QRadioButton" name="radioButton_84"> |
|
152 |
<property name="text"> |
|
153 |
<string>RadioButton</string> |
|
154 |
</property> |
|
155 |
</widget> |
|
156 |
</item> |
|
157 |
<item row="2" column="0"> |
|
158 |
<widget class="QRadioButton" name="radioButton_57"> |
|
159 |
<property name="text"> |
|
160 |
<string>RadioButton</string> |
|
161 |
</property> |
|
162 |
</widget> |
|
163 |
</item> |
|
164 |
<item row="2" column="1"> |
|
165 |
<widget class="QRadioButton" name="radioButton_62"> |
|
166 |
<property name="text"> |
|
167 |
<string>RadioButton</string> |
|
168 |
</property> |
|
169 |
</widget> |
|
170 |
</item> |
|
171 |
<item row="3" column="0"> |
|
172 |
<widget class="QRadioButton" name="radioButton_59"> |
|
173 |
<property name="text"> |
|
174 |
<string>RadioButton</string> |
|
175 |
</property> |
|
176 |
</widget> |
|
177 |
</item> |
|
178 |
<item row="3" column="1"> |
|
179 |
<widget class="QRadioButton" name="radioButton_55"> |
|
180 |
<property name="text"> |
|
181 |
<string>RadioButton</string> |
|
182 |
</property> |
|
183 |
</widget> |
|
184 |
</item> |
|
185 |
<item row="4" column="0"> |
|
186 |
<widget class="QRadioButton" name="radioButton_60"> |
|
187 |
<property name="text"> |
|
188 |
<string>RadioButton</string> |
|
189 |
</property> |
|
190 |
</widget> |
|
191 |
</item> |
|
192 |
<item row="4" column="1"> |
|
193 |
<widget class="QRadioButton" name="radioButton_61"> |
|
194 |
<property name="text"> |
|
195 |
<string>RadioButton</string> |
|
196 |
</property> |
|
197 |
</widget> |
|
198 |
</item> |
|
199 |
<item row="5" column="0"> |
|
200 |
<widget class="QRadioButton" name="radioButton_58"> |
|
201 |
<property name="text"> |
|
202 |
<string>RadioButton</string> |
|
203 |
</property> |
|
204 |
</widget> |
|
205 |
</item> |
|
206 |
<item row="5" column="1"> |
|
207 |
<widget class="QRadioButton" name="radioButton_63"> |
|
208 |
<property name="text"> |
|
209 |
<string>RadioButton</string> |
|
210 |
</property> |
|
211 |
</widget> |
|
212 |
</item> |
|
213 |
<item row="6" column="0"> |
|
214 |
<spacer name="verticalSpacer"> |
|
215 |
<property name="orientation"> |
|
216 |
<enum>Qt::Vertical</enum> |
|
217 |
</property> |
|
218 |
<property name="sizeHint" stdset="0"> |
|
219 |
<size> |
|
220 |
<width>20</width> |
|
221 |
<height>81</height> |
|
222 |
</size> |
|
223 |
</property> |
|
224 |
</spacer> |
|
225 |
</item> |
|
226 |
</layout> |
|
227 |
</widget> |
|
228 |
</item> |
|
229 |
<item row="0" column="1"> |
|
230 |
<widget class="QGroupBox" name="groupBox_5"> |
|
231 |
<property name="title"> |
|
232 |
<string>GroupBox</string> |
|
233 |
</property> |
|
234 |
<layout class="QVBoxLayout" name="verticalLayout_7"> |
|
235 |
<item> |
|
236 |
<widget class="QRadioButton" name="radioButton_64"> |
|
237 |
<property name="text"> |
|
238 |
<string>RadioButton</string> |
|
239 |
</property> |
|
240 |
</widget> |
|
241 |
</item> |
|
242 |
<item> |
|
243 |
<widget class="QRadioButton" name="radioButton_65"> |
|
244 |
<property name="text"> |
|
245 |
<string>RadioButton</string> |
|
246 |
</property> |
|
247 |
</widget> |
|
248 |
</item> |
|
249 |
<item> |
|
250 |
<widget class="QRadioButton" name="radioButton_66"> |
|
251 |
<property name="text"> |
|
252 |
<string>RadioButton</string> |
|
253 |
</property> |
|
254 |
</widget> |
|
255 |
</item> |
|
256 |
<item> |
|
257 |
<widget class="QRadioButton" name="radioButton_67"> |
|
258 |
<property name="text"> |
|
259 |
<string>RadioButton</string> |
|
260 |
</property> |
|
261 |
</widget> |
|
262 |
</item> |
|
263 |
<item> |
|
264 |
<widget class="QRadioButton" name="radioButton_68"> |
|
265 |
<property name="text"> |
|
266 |
<string>RadioButton</string> |
|
267 |
</property> |
|
268 |
</widget> |
|
269 |
</item> |
|
270 |
<item> |
|
271 |
<widget class="QRadioButton" name="radioButton_69"> |
|
272 |
<property name="text"> |
|
273 |
<string>RadioButton</string> |
|
274 |
</property> |
|
275 |
</widget> |
|
276 |
</item> |
|
277 |
<item> |
|
278 |
<widget class="QRadioButton" name="radioButton_70"> |
|
279 |
<property name="text"> |
|
280 |
<string>RadioButton</string> |
|
281 |
</property> |
|
282 |
</widget> |
|
283 |
</item> |
|
284 |
<item> |
|
285 |
<widget class="QRadioButton" name="radioButton_71"> |
|
286 |
<property name="text"> |
|
287 |
<string>RadioButton</string> |
|
288 |
</property> |
|
289 |
</widget> |
|
290 |
</item> |
|
291 |
<item> |
|
292 |
<widget class="QRadioButton" name="radioButton_72"> |
|
293 |
<property name="text"> |
|
294 |
<string>RadioButton</string> |
|
295 |
</property> |
|
296 |
</widget> |
|
297 |
</item> |
|
298 |
</layout> |
|
299 |
</widget> |
|
300 |
</item> |
|
301 |
<item row="0" column="2"> |
|
302 |
<widget class="QGroupBox" name="groupBox_6"> |
|
303 |
<property name="title"> |
|
304 |
<string>GroupBox</string> |
|
305 |
</property> |
|
306 |
<layout class="QVBoxLayout" name="verticalLayout_3"> |
|
307 |
<item> |
|
308 |
<widget class="QRadioButton" name="radioButton_73"> |
|
309 |
<property name="text"> |
|
310 |
<string>RadioButton</string> |
|
311 |
</property> |
|
312 |
</widget> |
|
313 |
</item> |
|
314 |
<item> |
|
315 |
<widget class="QRadioButton" name="radioButton_74"> |
|
316 |
<property name="text"> |
|
317 |
<string>RadioButton</string> |
|
318 |
</property> |
|
319 |
</widget> |
|
320 |
</item> |
|
321 |
<item> |
|
322 |
<widget class="QRadioButton" name="radioButton_75"> |
|
323 |
<property name="text"> |
|
324 |
<string>RadioButton</string> |
|
325 |
</property> |
|
326 |
</widget> |
|
327 |
</item> |
|
328 |
<item> |
|
329 |
<widget class="QRadioButton" name="radioButton_76"> |
|
330 |
<property name="text"> |
|
331 |
<string>RadioButton</string> |
|
332 |
</property> |
|
333 |
</widget> |
|
334 |
</item> |
|
335 |
<item> |
|
336 |
<widget class="QRadioButton" name="radioButton_77"> |
|
337 |
<property name="text"> |
|
338 |
<string>RadioButton</string> |
|
339 |
</property> |
|
340 |
</widget> |
|
341 |
</item> |
|
342 |
<item> |
|
343 |
<widget class="QRadioButton" name="radioButton_78"> |
|
344 |
<property name="text"> |
|
345 |
<string>RadioButton</string> |
|
346 |
</property> |
|
347 |
</widget> |
|
348 |
</item> |
|
349 |
<item> |
|
350 |
<widget class="QRadioButton" name="radioButton_79"> |
|
351 |
<property name="text"> |
|
352 |
<string>RadioButton</string> |
|
353 |
</property> |
|
354 |
</widget> |
|
355 |
</item> |
|
356 |
<item> |
|
357 |
<widget class="QRadioButton" name="radioButton_80"> |
|
358 |
<property name="text"> |
|
359 |
<string>RadioButton</string> |
|
360 |
</property> |
|
361 |
</widget> |
|
362 |
</item> |
|
363 |
<item> |
|
364 |
<widget class="QRadioButton" name="radioButton_81"> |
|
365 |
<property name="text"> |
|
366 |
<string>RadioButton</string> |
|
367 |
</property> |
|
368 |
</widget> |
|
369 |
</item> |
|
370 |
</layout> |
|
371 |
</widget> |
|
372 |
</item> |
|
373 |
<item row="1" column="0" colspan="3"> |
|
374 |
<layout class="QGridLayout" name="gridLayout_2"> |
|
375 |
<item row="0" column="0"> |
|
376 |
<widget class="QGroupBox" name="groupBox"> |
|
377 |
<property name="title"> |
|
378 |
<string>GroupBox</string> |
|
379 |
</property> |
|
380 |
<layout class="QVBoxLayout" name="verticalLayout_2"> |
|
381 |
<item> |
|
382 |
<widget class="QRadioButton" name="radioButton_9"> |
|
383 |
<property name="text"> |
|
384 |
<string>RadioButton</string> |
|
385 |
</property> |
|
386 |
</widget> |
|
387 |
</item> |
|
388 |
<item> |
|
389 |
<widget class="QRadioButton" name="radioButton_6"> |
|
390 |
<property name="text"> |
|
391 |
<string>RadioButton</string> |
|
392 |
</property> |
|
393 |
</widget> |
|
394 |
</item> |
|
395 |
<item> |
|
396 |
<widget class="QRadioButton" name="radioButton"> |
|
397 |
<property name="text"> |
|
398 |
<string>RadioButton</string> |
|
399 |
</property> |
|
400 |
</widget> |
|
401 |
</item> |
|
402 |
<item> |
|
403 |
<widget class="QRadioButton" name="radioButton_7"> |
|
404 |
<property name="text"> |
|
405 |
<string>RadioButton</string> |
|
406 |
</property> |
|
407 |
</widget> |
|
408 |
</item> |
|
409 |
<item> |
|
410 |
<widget class="QRadioButton" name="radioButton_3"> |
|
411 |
<property name="text"> |
|
412 |
<string>RadioButton</string> |
|
413 |
</property> |
|
414 |
</widget> |
|
415 |
</item> |
|
416 |
<item> |
|
417 |
<widget class="QRadioButton" name="radioButton_5"> |
|
418 |
<property name="text"> |
|
419 |
<string>RadioButton</string> |
|
420 |
</property> |
|
421 |
</widget> |
|
422 |
</item> |
|
423 |
<item> |
|
424 |
<widget class="QRadioButton" name="radioButton_4"> |
|
425 |
<property name="text"> |
|
426 |
<string>RadioButton</string> |
|
427 |
</property> |
|
428 |
</widget> |
|
429 |
</item> |
|
430 |
<item> |
|
431 |
<widget class="QRadioButton" name="radioButton_8"> |
|
432 |
<property name="text"> |
|
433 |
<string>RadioButton</string> |
|
434 |
</property> |
|
435 |
</widget> |
|
436 |
</item> |
|
437 |
<item> |
|
438 |
<widget class="QRadioButton" name="radioButton_2"> |
|
439 |
<property name="text"> |
|
440 |
<string>RadioButton</string> |
|
441 |
</property> |
|
442 |
</widget> |
|
443 |
</item> |
|
444 |
</layout> |
|
445 |
</widget> |
|
446 |
</item> |
|
447 |
<item row="0" column="1"> |
|
448 |
<widget class="QGroupBox" name="groupBox_2"> |
|
449 |
<property name="title"> |
|
450 |
<string>GroupBox</string> |
|
451 |
</property> |
|
452 |
<layout class="QVBoxLayout" name="verticalLayout"> |
|
453 |
<item> |
|
454 |
<widget class="QRadioButton" name="radioButton_10"> |
|
455 |
<property name="text"> |
|
456 |
<string>RadioButton</string> |
|
457 |
</property> |
|
458 |
</widget> |
|
459 |
</item> |
|
460 |
<item> |
|
461 |
<widget class="QRadioButton" name="radioButton_11"> |
|
462 |
<property name="text"> |
|
463 |
<string>RadioButton</string> |
|
464 |
</property> |
|
465 |
</widget> |
|
466 |
</item> |
|
467 |
<item> |
|
468 |
<widget class="QRadioButton" name="radioButton_12"> |
|
469 |
<property name="text"> |
|
470 |
<string>RadioButton</string> |
|
471 |
</property> |
|
472 |
</widget> |
|
473 |
</item> |
|
474 |
<item> |
|
475 |
<widget class="QRadioButton" name="radioButton_13"> |
|
476 |
<property name="text"> |
|
477 |
<string>RadioButton</string> |
|
478 |
</property> |
|
479 |
</widget> |
|
480 |
</item> |
|
481 |
<item> |
|
482 |
<widget class="QRadioButton" name="radioButton_14"> |
|
483 |
<property name="text"> |
|
484 |
<string>RadioButton</string> |
|
485 |
</property> |
|
486 |
</widget> |
|
487 |
</item> |
|
488 |
<item> |
|
489 |
<widget class="QRadioButton" name="radioButton_15"> |
|
490 |
<property name="text"> |
|
491 |
<string>RadioButton</string> |
|
492 |
</property> |
|
493 |
</widget> |
|
494 |
</item> |
|
495 |
<item> |
|
496 |
<widget class="QRadioButton" name="radioButton_16"> |
|
497 |
<property name="text"> |
|
498 |
<string>RadioButton</string> |
|
499 |
</property> |
|
500 |
</widget> |
|
501 |
</item> |
|
502 |
<item> |
|
503 |
<widget class="QRadioButton" name="radioButton_17"> |
|
504 |
<property name="text"> |
|
505 |
<string>RadioButton</string> |
|
506 |
</property> |
|
507 |
</widget> |
|
508 |
</item> |
|
509 |
<item> |
|
510 |
<widget class="QRadioButton" name="radioButton_18"> |
|
511 |
<property name="text"> |
|
512 |
<string>RadioButton</string> |
|
513 |
</property> |
|
514 |
</widget> |
|
515 |
</item> |
|
516 |
</layout> |
|
517 |
</widget> |
|
518 |
</item> |
|
519 |
<item row="0" column="2"> |
|
520 |
<widget class="QGroupBox" name="groupBox_3"> |
|
521 |
<property name="title"> |
|
522 |
<string>GroupBox</string> |
|
523 |
</property> |
|
524 |
<layout class="QGridLayout" name="gridLayout"> |
|
525 |
<item row="0" column="0"> |
|
526 |
<widget class="QRadioButton" name="radioButton_19"> |
|
527 |
<property name="text"> |
|
528 |
<string>RadioButton</string> |
|
529 |
</property> |
|
530 |
</widget> |
|
531 |
</item> |
|
532 |
<item row="1" column="0"> |
|
533 |
<widget class="QRadioButton" name="radioButton_20"> |
|
534 |
<property name="text"> |
|
535 |
<string>RadioButton</string> |
|
536 |
</property> |
|
537 |
</widget> |
|
538 |
</item> |
|
539 |
<item row="2" column="0"> |
|
540 |
<widget class="QRadioButton" name="radioButton_21"> |
|
541 |
<property name="text"> |
|
542 |
<string>RadioButton</string> |
|
543 |
</property> |
|
544 |
</widget> |
|
545 |
</item> |
|
546 |
<item row="3" column="0"> |
|
547 |
<widget class="QRadioButton" name="radioButton_22"> |
|
548 |
<property name="text"> |
|
549 |
<string>RadioButton</string> |
|
550 |
</property> |
|
551 |
</widget> |
|
552 |
</item> |
|
553 |
<item row="4" column="0"> |
|
554 |
<widget class="QRadioButton" name="radioButton_23"> |
|
555 |
<property name="text"> |
|
556 |
<string>RadioButton</string> |
|
557 |
</property> |
|
558 |
</widget> |
|
559 |
</item> |
|
560 |
<item row="5" column="0"> |
|
561 |
<widget class="QRadioButton" name="radioButton_24"> |
|
562 |
<property name="text"> |
|
563 |
<string>RadioButton</string> |
|
564 |
</property> |
|
565 |
</widget> |
|
566 |
</item> |
|
567 |
<item row="6" column="0"> |
|
568 |
<widget class="QRadioButton" name="radioButton_25"> |
|
569 |
<property name="text"> |
|
570 |
<string>RadioButton</string> |
|
571 |
</property> |
|
572 |
</widget> |
|
573 |
</item> |
|
574 |
<item row="7" column="0"> |
|
575 |
<widget class="QRadioButton" name="radioButton_26"> |
|
576 |
<property name="text"> |
|
577 |
<string>RadioButton</string> |
|
578 |
</property> |
|
579 |
</widget> |
|
580 |
</item> |
|
581 |
<item row="8" column="0"> |
|
582 |
<widget class="QRadioButton" name="radioButton_27"> |
|
583 |
<property name="text"> |
|
584 |
<string>RadioButton</string> |
|
585 |
</property> |
|
586 |
</widget> |
|
587 |
</item> |
|
588 |
</layout> |
|
589 |
</widget> |
|
590 |
</item> |
|
591 |
</layout> |
|
592 |
</item> |
|
593 |
</layout> |
|
594 |
</widget> |
|
595 |
</widget> |
|
596 |
</item> |
|
597 |
</layout> |
|
598 |
</widget> |
|
599 |
<resources/> |
|
600 |
<connections/> |
|
601 |
</ui> |