-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy patherror.ui
More file actions
103 lines (102 loc) · 2.38 KB
/
error.ui
File metadata and controls
103 lines (102 loc) · 2.38 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Error</class>
<widget class="QDialog" name="Error">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>157</height>
</rect>
</property>
<property name="windowTitle">
<string>Error</string>
</property>
<property name="styleSheet">
<string notr="true">background-color:#16191d;</string>
</property>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>40</x>
<y>40</y>
<width>321</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>MS Sans Serif</family>
<pointsize>18</pointsize>
</font>
</property>
<property name="styleSheet">
<string notr="true">color:white;</string>
</property>
<property name="text">
<string>Connection failed</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QPushButton" name="ok_button">
<property name="geometry">
<rect>
<x>130</x>
<y>100</y>
<width>131</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<family>MS Sans Serif</family>
<pointsize>-1</pointsize>
<bold>false</bold>
</font>
</property>
<property name="styleSheet">
<string notr="true">QPushButton{
border-radius: 10px;
font-size: 28px;
border: 2px solid rgba(255,255,255,40);
color: white;
}
QPushButton:hover{
background-color: rgba(255,255,255,60);
color:white;
}</string>
</property>
<property name="text">
<string>Ok</string>
</property>
</widget>
<widget class="QFrame" name="frame">
<property name="geometry">
<rect>
<x>-1</x>
<y>-1</y>
<width>401</width>
<height>161</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">border-radius:5px;
border: 5px solid rgba(255,255,255,40);</string>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
</widget>
<zorder>frame</zorder>
<zorder>label</zorder>
<zorder>ok_button</zorder>
</widget>
<resources/>
<connections/>
</ui>