8c2952457
김태훈
응용 프로그램 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>900</width>
<height>1600</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
19
20
21
|
<property name="autoFillBackground">
<bool>true</bool>
</property>
|
6f96c947a
김태훈
GUI 0.1.4
|
22
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
23
24
|
<string notr="true">#centralwidget { background-image: url(:/images/background/main.png); }
#bottomBar { background-image: url(:/images/bottom_bar/background.png); }
|
b9f5e8f6d
김태훈
GUI 개선
|
25
|
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
26
|
QWidget { outline: 1px solid rgba(0, 150, 255, 80%); }
|
05f2a7552
김태훈
image 관리 구조 변경
|
27
28
|
QPushButton[style="mode"] {
|
6f96c947a
김태훈
GUI 0.1.4
|
29
30
31
32
|
background-repeat: no-repeat;
background-position: center;
background-clip: border;
background-origin: border;
|
6f96c947a
김태훈
GUI 0.1.4
|
33
|
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
34
35
|
padding-top: 200px;
border: none;
|
6f96c947a
김태훈
GUI 0.1.4
|
36
37
|
color: white;
font-size: 40px;
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
38
|
outline: none;
|
6f96c947a
김태훈
GUI 0.1.4
|
39
40
41
42
43
44
45
|
}
QPushButton[style="type"] {
background-repeat: no-repeat;
background-position: center;
background-clip: border;
background-origin: border;
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
46
47
|
padding-top: 165px;
border: none;
|
6f96c947a
김태훈
GUI 0.1.4
|
48
49
|
color: white;
font-size: 30px;
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
50
|
outline: none;
|
6f96c947a
김태훈
GUI 0.1.4
|
51
52
53
54
55
56
57
|
}
QPushButton[style="function"] {
background-repeat: no-repeat;
background-position: center;
background-clip: border;
background-origin: border;
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
58
|
padding-top: 206px;
|
6f96c947a
김태훈
GUI 0.1.4
|
59
60
61
|
border-style: hidden;
color: white;
font-size: 30px;
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
62
63
64
65
66
67
68
|
outline: none;
}
QPushButton[style="mode"]:focus, QPushButton[style="type"]:focus, QPushButton[style="function"]:focus {
border: 1px solid rgba(0, 150, 255, 80%);
}
</string>
|
6f96c947a
김태훈
GUI 0.1.4
|
69
|
</property>
|
05f2a7552
김태훈
image 관리 구조 변경
|
70
|
<widget class="QWidget" name="centralwidget">
|
8c2952457
김태훈
응용 프로그램 추가
|
71
72
73
74
75
76
|
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
05f2a7552
김태훈
image 관리 구조 변경
|
77
|
<widget class="QWidget" name="bottomBar" native="true">
|
8c2952457
김태훈
응용 프로그램 추가
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<property name="geometry">
<rect>
<x>0</x>
<y>1450</y>
<width>900</width>
<height>150</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>900</width>
<height>150</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>900</width>
<height>150</height>
</size>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
98
99
100
|
<widget class="QPushButton" name="configButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
101
|
<x>345</x>
|
8c2952457
김태훈
응용 프로그램 추가
|
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
<y>26</y>
<width>97</width>
<height>97</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>62</width>
<height>71</height>
</size>
</property>
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
120
|
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/config.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
121
|
QPushButton:pressed { border-image: url(:/images/bottom_bar/config_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
122
123
124
125
126
127
128
129
|
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="helpButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
130
|
<x>458</x>
|
8c2952457
김태훈
응용 프로그램 추가
|
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
<y>26</y>
<width>97</width>
<height>97</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>62</width>
<height>71</height>
</size>
</property>
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
149
|
<string notr="true">QPushButton { border-image: url(:/images/bottom_bar/help.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
150
|
QPushButton:pressed { border-image: url(:/images/bottom_bar/help_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
151
152
153
154
155
156
157
158
159
|
</property>
<property name="text">
<string/>
</property>
</widget>
</widget>
<widget class="QPushButton" name="multiButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
160
161
162
163
|
<x>0</x>
<y>1164</y>
<width>300</width>
<height>286</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
164
165
166
167
168
169
170
171
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
172
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
173
|
<string notr="true">QPushButton { background-image: url(:/images/main_button/multi.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
174
|
QPushButton:pressed { background-image: url(:/images/main_button/multi_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
175
176
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
177
178
179
180
|
<string>다중요리</string>
</property>
<property name="style" stdset="0">
<string>function</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
181
182
183
184
185
|
</property>
</widget>
<widget class="QPushButton" name="programmingButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
186
187
188
189
|
<x>300</x>
<y>1164</y>
<width>300</width>
<height>286</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
190
191
192
193
194
195
196
197
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
198
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
199
|
<string notr="true">QPushButton { background-image: url(:/images/main_button/custom.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
200
|
QPushButton:pressed { background-image: url(:/images/main_button/custom_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
201
202
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
203
204
205
206
|
<string>프로그래밍모드</string>
</property>
<property name="style" stdset="0">
<string>function</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
207
208
209
210
211
|
</property>
</widget>
<widget class="QPushButton" name="washButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
212
213
214
215
|
<x>600</x>
<y>1164</y>
<width>300</width>
<height>286</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
216
217
218
219
220
221
222
223
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
224
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
225
|
<string notr="true">QPushButton { background-image: url(:/images/main_button/wash.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
226
|
QPushButton:pressed { background-image: url(:/images/main_button/wash_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
227
228
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
229
230
231
232
|
<string>세척모드</string>
</property>
<property name="style" stdset="0">
<string>function</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
233
234
|
</property>
</widget>
|
8c2952457
김태훈
응용 프로그램 추가
|
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
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
303
304
305
306
307
308
309
310
311
312
313
314
315
|
<widget class="Line" name="line">
<property name="geometry">
<rect>
<x>225</x>
<y>771</y>
<width>1</width>
<height>120</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
<widget class="Line" name="line_2">
<property name="geometry">
<rect>
<x>450</x>
<y>771</y>
<width>1</width>
<height>120</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
<widget class="Line" name="line_3">
<property name="geometry">
<rect>
<x>675</x>
<y>771</y>
<width>1</width>
<height>120</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
<widget class="Line" name="line_4">
<property name="geometry">
<rect>
<x>225</x>
<y>993</y>
<width>1</width>
<height>120</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
<widget class="Line" name="line_5">
<property name="geometry">
<rect>
<x>450</x>
<y>993</y>
<width>1</width>
<height>120</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
<widget class="Line" name="line_6">
<property name="geometry">
<rect>
<x>675</x>
<y>993</y>
<width>1</width>
<height>120</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
<widget class="QPushButton" name="dryheatButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
316
317
318
319
|
<x>600</x>
<y>426</y>
<width>300</width>
<height>293</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
320
321
|
</rect>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
322
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
323
|
<string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_dryheat.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
324
|
QPushButton:pressed { background-image: url(:/images/cook_mode/big_dryheat_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
325
326
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
327
328
329
330
|
<string>건열</string>
</property>
<property name="style" stdset="0">
<string>mode</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
331
332
333
334
335
|
</property>
</widget>
<widget class="QPushButton" name="combiButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
336
337
338
339
|
<x>300</x>
<y>426</y>
<width>300</width>
<height>293</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
340
341
|
</rect>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
342
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
343
|
<string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_combi.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
344
|
QPushButton:pressed { background-image: url(:/images/cook_mode/big_combi_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
345
346
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
347
348
349
350
|
<string>콤비</string>
</property>
<property name="style" stdset="0">
<string>mode</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
351
352
353
354
355
|
</property>
</widget>
<widget class="QPushButton" name="steamButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
356
357
358
359
|
<x>0</x>
<y>426</y>
<width>300</width>
<height>293</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
360
361
|
</rect>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
362
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
363
|
<string notr="true">QPushButton { background-image: url(:/images/cook_mode/big_steam.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
364
|
QPushButton:pressed { background-image: url(:/images/cook_mode/big_steam_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
365
366
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
367
368
369
370
|
<string>스팀</string>
</property>
<property name="style" stdset="0">
<string>mode</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
371
372
373
374
375
|
</property>
</widget>
<widget class="QPushButton" name="meatButton">
<property name="geometry">
<rect>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
376
|
<x>226</x>
|
6f96c947a
김태훈
GUI 0.1.4
|
377
|
<y>720</y>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
378
379
|
<width>224</width>
<height>221</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
380
381
382
383
384
385
386
387
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
388
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
389
|
<string notr="true">QPushButton { background-image: url(:/images/cook_type/meat.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
390
|
QPushButton:pressed { background-image: url(:/images/cook_type/meat_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
391
392
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
393
394
395
396
|
<string>육류</string>
</property>
<property name="style" stdset="0">
<string>type</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
397
398
399
400
401
|
</property>
</widget>
<widget class="QPushButton" name="dessertButton">
<property name="geometry">
<rect>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
402
|
<x>676</x>
|
6f96c947a
김태훈
GUI 0.1.4
|
403
|
<y>720</y>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
404
405
|
<width>224</width>
<height>221</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
406
407
408
409
410
411
412
413
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
414
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
415
|
<string notr="true">QPushButton { background-image: url(:/images/cook_type/desert.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
416
|
QPushButton:pressed { background-image: url(:/images/cook_type/desert_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
417
418
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
419
420
421
422
|
<string>디저트류</string>
</property>
<property name="style" stdset="0">
<string>type</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
423
424
425
426
427
|
</property>
</widget>
<widget class="QPushButton" name="etcButton">
<property name="geometry">
<rect>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
428
429
430
431
|
<x>451</x>
<y>943</y>
<width>224</width>
<height>221</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
432
433
434
435
436
437
438
439
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
440
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
441
|
<string notr="true">QPushButton { background-image: url(:/images/cook_type/etc.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
442
|
QPushButton:pressed { background-image: url(:/images/cook_type/etc_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
443
444
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
445
446
447
448
|
<string>기타요리</string>
</property>
<property name="style" stdset="0">
<string>type</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
449
450
451
452
453
|
</property>
</widget>
<widget class="QPushButton" name="grainButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
454
|
<x>0</x>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
455
|
<y>943</y>
|
6f96c947a
김태훈
GUI 0.1.4
|
456
|
<width>225</width>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
457
|
<height>221</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
458
459
460
461
462
463
464
465
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
466
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
467
|
<string notr="true">QPushButton { background-image: url(:/images/cook_type/vegetable.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
468
|
QPushButton:pressed { background-image: url(:/images/cook_type/vegetable_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
469
470
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
471
472
473
474
|
<string>채소및곡류</string>
</property>
<property name="style" stdset="0">
<string>type</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
475
476
477
478
479
|
</property>
</widget>
<widget class="QPushButton" name="poultryButton">
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
480
481
482
|
<x>0</x>
<y>720</y>
<width>225</width>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
483
|
<height>221</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
484
485
486
487
488
489
490
491
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
492
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
493
|
<string notr="true">QPushButton { background-image: url(:/images/cook_type/poultry.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
494
|
QPushButton:pressed { background-image: url(:/images/cook_type/poultry_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
495
496
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
497
498
499
500
|
<string>가금류</string>
</property>
<property name="style" stdset="0">
<string>type</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
501
502
503
504
505
|
</property>
</widget>
<widget class="QPushButton" name="fishButton">
<property name="geometry">
<rect>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
506
|
<x>451</x>
|
6f96c947a
김태훈
GUI 0.1.4
|
507
|
<y>720</y>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
508
509
|
<width>224</width>
<height>221</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
510
511
512
513
514
515
516
517
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
518
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
519
|
<string notr="true">QPushButton { background-image: url(:/images/cook_type/fish.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
520
|
QPushButton:pressed { background-image: url(:/images/cook_type/fish_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
521
522
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
523
524
525
526
|
<string>생선류</string>
</property>
<property name="style" stdset="0">
<string>type</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
527
528
529
530
531
|
</property>
</widget>
<widget class="QPushButton" name="breadButton">
<property name="geometry">
<rect>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
532
533
534
535
|
<x>226</x>
<y>943</y>
<width>224</width>
<height>221</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
536
537
538
539
540
541
542
543
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
544
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
545
|
<string notr="true">QPushButton { background-image: url(:/images/cook_type/bread.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
546
|
QPushButton:pressed { background-image: url(:/images/cook_type/bread_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
547
548
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
549
550
551
552
|
<string>제과제빵류</string>
</property>
<property name="style" stdset="0">
<string>type</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
553
554
555
556
557
|
</property>
</widget>
<widget class="QPushButton" name="primeButton">
<property name="geometry">
<rect>
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
558
559
560
561
|
<x>676</x>
<y>943</y>
<width>224</width>
<height>221</height>
|
8c2952457
김태훈
응용 프로그램 추가
|
562
563
564
565
566
567
568
569
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
|
8c2952457
김태훈
응용 프로그램 추가
|
570
|
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
571
|
<string notr="true">QPushButton { background-image: url(:/images/cook_type/additional.png); }
|
9c1ea4a13
김태훈
포커스 디자인 변경 일부 적용
|
572
|
QPushButton:pressed { background-image: url(:/images/cook_type/additional_ov.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
573
574
|
</property>
<property name="text">
|
6f96c947a
김태훈
GUI 0.1.4
|
575
576
577
578
|
<string>부가기능</string>
</property>
<property name="style" stdset="0">
<string>type</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
579
580
581
582
583
584
585
586
587
588
589
590
|
</property>
</widget>
<widget class="QWidget" name="clockContainer" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>900</width>
<height>426</height>
</rect>
</property>
<property name="styleSheet">
|
05f2a7552
김태훈
image 관리 구조 변경
|
591
|
<string notr="true">#clockContainer { background-image: url(:/images/clock/background.png); }</string>
|
8c2952457
김태훈
응용 프로그램 추가
|
592
593
594
595
596
597
598
599
600
601
602
|
</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>
|
239d51c8b
김태훈
의무 세척 기능 추가
|
603
604
605
606
607
608
609
610
611
612
|
<widget class="WashWarnIcon" name="label">
<property name="geometry">
<rect>
<x>800</x>
<y>320</y>
<width>80</width>
<height>84</height>
</rect>
</property>
</widget>
|
8c2952457
김태훈
응용 프로그램 추가
|
613
|
</widget>
|
6f96c947a
김태훈
GUI 0.1.4
|
614
|
<widget class="QLabel" name="steamLabel_13">
|
8c2952457
김태훈
응용 프로그램 추가
|
615
616
617
618
619
|
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
|
6f96c947a
김태훈
GUI 0.1.4
|
620
621
622
623
|
<x>750</x>
<y>1550</y>
<width>150</width>
<height>50</height>
|
99b8066f4
김태훈
V0.1.1
|
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
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
|
</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>10</pointsize>
</font>
</property>
<property name="text">
|
1ce38ef63
김태훈
GUI V0.2.5
|
670
|
<string>V0.2.5</string>
|
99b8066f4
김태훈
V0.1.1
|
671
672
673
674
675
676
677
678
|
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignRight|Qt::AlignTrailing</set>
</property>
<property name="margin">
<number>10</number>
</property>
</widget>
|
05f2a7552
김태훈
image 관리 구조 변경
|
679
680
681
682
683
684
685
686
687
688
689
690
691
|
<widget class="Line" name="line_7">
<property name="geometry">
<rect>
<x>18</x>
<y>942</y>
<width>863</width>
<height>1</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
|
8c2952457
김태훈
응용 프로그램 추가
|
692
693
694
695
696
697
698
699
700
701
|
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<customwidgets>
<customwidget>
<class>Clock</class>
<extends>QWidget</extends>
<header>clock.h</header>
<container>1</container>
</customwidget>
|
239d51c8b
김태훈
의무 세척 기능 추가
|
702
703
704
705
706
|
<customwidget>
<class>WashWarnIcon</class>
<extends>QLabel</extends>
<header>washwarnicon.h</header>
</customwidget>
|
8c2952457
김태훈
응용 프로그램 추가
|
707
|
</customwidgets>
|
0ce283850
김태훈
로터리 엔코더 임시 구현
|
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
|
<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>
<tabstop>multiButton</tabstop>
<tabstop>programmingButton</tabstop>
<tabstop>washButton</tabstop>
<tabstop>configButton</tabstop>
<tabstop>helpButton</tabstop>
</tabstops>
|
8c2952457
김태훈
응용 프로그램 추가
|
726
727
728
|
<resources/>
<connections/>
</ui>
|