-
Notifications
You must be signed in to change notification settings - Fork 0
/
confirm.ui
104 lines (102 loc) · 2.46 KB
/
confirm.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1190</width>
<height>766</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<property name="styleSheet">
<string notr="true">QDialog#Dialog{
background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:1, stop:0 rgba(67, 206, 162, 1), stop:1 rgba(24, 90, 157, 1));
}</string>
</property>
<widget class="QPushButton" name="proceedButton">
<property name="geometry">
<rect>
<x>350</x>
<y>250</y>
<width>140</width>
<height>50</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QPushButton{
background-color: rgb(222, 255, 201); font-size: 14pt;
border-radius: 10px;
}
QPushButton:hover{
background-color: rgb(85, 255, 255);
}</string>
</property>
<property name="text">
<string>Yes Proceed</string>
</property>
</widget>
<widget class="QPushButton" name="cancelButton">
<property name="geometry">
<rect>
<x>580</x>
<y>250</y>
<width>170</width>
<height>50</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QPushButton{
background-color: rgb(222, 255, 201); font-size: 14pt;
border-radius: 10px;
}
QPushButton:hover{
background-color: rgb(255, 83, 83);
}</string>
</property>
<property name="text">
<string>Cancel/Go back</string>
</property>
</widget>
<widget class="QLabel" name="warning">
<property name="geometry">
<rect>
<x>270</x>
<y>170</y>
<width>801</width>
<height>61</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>13</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Are you sure you want to delete eveyrthing? This action CANNOT be undone!</string>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>