-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvolumeslider.ui
70 lines (67 loc) · 1.51 KB
/
volumeslider.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>VolumeSlider</class>
<widget class="QWidget" name="VolumeSlider">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>63</width>
<height>141</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<widget class="SliderBar" name="volumeSlider">
<property name="geometry">
<rect>
<x>20</x>
<y>10</y>
<width>22</width>
<height>111</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="styleSheet">
<string notr="true">QSlider::groove:vertical {
width: 4px;
background-color: white;
}
QSlider::handle:vertical {
border: 1px solid #3eba58;
background-color: #3eba58;
height: 6px;
margin: -2px;
margin-left: -5px;
margin-right: -5px;
border-radius: 2px;
}
QSlider::handle:vertical:hover {
background-color: #61d169;
}
QSlider::add-page {
background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #88e588, stop:1 #61d169);
border-radius: 10px;
}</string>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
</widget>
<customwidgets>
<customwidget>
<class>SliderBar</class>
<extends>QSlider</extends>
<header>sliderbar.h</header>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>