f588aa273
김태훈
부가 기능 로직 추가
|
1
2
3
4
5
6
7
8
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ConfirmPopup</class>
<widget class="QWidget" name="ConfirmPopup">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
9
10
|
<width>1080</width>
<height>1920</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
11
12
|
</rect>
</property>
|
f588aa273
김태훈
부가 기능 로직 추가
|
13
14
15
16
17
18
19
20
21
|
<property name="styleSheet">
<string notr="true">#text { color: white; }
QPushButton { color: white; border: none; }
QPushButton:pressed, QPushButton:focus { color: yellow; }</string>
</property>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
22
23
24
|
<y>511</y>
<width>1080</width>
<height>180</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
</rect>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/symbol/warning_big.png</pixmap>
</property>
<property name="alignment">
<set>Qt::AlignBottom|Qt::AlignHCenter</set>
</property>
</widget>
<widget class="QLabel" name="text">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
41
42
43
|
<y>691</y>
<width>1080</width>
<height>240</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
44
45
46
47
|
</rect>
</property>
<property name="font">
<font>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
48
|
<pointsize>16</pointsize>
|
f588aa273
김태훈
부가 기능 로직 추가
|
49
50
51
52
53
54
55
56
57
58
59
60
|
</font>
</property>
<property name="text">
<string>즐겨찾기 항목에 추가하시겠습니까?</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QWidget" name="horizontalLayoutWidget">
<property name="geometry">
<rect>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
61
62
63
64
|
<x>516</x>
<y>931</y>
<width>313</width>
<height>120</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
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
|
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QPushButton" name="okButton">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
<underline>true</underline>
</font>
</property>
<property name="text">
<string>예</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="cancelButton">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
<underline>true</underline>
</font>
</property>
<property name="text">
<string>아니오</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QLabel" name="background">
<property name="geometry">
<rect>
<x>0</x>
|
054d6e75f
김태훈
ui 파일 일괄 변경
|
114
115
116
|
<y>511</y>
<width>1080</width>
<height>603</height>
|
f588aa273
김태훈
부가 기능 로직 추가
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
</rect>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="resources.qrc">:/images/background/popup/503.png</pixmap>
</property>
</widget>
<zorder>background</zorder>
<zorder>label</zorder>
<zorder>text</zorder>
<zorder>horizontalLayoutWidget</zorder>
</widget>
<resources>
<include location="resources.qrc"/>
</resources>
<connections/>
</ui>
|