-
Notifications
You must be signed in to change notification settings - Fork 6
/
playlist.ui
99 lines (99 loc) · 2.59 KB
/
playlist.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PlayList</class>
<widget class="QDialog" name="PlayList">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>356</width>
<height>262</height>
</rect>
</property>
<property name="windowIcon">
<iconset resource="guiplayer.qrc">
<normaloff>:/dmidiplayer.png</normaloff>:/dmidiplayer.png</iconset>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QListWidget" name="fileList">
<property name="horizontalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="alternatingRowColors">
<bool>true</bool>
</property>
<property name="textElideMode">
<enum>Qt::ElideMiddle</enum>
</property>
</widget>
</item>
<item row="0" column="1" colspan="2">
<widget class="QDialogButtonBox" name="listButtons">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::NoButton</set>
</property>
</widget>
</item>
<item row="1" column="0" colspan="3">
<widget class="QDialogButtonBox" name="dialogButtons">
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<layoutdefault spacing="6" margin="11"/>
<tabstops>
<tabstop>fileList</tabstop>
<tabstop>dialogButtons</tabstop>
<tabstop>listButtons</tabstop>
</tabstops>
<resources>
<include location="guiplayer.qrc"/>
</resources>
<connections>
<connection>
<sender>dialogButtons</sender>
<signal>accepted()</signal>
<receiver>PlayList</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>231</x>
<y>244</y>
</hint>
<hint type="destinationlabel">
<x>256</x>
<y>-17</y>
</hint>
</hints>
</connection>
<connection>
<sender>dialogButtons</sender>
<signal>rejected()</signal>
<receiver>PlayList</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>161</x>
<y>248</y>
</hint>
<hint type="destinationlabel">
<x>171</x>
<y>-18</y>
</hint>
</hints>
</connection>
</connections>
</ui>