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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>lock_widget</class>
<widget class="QWidget" name="lock_widget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>655</width>
<height>22</height>
</rect>
</property>
<property name="windowTitle">
<string>Lock</string>
</property>
<property name="styleSheet">
<string notr="true">#lock_widget {
background: hsva(0, 0, 100%, 80%);
border: 0px;
border-radius: 3px;
}
#note_label {
margin: 0px;
padding-left: 4px;
}
#confirm_button {
background: hsv(20, 67%, 100%);
background-origin: border;
border: 0px;
border-left: 1px solid palette(dark);
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
margin: 0px;
padding: 0px 5px 0px 5px;
}
#confirm_button:hover {
background: hsv(20, 60%, 100%);
}
#confirm_button:pressed {
background: hsv(20, 60%, 90%);
}
</string>
</property>
<layout class="QHBoxLayout" name="lock_layout">
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="ElidedLabel" name="note_label">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Encryption has been terminated by the other party</string>
</property>
<property name="indent">
<number>0</number>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="confirm_button">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="text">
<string>Confirm</string>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>ElidedLabel</class>
<extends>QLabel</extends>
<header>blink.widgets.labels</header>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>