1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>MeasurePropertiesBase</class>
4 <widget class="QDialog" name="MeasurePropertiesBase">
5  <property name="windowModality">
6   <enum>Qt::NonModal</enum>
7  </property>
8  <property name="geometry">
9   <rect>
10    <x>0</x>
11    <y>0</y>
12    <width>632</width>
13    <height>426</height>
14   </rect>
15  </property>
16  <property name="windowTitle">
17   <string>Measure Properties</string>
18  </property>
19  <layout class="QVBoxLayout" name="verticalLayout_3">
20   <item>
21    <layout class="QHBoxLayout" name="horizontalLayout">
22     <item>
23      <layout class="QVBoxLayout" name="verticalLayout_2">
24       <item>
25        <widget class="QGroupBox" name="groupBox_3">
26         <property name="title">
27          <string>Staves</string>
28         </property>
29         <layout class="QVBoxLayout" name="verticalLayout">
30          <item>
31           <widget class="QTableWidget" name="staves">
32            <property name="alternatingRowColors">
33             <bool>true</bool>
34            </property>
35            <property name="selectionMode">
36             <enum>QAbstractItemView::NoSelection</enum>
37            </property>
38            <property name="selectionBehavior">
39             <enum>QAbstractItemView::SelectRows</enum>
40            </property>
41            <property name="showGrid">
42             <bool>false</bool>
43            </property>
44            <property name="cornerButtonEnabled">
45             <bool>false</bool>
46            </property>
47            <row>
48             <property name="text">
49              <string>New Row</string>
50             </property>
51            </row>
52            <column>
53             <property name="text">
54              <string>Staff</string>
55             </property>
56            </column>
57            <column>
58             <property name="text">
59              <string>Visible</string>
60             </property>
61            </column>
62            <column>
63             <property name="text">
64              <string>Stemless</string>
65             </property>
66            </column>
67            <item row="0" column="0">
68             <property name="text">
69              <string>a</string>
70             </property>
71             <property name="checkState">
72              <enum>Unchecked</enum>
73             </property>
74             <property name="flags">
75              <set>ItemIsSelectable|ItemIsEnabled</set>
76             </property>
77            </item>
78            <item row="0" column="1">
79             <property name="text">
80              <string>visible</string>
81             </property>
82             <property name="checkState">
83              <enum>Checked</enum>
84             </property>
85            </item>
86            <item row="0" column="2">
87             <property name="text">
88              <string>c</string>
89             </property>
90             <property name="checkState">
91              <enum>Unchecked</enum>
92             </property>
93            </item>
94           </widget>
95          </item>
96         </layout>
97        </widget>
98       </item>
99       <item>
100        <widget class="QGroupBox" name="groupBox">
101         <property name="title">
102          <string>Measure Duration</string>
103         </property>
104         <layout class="QGridLayout">
105          <property name="verticalSpacing">
106           <number>0</number>
107          </property>
108          <item row="0" column="0">
109           <widget class="QLabel" name="label">
110            <property name="sizePolicy">
111             <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
112              <horstretch>0</horstretch>
113              <verstretch>0</verstretch>
114             </sizepolicy>
115            </property>
116            <property name="text">
117             <string>Nominal:</string>
118            </property>
119           </widget>
120          </item>
121          <item row="0" column="3">
122           <widget class="QLabel" name="label_3">
123            <property name="text">
124             <string>/</string>
125            </property>
126            <property name="alignment">
127             <set>Qt::AlignCenter</set>
128            </property>
129           </widget>
130          </item>
131          <item row="1" column="0">
132           <widget class="QLabel" name="label_2">
133            <property name="sizePolicy">
134             <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
135              <horstretch>0</horstretch>
136              <verstretch>0</verstretch>
137             </sizepolicy>
138            </property>
139            <property name="text">
140             <string>Actual:</string>
141            </property>
142           </widget>
143          </item>
144          <item row="1" column="1" colspan="2">
145           <widget class="QSpinBox" name="actualZ">
146            <property name="minimum">
147             <number>1</number>
148            </property>
149            <property name="maximum">
150             <number>10000</number>
151            </property>
152           </widget>
153          </item>
154          <item row="1" column="3">
155           <widget class="QLabel" name="label_4">
156            <property name="text">
157             <string>/</string>
158            </property>
159            <property name="alignment">
160             <set>Qt::AlignCenter</set>
161            </property>
162           </widget>
163          </item>
164          <item row="0" column="6">
165           <spacer>
166            <property name="orientation">
167             <enum>Qt::Horizontal</enum>
168            </property>
169            <property name="sizeHint" stdset="0">
170             <size>
171              <width>40</width>
172              <height>20</height>
173             </size>
174            </property>
175           </spacer>
176          </item>
177          <item row="1" column="4" colspan="2">
178           <widget class="QComboBox" name="actualN">
179            <property name="currentIndex">
180             <number>2</number>
181            </property>
182            <item>
183             <property name="text">
184              <string>1</string>
185             </property>
186            </item>
187            <item>
188             <property name="text">
189              <string>2</string>
190             </property>
191            </item>
192            <item>
193             <property name="text">
194              <string>4</string>
195             </property>
196            </item>
197            <item>
198             <property name="text">
199              <string>8</string>
200             </property>
201            </item>
202            <item>
203             <property name="text">
204              <string>16</string>
205             </property>
206            </item>
207            <item>
208             <property name="text">
209              <string>32</string>
210             </property>
211            </item>
212            <item>
213             <property name="text">
214              <string>64</string>
215             </property>
216            </item>
217           </widget>
218          </item>
219          <item row="0" column="4" colspan="2">
220           <widget class="QLabel" name="nominalN">
221            <property name="autoFillBackground">
222             <bool>false</bool>
223            </property>
224            <property name="frameShape">
225             <enum>QFrame::StyledPanel</enum>
226            </property>
227            <property name="frameShadow">
228             <enum>QFrame::Sunken</enum>
229            </property>
230            <property name="text">
231             <string/>
232            </property>
233           </widget>
234          </item>
235          <item row="0" column="1" colspan="2">
236           <widget class="QLabel" name="nominalZ">
237            <property name="autoFillBackground">
238             <bool>false</bool>
239            </property>
240            <property name="frameShape">
241             <enum>QFrame::StyledPanel</enum>
242            </property>
243            <property name="frameShadow">
244             <enum>QFrame::Sunken</enum>
245            </property>
246            <property name="text">
247             <string notr="true"/>
248            </property>
249           </widget>
250          </item>
251         </layout>
252        </widget>
253       </item>
254       <item>
255        <widget class="QGroupBox" name="groupBox_2">
256         <property name="sizePolicy">
257          <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
258           <horstretch>0</horstretch>
259           <verstretch>0</verstretch>
260          </sizepolicy>
261         </property>
262         <property name="minimumSize">
263          <size>
264           <width>0</width>
265           <height>0</height>
266          </size>
267         </property>
268         <property name="title">
269          <string>Other</string>
270         </property>
271         <layout class="QGridLayout" name="gridLayout1">
272          <property name="horizontalSpacing">
273           <number>6</number>
274          </property>
275          <item row="0" column="0" colspan="2">
276           <widget class="QCheckBox" name="irregular">
277            <property name="toolTip">
278             <string>Do not count</string>
279            </property>
280            <property name="text">
281             <string>Exclude from measure count</string>
282            </property>
283           </widget>
284          </item>
285          <item row="0" column="3">
286           <widget class="QCheckBox" name="breakMultiMeasureRest">
287            <property name="text">
288             <string>Break multimeasure rest</string>
289            </property>
290           </widget>
291          </item>
292          <item row="2" column="3">
293           <widget class="QLabel" name="labelCount">
294            <property name="sizePolicy">
295             <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
296              <horstretch>0</horstretch>
297              <verstretch>0</verstretch>
298             </sizepolicy>
299            </property>
300            <property name="text">
301             <string>Play count:</string>
302            </property>
303           </widget>
304          </item>
305          <item row="2" column="4">
306           <widget class="QSpinBox" name="count">
307            <property name="sizePolicy">
308             <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
309              <horstretch>0</horstretch>
310              <verstretch>0</verstretch>
311             </sizepolicy>
312            </property>
313            <property name="minimum">
314             <number>1</number>
315            </property>
316            <property name="maximum">
317             <number>9999</number>
318            </property>
319           </widget>
320          </item>
321          <item row="1" column="2">
322           <spacer name="horizontalSpacer">
323            <property name="orientation">
324             <enum>Qt::Horizontal</enum>
325            </property>
326            <property name="sizeHint" stdset="0">
327             <size>
328              <width>40</width>
329              <height>20</height>
330             </size>
331            </property>
332           </spacer>
333          </item>
334          <item row="1" column="3">
335           <widget class="QLabel" name="label_8">
336            <property name="sizePolicy">
337             <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
338              <horstretch>0</horstretch>
339              <verstretch>0</verstretch>
340             </sizepolicy>
341            </property>
342            <property name="toolTip">
343             <string>Layout stretch factor</string>
344            </property>
345            <property name="text">
346             <string>Layout stretch:</string>
347            </property>
348           </widget>
349          </item>
350          <item row="1" column="4">
351           <widget class="QDoubleSpinBox" name="layoutStretch">
352            <property name="sizePolicy">
353             <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
354              <horstretch>0</horstretch>
355              <verstretch>0</verstretch>
356             </sizepolicy>
357            </property>
358            <property name="minimum">
359             <double>0.000000000000000</double>
360            </property>
361            <property name="singleStep">
362             <double>0.100000000000000</double>
363            </property>
364            <property name="value">
365             <double>1.000000000000000</double>
366            </property>
367           </widget>
368          </item>
369          <item row="2" column="0">
370           <widget class="QLabel" name="label_7">
371            <property name="sizePolicy">
372             <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
373              <horstretch>0</horstretch>
374              <verstretch>0</verstretch>
375             </sizepolicy>
376            </property>
377            <property name="text">
378             <string>Add to measure number:</string>
379            </property>
380           </widget>
381          </item>
382          <item row="2" column="1">
383           <widget class="QSpinBox" name="measureNumberOffset">
384            <property name="sizePolicy">
385             <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
386              <horstretch>0</horstretch>
387              <verstretch>0</verstretch>
388             </sizepolicy>
389            </property>
390            <property name="minimum">
391             <number>-9999</number>
392            </property>
393            <property name="maximum">
394             <number>9999</number>
395            </property>
396           </widget>
397          </item>
398          <item row="1" column="0">
399           <widget class="QLabel" name="label_9">
400            <property name="text">
401             <string>Measure number mode:</string>
402            </property>
403           </widget>
404          </item>
405          <item row="1" column="1">
406           <widget class="QComboBox" name="measureNumberMode">
407            <item>
408             <property name="text">
409              <string>Auto</string>
410             </property>
411            </item>
412            <item>
413             <property name="text">
414              <string>Always Show</string>
415             </property>
416            </item>
417            <item>
418             <property name="text">
419              <string>Always Hide</string>
420             </property>
421            </item>
422           </widget>
423          </item>
424          <item row="1" column="5">
425           <spacer name="horizontalSpacer_2">
426            <property name="orientation">
427             <enum>Qt::Horizontal</enum>
428            </property>
429            <property name="sizeHint" stdset="0">
430             <size>
431              <width>40</width>
432              <height>20</height>
433             </size>
434            </property>
435           </spacer>
436          </item>
437         </layout>
438        </widget>
439       </item>
440       <item>
441        <layout class="QHBoxLayout" name="horizontalLayout_2">
442         <property name="topMargin">
443          <number>0</number>
444         </property>
445         <property name="bottomMargin">
446          <number>0</number>
447         </property>
448         <item>
449          <widget class="QToolButton" name="previousButton">
450           <property name="sizePolicy">
451            <sizepolicy hsizetype="Fixed" vsizetype="Preferred">
452             <horstretch>0</horstretch>
453             <verstretch>0</verstretch>
454            </sizepolicy>
455           </property>
456           <property name="toolTip">
457            <string>Go to previous measure</string>
458           </property>
459           <property name="text">
460            <string notr="true"/>
461           </property>
462           <property name="icon">
463            <iconset resource="musescore.qrc">
464             <normaloff>:/data/icons/go-previous.svg</normaloff>:/data/icons/go-previous.svg</iconset>
465           </property>
466          </widget>
467         </item>
468         <item>
469          <widget class="QToolButton" name="nextButton">
470           <property name="sizePolicy">
471            <sizepolicy hsizetype="Fixed" vsizetype="Preferred">
472             <horstretch>0</horstretch>
473             <verstretch>0</verstretch>
474            </sizepolicy>
475           </property>
476           <property name="toolTip">
477            <string>Go to next measure</string>
478           </property>
479           <property name="text">
480            <string notr="true"/>
481           </property>
482           <property name="icon">
483            <iconset resource="musescore.qrc">
484             <normaloff>:/data/icons/go-next.svg</normaloff>:/data/icons/go-next.svg</iconset>
485           </property>
486          </widget>
487         </item>
488         <item>
489          <widget class="QDialogButtonBox" name="buttonBox">
490           <property name="orientation">
491            <enum>Qt::Horizontal</enum>
492           </property>
493           <property name="standardButtons">
494            <set>QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
495           </property>
496          </widget>
497         </item>
498        </layout>
499       </item>
500      </layout>
501     </item>
502    </layout>
503   </item>
504  </layout>
505 </widget>
506 <tabstops>
507  <tabstop>staves</tabstop>
508  <tabstop>actualZ</tabstop>
509  <tabstop>actualN</tabstop>
510  <tabstop>irregular</tabstop>
511  <tabstop>breakMultiMeasureRest</tabstop>
512  <tabstop>measureNumberMode</tabstop>
513  <tabstop>layoutStretch</tabstop>
514  <tabstop>measureNumberOffset</tabstop>
515  <tabstop>count</tabstop>
516  <tabstop>previousButton</tabstop>
517  <tabstop>nextButton</tabstop>
518 </tabstops>
519 <resources>
520  <include location="musescore.qrc"/>
521 </resources>
522 <connections>
523  <connection>
524   <sender>buttonBox</sender>
525   <signal>accepted()</signal>
526   <receiver>MeasurePropertiesBase</receiver>
527   <slot>accept()</slot>
528   <hints>
529    <hint type="sourcelabel">
530     <x>248</x>
531     <y>254</y>
532    </hint>
533    <hint type="destinationlabel">
534     <x>157</x>
535     <y>274</y>
536    </hint>
537   </hints>
538  </connection>
539  <connection>
540   <sender>buttonBox</sender>
541   <signal>rejected()</signal>
542   <receiver>MeasurePropertiesBase</receiver>
543   <slot>reject()</slot>
544   <hints>
545    <hint type="sourcelabel">
546     <x>316</x>
547     <y>260</y>
548    </hint>
549    <hint type="destinationlabel">
550     <x>286</x>
551     <y>274</y>
552    </hint>
553   </hints>
554  </connection>
555 </connections>
556</ui>
557