Blame view

app/gui/oven_control/programmingselectionwindow.ui 21.1 KB
dcfd897f3   김태훈   수동 요리 만들기 추가
1
  <?xml version="1.0" encoding="UTF-8"?>
81b835e59   김태훈   한글 폰트 변경
2
  <ui version="4.0">
81b835e59   김태훈   한글 폰트 변경
3
4
5
6
7
8
   <class>ProgrammingSelectionWindow</class>
   <widget class="QMainWindow" name="ProgrammingSelectionWindow">
    <property name="geometry">
     <rect>
      <x>0</x>
      <y>0</y>
054d6e75f   김태훈   ui 파일 일괄 변경
9
10
      <width>1080</width>
      <height>1920</height>
81b835e59   김태훈   한글 폰트 변경
11
12
     </rect>
    </property>
dcfd897f3   김태훈   수동 요리 만들기 추가
13
14
15
16
17
18
19
20
21
22
23
    <property name="styleSheet">
     <string notr="true">#centralwidget { background-image: url(:/images/background/main.png); }
  #bottomBar { background-image: url(:/images/bottom_bar/background.png); }
  
  QWidget { outline: none; }
  
  QPushButton[style=&quot;mode&quot;] {
  background-repeat: no-repeat;
  background-position: center;
  background-clip: border;
  background-origin: border;
054d6e75f   김태훈   ui 파일 일괄 변경
24
  margin-bottom: 60px;
dcfd897f3   김태훈   수동 요리 만들기 추가
25
054d6e75f   김태훈   ui 파일 일괄 변경
26
27
  border-top: 248px;
  border-bottom: -60px;
dcfd897f3   김태훈   수동 요리 만들기 추가
28
29
  border-style: hidden;
  color: white;
054d6e75f   김태훈   ui 파일 일괄 변경
30
  font-size: 48px;
dcfd897f3   김태훈   수동 요리 만들기 추가
31
32
33
34
35
36
37
  }
  
  QPushButton[style=&quot;type&quot;] {
  background-repeat: no-repeat;
  background-position: center;
  background-clip: border;
  background-origin: border;
054d6e75f   김태훈   ui 파일 일괄 변경
38
  border-top: 198px;
dcfd897f3   김태훈   수동 요리 만들기 추가
39
40
  border-style: hidden;
  color: white;
054d6e75f   김태훈   ui 파일 일괄 변경
41
  font-size: 36px;
dcfd897f3   김태훈   수동 요리 만들기 추가
42
43
44
45
46
47
48
  }
  
  QPushButton[style=&quot;function&quot;] {
  background-repeat: no-repeat;
  background-position: center;
  background-clip: border;
  background-origin: border;
054d6e75f   김태훈   ui 파일 일괄 변경
49
  border-top: 247px;
dcfd897f3   김태훈   수동 요리 만들기 추가
50
51
  border-style: hidden;
  color: white;
054d6e75f   김태훈   ui 파일 일괄 변경
52
  font-size: 36px;
dcfd897f3   김태훈   수동 요리 만들기 추가
53
54
55
56
57
58
59
60
61
62
63
  }
  
  QPushButton:disabled { color: #7B7B7B; }</string>
    </property>
    <widget class="QWidget" name="centralwidget">
     <widget class="QPushButton" name="dessertButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
64
65
66
67
        <x>810</x>
        <y>864</y>
        <width>270</width>
        <height>266</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
68
69
70
71
72
73
74
75
76
77
78
79
80
81
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_type/desert.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_type/desert_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_type/desert_hide.png); }</string>
      </property>
      <property name="text">
dc9ba3d4b   김태훈   요리 종류 이름 및 아이콘 변경
82
       <string>조림류</string>
dcfd897f3   김태훈   수동 요리 만들기 추가
83
84
85
86
87
88
89
90
91
92
93
      </property>
      <property name="style" stdset="0">
       <string>type</string>
      </property>
     </widget>
     <widget class="QPushButton" name="fishButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
94
95
96
97
        <x>540</x>
        <y>864</y>
        <width>270</width>
        <height>266</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
98
99
100
101
102
103
104
105
106
107
108
109
110
111
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_type/fish.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_type/fish_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_type/fish_hide.png); }</string>
      </property>
      <property name="text">
dc9ba3d4b   김태훈   요리 종류 이름 및 아이콘 변경
112
       <string>스팀류</string>
