2f6b55128
김태훈
다중 요리 구현
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?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>
<width>900</width>
<height>1600</height>
</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
41
42
43
44
45
46
47
48
49
50
|
}
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); }
QLabel[style="slotLabel"] { color: #C4C4C4; font-size: 24px; font-style: bold; }</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QWidget" name="closeDoorAnimationArea" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>426</y>
<width>900</width>
|
703beed2b
김태훈
디자인 안 반영
|
51
|
<height>509</height>
|
2f6b55128
김태훈
다중 요리 구현
|
52
53
54
55
56
57
|
</rect>
</property>
<widget class="AnimatedImageBox" name="closeDoorAnimation">
<property name="geometry">
<rect>
<x>366</x>
|
703beed2b
김태훈
디자인 안 반영
|
58
|
<y>40</y>
|
2f6b55128
김태훈
다중 요리 구현
|
59
60
61
62
63
64
65
66
67
|
<width>251</width>
<height>292</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="closeDoorArrow">
<property name="geometry">
<rect>
<x>440</x>
|
703beed2b
김태훈
디자인 안 반영
|
68
|
<y>194</y>
|
2f6b55128
김태훈
다중 요리 구현
|
69
70
71
72
73
74
75
76
|
<width>85</width>
<height>24</height>
</rect>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/animation/close_door_arrow.png</pixmap>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
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
|
<widget class="QLabel" name="label_9">
<property name="geometry">
<rect>
<x>220</x>
<y>380</y>
<width>100</width>
<height>100</height>
</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>
<x>329</x>
<y>380</y>
<width>571</width>
<height>100</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
<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
김태훈
다중 요리 구현
|
117
118
119
120
121
122
123
|
</widget>
<widget class="QWidget" name="openDoorAnimationArea" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>426</y>
<width>900</width>
|
703beed2b
김태훈
디자인 안 반영
|
124
|
<height>509</height>
|
2f6b55128
김태훈
다중 요리 구현
|
125
126
127
128
129
130
|
</rect>
</property>
<widget class="AnimatedImageBox" name="openDoorAnimation">
<property name="geometry">
<rect>
<x>366</x>
|
703beed2b
김태훈
디자인 안 반영
|
131
|
<y>40</y>
|
2f6b55128
김태훈
다중 요리 구현
|
132
133
134
135
136
137
138
139
140
|
<width>251</width>
<height>292</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="openDoorArrow">
<property name="geometry">
<rect>
<x>440</x>
|
703beed2b
김태훈
디자인 안 반영
|
141
|
<y>194</y>
|
2f6b55128
김태훈
다중 요리 구현
|
142
143
144
145
146
147
148
149
|
<width>85</width>
<height>24</height>
</rect>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/animation/open_door_arrow.png</pixmap>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
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
|
<widget class="QLabel" name="label_7">
<property name="geometry">
<rect>
<x>370</x>
<y>380</y>
<width>531</width>
<height>100</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
<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>
<x>260</x>
<y>380</y>
<width>100</width>
<height>100</height>
</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
김태훈
다중 요리 구현
|
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
</widget>
<widget class="QWidget" name="blockingArea" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>900</width>
<height>1450</height>
</rect>
</property>
<widget class="QPushButton" name="showPrevButton">
<property name="geometry">
<rect>
<x>0</x>
|
703beed2b
김태훈
디자인 안 반영
|
203
|
<y>1329</y>
|
2f6b55128
김태훈
다중 요리 구현
|
204
|
<width>70</width>
|
703beed2b
김태훈
디자인 안 반영
|
205
|
<height>121</height>
|
2f6b55128
김태훈
다중 요리 구현
|
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
</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>
<x>830</x>
|
703beed2b
김태훈
디자인 안 반영
|
220
|
<y>1329</y>
|
2f6b55128
김태훈
다중 요리 구현
|
221
|
<width>70</width>
|
703beed2b
김태훈
디자인 안 반영
|
222
|
<height>121</height>
|
2f6b55128
김태훈
다중 요리 구현
|
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
</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>
<x>70</x>
|
703beed2b
김태훈
디자인 안 반영
|
237
|
<y>1329</y>
|
2f6b55128
김태훈
다중 요리 구현
|
238
|
<width>85</width>
|
703beed2b
김태훈
디자인 안 반영
|
239
|
<height>121</height>
|
2f6b55128
김태훈
다중 요리 구현
|
240
241
242
243
244
245
246
247
248
249
250
|
</rect>
</property>
<property name="font">
<font>
<pointsize>-1</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QPushButton
|
703beed2b
김태훈
디자인 안 반영
|
251
|
{ background-image: url(:/images/multi/button.png); font-size: 24px; font-weight: bold; color: black; }
|
2f6b55128
김태훈
다중 요리 구현
|
252
253
254
255
256
257
258
259
260
|
QPushButton:pressed,
QPushButton:focus
{ background-image: url(:/images/multi/button_ov.png); }</string>
</property>
</widget>
<widget class="QPushButton" name="showFavoritesButton">
<property name="geometry">
<rect>
<x>160</x>
|
703beed2b
김태훈
디자인 안 반영
|
261
|
<y>1329</y>
|
2f6b55128
김태훈
다중 요리 구현
|
262
|
<width>85</width>
|
703beed2b
김태훈
디자인 안 반영
|
263
|
<height>121</height>
|
2f6b55128
김태훈
다중 요리 구현
|
264
265
266
267
268
269
270
271
272
273
274
|
</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
김태훈
디자인 안 반영
|
275
276
|
<normaloff>:/images/multi/icon_prime.png</normaloff>
<disabledoff>:/images/multi/icon_prime.png</disabledoff>:/images/multi/icon_prime.png</iconset>
|
2f6b55128
김태훈
다중 요리 구현
|
277
278
279
280
281
282
283
284
285
286
287
288
|
</property>
<property name="iconSize">
<size>
<width>50</width>
<height>57</height>
</size>
</property>
</widget>
<widget class="MultiCookView" name="view" native="true">
<property name="geometry">
<rect>
<x>215</x>
|
703beed2b
김태훈
디자인 안 반영
|
289
|
<y>551</y>
|
2f6b55128
김태훈
다중 요리 구현
|
290
|
<width>685</width>
|
703beed2b
김태훈
디자인 안 반영
|
291
|
<height>771</height>
|
2f6b55128
김태훈
다중 요리 구현
|
292
293
294
295
296
297
298
|
</rect>
</property>
</widget>
<widget class="MultiCookTimeBar" name="bar" native="true">
<property name="geometry">
<rect>
<x>200</x>
|
703beed2b
김태훈
디자인 안 반영
|
299
|
<y>1329</y>
|
2f6b55128
김태훈
다중 요리 구현
|
300
|
<width>700</width>
|
703beed2b
김태훈
디자인 안 반영
|
301
|
<height>121</height>
|
2f6b55128
김태훈
다중 요리 구현
|
302
303
304
305
306
307
308
309
310
311
312
313
314
|
</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>
|
703beed2b
김태훈
디자인 안 반영
|
315
|
<y>551</y>
|
2f6b55128
김태훈
다중 요리 구현
|
316
|
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
317
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
318
319
320
321
322
323
324
325
326
327
|
</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>
|
703beed2b
김태훈
디자인 안 반영
|
328
|
<y>628</y>
|
2f6b55128
김태훈
다중 요리 구현
|
329
|
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
330
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
331
332
333
334
335
336
337
338
339
340
|
</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>
|
703beed2b
김태훈
디자인 안 반영
|
341
|
<y>705</y>
|
2f6b55128
김태훈
다중 요리 구현
|
342
|
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
343
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
344
345
346
347
348
349
350
351
352
353
354
355
|
</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>
<y>782</y>
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
356
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
357
358
359
360
361
362
363
364
365
366
|
</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>
|
703beed2b
김태훈
디자인 안 반영
|
367
|
<y>859</y>
|
2f6b55128
김태훈
다중 요리 구현
|
368
|
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
369
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
370
371
372
373
374
375
376
377
378
379
|
</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>
|
703beed2b
김태훈
디자인 안 반영
|
380
|
<y>936</y>
|
2f6b55128
김태훈
다중 요리 구현
|
381
|
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
382
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
383
384
385
386
387
388
389
390
391
392
|
</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>
|
703beed2b
김태훈
디자인 안 반영
|
393
|
<y>1013</y>
|
2f6b55128
김태훈
다중 요리 구현
|
394
|
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
395
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
396
397
398
399
400
401
402
403
404
405
|
</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>
|
703beed2b
김태훈
디자인 안 반영
|
406
|
<y>1090</y>
|
2f6b55128
김태훈
다중 요리 구현
|
407
|
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
408
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
409
410
411
412
413
414
415
416
417
418
|
</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>
|
703beed2b
김태훈
디자인 안 반영
|
419
|
<y>1167</y>
|
2f6b55128
김태훈
다중 요리 구현
|
420
|
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
421
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
422
423
424
425
426
427
428
429
430
431
|
</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>
|
703beed2b
김태훈
디자인 안 반영
|
432
|
<y>1244</y>
|
2f6b55128
김태훈
다중 요리 구현
|
433
|
<width>200</width>
|
703beed2b
김태훈
디자인 안 반영
|
434
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
|
</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>
<width>900</width>
<height>426</height>
</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>
<x>272</x>
<y>36</y>
<width>356</width>
<height>355</height>
</rect>
</property>
</widget>
<widget class="WashWarnIcon" name="label_2">
<property name="geometry">
<rect>
<x>800</x>
<y>320</y>
<width>80</width>
<height>84</height>
</rect>
</property>
</widget>
<widget class="DemoIcon" name="label_3">
<property name="geometry">
<rect>
<x>780</x>
<y>230</y>
<width>101</width>
<height>90</height>
</rect>
</property>
</widget>
<widget class="HalfEnergyIcon" name="label_4">
<property name="geometry">
<rect>
<x>780</x>
<y>160</y>
<width>108</width>
<height>67</height>
</rect>
</property>
</widget>
<widget class="DigitalClock" name="label_5">
<property name="geometry">
<rect>
<x>20</x>
<y>310</y>
<width>600</width>
<height>100</height>
</rect>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
</widget>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
508
|
<widget class="QWidget" name="recentsContainer">
|
2f6b55128
김태훈
다중 요리 구현
|
509
|
<property name="styleSheet">
|
703beed2b
김태훈
디자인 안 반영
|
510
|
<string notr="true">#recentsContainer { background-image: url(:/images/clock/background.png); }</string>
|
2f6b55128
김태훈
다중 요리 구현
|
511
512
513
514
515
516
517
518
519
520
|
</property>
<widget class="QLabel" name="titleLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>900</width>
|
703beed2b
김태훈
디자인 안 반영
|
521
|
<height>130</height>
|
2f6b55128
김태훈
다중 요리 구현
|
522
523
|
</rect>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
524
525
526
527
528
529
530
531
|
<property name="font">
<font>
<family>Roboto</family>
<pointsize>13</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
532
533
534
535
536
|
<property name="styleSheet">
<string notr="true">color: white;
font-size: 13pt;
font-weight: bold;</string>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
537
|
<property name="text">
|
703beed2b
김태훈
디자인 안 반영
|
538
|
<string>다중 요리 최근 요리 목록입니다</string>
|
2f6b55128
김태훈
다중 요리 구현
|
539
540
541
542
543
|
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
544
|
<widget class="QPushButton" name="recentButton_1">
|
2f6b55128
김태훈
다중 요리 구현
|
545
546
547
|
<property name="geometry">
<rect>
<x>0</x>
|
703beed2b
김태훈
디자인 안 반영
|
548
|
<y>130</y>
|
2f6b55128
김태훈
다중 요리 구현
|
549
550
551
552
553
554
555
556
557
558
559
560
561
562
|
<width>300</width>
<height>70</height>
</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
김태훈
디자인 안 반영
|
563
|
<widget class="QPushButton" name="recentButton_2">
|
2f6b55128
김태훈
다중 요리 구현
|
564
565
566
|
<property name="geometry">
<rect>
<x>300</x>
|
703beed2b
김태훈
디자인 안 반영
|
567
|
<y>130</y>
|
2f6b55128
김태훈
다중 요리 구현
|
568
569
570
571
572
573
574
575
576
577
578
579
580
581
|
<width>300</width>
<height>70</height>
</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
김태훈
디자인 안 반영
|
582
|
<widget class="QPushButton" name="recentButton_3">
|
2f6b55128
김태훈
다중 요리 구현
|
583
584
585
|
<property name="geometry">
<rect>
<x>600</x>
|
703beed2b
김태훈
디자인 안 반영
|
586
|
<y>130</y>
|
2f6b55128
김태훈
다중 요리 구현
|
587
588
589
590
591
592
593
594
595
596
597
598
599
600
|
<width>300</width>
<height>70</height>
</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
김태훈
디자인 안 반영
|
601
|
<widget class="QPushButton" name="recentButton_4">
|
2f6b55128
김태훈
다중 요리 구현
|
602
603
604
|
<property name="geometry">
<rect>
<x>0</x>
|
703beed2b
김태훈
디자인 안 반영
|
605
|
<y>210</y>
|
2f6b55128
김태훈
다중 요리 구현
|
606
607
608
609
610
611
612
613
614
615
616
617
618
619
|
<width>300</width>
<height>70</height>
</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
김태훈
디자인 안 반영
|
620
|
<widget class="QPushButton" name="recentButton_6">
|
2f6b55128
김태훈
다중 요리 구현
|
621
622
623
|
<property name="geometry">
<rect>
<x>600</x>
|
703beed2b
김태훈
디자인 안 반영
|
624
|
<y>210</y>
|
2f6b55128
김태훈
다중 요리 구현
|
625
626
627
628
629
630
631
632
633
634
635
636
637
638
|
<width>300</width>
<height>70</height>
</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
김태훈
디자인 안 반영
|
639
|
<widget class="QPushButton" name="recentButton_5">
|
2f6b55128
김태훈
다중 요리 구현
|
640
641
642
|
<property name="geometry">
<rect>
<x>300</x>
|
703beed2b
김태훈
디자인 안 반영
|
643
|
<y>210</y>
|
2f6b55128
김태훈
다중 요리 구현
|
644
645
646
647
648
649
650
651
652
653
654
655
656
657
|
<width>300</width>
<height>70</height>
</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
김태훈
디자인 안 반영
|
658
|
<widget class="QPushButton" name="showNextPageButton">
|
2f6b55128
김태훈
다중 요리 구현
|
659
660
|
<property name="geometry">
<rect>
|
703beed2b
김태훈
디자인 안 반영
|
661
662
663
664
|
<x>815</x>
<y>300</y>
<width>85</width>
<height>100</height>
|
2f6b55128
김태훈
다중 요리 구현
|
665
666
|
</rect>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
667
668
669
|
<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
김태훈
다중 요리 구현
|
670
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
671
672
|
<property name="text">
<string/>
|
2f6b55128
김태훈
다중 요리 구현
|
673
674
|
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
675
|
<widget class="QPushButton" name="showPrevPageButton">
|
2f6b55128
김태훈
다중 요리 구현
|
676
677
678
|
<property name="geometry">
<rect>
<x>0</x>
|
703beed2b
김태훈
디자인 안 반영
|
679
680
681
|
<y>300</y>
<width>85</width>
<height>100</height>
|
2f6b55128
김태훈
다중 요리 구현
|
682
683
|
</rect>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
684
685
686
|
<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
김태훈
다중 요리 구현
|
687
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
688
689
|
<property name="text">
<string/>
|
2f6b55128
김태훈
다중 요리 구현
|
690
691
|
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
692
|
<widget class="BulletIndicator" name="pageIndicator" native="true">
|
2f6b55128
김태훈
다중 요리 구현
|
693
694
|
<property name="geometry">
<rect>
|
703beed2b
김태훈
디자인 안 반영
|
695
696
697
698
|
<x>85</x>
<y>300</y>
<width>730</width>
<height>100</height>
|
2f6b55128
김태훈
다중 요리 구현
|
699
700
|
</rect>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
701
|
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
702
703
704
705
706
707
|
</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
김태훈
다중 요리 구현
|
708
709
710
|
<property name="geometry">
<rect>
<x>0</x>
|
703beed2b
김태훈
디자인 안 반영
|
711
712
713
|
<y>0</y>
<width>900</width>
<height>426</height>
|
2f6b55128
김태훈
다중 요리 구현
|
714
715
716
717
|
</rect>
</property>
<property name="font">
<font>
|
703beed2b
김태훈
디자인 안 반영
|
718
|
<pointsize>12</pointsize>
|
2f6b55128
김태훈
다중 요리 구현
|
719
720
|
</font>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
721
722
|
<property name="styleSheet">
<string notr="true">color: white;</string>
|
2f6b55128
김태훈
다중 요리 구현
|
723
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
724
725
|
<property name="text">
<string/>
|
2f6b55128
김태훈
다중 요리 구현
|
726
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
727
728
|
<property name="alignment">
<set>Qt::AlignCenter</set>
|
2f6b55128
김태훈
다중 요리 구현
|
729
730
731
732
733
734
735
736
|
</property>
</widget>
</widget>
</widget>
<widget class="QLabel" name="slotLabel_1">
<property name="geometry">
<rect>
<x>170</x>
|
703beed2b
김태훈
디자인 안 반영
|
737
|
<y>551</y>
|
2f6b55128
김태훈
다중 요리 구현
|
738
|
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
739
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
|
</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>
<x>170</x>
|
703beed2b
김태훈
디자인 안 반영
|
761
|
<y>628</y>
|
2f6b55128
김태훈
다중 요리 구현
|
762
|
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
763
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
764
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">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>
<x>170</x>
|
703beed2b
김태훈
디자인 안 반영
|
785
|
<y>705</y>
|
2f6b55128
김태훈
다중 요리 구현
|
786
|
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
787
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
|
</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>
<x>170</x>
<y>782</y>
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
811
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
812
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">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>
<x>170</x>
|
703beed2b
김태훈
디자인 안 반영
|
833
|
<y>859</y>
|
2f6b55128
김태훈
다중 요리 구현
|
834
|
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
835
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
836
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">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>
<x>170</x>
|
703beed2b
김태훈
디자인 안 반영
|
857
|
<y>936</y>
|
2f6b55128
김태훈
다중 요리 구현
|
858
|
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
859
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
860
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">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>
<x>170</x>
|
703beed2b
김태훈
디자인 안 반영
|
881
|
<y>1013</y>
|
2f6b55128
김태훈
다중 요리 구현
|
882
|
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
883
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
884
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">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>
<x>170</x>
|
703beed2b
김태훈
디자인 안 반영
|
905
|
<y>1090</y>
|
2f6b55128
김태훈
다중 요리 구현
|
906
|
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
907
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
908
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">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>
<x>170</x>
|
703beed2b
김태훈
디자인 안 반영
|
929
|
<y>1167</y>
|
2f6b55128
김태훈
다중 요리 구현
|
930
|
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
931
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
932
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">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>
<x>170</x>
|
703beed2b
김태훈
디자인 안 반영
|
953
|
<y>1244</y>
|
2f6b55128
김태훈
다중 요리 구현
|
954
|
<width>50</width>
|
703beed2b
김태훈
디자인 안 반영
|
955
|
<height>77</height>
|
2f6b55128
김태훈
다중 요리 구현
|
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
|
</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>
<y>426</y>
<width>125</width>
|
703beed2b
김태훈
디자인 안 반영
|
979
|
<height>121</height>
|
2f6b55128
김태훈
다중 요리 구현
|
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
|
</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>
<x>750</x>
<y>426</y>
<width>150</width>
|
703beed2b
김태훈
디자인 안 반영
|
995
|
<height>121</height>
|
2f6b55128
김태훈
다중 요리 구현
|
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
|
</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
김태훈
디자인 안 반영
|
1007
1008
|
<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
김태훈
다중 요리 구현
|
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
|
</property>
<property name="iconSize">
<size>
<width>40</width>
<height>51</height>
</size>
</property>
</widget>
<widget class="QLabel" name="label_6">
<property name="geometry">
<rect>
<x>0</x>
<y>426</y>
<width>900</width>
|
703beed2b
김태훈
디자인 안 반영
|
1023
|
<height>121</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
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
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
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
|
</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>
<y>1450</y>
<width>900</width>
<height>150</height>
</rect>
</property>
<widget class="QPushButton" name="backButton">
<property name="geometry">
<rect>
<x>175</x>
<y>26</y>
<width>97</width>
<height>97</height>
</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>
<x>401</x>
<y>26</y>
<width>97</width>
<height>97</height>
</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>
<x>288</x>
<y>26</y>
<width>97</width>
<height>97</height>
</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>
<x>627</x>
<y>26</y>
<width>97</width>
<height>97</height>
</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>
<x>514</x>
<y>26</y>
<width>97</width>
<height>97</height>
</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>
<class>AnimatedImageBox</class>
<extends>QLabel</extends>
<header>animatedimagebox.h</header>
</customwidget>
<customwidget>
<class>MultiCookView</class>
<extends>QWidget</extends>
<header>multicookview.h</header>
<container>1</container>
</customwidget>
<customwidget>
<class>MultiCookTimeBar</class>
<extends>QWidget</extends>
<header>multicooktimebar.h</header>
<container>1</container>
</customwidget>
|
703beed2b
김태훈
디자인 안 반영
|
1243
1244
1245
1246
1247
1248
|
<customwidget>
<class>BulletIndicator</class>
<extends>QWidget</extends>
<header>bulletindicator.h</header>
<container>1</container>
</customwidget>
|
2f6b55128
김태훈
다중 요리 구현
|
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
|
</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
김태훈
디자인 안 반영
|
1270
1271
1272
1273
1274
1275
|
<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
김태훈
다중 요리 구현
|
1276
1277
1278
1279
1280
1281
|
</tabstops>
<resources>
<include location="resources.qrc"/>
</resources>
<connections/>
</ui>
|