1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>TimesigWizard</class>
4 <widget class="QWidget" name="TimesigWizard">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>426</width>
10    <height>333</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string/>
15  </property>
16  <property name="accessibleName">
17   <string>Time Signature Wizard</string>
18  </property>
19  <layout class="QVBoxLayout">
20   <item>
21    <widget class="QGroupBox" name="groupBox">
22     <property name="sizePolicy">
23      <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
24       <horstretch>0</horstretch>
25       <verstretch>0</verstretch>
26      </sizepolicy>
27     </property>
28     <property name="accessibleDescription">
29      <string>Enter a numerical time signature or choose one of the time signature symbols</string>
30     </property>
31     <property name="title">
32      <string>Enter Time Signature:</string>
33     </property>
34     <layout class="QVBoxLayout" name="verticalLayout">
35      <item>
36       <layout class="QHBoxLayout" name="horizontalLayout">
37        <property name="topMargin">
38         <number>0</number>
39        </property>
40        <item>
41         <widget class="QRadioButton" name="tsFraction">
42          <property name="toolTip">
43           <string>Custom numerical time signature</string>
44          </property>
45          <property name="accessibleName">
46           <string>Custom numerical time signature</string>
47          </property>
48          <property name="accessibleDescription">
49           <string>Enter a numerical time signature such as 4/4 or 6/8</string>
50          </property>
51          <property name="text">
52           <string notr="true"/>
53          </property>
54          <property name="checked">
55           <bool>true</bool>
56          </property>
57         </widget>
58        </item>
59        <item>
60         <widget class="QSpinBox" name="timesigZ">
61          <property name="toolTip">
62           <string>Beats in a measure</string>
63          </property>
64          <property name="accessibleName">
65           <string>Beats in a measure</string>
66          </property>
67          <property name="accessibleDescription">
68           <string>The numerator, or upper number, in the time signature</string>
69          </property>
70          <property name="minimum">
71           <number>1</number>
72          </property>
73          <property name="maximum">
74           <number>63</number>
75          </property>
76          <property name="value">
77           <number>4</number>
78          </property>
79         </widget>
80        </item>
81        <item>
82         <widget class="QLabel" name="label">
83          <property name="sizePolicy">
84           <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
85            <horstretch>0</horstretch>
86            <verstretch>0</verstretch>
87           </sizepolicy>
88          </property>
89          <property name="text">
90           <string>/</string>
91          </property>
92          <property name="alignment">
93           <set>Qt::AlignCenter</set>
94          </property>
95         </widget>
96        </item>
97        <item>
98         <widget class="QComboBox" name="timesigN">
99          <property name="toolTip">
100           <string>Beat unit</string>
101          </property>
102          <property name="accessibleName">
103           <string>Beat unit</string>
104          </property>
105          <property name="accessibleDescription">
106           <string>The denominator, or lower number, in the time signature</string>
107          </property>
108          <property name="currentIndex">
109           <number>2</number>
110          </property>
111          <item>
112           <property name="text">
113            <string>1</string>
114           </property>
115          </item>
116          <item>
117           <property name="text">
118            <string>2</string>
119           </property>
120          </item>
121          <item>
122           <property name="text">
123            <string>4</string>
124           </property>
125          </item>
126          <item>
127           <property name="text">
128            <string>8</string>
129           </property>
130          </item>
131          <item>
132           <property name="text">
133            <string>16</string>
134           </property>
135          </item>
136          <item>
137           <property name="text">
138            <string>32</string>
139           </property>
140          </item>
141          <item>
142           <property name="text">
143            <string>64</string>
144           </property>
145          </item>
146         </widget>
147        </item>
148        <item>
149         <spacer name="horizontalSpacer">
150          <property name="orientation">
151           <enum>Qt::Horizontal</enum>
152          </property>
153          <property name="sizeHint" stdset="0">
154           <size>
155            <width>40</width>
156            <height>20</height>
157           </size>
158          </property>
159         </spacer>
160        </item>
161       </layout>
162      </item>
163      <item>
164       <widget class="QRadioButton" name="tsCommonTime">
165        <property name="toolTip">
166         <string>Common time</string>
167        </property>
168        <property name="accessibleName">
169         <string>Common Time</string>
170        </property>
171        <property name="accessibleDescription">
172         <string>Use the common time symbol, the letter C, and a 4/4 meter</string>
173        </property>
174        <property name="text">
175         <string notr="true"/>
176        </property>
177        <property name="icon">
178         <iconset>
179          <normaloff>:/data/icons/timesig_common.svg</normaloff>:/data/icons/timesig_common.svg</iconset>
180        </property>
181       </widget>
182      </item>
183      <item>
184       <widget class="QRadioButton" name="tsCutTime">
185        <property name="toolTip">
186         <string>Cut time</string>
187        </property>
188        <property name="accessibleName">
189         <string>Cut Time</string>
190        </property>
191        <property name="accessibleDescription">
192         <string>Use the cut time symbol, the letter C with a vertical line through it, and a 2/2 meter</string>
193        </property>
194        <property name="text">
195         <string notr="true"/>
196        </property>
197        <property name="icon">
198         <iconset>
199          <normaloff>:/data/icons/timesig_allabreve.svg</normaloff>:/data/icons/timesig_allabreve.svg</iconset>
200        </property>
201       </widget>
202      </item>
203     </layout>
204    </widget>
205   </item>
206   <item>
207    <widget class="QGroupBox" name="pickupMeasure">
208     <property name="accessibleName">
209      <string>Pickup Measure</string>
210     </property>
211     <property name="accessibleDescription">
212      <string>Begin the score with an incomplete measure</string>
213     </property>
214     <property name="title">
215      <string>Pickup Measure</string>
216     </property>
217     <property name="checkable">
218      <bool>true</bool>
219     </property>
220     <property name="checked">
221      <bool>true</bool>
222     </property>
223     <layout class="QHBoxLayout">
224      <item>
225       <widget class="QLabel" name="label_5">
226        <property name="text">
227         <string>Duration:</string>
228        </property>
229       </widget>
230      </item>
231      <item>
232       <widget class="QSpinBox" name="pickupTimesigZ">
233        <property name="toolTip">
234         <string>Number of beats in the pickup measure</string>
235        </property>
236        <property name="accessibleName">
237         <string>Pickup beats</string>
238        </property>
239        <property name="accessibleDescription">
240         <string>Number of beats in the pickup measure</string>
241        </property>
242        <property name="minimum">
243         <number>1</number>
244        </property>
245        <property name="maximum">
246         <number>63</number>
247        </property>
248        <property name="value">
249         <number>1</number>
250        </property>
251       </widget>
252      </item>
253      <item>
254       <widget class="QLabel" name="label_6">
255        <property name="sizePolicy">
256         <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
257          <horstretch>0</horstretch>
258          <verstretch>0</verstretch>
259         </sizepolicy>
260        </property>
261        <property name="text">
262         <string>/</string>
263        </property>
264        <property name="alignment">
265         <set>Qt::AlignCenter</set>
266        </property>
267       </widget>
268      </item>
269      <item>
270       <widget class="QComboBox" name="pickupTimesigN">
271        <property name="toolTip">
272         <string>Beat unit</string>
273        </property>
274        <property name="statusTip">
275         <string>Beat unit for the pickup measure</string>
276        </property>
277        <property name="accessibleName">
278         <string>Pickup beat unit</string>
279        </property>
280        <property name="accessibleDescription">
281         <string>Beat unit for the pickup measure</string>
282        </property>
283        <property name="currentIndex">
284         <number>2</number>
285        </property>
286        <item>
287         <property name="text">
288          <string>1</string>
289         </property>
290        </item>
291        <item>
292         <property name="text">
293          <string>2</string>
294         </property>
295        </item>
296        <item>
297         <property name="text">
298          <string>4</string>
299         </property>
300        </item>
301        <item>
302         <property name="text">
303          <string>8</string>
304         </property>
305        </item>
306        <item>
307         <property name="text">
308          <string>16</string>
309         </property>
310        </item>
311        <item>
312         <property name="text">
313          <string>32</string>
314         </property>
315        </item>
316        <item>
317         <property name="text">
318          <string>64</string>
319         </property>
320        </item>
321       </widget>
322      </item>
323      <item>
324       <spacer>
325        <property name="orientation">
326         <enum>Qt::Horizontal</enum>
327        </property>
328        <property name="sizeHint" stdset="0">
329         <size>
330          <width>40</width>
331          <height>20</height>
332         </size>
333        </property>
334       </spacer>
335      </item>
336     </layout>
337    </widget>
338   </item>
339   <item>
340    <widget class="QGroupBox" name="groupBox_2">
341     <property name="accessibleName">
342      <string>Enter Number of Measures</string>
343     </property>
344     <property name="accessibleDescription">
345      <string>Hint: You can also add or remove measures after creation of the score.</string>
346     </property>
347     <property name="title">
348      <string>Enter Number of Measures:</string>
349     </property>
350     <layout class="QGridLayout">
351      <property name="topMargin">
352       <number>3</number>
353      </property>
354      <property name="bottomMargin">
355       <number>3</number>
356      </property>
357      <property name="verticalSpacing">
358       <number>3</number>
359      </property>
360      <item row="1" column="0">
361       <widget class="QLabel" name="label_2">
362        <property name="text">
363         <string>Measures:</string>
364        </property>
365       </widget>
366      </item>
367      <item row="1" column="1">
368       <widget class="QSpinBox" name="measureCount">
369        <property name="toolTip">
370         <string>Number of measures</string>
371        </property>
372        <property name="accessibleName">
373         <string>Measures</string>
374        </property>
375        <property name="accessibleDescription">
376         <string>The number of measures initially present in the score</string>
377        </property>
378        <property name="minimum">
379         <number>1</number>
380        </property>
381        <property name="maximum">
382         <number>9999</number>
383        </property>
384        <property name="value">
385         <number>32</number>
386        </property>
387       </widget>
388      </item>
389      <item row="1" column="2">
390       <spacer>
391        <property name="orientation">
392         <enum>Qt::Horizontal</enum>
393        </property>
394        <property name="sizeHint" stdset="0">
395         <size>
396          <width>121</width>
397          <height>20</height>
398         </size>
399        </property>
400       </spacer>
401      </item>
402      <item row="2" column="0" colspan="3">
403       <widget class="QLabel" name="label_4">
404        <property name="sizePolicy">
405         <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
406          <horstretch>0</horstretch>
407          <verstretch>0</verstretch>
408         </sizepolicy>
409        </property>
410        <property name="text">
411         <string>Hint: You can also add or remove measures after creation of the score.</string>
412        </property>
413       </widget>
414      </item>
415     </layout>
416    </widget>
417   </item>
418   <item>
419    <widget class="QGroupBox" name="tempoGroup">
420     <property name="accessibleName">
421      <string>Tempo</string>
422     </property>
423     <property name="title">
424      <string>Tempo</string>
425     </property>
426     <property name="checkable">
427      <bool>true</bool>
428     </property>
429     <property name="checked">
430      <bool>true</bool>
431     </property>
432     <layout class="QHBoxLayout">
433      <item>
434       <widget class="QLabel" name="labelBpm">
435        <property name="text">
436         <string>BPM:</string>
437        </property>
438       </widget>
439      </item>
440      <item>
441       <widget class="QDoubleSpinBox" name="spinboxTempo">
442        <property name="toolTip">
443         <string>Quarter notes per minute</string>
444        </property>
445        <property name="accessibleName">
446         <string>Quarter notes per minute</string>
447        </property>
448        <property name="decimals">
449         <number>1</number>
450        </property>
451        <property name="minimum">
452         <double>20.000000000000000</double>
453        </property>
454        <property name="maximum">
455         <double>400.000000000000000</double>
456        </property>
457        <property name="value">
458         <double>120.000000000000000</double>
459        </property>
460       </widget>
461      </item>
462      <item>
463       <spacer name="horizontalSpacer1">
464        <property name="orientation">
465         <enum>Qt::Horizontal</enum>
466        </property>
467        <property name="sizeHint" stdset="0">
468         <size>
469          <width>40</width>
470          <height>20</height>
471         </size>
472        </property>
473       </spacer>
474      </item>
475     </layout>
476    </widget>
477   </item>
478  </layout>
479 </widget>
480 <tabstops>
481  <tabstop>tsFraction</tabstop>
482  <tabstop>tsCommonTime</tabstop>
483  <tabstop>tsCutTime</tabstop>
484  <tabstop>timesigZ</tabstop>
485  <tabstop>timesigN</tabstop>
486  <tabstop>pickupMeasure</tabstop>
487  <tabstop>pickupTimesigZ</tabstop>
488  <tabstop>pickupTimesigN</tabstop>
489  <tabstop>measureCount</tabstop>
490  <tabstop>tempoGroup</tabstop>
491  <tabstop>spinboxTempo</tabstop>
492 </tabstops>
493 <resources/>
494 <connections/>
495</ui>
496