dcfd897f3   김태훈   수동 요리 만들기 추가
113
114
115
116
117
118
119
120
      </property>
      <property name="style" stdset="0">
       <string>type</string>
      </property>
     </widget>
     <widget class="Line" name="line_6">
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
121
122
        <x>810</x>
        <y>1191</y>
dcfd897f3   김태훈   수동 요리 만들기 추가
123
        <width>1</width>
054d6e75f   김태훈   ui 파일 일괄 변경
124
        <height>144</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
125
126
127
128
129
130
131
132
133
       </rect>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
      </property>
     </widget>
     <widget class="Line" name="line_4">
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
134
135
        <x>270</x>
        <y>1191</y>
dcfd897f3   김태훈   수동 요리 만들기 추가
136
        <width>1</width>
054d6e75f   김태훈   ui 파일 일괄 변경
137
        <height>144</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
138
139
140
141
142
143
144
145
146
147
148
149
150
       </rect>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
      </property>
     </widget>
     <widget class="QPushButton" name="multiButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
        <x>0</x>
054d6e75f   김태훈   ui 파일 일괄 변경
151
152
153
        <y>1396</y>
        <width>360</width>
        <height>343</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
154
155
156
157
158
159
160
161
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
51175dd1a   김태훈   엔코더 구현
162
163
164
      <property name="focusPolicy">
       <enum>Qt::NoFocus</enum>
      </property>
dcfd897f3   김태훈   수동 요리 만들기 추가
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/main_button/multi.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/main_button/multi_ov.png); }
  QPushButton:disabled { background-image: url(:/images/main_button/multi_hide.png); }</string>
      </property>
      <property name="text">
       <string>다중요리</string>
      </property>
      <property name="style" stdset="0">
       <string>function</string>
      </property>
     </widget>
     <widget class="QPushButton" name="grainButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
        <x>0</x>
054d6e75f   김태훈   ui 파일 일괄 변경
184
185
186
        <y>1130</y>
        <width>270</width>
        <height>266</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
187
188
189
190
191
192
193
194
195
196
197
198
199
200
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_type/vegetable.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_type/vegetable_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_type/vegetable_hide.png); }</string>
      </property>
      <property name="text">
dc9ba3d4b   김태훈   요리 종류 이름 및 아이콘 변경
201
       <string>초벌</string>
dcfd897f3   김태훈   수동 요리 만들기 추가
202
203
204
205
206
207
208
209
210
211
212
      </property>
      <property name="style" stdset="0">
       <string>type</string>
      </property>
     </widget>
     <widget class="QPushButton" name="meatButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
213
214
215
216
        <x>270</x>
        <y>864</y>
        <width>270</width>
        <height>266</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
217
218
219
220
221
222
223
224
225
226
227
228
229
230
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_type/meat.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_type/meat_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_type/meat_hide.png); }</string>
      </property>
      <property name="text">
dc9ba3d4b   김태훈   요리 종류 이름 및 아이콘 변경
231
       <string>볶음류</string>
dcfd897f3   김태훈   수동 요리 만들기 추가
232
233
234
235
236
237
238
239
240
      </property>
      <property name="style" stdset="0">
       <string>type</string>
      </property>
     </widget>
     <widget class="QWidget" name="bottomBar" native="true">
      <property name="geometry">
       <rect>
        <x>0</x>
054d6e75f   김태훈   ui 파일 일괄 변경
241
242
243
        <y>1740</y>
        <width>1080</width>
        <height>180</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
244
245
246
247
       </rect>
      </property>
      <property name="minimumSize">
       <size>
054d6e75f   김태훈   ui 파일 일괄 변경
248
249
        <width>1080</width>
        <height>180</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
250
251
252
253
       </size>
      </property>
      <property name="maximumSize">
       <size>
054d6e75f   김태훈   ui 파일 일괄 변경
254
255
        <width>1080</width>
        <height>180</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
256
257
258
259
260
       </size>
      </property>
      <widget class="QPushButton" name="configButton">
       <property name="geometry">
        <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
261
262
263
264
         <x>414</x>
         <y>31</y>
         <width>116</width>
         <height>116</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
265
266
267
268
269
270
271
272
273
274
        </rect>
       </property>
       <property name="sizePolicy">
        <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
         <horstretch>0</horstretch>
         <verstretch>0</verstretch>
        </sizepolicy>
       </property>
       <property name="minimumSize">
        <size>
054d6e75f   김태훈   ui 파일 일괄 변경
275
276
         <width>74</width>
         <height>85</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
