2f6b55128
김태훈
다중 요리 구현
|
1
2
3
4
5
6
7
8
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MultiCookWindow</class>
<widget class="QMainWindow" name="MultiCookWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
9
10
|
<width>1080</width>
<height>1920</height>
|
2f6b55128
김태훈
다중 요리 구현
|
11
12
13
14
15
16
|
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<property name="styleSheet">
|
703beed2b
김태훈
디자인 안 반영
|
17
|
<string notr="true">#centralwidget { background-image: url(:/images/background/multi.png); }
|
2f6b55128
김태훈
다중 요리 구현
|
18
|
#bottomBar { background-image: url(:/images/bottom_bar/background.png); }
|
703beed2b
김태훈
디자인 안 반영
|
19
20
21
|
#closeDoorAnimationArea,
#openDoorAnimationArea
{ background-image: url(:/images/background/popup/509.png); }
|
2f6b55128
김태훈
다중 요리 구현
|
22
|
|
2f6b55128
김태훈
다중 요리 구현
|
23
24
25
26
|
QPushButton {
background-position: center;
background-repeat: no-repeat;
border: none;
|
703beed2b
김태훈
디자인 안 반영
|
27
|
color: black;
|
2f6b55128
김태훈
다중 요리 구현
|
28
29
30
31
32
33
34
35
36
37
38
39
40
|
}
QPushButton[style="select"]
{ background-image: url(:/images/button/154.png); }
QPushButton[style="select"]:pressed,
QPushButton[style="select"]:focus
{ background-image: url(:/images/button/154_ov.png); }
QPushButton[style="favorite"]
{ background-image: url(:/images/button/288.png); }
QPushButton[style="favorite"]:pressed,
QPushButton[style="favorite"]:focus
{ background-image: url(:/images/button/288_ov.png); }
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
41
|
QLabel[style="slotLabel"] { color: #C4C4C4; font-size: 28px; font-style: bold; }</string>
|
2f6b55128
김태훈
다중 요리 구현
|
42
43
44
45
46
47
|
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QWidget" name="closeDoorAnimationArea" native="true">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
48
49
50
|
<y>511</y>
<width>1080</width>
<height>610</height>
|
2f6b55128
김태훈
다중 요리 구현
|
51
52
53
54
55
|
</rect>
</property>
<widget class="AnimatedImageBox" name="closeDoorAnimation">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
56
57
58
59
|
<x>439</x>
<y>48</y>
<width>301</width>
<height>350</height>
|
2f6b55128
김태훈
다중 요리 구현
|
60
61
62
63
64
65
|
</rect>
</property>
</widget>
<widget class="QLabel" name="closeDoorArrow">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
66
67
68
69
|
<x>528</x>
<y>232</y>
<width>102</width>
<height>28</height>
|
2f6b55128
김태훈
다중 요리 구현
|
70
71
72
73
74
75
|
</rect>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/animation/close_door_arrow.png</pixmap>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
76
77
78
|
<widget class="QLabel" name="label_9">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
79
80
81
82
|
<x>264</x>
<y>456</y>
<width>120</width>
<height>120</height>
|
703beed2b
김태훈
디자인 안 반영
|
83
84
85
86
87
88
89
90
91
92
93
94
|
</rect>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/symbol/warning_medium.png</pixmap>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_10">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
95
96
97
98
|
<x>394</x>
<y>456</y>
<width>685</width>
<height>120</height>
|
703beed2b
김태훈
디자인 안 반영
|
99
100
101
102
|
</rect>
</property>
<property name="font">
<font>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
103
|
<pointsize>12</pointsize>
|
703beed2b
김태훈
디자인 안 반영
|
104
105
106
107
108
109
110
111
112
113
114
115
|
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: white;</string>
</property>
<property name="text">
<string>문이 열려있습니다
문을 닫으시면 다시 시작됩니다</string>
</property>
</widget>
|
2f6b55128
김태훈
다중 요리 구현
|
116
117
118
119
120
|
</widget>
<widget class="QWidget" name="openDoorAnimationArea" native="true">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
121
122
123
|
<y>511</y>
<width>1080</width>
<height>610</height>
|
2f6b55128
김태훈
다중 요리 구현
|
124
125
126
127
128
|
</rect>
</property>
<widget class="AnimatedImageBox" name="openDoorAnimation">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
129
130
131
132
|
<x>439</x>
<y>48</y>
<width>301</width>
<height>350</height>
|
2f6b55128
김태훈
다중 요리 구현
|
133
134
135
136
137
138
|
</rect>
</property>
</widget>
<widget class="QLabel" name="openDoorArrow">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
139
140
141
142
|
<x>528</x>
<y>232</y>
<width>102</width>
<height>28</height>
|
2f6b55128
김태훈
다중 요리 구현
|
143
144
145
146
147
148
|
</rect>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/animation/open_door_arrow.png</pixmap>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
149
150
151
|
<widget class="QLabel" name="label_7">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
152
153
154
155
|
<x>444</x>
<y>456</y>
<width>637</width>
<height>120</height>
|
703beed2b
김태훈
디자인 안 반영
|
156
157
158
159
|
</rect>
</property>
<property name="font">
<font>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
160
|
<pointsize>12</pointsize>
|
703beed2b
김태훈
디자인 안 반영
|
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: white;</string>
</property>
<property name="text">
<string>문을 열어주세요</string>
</property>
</widget>
<widget class="QLabel" name="label_8">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
175
176
177
178
|
<x>312</x>
<y>456</y>
<width>120</width>
<height>120</height>
|
703beed2b
김태훈
디자인 안 반영
|
179
180
181
182
183
184
185
186
187
|
</rect>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/symbol/warning_medium.png</pixmap>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
|
2f6b55128
김태훈
다중 요리 구현
|
188
189
190
191
192
193
|
</widget>
<widget class="QWidget" name="blockingArea" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
194
195
|
<width>1080</width>
<height>1740</height>
|
2f6b55128
김태훈
다중 요리 구현
|
196
197
198
199
200
201
|
</rect>
</property>
<widget class="QPushButton" name="showPrevButton">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
202
203
204
|
<y>1594</y>
<width>84</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
205
206
207
208
209
210
211
212
213
214
215
216
217
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton
{ background-image: url(:/images/auto_button/prev_step.png); }
QPushButton:pressed,
QPushButton:focus
{ background-image: url(:/images/auto_button/prev_step_ov.png); }</string>
</property>
</widget>
<widget class="QPushButton" name="showNextButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
218
219
220
221
|
<x>996</x>
<y>1594</y>
<width>84</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
222
223
224
225
226
227
228
229
230
231
232
233
234
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton
{ background-image: url(:/images/auto_button/next_step.png); }
QPushButton:pressed,
QPushButton:focus
{ background-image: url(:/images/auto_button/next_step_ov.png); }</string>
</property>
</widget>
<widget class="QPushButton" name="showNowButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
235
236
237
238
|
<x>84</x>
<y>1594</y>
<width>102</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
239
240
241
242
243
244
245
246
247
248
249
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QPushButton
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
250
|
{ background-image: url(:/images/multi/button.png); font-size: 28px; font-weight: bold; color: black; }
|
2f6b55128
김태훈
다중 요리 구현
|
251
252
253
254
255
256
257
258
|
QPushButton:pressed,
QPushButton:focus
{ background-image: url(:/images/multi/button_ov.png); }</string>
</property>
</widget>
<widget class="QPushButton" name="showFavoritesButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
259
260
261
262
|
<x>192</x>
<y>1594</y>
<width>102</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
263
264
265
266
267
268
269
270
271
272
273
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton
{ background-image: url(:/images/multi/button.png); }
QPushButton:pressed,
QPushButton:focus
{ background-image: url(:/images/multi/button_ov.png); }</string>
</property>
<property name="icon">
<iconset resource="resources.qrc">
|
703beed2b
김태훈
디자인 안 반영
|
274
275
|
<normaloff>:/images/multi/icon_prime.png</normaloff>
<disabledoff>:/images/multi/icon_prime.png</disabledoff>:/images/multi/icon_prime.png</iconset>
|
2f6b55128
김태훈
다중 요리 구현
|
276
277
278
|
</property>
<property name="iconSize">
<size>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
279
280
|
<width>60</width>
<height>68</height>
|
2f6b55128
김태훈
다중 요리 구현
|
281
282
283
284
285
286
|
</size>
</property>
</widget>
<widget class="MultiCookView" name="view" native="true">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
287
288
289
290
|
<x>258</x>
<y>661</y>
<width>822</width>
<height>925</height>
|
2f6b55128
김태훈
다중 요리 구현
|
291
292
293
294
295
296
|
</rect>
</property>
</widget>
<widget class="MultiCookTimeBar" name="bar" native="true">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
297
298
299
300
|
<x>240</x>
<y>1594</y>
<width>840</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
301
302
303
304
305
306
307
308
309
310
311
312
313
|
</rect>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
</widget>
<widget class="QPushButton" name="selectButton_1">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
314
315
316
|
<y>661</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
317
318
319
320
321
322
323
324
325
326
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QPushButton" name="selectButton_2">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
327
328
329
|
<y>753</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
330
331
332
333
334
335
336
337
338
339
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QPushButton" name="selectButton_3">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
340
341
342
|
<y>846</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
343
344
345
346
347
348
349
350
351
352
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QPushButton" name="selectButton_4">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
353
354
355
|
<y>938</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
356
357
358
359
360
361
362
363
364
365
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QPushButton" name="selectButton_5">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
366
367
368
|
<y>1030</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
369
370
371
372
373
374
375
376
377
378
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QPushButton" name="selectButton_6">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
379
380
381
|
<y>1123</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
382
383
384
385
386
387
388
389
390
391
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QPushButton" name="selectButton_7">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
392
393
394
|
<y>1215</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
395
396
397
398
399
400
401
402
403
404
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QPushButton" name="selectButton_8">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
405
406
407
|
<y>1308</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
408
409
410
411
412
413
414
415
416
417
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QPushButton" name="selectButton_9">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
418
419
420
|
<y>1400</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
421
422
423
424
425
426
427
428
429
430
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QPushButton" name="selectButton_10">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
431
432
433
|
<y>1492</y>
<width>240</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
434
435
436
437
438
439
440
441
442
443
444
|
</rect>
</property>
<property name="style" stdset="0">
<string notr="true">select</string>
</property>
</widget>
<widget class="QStackedWidget" name="upperStack">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
445
446
|
<width>1080</width>
<height>511</height>
|
2f6b55128
김태훈
다중 요리 구현
|
447
448
449
450
451
452
453
454
455
|
</rect>
</property>
<widget class="QWidget" name="clockContainer">
<property name="styleSheet">
<string notr="true">#clockContainer { background-image: url(:/images/clock/background.png); }</string>
</property>
<widget class="Clock" name="clock" native="true">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
456
457
458
459
|
<x>326</x>
<y>43</y>
<width>427</width>
<height>426</height>
|
2f6b55128
김태훈
다중 요리 구현
|
460
461
462
463
464
465
|
</rect>
</property>
</widget>
<widget class="WashWarnIcon" name="label_2">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
466
467
468
469
|
<x>960</x>
<y>384</y>
<width>96</width>
<height>100</height>
|
2f6b55128
김태훈
다중 요리 구현
|
470
471
472
473
474
475
|
</rect>
</property>
</widget>
<widget class="DemoIcon" name="label_3">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
476
477
478
479
|
<x>936</x>
<y>276</y>
<width>121</width>
<height>108</height>
|
2f6b55128
김태훈
다중 요리 구현
|
480
481
482
483
484
485
|
</rect>
</property>
</widget>
<widget class="HalfEnergyIcon" name="label_4">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
486
487
488
489
|
<x>936</x>
<y>192</y>
<width>129</width>
<height>80</height>
|
2f6b55128
김태훈
다중 요리 구현
|
490
491
492
493
494
495
|
</rect>
</property>
</widget>
<widget class="DigitalClock" name="label_5">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
496
497
498
499
|
<x>24</x>
<y>372</y>
<width>720</width>
<height>120</height>
|
2f6b55128
김태훈
다중 요리 구현
|
500
501
502
503
504
505
|
</rect>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
</widget>
|
5f017a9d7
김태훈
요청 사항 반영
|
506
507
508
|
<widget class="WaterLevelIcon" name="label_11">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
509
510
511
512
|
<x>804</x>
<y>348</y>
<width>133</width>
<height>145</height>
|
5f017a9d7
김태훈
요청 사항 반영
|
513
514
515
516
517
518
519
520
521
|
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="IgnitionIcon" name="label_12">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
522
523
524
525
|
<x>794</x>
<y>196</y>
<width>133</width>
<height>145</height>
|
5f017a9d7
김태훈
요청 사항 반영
|
526
527
528
529
530
531
|
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
|
2f6b55128
김태훈
다중 요리 구현
|
532
|
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
533
|
<widget class="QWidget" name="recentsContainer">
|
2f6b55128
김태훈
다중 요리 구현
|
534
|
<property name="styleSheet">
|
703beed2b
김태훈
디자인 안 반영
|
535
|
<string notr="true">#recentsContainer { background-image: url(:/images/clock/background.png); }</string>
|
2f6b55128
김태훈
다중 요리 구현
|
536
537
538
539
540
541
542
543
544
|
</property>
<widget class="QLabel" name="titleLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
545
546
|
<width>1080</width>
<height>156</height>
|
2f6b55128
김태훈
다중 요리 구현
|
547
548
|
</rect>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
549
550
551
552
553
554
555
556
|
<property name="font">
<font>
<family>Roboto</family>
<pointsize>13</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
557
558
559
560
561
|
<property name="styleSheet">
<string notr="true">color: white;
font-size: 13pt;
font-weight: bold;</string>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
562
|
<property name="text">
|
703beed2b
김태훈
디자인 안 반영
|
563
|
<string>다중 요리 최근 요리 목록입니다</string>
|
2f6b55128
김태훈
다중 요리 구현
|
564
565
566
567
568
|
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
569
|
<widget class="QPushButton" name="recentButton_1">
|
2f6b55128
김태훈
다중 요리 구현
|
570
571
572
|
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
573
574
575
|
<y>156</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
576
577
578
579
580
581
582
583
584
585
586
587
|
</rect>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="style" stdset="0">
<string notr="true">favorite</string>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
588
|
<widget class="QPushButton" name="recentButton_2">
|
2f6b55128
김태훈
다중 요리 구현
|
589
590
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
591
592
593
594
|
<x>360</x>
<y>156</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
595
596
597
598
599
600
601
602
603
604
605
606
|
</rect>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="style" stdset="0">
<string notr="true">favorite</string>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
607
|
<widget class="QPushButton" name="recentButton_3">
|
2f6b55128
김태훈
다중 요리 구현
|
608
609
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
610
611
612
613
|
<x>720</x>
<y>156</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
614
615
616
617
618
619
620
621
622
623
624
625
|
</rect>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="style" stdset="0">
<string notr="true">favorite</string>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
626
|
<widget class="QPushButton" name="recentButton_4">
|
2f6b55128
김태훈
다중 요리 구현
|
627
628
629
|
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
630
631
632
|
<y>252</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
633
634
635
636
637
638
639
640
641
642
643
644
|
</rect>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="style" stdset="0">
<string notr="true">favorite</string>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
645
|
<widget class="QPushButton" name="recentButton_6">
|
2f6b55128
김태훈
다중 요리 구현
|
646
647
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
648
649
650
651
|
<x>720</x>
<y>252</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
652
653
654
655
656
657
658
659
660
661
662
663
|
</rect>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="style" stdset="0">
<string notr="true">favorite</string>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
664
|
<widget class="QPushButton" name="recentButton_5">
|
2f6b55128
김태훈
다중 요리 구현
|
665
666
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
667
668
669
670
|
<x>360</x>
<y>252</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
671
672
673
674
675
676
677
678
679
680
681
682
|
</rect>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="style" stdset="0">
<string notr="true">favorite</string>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
683
|
<widget class="QPushButton" name="showNextPageButton">
|
2f6b55128
김태훈
다중 요리 구현
|
684
685
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
686
687
688
689
|
<x>978</x>
<y>360</y>
<width>102</width>
<height>120</height>
|
2f6b55128
김태훈
다중 요리 구현
|
690
691
|
</rect>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
692
693
694
|
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/auto_button/next_step.png); }
QPushButton::pressed, QPushButton:focus { background-image: url(:/images/auto_button/next_step_ov.png); }</string>
|
2f6b55128
김태훈
다중 요리 구현
|
695
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
696
697
|
<property name="text">
<string/>
|
2f6b55128
김태훈
다중 요리 구현
|
698
699
|
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
700
|
<widget class="QPushButton" name="showPrevPageButton">
|
2f6b55128
김태훈
다중 요리 구현
|
701
702
703
|
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
704
705
706
|
<y>360</y>
<width>102</width>
<height>120</height>
|
2f6b55128
김태훈
다중 요리 구현
|
707
708
|
</rect>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
709
710
711
|
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/auto_button/prev_step.png); }
QPushButton::pressed, QPushButton:focus { background-image: url(:/images/auto_button/prev_step_ov.png); }</string>
|
2f6b55128
김태훈
다중 요리 구현
|
712
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
713
714
|
<property name="text">
<string/>
|
2f6b55128
김태훈
다중 요리 구현
|
715
716
|
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
717
|
<widget class="BulletIndicator" name="pageIndicator" native="true">
|
2f6b55128
김태훈
다중 요리 구현
|
718
719
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
720
721
722
723
|
<x>102</x>
<y>360</y>
<width>876</width>
<height>120</height>
|
2f6b55128
김태훈
다중 요리 구현
|
724
725
|
</rect>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
726
|
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
727
728
729
730
731
732
|
</widget>
<widget class="QWidget" name="infoContainer">
<property name="styleSheet">
<string notr="true">#infoContainer { background-image: url(:/images/clock/background.png); }</string>
</property>
<widget class="QLabel" name="info">
|
2f6b55128
김태훈
다중 요리 구현
|
733
734
735
|
<property name="geometry">
<rect>
<x>0</x>
|
703beed2b
김태훈
디자인 안 반영
|
736
|
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
737
738
|
<width>1080</width>
<height>511</height>
|
2f6b55128
김태훈
다중 요리 구현
|
739
740
741
742
|
</rect>
</property>
<property name="font">
<font>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
743
|
<pointsize>14</pointsize>
|
2f6b55128
김태훈
다중 요리 구현
|
744
745
|
</font>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
746
747
|
<property name="styleSheet">
<string notr="true">color: white;</string>
|
2f6b55128
김태훈
다중 요리 구현
|
748
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
749
750
|
<property name="text">
<string/>
|
2f6b55128
김태훈
다중 요리 구현
|
751
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
752
753
|
<property name="alignment">
<set>Qt::AlignCenter</set>
|
2f6b55128
김태훈
다중 요리 구현
|
754
755
756
757
758
759
760
|
</property>
</widget>
</widget>
</widget>
<widget class="QLabel" name="slotLabel_1">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
761
762
763
764
|
<x>204</x>
<y>661</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">01</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="slotLabel_2">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
785
786
787
788
|
<x>204</x>
<y>753</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">02</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="slotLabel_3">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
809
810
811
812
|
<x>204</x>
<y>846</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">03</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="slotLabel_4">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
833
834
835
836
|
<x>204</x>
<y>938</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">04</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="slotLabel_5">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
857
858
859
860
|
<x>204</x>
<y>1030</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">05</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="slotLabel_6">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
881
882
883
884
|
<x>204</x>
<y>1123</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">06</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="slotLabel_7">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
905
906
907
908
|
<x>204</x>
<y>1215</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">07</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="slotLabel_8">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
929
930
931
932
|
<x>204</x>
<y>1308</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">08</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="slotLabel_9">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
953
954
955
956
|
<x>204</x>
<y>1400</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">09</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="slotLabel_10">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
977
978
979
980
|
<x>204</x>
<y>1492</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
</font>
</property>
<property name="text">
<string notr="true">10</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1002
1003
1004
|
<y>511</y>
<width>150</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
|
</rect>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/symbol/symbol_01.png</pixmap>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QPushButton" name="homeButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1017
1018
1019
1020
|
<x>900</x>
<y>511</y>
<width>180</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/button/100.png); }
QPushButton::pressed, QPushButton:focus { background-image: url(:/images/button/100_ov.png); }</string>
</property>
<property name="text">
<string/>
</property>
<property name="icon">
<iconset resource="resources.qrc">
|
703beed2b
김태훈
디자인 안 반영
|
1032
1033
|
<normaloff>:/images/auto_button/btn_icon_02.png</normaloff>
<disabledoff>:/images/auto_button/btn_icon_02.png</disabledoff>:/images/auto_button/btn_icon_02.png</iconset>
|
2f6b55128
김태훈
다중 요리 구현
|
1034
1035
1036
|
</property>
<property name="iconSize">
<size>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1037
1038
|
<width>48</width>
<height>61</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1039
1040
1041
1042
1043
1044
1045
|
</size>
</property>
</widget>
<widget class="QLabel" name="label_6">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1046
1047
1048
|
<y>511</y>
<width>1080</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
|
</rect>
</property>
<property name="text">
<string>1. 해당 조리 칸 버튼을 눌러 메뉴를 선택해주세요.
2. 메뉴가 선택되면, 해당 작업 시간이 적용됩니다.</string>
</property>
<property name="indent">
<number>125</number>
</property>
<property name="style" stdset="0">
<string>slotLabel</string>
</property>
</widget>
<zorder>label_6</zorder>
<zorder>slotLabel_10</zorder>
<zorder>slotLabel_9</zorder>
<zorder>slotLabel_8</zorder>
<zorder>slotLabel_7</zorder>
<zorder>slotLabel_6</zorder>
<zorder>slotLabel_5</zorder>
<zorder>slotLabel_4</zorder>
<zorder>slotLabel_3</zorder>
<zorder>slotLabel_2</zorder>
<zorder>slotLabel_1</zorder>
<zorder>bar</zorder>
<zorder>showPrevButton</zorder>
<zorder>showNextButton</zorder>
<zorder>showNowButton</zorder>
<zorder>showFavoritesButton</zorder>
<zorder>view</zorder>
<zorder>selectButton_1</zorder>
<zorder>selectButton_2</zorder>
<zorder>selectButton_3</zorder>
<zorder>selectButton_4</zorder>
<zorder>selectButton_5</zorder>
<zorder>selectButton_6</zorder>
<zorder>selectButton_7</zorder>
<zorder>selectButton_8</zorder>
<zorder>selectButton_9</zorder>
<zorder>selectButton_10</zorder>
<zorder>upperStack</zorder>
<zorder>label</zorder>
<zorder>homeButton</zorder>
</widget>
<widget class="QWidget" name="bottomBar" native="true">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1097
1098
1099
|
<y>1740</y>
<width>1080</width>
<height>180</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1100
1101
1102
1103
1104
|
</rect>
</property>
<widget class="QPushButton" name="backButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1105
1106
1107
1108
|
<x>210</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/back.png); }
QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/back_ov.png); }</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="washButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1128
1129
1130
1131
|
<x>481</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/wash.png); }
QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/wash_ov.png); }</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="configButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1151
1152
1153
1154
|
<x>345</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/config.png); }
QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/config_ov.png); }</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="helpButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1174
1175
1176
1177
|
<x>752</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/help.png); }
QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/help_ov.png); }</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="deleteButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1197
1198
1199
1200
|
<x>616</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/006_sys_icon_19.png); }
QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/006_sys_icon_19_ov.png); }</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</widget>
<zorder>blockingArea</zorder>
<zorder>bottomBar</zorder>
<zorder>closeDoorAnimationArea</zorder>
<zorder>openDoorAnimationArea</zorder>
</widget>
</widget>
<customwidgets>
<customwidget>
<class>Clock</class>
<extends>QWidget</extends>
<header>clock.h</header>
<container>1</container>
</customwidget>
<customwidget>
<class>WashWarnIcon</class>
<extends>QLabel</extends>
<header>washwarnicon.h</header>
</customwidget>
<customwidget>
<class>DemoIcon</class>
<extends>QLabel</extends>
<header>demoicon.h</header>
</customwidget>
<customwidget>
<class>HalfEnergyIcon</class>
<extends>QLabel</extends>
<header>halfenergyicon.h</header>
</customwidget>
<customwidget>
<class>DigitalClock</class>
<extends>QLabel</extends>
<header>digitalclock.h</header>
</customwidget>
<customwidget>
|
5f017a9d7
김태훈
요청 사항 반영
|
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
|
<class>IgnitionIcon</class>
<extends>QLabel</extends>
<header>ignitionicon.h</header>
</customwidget>
<customwidget>
<class>WaterLevelIcon</class>
<extends>QLabel</extends>
<header>waterlevelicon.h</header>
</customwidget>
<customwidget>
|
2f6b55128
김태훈
다중 요리 구현
|
1262
1263
1264
1265
1266
|
<class>AnimatedImageBox</class>
<extends>QLabel</extends>
<header>animatedimagebox.h</header>
</customwidget>
<customwidget>
|
5f017a9d7
김태훈
요청 사항 반영
|
1267
|
<class>BulletIndicator</class>
|
2f6b55128
김태훈
다중 요리 구현
|
1268
|
<extends>QWidget</extends>
|
5f017a9d7
김태훈
요청 사항 반영
|
1269
|
<header>bulletindicator.h</header>
|
2f6b55128
김태훈
다중 요리 구현
|
1270
1271
1272
|
<container>1</container>
</customwidget>
<customwidget>
|
5f017a9d7
김태훈
요청 사항 반영
|
1273
|
<class>MultiCookView</class>
|
2f6b55128
김태훈
다중 요리 구현
|
1274
|
<extends>QWidget</extends>
|
5f017a9d7
김태훈
요청 사항 반영
|
1275
|
<header>multicookview.h</header>
|
2f6b55128
김태훈
다중 요리 구현
|
1276
1277
|
<container>1</container>
</customwidget>
|
703beed2b
김태훈
디자인 안 반영
|
1278
|
<customwidget>
|
5f017a9d7
김태훈
요청 사항 반영
|
1279
|
<class>MultiCookTimeBar</class>
|
703beed2b
김태훈
디자인 안 반영
|
1280
|
<extends>QWidget</extends>
|
5f017a9d7
김태훈
요청 사항 반영
|
1281
|
<header>multicooktimebar.h</header>
|
703beed2b
김태훈
디자인 안 반영
|
1282
1283
|
<container>1</container>
</customwidget>
|
2f6b55128
김태훈
다중 요리 구현
|
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
|
</customwidgets>
<tabstops>
<tabstop>selectButton_1</tabstop>
<tabstop>selectButton_2</tabstop>
<tabstop>selectButton_3</tabstop>
<tabstop>selectButton_4</tabstop>
<tabstop>selectButton_5</tabstop>
<tabstop>selectButton_6</tabstop>
<tabstop>selectButton_7</tabstop>
<tabstop>selectButton_8</tabstop>
<tabstop>selectButton_9</tabstop>
<tabstop>selectButton_10</tabstop>
<tabstop>showPrevButton</tabstop>
<tabstop>showNowButton</tabstop>
<tabstop>showFavoritesButton</tabstop>
<tabstop>showNextButton</tabstop>
<tabstop>backButton</tabstop>
<tabstop>configButton</tabstop>
<tabstop>washButton</tabstop>
<tabstop>deleteButton</tabstop>
<tabstop>helpButton</tabstop>
|
703beed2b
김태훈
디자인 안 반영
|
1305
1306
1307
1308
1309
1310
|
<tabstop>recentButton_1</tabstop>
<tabstop>recentButton_2</tabstop>
<tabstop>recentButton_3</tabstop>
<tabstop>recentButton_4</tabstop>
<tabstop>recentButton_5</tabstop>
<tabstop>recentButton_6</tabstop>
|
2f6b55128
김태훈
다중 요리 구현
|
1311
1312
1313
1314
1315
1316
|
</tabstops>
<resources>
<include location="resources.qrc"/>
</resources>
<connections/>
</ui>
|