dcfd897f3
김태훈
수동 요리 만들기 추가
|
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
81b835e59
김태훈
한글 폰트 변경
|
2
|
<ui version="4.0">
|
81b835e59
김태훈
한글 폰트 변경
|
3
4
5
6
7
8
|
<class>ProgrammingManualWindow</class>
<widget class="QMainWindow" name="ProgrammingManualWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
9
10
|
<width>900</width>
<height>1600</height>
|
81b835e59
김태훈
한글 폰트 변경
|
11
12
|
</rect>
</property>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
<property name="styleSheet">
<string notr="true">#bottomBar { background-image: url(:/images/bottom_bar/background.png); }
#centralwidget { background-image: url(:/images/background/manual.png); }
QPushButton {
background-repeat: no-repeat;
background-position: center;
border: none;
}
QPushButton[style="mode"] {
background-clip: border;
background-origin: border;
margin-bottom: 50px;
border-top: 200px;
border-bottom: -50px;
border-style: hidden;
color: #7B7B7B;
font-size: 40px;
}
QPushButton[style="mode"]:checked {
color: white;
image: url(:/images/cook_mode/indicator.png);
image-position: bottom;
}
QPushButton[style="icon"] {
background-image: url(:/images/slider_icon/background.png);
}
QSlider::groove {
background-image: url(:/images/slider/groove_ticks.png);
background-repeat: no-repeat;
}
QSlider::sub-page {
background-repeat: no-repeat;
margin: 5px;
}
QSlider::handle {
background-image: url(:/images/slider/handle_big.png);
background-repeat: no-repeat;
width: 23px;
height: 33px;
}</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QLabel" name="humidityLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>690</x>
<y>810</y>
<width>150</width>
<height>51</height>
</rect>
</property>
<property name="palette">
<palette>
<active>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>123</red>
<green>123</green>
<blue>123</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="font">
<font>
<family>Roboto</family>
<pointsize>16</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>0%</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</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_6">
<property name="geometry">
<rect>
<x>800</x>
<y>320</y>
<width>80</width>
<height>84</height>
</rect>
</property>
</widget>
|
b7ee6dc30
김태훈
시연 모드 아이콘, 하프 에너지...
|
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
<widget class="DemoIcon" name="label_2">
<property name="geometry">
<rect>
<x>780</x>
<y>230</y>
<width>101</width>
<height>90</height>
</rect>
</property>
</widget>
<widget class="HalfEnergyIcon" name="label_3">
<property name="geometry">
<rect>
<x>780</x>
<y>160</y>
<width>108</width>
<height>67</height>
</rect>
</property>
</widget>
|
d61c94341
김태훈
디지털 시계 추가
|
180
181
182
183
184
|
<widget class="DigitalClock" name="label_4">
<property name="geometry">
<rect>
<x>20</x>
<y>310</y>
|
b3e287145
김태훈
디지털 시계 길이 조절
|
185
|
<width>600</width>
|
d61c94341
김태훈
디지털 시계 추가
|
186
187
188
189
190
191
192
|
<height>100</height>
</rect>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
</widget>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
</widget>
<widget class="QWidget" name="closeDoorWidget">
<property name="styleSheet">
<string notr="true">#closeDoorWidget { background-image: url(:/images/clock/background.png); }</string>
</property>
<widget class="AnimatedImageBox" name="openDoorAnimation">
<property name="geometry">
<rect>
<x>366</x>
<y>20</y>
<width>251</width>
<height>292</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label_5">
<property name="geometry">
<rect>
<x>430</x>
<y>170</y>
<width>85</width>
<height>24</height>
</rect>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/animation/close_door_arrow.png</pixmap>
</property>
</widget>
</widget>
</widget>
<widget class="QPushButton" name="dryheatButton">
<property name="geometry">
<rect>
<x>600</x>
<y>426</y>
<width>300</width>
<height>293</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_dryheat_hide.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
234
|
QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_mode/big_dryheat_ov.png); }
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
235
236
237
238
239
240
241
242
|
QPushButton:checked { background-image: url(:/images/cook_mode/big_dryheat.png); }</string>
</property>
<property name="text">
<string>건열</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
|
<property name="style" stdset="0">
<string notr="true">mode</string>
</property>
</widget>
<widget class="QPushButton" name="timeButton">
<property name="geometry">
<rect>
<x>27</x>
<y>1025</y>
<width>140</width>
<height>140</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { image: url(:/images/slider_icon/time.png); }
|
27843914b
김태훈
중심 온도 설정에 엔코더 관련 ...
|
258
259
260
261
262
263
|
QPushButton:pressed,
QPushButton:focus { image: url(:/images/slider_icon/011_icon_03_active.png); }
QPushButton:checked { image: url(:/images/slider_icon/time_ov.png); }</string>
</property>
<property name="checkable">
<bool>true</bool>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
|
</property>
<property name="style" stdset="0">
<string notr="true">icon</string>
</property>
</widget>
<widget class="QLabel" name="steamLabel_3">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>780</x>
<y>740</y>
<width>91</width>
<height>51</height>
</rect>
</property>
<property name="palette">
<palette>
<active>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>123</red>
<green>123</green>
<blue>123</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="font">
<font>
<family>Malgun Gothic</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="text">
<string>증가</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
|
<widget class="QLabel" name="interTempLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>690</x>
<y>1260</y>
<width>150</width>
<height>50</height>
</rect>
</property>
<property name="palette">
<palette>
<active>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>123</red>
<green>123</green>
<blue>123</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="font">
<font>
<family>Roboto</family>
<pointsize>16</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string><span style="font-size:11pt;">℃</span></string>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignRight|Qt::AlignTrailing</set>
</property>
</widget>
<widget class="QLabel" name="steamLabel_5">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>780</x>
<y>890</y>
<width>91</width>
<height>51</height>
</rect>
</property>
<property name="palette">
<palette>
<active>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>123</red>
<green>123</green>
<blue>123</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="font">
<font>
<family>Malgun Gothic</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="text">
<string>증가</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="steamLabel_4">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>160</x>
<y>890</y>
<width>91</width>
<height>51</height>
</rect>
</property>
<property name="palette">
<palette>
<active>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>123</red>
<green>123</green>
<blue>123</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="font">
<font>
<family>Malgun Gothic</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="text">
<string>감소</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</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>232</x>
<y>26</y>
<width>97</width>
<height>97</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/back.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
539
|
QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/back_ov.png); }</string>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
|
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="configButton">
<property name="geometry">
<rect>
<x>345</x>
<y>26</y>
<width>97</width>
<height>97</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/config.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
556
|
QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/config_ov.png); }</string>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
|
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="okButton">
<property name="geometry">
<rect>
<x>571</x>
<y>26</y>
<width>97</width>
<height>97</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/006_sys_icon_16.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
573
|
QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/006_sys_icon_16_ov.png); }</string>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
|
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="helpButton">
<property name="geometry">
<rect>
<x>458</x>
<y>26</y>
<width>97</width>
<height>97</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/help.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
590
|
QPushButton:pressed, QPushButton:focus { border-image: url(:/images/bottom_bar/help_ov.png); }</string>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
|
</property>
<property name="text">
<string/>
</property>
</widget>
</widget>
<widget class="QPushButton" name="tempButton">
<property name="geometry">
<rect>
<x>27</x>
<y>875</y>
<width>140</width>
<height>140</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { image: url(:/images/slider_icon/temp.png); }
|
27843914b
김태훈
중심 온도 설정에 엔코더 관련 ...
|
608
609
610
611
612
613
|
QPushButton:pressed,
QPushButton:focus { image: url(:/images/slider_icon/011_icon_02_active.png); }
QPushButton:checked { image: url(:/images/slider_icon/temp_ov.png); }</string>
</property>
<property name="checkable">
<bool>true</bool>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
614
615
616
617
618
|
</property>
<property name="style" stdset="0">
<string notr="true">icon</string>
</property>
</widget>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
619
620
621
622
623
624
625
626
627
628
629
|
<widget class="QPushButton" name="steamButton">
<property name="geometry">
<rect>
<x>0</x>
<y>426</y>
<width>300</width>
<height>293</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_steam_hide.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
630
|
QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_mode/big_steam_ov.png); }
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
631
632
633
634
635
636
637
638
|
QPushButton:checked { background-image: url(:/images/cook_mode/big_steam.png); }</string>
</property>
<property name="text">
<string>스팀</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
|
<property name="style" stdset="0">
<string notr="true">mode</string>
</property>
</widget>
<widget class="QLabel" name="tempLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>690</x>
<y>960</y>
<width>150</width>
<height>51</height>
</rect>
</property>
<property name="palette">
<palette>
<active>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>123</red>
<green>123</green>
<blue>123</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="font">
<font>
<family>Roboto</family>
<pointsize>16</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>30<span style="font-size:11pt;">℃</span></string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QLabel" name="steamLabel_2">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>160</x>
<y>740</y>
<width>91</width>
<height>51</height>
</rect>
</property>
<property name="palette">
<palette>
<active>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>123</red>
<green>123</green>
<blue>123</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="font">
<font>
<family>Malgun Gothic</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="text">
<string>감소</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
769
770
771
772
773
774
775
776
777
778
779
|
<widget class="QPushButton" name="humidityButton">
<property name="geometry">
<rect>
<x>27</x>
<y>725</y>
<width>140</width>
<height>140</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { image: url(:/images/slider_icon/humidity.png); }
|
27843914b
김태훈
중심 온도 설정에 엔코더 관련 ...
|
780
781
782
783
784
785
|
QPushButton:pressed,
QPushButton:focus { image: url(:/images/slider_icon/011_icon_01_active.png); }
QPushButton:checked { image: url(:/images/slider_icon/humidity_ov.png); }</string>
</property>
<property name="checkable">
<bool>true</bool>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
|
</property>
<property name="style" stdset="0">
<string notr="true">icon</string>
</property>
</widget>
<widget class="QPushButton" name="interTempButton">
<property name="geometry">
<rect>
<x>27</x>
<y>1175</y>
<width>140</width>
<height>140</height>
</rect>
</property>
<property name="styleSheet">
|
27843914b
김태훈
중심 온도 설정에 엔코더 관련 ...
|
801
802
803
804
805
806
807
|
<string notr="true">QPushButton
{ image: url(:/images/slider_icon/core_temp.png); }
QPushButton:pressed,
QPushButton:focus
{ image: url(:/images/slider_icon/011_icon_04_active.png); }
QPushButton:checked
{ image: url(:/images/slider_icon/core_temp_ov.png); }</string>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
808
|
</property>
|
51175dd1a
김태훈
엔코더 구현
|
809
810
811
|
<property name="checkable">
<bool>true</bool>
</property>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
|
<property name="style" stdset="0">
<string notr="true">icon</string>
</property>
</widget>
<widget class="QPushButton" name="combiButton">
<property name="geometry">
<rect>
<x>300</x>
<y>426</y>
<width>300</width>
<height>293</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_combi_hide.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
827
|
QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_mode/big_combi_ov.png); }
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
828
829
830
831
832
833
834
835
|
QPushButton:checked { background-image: url(:/images/cook_mode/big_combi.png); }</string>
</property>
<property name="text">
<string>콤비</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
|
<property name="style" stdset="0">
<string notr="true">mode</string>
</property>
</widget>
<widget class="QLabel" name="timeLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>539</x>
<y>1110</y>
<width>301</width>
<height>51</height>
</rect>
</property>
<property name="palette">
<palette>
<active>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>255</red>
<green>255</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="WindowText">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>123</red>
<green>123</green>
<blue>123</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="font">
<font>
<family>Roboto</family>
<pointsize>16</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>0<span style="font-size:11pt;">초</span></string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QPushButton" name="fanButton">
<property name="geometry">
<rect>
<x>449</x>
<y>1319</y>
<width>112</width>
<height>131</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/manual_button/fan_4.png); }</string>
</property>
</widget>
|
935b853a4
김태훈
새 슬라이더 적용
|
917
918
919
920
|
<widget class="Slider" name="tempSlider" native="true">
<property name="geometry">
<rect>
<x>185</x>
|
51175dd1a
김태훈
엔코더 구현
|
921
|
<y>915</y>
|
935b853a4
김태훈
새 슬라이더 적용
|
922
|
<width>666</width>
|
51175dd1a
김태훈
엔코더 구현
|
923
|
<height>60</height>
|
935b853a4
김태훈
새 슬라이더 적용
|
924
925
|
</rect>
</property>
|
51175dd1a
김태훈
엔코더 구현
|
926
927
928
|
<property name="focusPolicy">
<enum>Qt::ClickFocus</enum>
</property>
|
935b853a4
김태훈
새 슬라이더 적용
|
929
930
931
932
933
|
</widget>
<widget class="Slider" name="interTempSlider" native="true">
<property name="geometry">
<rect>
<x>185</x>
|
51175dd1a
김태훈
엔코더 구현
|
934
|
<y>1215</y>
|
935b853a4
김태훈
새 슬라이더 적용
|
935
|
<width>666</width>
|
51175dd1a
김태훈
엔코더 구현
|
936
|
<height>60</height>
|
935b853a4
김태훈
새 슬라이더 적용
|
937
938
|
</rect>
</property>
|
51175dd1a
김태훈
엔코더 구현
|
939
940
941
|
<property name="focusPolicy">
<enum>Qt::ClickFocus</enum>
</property>
|
935b853a4
김태훈
새 슬라이더 적용
|
942
943
944
945
946
|
</widget>
<widget class="Slider" name="timeSlider" native="true">
<property name="geometry">
<rect>
<x>185</x>
|
51175dd1a
김태훈
엔코더 구현
|
947
|
<y>1065</y>
|
935b853a4
김태훈
새 슬라이더 적용
|
948
|
<width>666</width>
|
51175dd1a
김태훈
엔코더 구현
|
949
|
<height>60</height>
|
935b853a4
김태훈
새 슬라이더 적용
|
950
951
|
</rect>
</property>
|
51175dd1a
김태훈
엔코더 구현
|
952
953
954
|
<property name="focusPolicy">
<enum>Qt::ClickFocus</enum>
</property>
|
935b853a4
김태훈
새 슬라이더 적용
|
955
956
957
958
959
|
</widget>
<widget class="Slider" name="humiditySlider" native="true">
<property name="geometry">
<rect>
<x>185</x>
|
51175dd1a
김태훈
엔코더 구현
|
960
|
<y>765</y>
|
935b853a4
김태훈
새 슬라이더 적용
|
961
|
<width>666</width>
|
51175dd1a
김태훈
엔코더 구현
|
962
|
<height>60</height>
|
935b853a4
김태훈
새 슬라이더 적용
|
963
964
|
</rect>
</property>
|
51175dd1a
김태훈
엔코더 구현
|
965
966
967
|
<property name="focusPolicy">
<enum>Qt::ClickFocus</enum>
</property>
|
935b853a4
김태훈
새 슬라이더 적용
|
968
|
</widget>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
969
|
</widget>
|
81b835e59
김태훈
한글 폰트 변경
|
970
|
</widget>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
971
972
973
974
975
976
977
978
979
980
981
982
983
|
<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>
|
b7ee6dc30
김태훈
시연 모드 아이콘, 하프 에너지...
|
984
|
<class>DemoIcon</class>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
985
|
<extends>QLabel</extends>
|
b7ee6dc30
김태훈
시연 모드 아이콘, 하프 에너지...
|
986
987
988
989
990
991
|
<header>demoicon.h</header>
</customwidget>
<customwidget>
<class>HalfEnergyIcon</class>
<extends>QLabel</extends>
<header>halfenergyicon.h</header>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
992
|
</customwidget>
|
935b853a4
김태훈
새 슬라이더 적용
|
993
|
<customwidget>
|
d61c94341
김태훈
디지털 시계 추가
|
994
995
996
997
998
999
1000
1001
1002
1003
|
<class>AnimatedImageBox</class>
<extends>QLabel</extends>
<header>animatedimagebox.h</header>
</customwidget>
<customwidget>
<class>DigitalClock</class>
<extends>QLabel</extends>
<header>digitalclock.h</header>
</customwidget>
<customwidget>
|
935b853a4
김태훈
새 슬라이더 적용
|
1004
1005
1006
1007
1008
|
<class>Slider</class>
<extends>QWidget</extends>
<header>slider.h</header>
<container>1</container>
</customwidget>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
1009
|
</customwidgets>
|
51175dd1a
김태훈
엔코더 구현
|
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
|
<tabstops>
<tabstop>steamButton</tabstop>
<tabstop>combiButton</tabstop>
<tabstop>dryheatButton</tabstop>
<tabstop>humidityButton</tabstop>
<tabstop>tempButton</tabstop>
<tabstop>timeButton</tabstop>
<tabstop>interTempButton</tabstop>
<tabstop>fanButton</tabstop>
<tabstop>backButton</tabstop>
<tabstop>configButton</tabstop>
<tabstop>helpButton</tabstop>
<tabstop>okButton</tabstop>
</tabstops>
|
dcfd897f3
김태훈
수동 요리 만들기 추가
|
1024
1025
1026
|
<resources>
<include location="resources.qrc"/>
</resources>
|
81b835e59
김태훈
한글 폰트 변경
|
1027
1028
|
<connections/>
</ui>
|