277
278
279
280
281
282
283
284
285
286
287
288
289
        </size>
       </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 파일 일괄 변경
290
291
292
293
         <x>549</x>
         <y>31</y>
         <width>116</width>
         <height>116</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
294
295
296
297
298
299
300
301
302
303
        </rect>
       </property>
       <property name="sizePolicy">
        <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
         <horstretch>0</horstretch>
         <verstretch>0</verstretch>
        </sizepolicy>
       </property>
       <property name="minimumSize">
        <size>
054d6e75f   김태훈   ui 파일 일괄 변경
304
305
         <width>74</width>
         <height>85</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
306
307
308
309
310
311
312
313
314
315
        </size>
       </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>
382b586e9   김태훈   프로그래밍 모드 임시 구현
316
317
318
      <widget class="QPushButton" name="backButton">
       <property name="geometry">
        <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
319
320
321
322
         <x>278</x>
         <y>31</y>
         <width>116</width>
         <height>116</height>
382b586e9   김태훈   프로그래밍 모드 임시 구현
323
324
325
326
        </rect>
       </property>
       <property name="styleSheet">
        <string notr="true">QPushButton { border-image: url(:/images/bottom_bar/back.png); }
f2921ceb9   김태훈   엔코더 구현 대비 선행 수정
327
  QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/back_ov.png); }</string>
382b586e9   김태훈   프로그래밍 모드 임시 구현
328
329
330
331
332
333
334
335
       </property>
       <property name="text">
        <string/>
       </property>
      </widget>
      <widget class="QPushButton" name="okButton">
       <property name="geometry">
        <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
336
337
338
339
         <x>685</x>
         <y>31</y>
         <width>116</width>
         <height>116</height>
382b586e9   김태훈   프로그래밍 모드 임시 구현
340
341
342
343
        </rect>
       </property>
       <property name="styleSheet">
        <string notr="true">QPushButton { border-image: url(:/images/bottom_bar/006_sys_icon_16.png); }
f2921ceb9   김태훈   엔코더 구현 대비 선행 수정
344
  QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/006_sys_icon_16_ov.png); }</string>
382b586e9   김태훈   프로그래밍 모드 임시 구현
345
346
347
348
349
       </property>
       <property name="text">
        <string/>
       </property>
      </widget>
dcfd897f3   김태훈   수동 요리 만들기 추가
350
351
352
353
     </widget>
     <widget class="Line" name="line_3">
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
354
355
        <x>810</x>
        <y>925</y>
dcfd897f3   김태훈   수동 요리 만들기 추가
356
        <width>1</width>
054d6e75f   김태훈   ui 파일 일괄 변경
357
        <height>144</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
358
359
360
361
362
363
364
365
366
367
368
369
       </rect>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
      </property>
     </widget>
     <widget class="QPushButton" name="dryheatButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
370
371
372
373
        <x>720</x>
        <y>511</y>
        <width>360</width>
        <height>351</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
       </rect>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_dryheat.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_mode/big_dryheat_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_mode/big_dryheat_hide.png); }</string>
      </property>
      <property name="text">
       <string>건열</string>
      </property>
      <property name="style" stdset="0">
       <string>mode</string>
      </property>
     </widget>
     <widget class="QPushButton" name="etcButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
394
395
396
397
        <x>540</x>
        <y>1130</y>
        <width>270</width>
        <height>266</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_type/etc.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_type/etc_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_type/etc_hide.png); }</string>
      </property>
      <property name="text">
       <string>기타요리</string>
      </property>
      <property name="style" stdset="0">
       <string>type</string>
      </property>
     </widget>
     <widget class="Line" name="line_7">
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
421
422
423
        <x>21</x>
        <y>1130</y>
        <width>1035</width>
dcfd897f3   김태훈   수동 요리 만들기 추가
424
425
426
427
428
429
430
431
432
433
434
435
436
        <height>1</height>
       </rect>
      </property>
      <property name="orientation">
       <enum>Qt::Horizontal</enum>
      </property>
     </widget>
     <widget class="QPushButton" name="washButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
437
438
439
440
        <x>720</x>
        <y>1396</y>
        <width>360</width>
        <height>343</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
441
442
443
444
445
446
447
448
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
51175dd1a   김태훈   엔코더 구현
449
450
451
      <property name="focusPolicy">
       <enum>Qt::NoFocus</enum>
      </property>
