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
|
</rect>
</property>
|
c41b8944d
김태훈
리팩토링 - 시계 영역 내용을 ...
|
449
|
<widget class="StatusArea" name="clockContainer">
|
2f6b55128
김태훈
다중 요리 구현
|
450
451
452
|
<property name="styleSheet">
<string notr="true">#clockContainer { background-image: url(:/images/clock/background.png); }</string>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
453
|
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
454
|
<widget class="QWidget" name="recentsContainer">
|
2f6b55128
김태훈
다중 요리 구현
|
455
|
<property name="styleSheet">
|
703beed2b
김태훈
디자인 안 반영
|
456
|
<string notr="true">#recentsContainer { background-image: url(:/images/clock/background.png); }</string>
|
2f6b55128
김태훈
다중 요리 구현
|
457
458
459
460
461
462
463
464
465
|
</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 파일 일괄 변경
|
466
467
|
<width>1080</width>
<height>156</height>
|
2f6b55128
김태훈
다중 요리 구현
|
468
469
|
</rect>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
470
471
472
473
474
475
476
477
|
<property name="font">
<font>
<family>Roboto</family>
<pointsize>13</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
478
479
480
481
482
|
<property name="styleSheet">
<string notr="true">color: white;
font-size: 13pt;
font-weight: bold;</string>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
483
|
<property name="text">
|
703beed2b
김태훈
디자인 안 반영
|
484
|
<string>다중 요리 최근 요리 목록입니다</string>
|
2f6b55128
김태훈
다중 요리 구현
|
485
486
487
488
489
|
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
490
|
<widget class="QPushButton" name="recentButton_1">
|
2f6b55128
김태훈
다중 요리 구현
|
491
492
493
|
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
494
495
496
|
<y>156</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
497
498
499
500
501
502
503
504
505
506
507
508
|
</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
김태훈
디자인 안 반영
|
509
|
<widget class="QPushButton" name="recentButton_2">
|
2f6b55128
김태훈
다중 요리 구현
|
510
511
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
512
513
514
515
|
<x>360</x>
<y>156</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
516
517
518
519
520
521
522
523
524
525
526
527
|
</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
김태훈
디자인 안 반영
|
528
|
<widget class="QPushButton" name="recentButton_3">
|
2f6b55128
김태훈
다중 요리 구현
|
529
530
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
531
532
533
534
|
<x>720</x>
<y>156</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
535
536
537
538
539
540
541
542
543
544
545
546
|
</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
김태훈
디자인 안 반영
|
547
|
<widget class="QPushButton" name="recentButton_4">
|
2f6b55128
김태훈
다중 요리 구현
|
548
549
550
|
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
551
552
553
|
<y>252</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
554
555
556
557
558
559
560
561
562
563
564
565
|
</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
김태훈
디자인 안 반영
|
566
|
<widget class="QPushButton" name="recentButton_6">
|
2f6b55128
김태훈
다중 요리 구현
|
567
568
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
569
570
571
572
|
<x>720</x>
<y>252</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
573
574
575
576
577
578
579
580
581
582
583
584
|
</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
김태훈
디자인 안 반영
|
585
|
<widget class="QPushButton" name="recentButton_5">
|
2f6b55128
김태훈
다중 요리 구현
|
586
587
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
588
589
590
591
|
<x>360</x>
<y>252</y>
<width>360</width>
<height>84</height>
|
2f6b55128
김태훈
다중 요리 구현
|
592
593
594
595
596
597
598
599
600
601
602
603
|
</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
김태훈
디자인 안 반영
|
604
|
<widget class="QPushButton" name="showNextPageButton">
|
2f6b55128
김태훈
다중 요리 구현
|
605
606
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
607
608
609
610
|
<x>978</x>
<y>360</y>
<width>102</width>
<height>120</height>
|
2f6b55128
김태훈
다중 요리 구현
|
611
612
|
</rect>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
613
614
615
|
<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
김태훈
다중 요리 구현
|
616
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
617
618
|
<property name="text">
<string/>
|
2f6b55128
김태훈
다중 요리 구현
|
619
620
|
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
621
|
<widget class="QPushButton" name="showPrevPageButton">
|
2f6b55128
김태훈
다중 요리 구현
|
622
623
624
|
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
625
626
627
|
<y>360</y>
<width>102</width>
<height>120</height>
|
2f6b55128
김태훈
다중 요리 구현
|
628
629
|
</rect>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
630
631
632
|
<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
김태훈
다중 요리 구현
|
633
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
634
635
|
<property name="text">
<string/>
|
2f6b55128
김태훈
다중 요리 구현
|
636
637
|
</property>
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
638
|
<widget class="BulletIndicator" name="pageIndicator" native="true">
|
2f6b55128
김태훈
다중 요리 구현
|
639
640
|
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
641
642
643
644
|
<x>102</x>
<y>360</y>
<width>876</width>
<height>120</height>
|
2f6b55128
김태훈
다중 요리 구현
|
645
646
|
</rect>
</property>
|
2f6b55128
김태훈
다중 요리 구현
|
647
|
</widget>
|
703beed2b
김태훈
디자인 안 반영
|
648
649
650
651
652
653
|
</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
김태훈
다중 요리 구현
|
654
655
656
|
<property name="geometry">
<rect>
<x>0</x>
|
703beed2b
김태훈
디자인 안 반영
|
657
|
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
658
659
|
<width>1080</width>
<height>511</height>
|
2f6b55128
김태훈
다중 요리 구현
|
660
661
662
663
|
</rect>
</property>
<property name="font">
<font>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
664
|
<pointsize>14</pointsize>
|
2f6b55128
김태훈
다중 요리 구현
|
665
666
|
</font>
</property>
|
703beed2b
김태훈
디자인 안 반영
|
667
668
|
<property name="styleSheet">
<string notr="true">color: white;</string>
|
2f6b55128
김태훈
다중 요리 구현
|
669
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
670
671
|
<property name="text">
<string/>
|
2f6b55128
김태훈
다중 요리 구현
|
672
|
</property>
|
703beed2b
김태훈
디자인 안 반영
|
673
674
|
<property name="alignment">
<set>Qt::AlignCenter</set>
|
2f6b55128
김태훈
다중 요리 구현
|
675
676
677
678
679
680
681
|
</property>
</widget>
</widget>
</widget>
<widget class="QLabel" name="slotLabel_1">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
682
683
684
685
|
<x>204</x>
<y>661</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
|
</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 파일 일괄 변경
|
706
707
708
709
|
<x>204</x>
<y>753</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
|
</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 파일 일괄 변경
|
730
731
732
733
|
<x>204</x>
<y>846</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
|
</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 파일 일괄 변경
|
754
755
756
757
|
<x>204</x>
<y>938</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
|
</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 파일 일괄 변경
|
778
779
780
781
|
<x>204</x>
<y>1030</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
|
</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 파일 일괄 변경
|
802
803
804
805
|
<x>204</x>
<y>1123</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
|
</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 파일 일괄 변경
|
826
827
828
829
|
<x>204</x>
<y>1215</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
|
</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 파일 일괄 변경
|
850
851
852
853
|
<x>204</x>
<y>1308</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
|
</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 파일 일괄 변경
|
874
875
876
877
|
<x>204</x>
<y>1400</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
|
</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 파일 일괄 변경
|
898
899
900
901
|
<x>204</x>
<y>1492</y>
<width>60</width>
<height>92</height>
|
2f6b55128
김태훈
다중 요리 구현
|
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
|
</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 파일 일괄 변경
|
923
924
925
|
<y>511</y>
<width>150</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
926
927
928
929
930
931
932
933
934
935
936
937
|
</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 파일 일괄 변경
|
938
939
940
941
|
<x>900</x>
<y>511</y>
<width>180</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
942
943
944
945
946
947
948
949
950
951
952
|
</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
김태훈
디자인 안 반영
|
953
954
|
<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
김태훈
다중 요리 구현
|
955
956
957
|
</property>
<property name="iconSize">
<size>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
958
959
|
<width>48</width>
<height>61</height>
|
2f6b55128
김태훈
다중 요리 구현
|
960
961
962
963
964
965
966
|
</size>
</property>
</widget>
<widget class="QLabel" name="label_6">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
967
968
969
|
<y>511</y>
<width>1080</width>
<height>145</height>
|
2f6b55128
김태훈
다중 요리 구현
|
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
|
</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 파일 일괄 변경
|
1018
1019
1020
|
<y>1740</y>
<width>1080</width>
<height>180</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1021
1022
1023
1024
1025
|
</rect>
</property>
<widget class="QPushButton" name="backButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
1026
1027
1028
1029
|
<x>210</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
|
</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 파일 일괄 변경
|
1049
1050
1051
1052
|
<x>481</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
|
</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 파일 일괄 변경
|
1072
1073
1074
1075
|
<x>345</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
|
</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 파일 일괄 변경
|
1095
1096
1097
1098
|
<x>752</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
|
</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 파일 일괄 변경
|
1118
1119
1120
1121
|
<x>616</x>
<y>31</y>
<width>116</width>
<height>116</height>
|
2f6b55128
김태훈
다중 요리 구현
|
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
|
</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>
|
c41b8944d
김태훈
리팩토링 - 시계 영역 내용을 ...
|
1147
|
<class>StatusArea</class>
|
2f6b55128
김태훈
다중 요리 구현
|
1148
|
<extends>QWidget</extends>
|
c41b8944d
김태훈
리팩토링 - 시계 영역 내용을 ...
|
1149
|
<header>statusarea.h</header>
|
2f6b55128
김태훈
다중 요리 구현
|
1150
1151
1152
|
<container>1</container>
</customwidget>
<customwidget>
|
2f6b55128
김태훈
다중 요리 구현
|
1153
1154
1155
1156
1157
|
<class>AnimatedImageBox</class>
<extends>QLabel</extends>
<header>animatedimagebox.h</header>
</customwidget>
<customwidget>
|
5f017a9d7
김태훈
요청 사항 반영
|
1158
|
<class>BulletIndicator</class>
|
2f6b55128
김태훈
다중 요리 구현
|
1159
|
<extends>QWidget</extends>
|
5f017a9d7
김태훈
요청 사항 반영
|
1160
|
<header>bulletindicator.h</header>
|
2f6b55128
김태훈
다중 요리 구현
|
1161
1162
1163
|
<container>1</container>
</customwidget>
<customwidget>
|
5f017a9d7
김태훈
요청 사항 반영
|
1164
|
<class>MultiCookView</class>
|
2f6b55128
김태훈
다중 요리 구현
|
1165
|
<extends>QWidget</extends>
|
5f017a9d7
김태훈
요청 사항 반영
|
1166
|
<header>multicookview.h</header>
|
2f6b55128
김태훈
다중 요리 구현
|
1167
1168
|
<container>1</container>
</customwidget>
|
703beed2b
김태훈
디자인 안 반영
|
1169
|
<customwidget>
|
5f017a9d7
김태훈
요청 사항 반영
|
1170
|
<class>MultiCookTimeBar</class>
|
703beed2b
김태훈
디자인 안 반영
|
1171
|
<extends>QWidget</extends>
|
5f017a9d7
김태훈
요청 사항 반영
|
1172
|
<header>multicooktimebar.h</header>
|
703beed2b
김태훈
디자인 안 반영
|
1173
1174
|
<container>1</container>
</customwidget>
|
2f6b55128
김태훈
다중 요리 구현
|
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
|
</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
김태훈
디자인 안 반영
|
1196
1197
1198
1199
1200
1201
|
<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
김태훈
다중 요리 구현
|
1202
1203
1204
1205
1206
1207
|
</tabstops>
<resources>
<include location="resources.qrc"/>
</resources>
<connections/>
</ui>
|