f588aa273
김태훈
부가 기능 로직 추가
|
1
2
3
4
5
6
7
8
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ManualCookSettingWidget</class>
<widget class="QWidget" name="ManualCookSettingWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
9
10
|
<width>1080</width>
<height>1228</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
11
12
|
</rect>
</property>
|
f588aa273
김태훈
부가 기능 로직 추가
|
13
14
15
|
<property name="styleSheet">
<string notr="true">#background {
background-image: url(:/images/background/manual.png);
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
16
17
|
margin-top: -511px;
border-top: 511px;
|
f588aa273
김태훈
부가 기능 로직 추가
|
18
19
20
21
22
23
24
25
26
27
28
29
30
|
}
QPushButton {
background-repeat: no-repeat;
background-position: center;
border: none;
}
QPushButton[style="mode"] {
background-repeat: no-repeat;
background-position: center;
background-clip: border;
background-origin: border;
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
31
|
margin-bottom: 60px;
|
f588aa273
김태훈
부가 기능 로직 추가
|
32
|
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
33
34
|
border-top: 248px;
border-bottom: -60px;
|
f588aa273
김태훈
부가 기능 로직 추가
|
35
36
|
border-style: hidden;
color: #7B7B7B;
|
aac0f73ee
김태훈
버전 2.1.4
|
37
|
font-size: 48px;
|
f588aa273
김태훈
부가 기능 로직 추가
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
}
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);
background-repeat: no-repeat;
background-position: center;
border: none;
}
QPushButton[style="interTemp"] {
background-repeat: no-repeat;
background-position: center;
background-clip: border;
background-origin: border;
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
58
|
border-top: 156px;
|
f588aa273
김태훈
부가 기능 로직 추가
|
59
60
|
border-style: hidden;
color: white;
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
61
|
font-size: 36px;
|
f588aa273
김태훈
부가 기능 로직 추가
|
62
63
64
65
66
67
68
69
70
|
}
QSlider::groove {
background-image: url(:/images/slider/groove_ticks.png);
background-repeat: no-repeat;
}
QSlider::sub-page {
background-repeat: no-repeat;
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
71
|
margin: 6px;
|
f588aa273
김태훈
부가 기능 로직 추가
|
72
73
74
75
76
|
}
QSlider::handle {
background-image: url(:/images/slider/handle_big.png);
background-repeat: no-repeat;
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
77
78
|
width: 27px;
height: 39px;
|
f588aa273
김태훈
부가 기능 로직 추가
|
79
80
81
82
83
|
}</string>
</property>
<widget class="QPushButton" name="dryheatButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
84
|
<x>720</x>
|
f588aa273
김태훈
부가 기능 로직 추가
|
85
|
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
86
87
|
<width>360</width>
<height>351</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
88
89
90
91
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_dryheat_hide.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
92
|
QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_mode/big_dryheat_ov.png); }
|
f588aa273
김태훈
부가 기능 로직 추가
|
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
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>
<property name="autoExclusive">
<bool>true</bool>
</property>
<property name="style" stdset="0">
<string notr="true">mode</string>
</property>
</widget>
<widget class="QPushButton" name="steamButton">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
113
114
|
<width>360</width>
<height>351</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
115
116
117
118
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_steam_hide.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
119
|
QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_mode/big_steam_ov.png); }
|
f588aa273
김태훈
부가 기능 로직 추가
|
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
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>
<property name="checked">
<bool>true</bool>
</property>
<property name="autoExclusive">
<bool>true</bool>
</property>
<property name="style" stdset="0">
<string notr="true">mode</string>
</property>
</widget>
<widget class="QPushButton" name="combiButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
141
|
<x>360</x>
|
f588aa273
김태훈
부가 기능 로직 추가
|
142
|
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
143
144
|
<width>360</width>
<height>351</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
145
146
147
148
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_combi_hide.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
149
|
QPushButton:pressed, QPushButton:focus { background-image: url(:/images/cook_mode/big_combi_ov.png); }
|
f588aa273
김태훈
부가 기능 로직 추가
|
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
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>
<property name="autoExclusive">
<bool>true</bool>
</property>
<property name="style" stdset="0">
<string notr="true">mode</string>
</property>
</widget>
<widget class="QLabel" name="humidityLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
171
172
173
174
|
<x>828</x>
<y>460</y>
<width>180</width>
<height>61</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
</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>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
217
|
<pointsize>19</pointsize>
|
f588aa273
김태훈
부가 기능 로직 추가
|
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>100%</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QSlider" name="humiditySlider">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
232
233
234
235
|
<x>222</x>
<y>428</y>
<width>799</width>
<height>39</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QSlider::sub-page { background-image: url(:/images/slider/humidity.png); }</string>
</property>
<property name="maximum">
<number>100</number>
</property>
<property name="tracking">
<bool>false</bool>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
<widget class="QLabel" name="steamLabel_2">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
257
258
259
260
|
<x>192</x>
<y>376</y>
<width>109</width>
<height>61</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
261
262
263
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
|
</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>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
303
|
<pointsize>10</pointsize>
|
f588aa273
김태훈
부가 기능 로직 추가
|
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
|
</font>
</property>
<property name="text">
<string>감소</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QSlider" name="coreTempSlider">
<property name="enabled">
<bool>false</bool>
</property>
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
319
320
321
322
|
<x>222</x>
<y>968</y>
<width>799</width>
<height>39</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QSlider::sub-page { background-image: url(:/images/slider/core.png); }
QSlider::sub-page:disabled { background: #00000000; }
QSlider::handle:disabled { background: #00000000; }</string>
</property>
<property name="minimum">
<number>30</number>
</property>
<property name="maximum">
<number>99</number>
</property>
<property name="value">
<number>30</number>
</property>
<property name="tracking">
<bool>false</bool>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
<widget class="QPushButton" name="timeButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
349
350
351
352
|
<x>32</x>
<y>718</y>
<width>168</width>
<height>168</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
353
354
355
356
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { image: url(:/images/slider_icon/time.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
357
|
QPushButton:pressed, QPushButton:focus { image: url(:/images/slider_icon/time_ov.png); }</string>
|
f588aa273
김태훈
부가 기능 로직 추가
|
358
359
360
361
362
363
364
365
366
367
368
|
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="style" stdset="0">
<string notr="true">icon</string>
</property>
</widget>
<widget class="QPushButton" name="humidityButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
369
370
371
372
|
<x>32</x>
<y>358</y>
<width>168</width>
<height>168</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
373
374
375
376
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { image: url(:/images/slider_icon/humidity.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
377
|
QPushButton:pressed, QPushButton:focus { image: url(:/images/slider_icon/humidity_ov.png); }</string>
|
f588aa273
김태훈
부가 기능 로직 추가
|
378
379
380
381
382
383
384
385
386
387
388
|
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="style" stdset="0">
<string notr="true">icon</string>
</property>
</widget>
<widget class="QSlider" name="tempSlider">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
389
390
391
392
|
<x>222</x>
<y>608</y>
<width>799</width>
<height>39</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QSlider::sub-page { background-image: url(:/images/slider/temp.png); }</string>
</property>
<property name="minimum">
<number>30</number>
</property>
<property name="maximum">
<number>130</number>
</property>
<property name="tracking">
<bool>false</bool>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
<widget class="QLabel" name="tempLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
417
418
419
420
|
<x>828</x>
<y>640</y>
<width>180</width>
<height>61</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
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
|
</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>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
463
|
<pointsize>19</pointsize>
|
f588aa273
김태훈
부가 기능 로직 추가
|
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
|
<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_4">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
481
482
483
484
|
<x>192</x>
<y>556</y>
<width>109</width>
<height>61</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
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
|
</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>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
527
|
<pointsize>10</pointsize>
|
f588aa273
김태훈
부가 기능 로직 추가
|
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
|
</font>
</property>
<property name="text">
<string>감소</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="coreTempLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
543
544
545
546
|
<x>828</x>
<y>1000</y>
<width>180</width>
<height>60</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
|
</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>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
589
|
<pointsize>19</pointsize>
|
f588aa273
김태훈
부가 기능 로직 추가
|
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
|
<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::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
<widget class="QLabel" name="steamLabel_5">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
607
608
609
610
|
<x>936</x>
<y>556</y>
<width>109</width>
<height>61</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
|
</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>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
653
|
<pointsize>10</pointsize>
|
f588aa273
김태훈
부가 기능 로직 추가
|
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
|
</font>
</property>
<property name="text">
<string>증가</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QPushButton" name="coreTempButton">
<property name="enabled">
<bool>false</bool>
</property>
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
669
670
671
672
|
<x>32</x>
<y>898</y>
<width>168</width>
<height>168</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
673
674
675
676
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton:disabled { image: url(:/images/slider_icon/core_temp.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
677
678
|
QPushButton:enabled { image: url(:/images/slider_icon/core_temp_enabled.png); }
QPushButton:focus { image: url(:/images/slider_icon/core_temp_ov.png); }</string>
|
f588aa273
김태훈
부가 기능 로직 추가
|
679
680
681
682
683
684
685
686
687
688
689
690
691
692
|
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="style" stdset="0">
<string notr="true">icon</string>
</property>
</widget>
<widget class="QLabel" name="timeLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
693
694
695
696
|
<x>646</x>
<y>820</y>
<width>361</width>
<height>61</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
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
|
</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>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
739
|
<pointsize>19</pointsize>
|
f588aa273
김태훈
부가 기능 로직 추가
|
740
741
742
743
744
745
746
747
748
749
750
751
752
753
|
<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="QSlider" name="timeSlider">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
754
755
756
757
|
<x>222</x>
<y>788</y>
<width>799</width>
<height>39</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QSlider::sub-page { background-image: url(:/images/slider/time.png); }</string>
</property>
<property name="maximum">
<number>86400</number>
</property>
<property name="singleStep">
<number>60</number>
</property>
<property name="pageStep">
<number>3600</number>
</property>
<property name="tracking">
<bool>false</bool>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
<widget class="QPushButton" name="tempButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
782
783
784
785
|
<x>32</x>
<y>538</y>
<width>168</width>
<height>168</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
786
787
788
789
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { image: url(:/images/slider_icon/temp.png); }
|
f2921ceb9
김태훈
엔코더 구현 대비 선행 수정
|
790
|
QPushButton:pressed, QPushButton:focus { image: url(:/images/slider_icon/temp_ov.png); }</string>
|
f588aa273
김태훈
부가 기능 로직 추가
|
791
792
793
794
795
796
797
798
799
800
801
802
803
804
|
</property>
<property name="text">
<string notr="true"/>
</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>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
805
806
807
808
|
<x>936</x>
<y>376</y>
<width>109</width>
<height>61</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
|
</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>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
851
|
<pointsize>10</pointsize>
|
f588aa273
김태훈
부가 기능 로직 추가
|
852
853
854
855
856
857
858
859
860
861
862
863
|
</font>
</property>
<property name="text">
<string>증가</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QPushButton" name="fanButton">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
864
865
866
867
|
<x>538</x>
<y>1071</y>
<width>134</width>
<height>157</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
868
869
870
871
872
873
874
875
876
877
878
879
880
881
|
</rect>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/manual_button/fan_4.png); }</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="background">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
882
883
|
<width>1080</width>
<height>1228</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
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
|
</rect>
</property>
<property name="text">
<string notr="true"/>
</property>
</widget>
<zorder>background</zorder>
<zorder>dryheatButton</zorder>
<zorder>steamButton</zorder>
<zorder>combiButton</zorder>
<zorder>humidityLabel</zorder>
<zorder>humiditySlider</zorder>
<zorder>steamLabel_2</zorder>
<zorder>coreTempSlider</zorder>
<zorder>timeButton</zorder>
<zorder>humidityButton</zorder>
<zorder>tempSlider</zorder>
<zorder>tempLabel</zorder>
<zorder>steamLabel_4</zorder>
<zorder>coreTempLabel</zorder>
<zorder>steamLabel_5</zorder>
<zorder>coreTempButton</zorder>
<zorder>timeLabel</zorder>
<zorder>timeSlider</zorder>
<zorder>tempButton</zorder>
<zorder>steamLabel_3</zorder>
<zorder>fanButton</zorder>
</widget>
<resources/>
<connections/>
</ui>
|