c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
1
2
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
|
14a73498f
김태훈
소스 코드 정리
|
3
4
|
<class>ErrorPopupDlg</class>
<widget class="QDialog" name="ErrorPopupDlg">
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
5
6
7
8
9
10
11
12
13
14
15
16
|
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>900</width>
<height>1600</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<property name="styleSheet">
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
17
18
|
<string notr="true">#centralwidget { background-image: url(:/images/background/popup/error.png);
background-color: rgba(0, 0, 0, 255);
|
774c1995b
고영탁
에러 팝업 투명 효과 재처리
|
19
20
21
|
}
QDialog { background: transparent; }</string>
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
22
23
24
25
|
</property>
<widget class="QWidget" name="centralwidget" native="true">
<property name="geometry">
<rect>
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
26
27
28
29
|
<x>21</x>
<y>446</y>
<width>858</width>
<height>984</height>
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
30
31
32
33
34
35
36
37
|
</rect>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<widget class="QPushButton" name="ctrlOkBtn">
<property name="geometry">
<rect>
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
38
39
40
41
|
<x>0</x>
<y>730</y>
<width>858</width>
<height>252</height>
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
42
43
44
45
46
47
48
49
50
51
52
53
54
|
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
<weight>75</weight>
<bold>true</bold>
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
55
|
<underline>true</underline>
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
56
57
58
|
</font>
</property>
<property name="styleSheet">
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
59
60
61
62
|
<string notr="true">QPushButton {border : none;
color : white;
}
QPushButton::pressed {color : yellow}
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
63
64
65
66
67
68
69
70
71
72
|
QPushButton { text-align:center;}</string>
</property>
<property name="text">
<string>확 인</string>
</property>
</widget>
<widget class="QLabel" name="ctrlWarnDescription">
<property name="geometry">
<rect>
<x>0</x>
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
73
74
75
|
<y>230</y>
<width>858</width>
<height>521</height>
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
</rect>
</property>
<property name="font">
<font>
<pointsize>12</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(255, 255, 255);</string>
</property>
<property name="text">
<string>TextLabel</string>
</property>
<property name="alignment">
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
92
93
94
95
96
97
98
|
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="margin">
<number>40</number>
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
99
100
|
</property>
</widget>
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
101
|
<widget class="QLabel" name="ctrlWarnTitle">
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
102
103
|
<property name="geometry">
<rect>
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
104
105
106
|
<x>0</x>
<y>100</y>
<width>858</width>
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<height>51</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>16</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(255, 255, 255);</string>
</property>
<property name="text">
<string>경 고</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_3">
<property name="geometry">
<rect>
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
130
131
132
|
<x>0</x>
<y>30</y>
<width>858</width>
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
133
134
135
136
137
138
139
140
141
|
<height>51</height>
</rect>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/symbol/warning.png</pixmap>
</property>
|
6defa93ae
고영탁
에러 팝업 디자인 변경
|
142
143
144
|
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
|
c50beef02
고영탁
에러 처리 루틴 및 에러 처리 ...
|
145
146
147
148
149
150
151
152
|
</widget>
</widget>
</widget>
<resources>
<include location="resources.qrc"/>
</resources>
<connections/>
</ui>
|