1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>AlbumManager</class>
4 <widget class="QDialog" name="AlbumManager">
5  <property name="windowModality">
6   <enum>Qt::ApplicationModal</enum>
7  </property>
8  <property name="geometry">
9   <rect>
10    <x>0</x>
11    <y>0</y>
12    <width>431</width>
13    <height>343</height>
14   </rect>
15  </property>
16  <property name="windowTitle">
17   <string>Album Manager</string>
18  </property>
19  <layout class="QVBoxLayout" name="verticalLayout">
20   <item>
21    <layout class="QGridLayout" name="gridLayout">
22     <item row="5" column="1">
23      <widget class="QPushButton" name="add">
24       <property name="text">
25        <string>Add Score…</string>
26       </property>
27      </widget>
28     </item>
29     <item row="7" column="1">
30      <widget class="QPushButton" name="remove">
31       <property name="toolTip">
32        <string>Remove current score</string>
33       </property>
34       <property name="text">
35        <string>Remove Score</string>
36       </property>
37      </widget>
38     </item>
39     <item row="1" column="0" rowspan="7">
40      <widget class="QListWidget" name="scoreList"/>
41     </item>
42     <item row="4" column="1">
43      <spacer name="verticalSpacer2">
44       <property name="orientation">
45        <enum>Qt::Vertical</enum>
46       </property>
47       <property name="sizeHint" stdset="0">
48        <size>
49         <width>20</width>
50         <height>40</height>
51        </size>
52       </property>
53      </spacer>
54     </item>
55     <item row="2" column="1">
56      <widget class="QToolButton" name="up">
57       <property name="sizePolicy">
58        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
59         <horstretch>0</horstretch>
60         <verstretch>0</verstretch>
61        </sizepolicy>
62       </property>
63       <property name="toolTip">
64        <string>Move current score up in list</string>
65       </property>
66       <property name="text">
67        <string notr="true"/>
68       </property>
69       <property name="icon">
70        <iconset resource="musescore.qrc">
71         <normaloff>:/data/icons/arrow_up.svg</normaloff>:/data/icons/arrow_up.svg</iconset>
72       </property>
73      </widget>
74     </item>
75     <item row="1" column="1">
76      <spacer name="verticalSpacer3">
77       <property name="orientation">
78        <enum>Qt::Vertical</enum>
79       </property>
80       <property name="sizeHint" stdset="0">
81        <size>
82         <width>20</width>
83         <height>40</height>
84        </size>
85       </property>
86      </spacer>
87     </item>
88     <item row="3" column="1">
89      <widget class="QToolButton" name="down">
90       <property name="sizePolicy">
91        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
92         <horstretch>0</horstretch>
93         <verstretch>0</verstretch>
94        </sizepolicy>
95       </property>
96       <property name="toolTip">
97        <string>Move current score down in list</string>
98       </property>
99       <property name="text">
100        <string notr="true"/>
101       </property>
102       <property name="icon">
103        <iconset resource="musescore.qrc">
104         <normaloff>:/data/icons/arrow_down.svg</normaloff>:/data/icons/arrow_down.svg</iconset>
105       </property>
106      </widget>
107     </item>
108     <item row="6" column="1">
109      <widget class="QPushButton" name="addNew">
110       <property name="text">
111        <string>Add new Score…</string>
112       </property>
113      </widget>
114     </item>
115    </layout>
116   </item>
117   <item>
118    <widget class="QDialogButtonBox" name="buttonBox">
119     <property name="orientation">
120      <enum>Qt::Horizontal</enum>
121     </property>
122     <property name="standardButtons">
123      <set>QDialogButtonBox::Close</set>
124     </property>
125    </widget>
126   </item>
127  </layout>
128 </widget>
129 <tabstops>
130  <tabstop>scoreList</tabstop>
131  <tabstop>up</tabstop>
132  <tabstop>down</tabstop>
133  <tabstop>add</tabstop>
134  <tabstop>addNew</tabstop>
135  <tabstop>remove</tabstop>
136 </tabstops>
137 <resources>
138  <include location="musescore.qrc"/>
139 </resources>
140 <connections>
141  <connection>
142   <sender>buttonBox</sender>
143   <signal>accepted()</signal>
144   <receiver>AlbumManager</receiver>
145   <slot>accept()</slot>
146   <hints>
147    <hint type="sourcelabel">
148     <x>248</x>
149     <y>254</y>
150    </hint>
151    <hint type="destinationlabel">
152     <x>157</x>
153     <y>274</y>
154    </hint>
155   </hints>
156  </connection>
157  <connection>
158   <sender>buttonBox</sender>
159   <signal>rejected()</signal>
160   <receiver>AlbumManager</receiver>
161   <slot>reject()</slot>
162   <hints>
163    <hint type="sourcelabel">
164     <x>316</x>
165     <y>260</y>
166    </hint>
167    <hint type="destinationlabel">
168     <x>286</x>
169     <y>274</y>
170    </hint>
171   </hints>
172  </connection>
173 </connections>
174</ui>
175