c41b8944d
김태훈
리팩토링 - 시계 영역 내용을 ...
|
1
2
3
4
5
6
7
8
9
10
11
12
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
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>StatusArea</class>
<widget class="QWidget" name="StatusArea">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1080</width>
<height>511</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<property name="styleSheet">
<string notr="true">#StatusArea { background-image: url(:/images/clock/background.png); }</string>
</property>
<widget class="IgnitionIcon" name="label_5">
<property name="geometry">
<rect>
<x>794</x>
<y>196</y>
<width>133</width>
<height>145</height>
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="Clock" name="clock" native="true">
<property name="geometry">
<rect>
<x>326</x>
<y>43</y>
<width>427</width>
<height>426</height>
</rect>
</property>
</widget>
<widget class="WashWarnIcon" name="label">
<property name="geometry">
<rect>
<x>960</x>
<y>384</y>
<width>96</width>
<height>100</height>
</rect>
</property>
</widget>
<widget class="HalfEnergyIcon" name="label_3">
<property name="geometry">
<rect>
<x>936</x>
<y>192</y>
<width>129</width>
<height>80</height>
</rect>
</property>
</widget>
<widget class="DigitalClock" name="label_4">
<property name="geometry">
<rect>
<x>24</x>
<y>372</y>
<width>720</width>
<height>120</height>
</rect>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
</property>
</widget>
<widget class="DemoIcon" name="label_2">
<property name="geometry">
<rect>
<x>936</x>
<y>276</y>
<width>121</width>
<height>108</height>
</rect>
</property>
</widget>
<widget class="WaterLevelIcon" name="label_6">
<property name="geometry">
<rect>
<x>804</x>
<y>348</y>
<width>133</width>
<height>145</height>
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
|
0da128bb8
김태훈
상태 영역에 제어 보드 통신 상...
|
98
99
100
101
102
103
104
105
106
107
|
<widget class="CommIcon" name="commIcon" native="true">
<property name="geometry">
<rect>
<x>20</x>
<y>20</y>
<width>20</width>
<height>20</height>
</rect>
</property>
</widget>
|
c41b8944d
김태훈
리팩토링 - 시계 영역 내용을 ...
|
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
|
</widget>
<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>
<class>DemoIcon</class>
<extends>QLabel</extends>
<header>demoicon.h</header>
</customwidget>
<customwidget>
<class>HalfEnergyIcon</class>
<extends>QLabel</extends>
<header>halfenergyicon.h</header>
</customwidget>
<customwidget>
<class>DigitalClock</class>
<extends>QLabel</extends>
<header>digitalclock.h</header>
</customwidget>
<customwidget>
<class>IgnitionIcon</class>
<extends>QLabel</extends>
<header>ignitionicon.h</header>
</customwidget>
<customwidget>
<class>WaterLevelIcon</class>
<extends>QLabel</extends>
<header>waterlevelicon.h</header>
</customwidget>
|
0da128bb8
김태훈
상태 영역에 제어 보드 통신 상...
|
146
147
148
149
150
151
|
<customwidget>
<class>CommIcon</class>
<extends>QWidget</extends>
<header>commicon.h</header>
<container>1</container>
</customwidget>
|
c41b8944d
김태훈
리팩토링 - 시계 영역 내용을 ...
|
152
153
154
155
|
</customwidgets>
<resources/>
<connections/>
</ui>
|