-
Notifications
You must be signed in to change notification settings - Fork 6
/
exportdialog.ui
174 lines (174 loc) · 4.62 KB
/
exportdialog.ui
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
98
99
100
101
102
103
104
105
106
107
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ExportDialog</class>
<widget class="QDialog" name="ExportDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>960</width>
<height>580</height>
</rect>
</property>
<property name="font">
<font>
<family>微软雅黑</family>
</font>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<widget class="QWidget" name="widget" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>960</width>
<height>580</height>
</rect>
</property>
<widget class="QWidget" name="containerWidget" native="true">
<property name="geometry">
<rect>
<x>209</x>
<y>153</y>
<width>542</width>
<height>274</height>
</rect>
</property>
<widget class="QToolButton" name="cancelBtn">
<property name="geometry">
<rect>
<x>290</x>
<y>223</y>
<width>120</width>
<height>36</height>
</rect>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="text">
<string>Cancel</string>
</property>
</widget>
<widget class="QLabel" name="export_nameLabel">
<property name="geometry">
<rect>
<x>46</x>
<y>150</y>
<width>131</width>
<height>21</height>
</rect>
</property>
<property name="text">
<string>Export private key to:</string>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
<property name="wordWrap">
<bool>false</bool>
</property>
</widget>
<widget class="QPushButton" name="pathBtn">
<property name="geometry">
<rect>
<x>370</x>
<y>180</y>
<width>80</width>
<height>30</height>
</rect>
</property>
<property name="font">
<font>
<family>微软雅黑</family>
</font>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="styleSheet">
<string notr="true">QPushButton{border:1px solid rgb(160,160,160);
border-radius:3px;
background-color: rgb(255, 255, 255);
color: rgb(53, 53, 53);
}
QPushButton::hover{color: rgb(153, 153, 153);}</string>
</property>
<property name="text">
<string>Select path</string>
</property>
</widget>
<widget class="QToolButton" name="exportBtn">
<property name="geometry">
<rect>
<x>130</x>
<y>223</y>
<width>120</width>
<height>36</height>
</rect>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="text">
<string>Export</string>
</property>
</widget>
<widget class="QLineEdit" name="pathLineEdit">
<property name="geometry">
<rect>
<x>80</x>
<y>180</y>
<width>256</width>
<height>30</height>
</rect>
</property>
<property name="font">
<font>
<family>微软雅黑</family>
<pointsize>10</pointsize>
</font>
</property>
<property name="contextMenuPolicy">
<enum>Qt::DefaultContextMenu</enum>
</property>
<property name="styleSheet">
<string notr="true">border-color: rgb(0, 0, 0);</string>
</property>
<property name="text">
<string/>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
</widget>
<widget class="QLabel" name="export_hintLabel">
<property name="geometry">
<rect>
<x>46</x>
<y>10</y>
<width>448</width>
<height>141</height>
</rect>
</property>
<property name="text">
<string><html><head/><body>Tips:<br />1.Your private key is your only access to your funds, please safekeeping.<br />2.Please don't share your private key. Sharing your private key may lead to your funds being stolen.<br />3.Please use several different methods to store your private key, for example printing it out, storing it on a USB drive, etc. Your private key cannot be recovered if lost.</body></html></string>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</widget>
</widget>
</widget>
<resources/>
<connections/>
</ui>