dcfd897f3   김태훈   수동 요리 만들기 추가
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/main_button/wash.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/main_button/wash_ov.png); }
  QPushButton:disabled { background-image: url(:/images/main_button/wash_hide.png); }</string>
      </property>
      <property name="text">
       <string>세척모드</string>
      </property>
      <property name="style" stdset="0">
       <string>function</string>
      </property>
     </widget>
     <widget class="QPushButton" name="programmingButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
470
471
472
473
        <x>360</x>
        <y>1396</y>
        <width>360</width>
        <height>343</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
474
475
476
477
478
479
480
481
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
51175dd1a   김태훈   엔코더 구현
482
483
484
      <property name="focusPolicy">
       <enum>Qt::NoFocus</enum>
      </property>
dcfd897f3   김태훈   수동 요리 만들기 추가
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/main_button/custom.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/main_button/custom_ov.png); }
  QPushButton:disabled { background-image: url(:/images/main_button/custom_hide.png); }</string>
      </property>
      <property name="text">
       <string>프로그래밍모드</string>
      </property>
      <property name="style" stdset="0">
       <string>function</string>
      </property>
     </widget>
     <widget class="QPushButton" name="steamButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
        <x>0</x>
054d6e75f   김태훈   ui 파일 일괄 변경
504
505
506
        <y>511</y>
        <width>360</width>
        <height>351</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
       </rect>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_steam.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_mode/big_steam_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_mode/big_steam_hide.png); }</string>
      </property>
      <property name="text">
       <string>스팀</string>
      </property>
      <property name="style" stdset="0">
       <string>mode</string>
      </property>
     </widget>
     <widget class="Line" name="line">
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
524
525
        <x>270</x>
        <y>925</y>
dcfd897f3   김태훈   수동 요리 만들기 추가
526
        <width>1</width>
054d6e75f   김태훈   ui 파일 일괄 변경
527
        <height>144</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
528
529
530
531
532
533
534
535
536
       </rect>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
      </property>
     </widget>
     <widget class="Line" name="line_5">
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
537
538
        <x>540</x>
        <y>1191</y>
dcfd897f3   김태훈   수동 요리 만들기 추가
539
        <width>1</width>
054d6e75f   김태훈   ui 파일 일괄 변경
540
        <height>144</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
541
542
543
544
545
546
547
548
549
       </rect>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
      </property>
     </widget>
     <widget class="Line" name="line_2">
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
550
551
        <x>540</x>
        <y>925</y>
dcfd897f3   김태훈   수동 요리 만들기 추가
552
        <width>1</width>
054d6e75f   김태훈   ui 파일 일괄 변경
553
        <height>144</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
554
555
556
557
558
559
560
561
562
563
564
565
566
       </rect>
      </property>
      <property name="orientation">
       <enum>Qt::Vertical</enum>
      </property>
     </widget>
     <widget class="QPushButton" name="poultryButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
        <x>0</x>
054d6e75f   김태훈   ui 파일 일괄 변경
567
568
569
        <y>864</y>
        <width>270</width>
        <height>266</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
570
571
572
573
574
575
576
577
578
579
580
581
582
583
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_type/poultry.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_type/poultry_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_type/poultry_hide.png); }</string>
      </property>
      <property name="text">
dc9ba3d4b   김태훈   요리 종류 이름 및 아이콘 변경
584
       <string>구이류</string>
dcfd897f3   김태훈   수동 요리 만들기 추가
585
586
587
588
589
590
591
592
593
594
595
      </property>
      <property name="style" stdset="0">
       <string>type</string>
      </property>
     </widget>
     <widget class="QPushButton" name="combiButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
596
597
598
599
        <x>360</x>
        <y>511</y>
        <width>360</width>
        <height>351</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
       </rect>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_combi.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_mode/big_combi_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_mode/big_combi_hide.png); }</string>
      </property>
      <property name="text">
       <string>콤비</string>
      </property>
      <property name="style" stdset="0">
       <string>mode</string>
      </property>
     </widget>
     <widget class="QPushButton" name="primeButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
620
621
622
623
        <x>810</x>
        <y>1130</y>
        <width>270</width>
        <height>266</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_type/additional.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_type/additional_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_type/additional_hide.png); }</string>
      </property>
      <property name="text">
       <string>부가기능</string>
      </property>
      <property name="style" stdset="0">
       <string>type</string>
      </property>
     </widget>
dcfd897f3   김태훈   수동 요리 만들기 추가
644
645
646
647
648
649
     <widget class="QPushButton" name="breadButton">
      <property name="enabled">
       <bool>false</bool>
      </property>
      <property name="geometry">
       <rect>
054d6e75f   김태훈   ui 파일 일괄 변경
650
651
652
653
        <x>270</x>
        <y>1130</y>
        <width>270</width>
        <height>266</height>
dcfd897f3   김태훈   수동 요리 만들기 추가
654
655
656
657
658
659
660
661
662
663
664
665
666
667
       </rect>
      </property>
      <property name="sizePolicy">
       <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
        <horstretch>0</horstretch>
        <verstretch>0</verstretch>
       </sizepolicy>
      </property>
      <property name="styleSheet">
       <string notr="true">QPushButton { background-image: url(:/images/cook_type/bread.png); }
  QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_type/bread_ov.png); }
  QPushButton:disabled { background-image: url(:/images/cook_type/bread_hide.png); }</string>
      </property>
      <property name="text">
dc9ba3d4b   김태훈   요리 종류 이름 및 아이콘 변경
668
       <string>보온</string>
dcfd897f3   김태훈   수동 요리 만들기 추가
669
670
671
672
673
      </property>
      <property name="style" stdset="0">
       <string>type</string>
      </property>
     </widget>
2f6b55128   김태훈   다중 요리 구현
674
675
676
677
678
     <widget class="QStackedWidget" name="upperStack">
      <property name="geometry">
       <rect>
        <x>0</x>
        <y>0</y>
054d6e75f   김태훈   ui 파일 일괄 변경
679
680
        <width>1080</width>
        <height>511</height>
2f6b55128   김태훈   다중 요리 구현
681
682
683
684
685
       </rect>
      </property>
      <property name="currentIndex">
       <number>0</number>
      </property>
c41b8944d   김태훈   리팩토링 - 시계 영역 내용을 ...
686
      <widget class="StatusArea" name="clockContainer">
2f6b55128   김태훈   다중 요리 구현
687
688
689
       <property name="styleSheet">
        <string notr="true">#clockContainer { background-image: url(:/images/clock/background.png); }</string>
       </property>
2f6b55128   김태훈   다중 요리 구현
690
691
692
      </widget>
      <widget class="QWidget" name="page_2"/>
     </widget>
dcfd897f3   김태훈   수동 요리 만들기 추가
693
    </widget>
81b835e59   김태훈   한글 폰트 변경
694
   </widget>
dcfd897f3   김태훈   수동 요리 만들기 추가
695
696
   <customwidgets>
    <customwidget>
c41b8944d   김태훈   리팩토링 - 시계 영역 내용을 ...
697
     <class>StatusArea</class>
dcfd897f3   김태훈   수동 요리 만들기 추가
698
     <extends>QWidget</extends>
c41b8944d   김태훈   리팩토링 - 시계 영역 내용을 ...
699
     <header>statusarea.h</header>
dcfd897f3   김태훈   수동 요리 만들기 추가
700
701
     <container>1</container>
    </customwidget>
dcfd897f3   김태훈   수동 요리 만들기 추가
702
703
704
705
706
707
708
709
710
711
712
713
714
   </customwidgets>
   <tabstops>
    <tabstop>steamButton</tabstop>
    <tabstop>combiButton</tabstop>
    <tabstop>dryheatButton</tabstop>
    <tabstop>poultryButton</tabstop>
    <tabstop>meatButton</tabstop>
    <tabstop>fishButton</tabstop>
    <tabstop>dessertButton</tabstop>
    <tabstop>grainButton</tabstop>
    <tabstop>breadButton</tabstop>
    <tabstop>etcButton</tabstop>
    <tabstop>primeButton</tabstop>
51175dd1a   김태훈   엔코더 구현
715
    <tabstop>backButton</tabstop>
dcfd897f3   김태훈   수동 요리 만들기 추가
716
717
    <tabstop>configButton</tabstop>
    <tabstop>helpButton</tabstop>
51175dd1a   김태훈   엔코더 구현
718
719
720
721
    <tabstop>okButton</tabstop>
    <tabstop>washButton</tabstop>
    <tabstop>multiButton</tabstop>
    <tabstop>programmingButton</tabstop>
dcfd897f3   김태훈   수동 요리 만들기 추가
722
723
   </tabstops>
   <resources/>
81b835e59   김태훈   한글 폰트 변경
724
725
   <connections/>
  </ui>