Accessible dialogs.
Added screen-reader feedback Did tabbing orders and focus policies Fix inspector focus shiftings
This commit is contained in:
parent
ce4649b410
commit
9338481a47
43 changed files with 1021 additions and 52 deletions
|
@ -1715,7 +1715,7 @@ Shortcut Shortcut::sc[] = {
|
|||
QT_TRANSLATE_NOOP("action","Add picture")
|
||||
),
|
||||
Shortcut(
|
||||
MsWidget::MAIN_WINDOW,
|
||||
MsWidget::SCORE_TAB,
|
||||
STATE_NORMAL | STATE_NOTE_ENTRY | STATE_PLAY,
|
||||
0,
|
||||
"play",
|
||||
|
|
|
@ -67,7 +67,6 @@ void MuseScore::showInspector(bool visible)
|
|||
}
|
||||
if (inspector)
|
||||
inspector->setVisible(visible);
|
||||
a->setChecked(visible);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------
|
||||
|
@ -80,6 +79,7 @@ Inspector::Inspector(QWidget* parent)
|
|||
setObjectName("inspector");
|
||||
setAllowedAreas(Qt::DockWidgetAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea));
|
||||
sa = new QScrollArea;
|
||||
sa->setAccessibleName(tr("Inspector Subwindow"));
|
||||
sa->setFrameShape(QFrame::NoFrame);
|
||||
sa->setWidgetResizable(true);
|
||||
setWidget(sa);
|
||||
|
@ -237,34 +237,34 @@ void Inspector::setElements(const QList<Element*>& l)
|
|||
ww->deleteLater();
|
||||
sa->setWidget(ie);
|
||||
|
||||
//setting focus policies for every widget and
|
||||
//removing every widget from the tabbing order until suport for
|
||||
//accessibility is provided
|
||||
//focus policies were set by hand in each inspector_*.ui. this code just helps keeping them like they are
|
||||
//also fixes mac problem. on Mac Qt::TabFocus doesn't work, but Qt::StrongFocus works
|
||||
QList<QWidget*> widgets = ie->findChildren<QWidget*>();
|
||||
for (int i = 0; i < widgets.size(); i++) {
|
||||
QWidget* currentWidget = widgets.at(i);
|
||||
switch (currentWidget->focusPolicy()) {
|
||||
case Qt::TabFocus:
|
||||
currentWidget->setFocusPolicy(Qt::NoFocus);
|
||||
break;
|
||||
#if defined(Q_OS_MAC)
|
||||
currentWidget->setFocusPolicy(Qt::StrongFocus);
|
||||
#endif
|
||||
case Qt::WheelFocus:
|
||||
case Qt::StrongFocus:
|
||||
case Qt::ClickFocus:
|
||||
#if defined(Q_OS_MAC)
|
||||
//leave them like they are
|
||||
#else
|
||||
if (currentWidget->parent()->inherits("QAbstractSpinBox") ||
|
||||
currentWidget->inherits("QLineEdit")) {
|
||||
currentWidget->setFocusPolicy(Qt::ClickFocus);
|
||||
}
|
||||
else {
|
||||
currentWidget->setFocusPolicy(Qt::NoFocus);
|
||||
}
|
||||
currentWidget->inherits("QAbstractSpinBox") ||
|
||||
currentWidget->inherits("QLineEdit")) ; //leave it like it is
|
||||
else
|
||||
currentWidget->setFocusPolicy(Qt::TabFocus);
|
||||
#endif
|
||||
break;
|
||||
case Qt::NoFocus:
|
||||
case Qt::ClickFocus:
|
||||
currentWidget->setFocusPolicy(Qt::NoFocus);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// setMinimumWidth(ie->width() + sa->frameWidth() * 2 + (width() - sa->width()) + 3);
|
||||
setMinimumWidth(ie->sizeHint().width() + sa->frameWidth() * 2 + (width() - sa->width()) + 3);
|
||||
}
|
||||
_element = e;
|
||||
ie->setElement();
|
||||
|
|
|
@ -27,6 +27,7 @@ namespace Ms {
|
|||
InspectorBase::InspectorBase(QWidget* parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
setAccessibleName(tr("Inspector"));
|
||||
resetMapper = new QSignalMapper(this);
|
||||
valueMapper = new QSignalMapper(this);
|
||||
blockSignals = false;
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Accidental Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -37,6 +40,9 @@
|
|||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Accidental</string>
|
||||
</property>
|
||||
|
@ -68,6 +74,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Small value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -91,6 +100,12 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Small</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Small</string>
|
||||
</property>
|
||||
|
@ -100,6 +115,10 @@
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<tabstops>
|
||||
<tabstop>small</tabstop>
|
||||
<tabstop>resetSmall</tabstop>
|
||||
</tabstops>
|
||||
<resources>
|
||||
<include location="../musescore.qrc"/>
|
||||
</resources>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Ambitus Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -37,6 +40,9 @@
|
|||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Part Range</string>
|
||||
</property>
|
||||
|
@ -93,6 +99,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Head group</string>
|
||||
</property>
|
||||
<property name="frame">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -170,6 +179,9 @@
|
|||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QDoubleSpinBox" name="lineWidth">
|
||||
<property name="accessibleName">
|
||||
<string>Line width</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>sp</string>
|
||||
</property>
|
||||
|
@ -192,6 +204,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Line width value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -230,6 +245,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Bottom note</string>
|
||||
</property>
|
||||
<property name="maxVisibleItems">
|
||||
<number>15</number>
|
||||
</property>
|
||||
|
@ -430,6 +448,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="bottomOctave">
|
||||
<property name="accessibleName">
|
||||
<string>Oct</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>-1</number>
|
||||
</property>
|
||||
|
@ -442,6 +463,12 @@
|
|||
</item>
|
||||
<item row="3" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="hasLine">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Has line</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Has line</string>
|
||||
</property>
|
||||
|
@ -458,6 +485,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Has line value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -503,6 +533,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Top note</string>
|
||||
</property>
|
||||
<property name="maxVisibleItems">
|
||||
<number>15</number>
|
||||
</property>
|
||||
|
@ -703,6 +736,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="topOctave">
|
||||
<property name="accessibleName">
|
||||
<string>Oct</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>-1</number>
|
||||
</property>
|
||||
|
@ -721,6 +757,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Head type</string>
|
||||
</property>
|
||||
<property name="frame">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -762,6 +801,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Head group value</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../musescore.qrc">
|
||||
<normaloff>:/data/icons/resetproperty.png</normaloff>:/data/icons/resetproperty.png</iconset>
|
||||
|
@ -798,6 +840,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Direction value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -830,6 +875,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="updateRange">
|
||||
<property name="accessibleName">
|
||||
<string>Update range</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Update Range</string>
|
||||
</property>
|
||||
|
@ -861,6 +909,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Head type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -897,6 +948,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Direction</string>
|
||||
</property>
|
||||
<property name="frame">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Articulation Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -97,6 +100,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Anchor</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Above Staff</string>
|
||||
|
@ -132,6 +138,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Direction</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Auto</string>
|
||||
|
@ -151,6 +160,9 @@
|
|||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QToolButton" name="resetDirection">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Direction value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -187,6 +199,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Time stretch</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<double>0.100000000000000</double>
|
||||
</property>
|
||||
|
@ -194,6 +209,9 @@
|
|||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QToolButton" name="resetAnchor">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Anchor value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -211,6 +229,9 @@
|
|||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QToolButton" name="resetTimeStretch">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Time stretch value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Barline Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -64,7 +67,11 @@
|
|||
<number>0</number>
|
||||
</property>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="type"/>
|
||||
<widget class="QComboBox" name="type">
|
||||
<property name="accessibleName">
|
||||
<string>Type</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
|
@ -90,6 +97,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -139,6 +149,9 @@
|
|||
<property name="value">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Span from</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
|
@ -146,6 +159,9 @@
|
|||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Span</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
|
@ -162,13 +178,20 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QSpinBox" name="spanTo"/>
|
||||
<widget class="QSpinBox" name="spanTo">
|
||||
<property name="accessibleName">
|
||||
<string>Span to</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QToolButton" name="resetSpan">
|
||||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Span value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -189,6 +212,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Span from value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -209,6 +235,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Span to value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -238,13 +267,20 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QComboBox" name="spanType"/>
|
||||
<widget class="QComboBox" name="spanType">
|
||||
<property name="accessibleName">
|
||||
<string>Spantype</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="2">
|
||||
<widget class="QToolButton" name="resetSpanType">
|
||||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Span type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -264,6 +300,18 @@
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<tabstops>
|
||||
<tabstop>type</tabstop>
|
||||
<tabstop>resetType</tabstop>
|
||||
<tabstop>span</tabstop>
|
||||
<tabstop>resetSpan</tabstop>
|
||||
<tabstop>spanFrom</tabstop>
|
||||
<tabstop>resetSpanFrom</tabstop>
|
||||
<tabstop>spanTo</tabstop>
|
||||
<tabstop>resetSpanTo</tabstop>
|
||||
<tabstop>spanType</tabstop>
|
||||
<tabstop>resetSpanType</tabstop>
|
||||
</tabstops>
|
||||
<resources>
|
||||
<include location="../musescore.qrc"/>
|
||||
</resources>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Beam Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -37,6 +40,9 @@
|
|||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Beam Inspector</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Beam</string>
|
||||
</property>
|
||||
|
@ -65,6 +71,9 @@
|
|||
</property>
|
||||
<item row="2" column="1" colspan="2">
|
||||
<widget class="QComboBox" name="direction">
|
||||
<property name="accessibleName">
|
||||
<string>Direction</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Auto</string>
|
||||
|
@ -129,6 +138,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Vertical position offset left</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>sp</string>
|
||||
</property>
|
||||
|
@ -167,6 +179,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Direction value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -190,6 +205,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Vertical position offset right</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>sp</string>
|
||||
</property>
|
||||
|
@ -212,6 +230,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Grow Left</string>
|
||||
</property>
|
||||
<property name="singleStep">
|
||||
<double>0.250000000000000</double>
|
||||
</property>
|
||||
|
@ -228,6 +249,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Grow Right value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -251,6 +275,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Grow Left value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -274,6 +301,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Grow Right</string>
|
||||
</property>
|
||||
<property name="singleStep">
|
||||
<double>0.250000000000000</double>
|
||||
</property>
|
||||
|
@ -290,6 +320,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset User position value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -307,6 +340,12 @@
|
|||
</item>
|
||||
<item row="1" column="0" colspan="3">
|
||||
<widget class="QCheckBox" name="distribute">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Local Relayout</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Local Relayout</string>
|
||||
</property>
|
||||
|
@ -320,6 +359,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Local Relayout value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -337,6 +379,12 @@
|
|||
</item>
|
||||
<item row="6" column="0" colspan="3">
|
||||
<widget class="QCheckBox" name="userPosition">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>User Position</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>User Position</string>
|
||||
</property>
|
||||
|
@ -344,6 +392,12 @@
|
|||
</item>
|
||||
<item row="5" column="0" colspan="3">
|
||||
<widget class="QCheckBox" name="noSlope">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Horizontal</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Horizontal</string>
|
||||
</property>
|
||||
|
@ -357,6 +411,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Horizontal value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Chord Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -65,6 +68,9 @@
|
|||
</property>
|
||||
<item row="1" column="2">
|
||||
<widget class="QToolButton" name="resetY">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Vertical offset value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -101,6 +107,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Stem direction</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Auto</string>
|
||||
|
@ -120,6 +129,9 @@
|
|||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QToolButton" name="resetX">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Horizontal offset value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -156,6 +168,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Vertical offset</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -175,6 +190,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Stem direction value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -211,6 +229,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Horizontal Offset</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -230,6 +251,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Small Value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -250,6 +274,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Stemless value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -273,6 +300,12 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Small</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Small</string>
|
||||
</property>
|
||||
|
@ -286,6 +319,12 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Stemless</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Stemless</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Clef Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -37,6 +40,9 @@
|
|||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Clef</string>
|
||||
</property>
|
||||
|
@ -71,6 +77,12 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Show courtesy</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show courtesy</string>
|
||||
</property>
|
||||
|
@ -81,6 +93,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Show courtesy value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Dynamic Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -75,6 +78,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Velocity value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -98,10 +104,17 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QSpinBox" name="velocity"/>
|
||||
<widget class="QSpinBox" name="velocity">
|
||||
<property name="accessibleName">
|
||||
<string>Velocity</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="dynRange">
|
||||
<property name="accessibleName">
|
||||
<string>Dynamic Range</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Staff</string>
|
||||
|
@ -124,6 +137,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Dynamic range value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -19,6 +19,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Element Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -114,6 +117,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Horizontal offset</string>
|
||||
</property>
|
||||
<property name="prefix">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
|
@ -158,6 +164,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Horizontal offset value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -181,6 +190,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Vertical offset</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -203,6 +215,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Vertical offset value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -245,6 +260,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Visible value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -268,6 +286,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Color value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -299,6 +320,9 @@
|
|||
</item>
|
||||
<item row="4" column="2">
|
||||
<widget class="QToolButton" name="hRaster">
|
||||
<property name="accessibleName">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -325,6 +349,9 @@
|
|||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Color</string>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::Box</enum>
|
||||
</property>
|
||||
|
@ -344,6 +371,12 @@
|
|||
<height>28</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Visible</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Visible</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Glissando Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -37,6 +40,9 @@
|
|||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Glissando</string>
|
||||
</property>
|
||||
|
@ -85,6 +91,9 @@
|
|||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QToolButton" name="resetText">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Text value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -102,6 +111,9 @@
|
|||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QToolButton" name="resetType">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -119,6 +131,9 @@
|
|||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="type">
|
||||
<property name="accessibleName">
|
||||
<string>Type</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>straight</string>
|
||||
|
@ -132,10 +147,17 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLineEdit" name="text"/>
|
||||
<widget class="QLineEdit" name="text">
|
||||
<property name="accessibleName">
|
||||
<string>Text</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QToolButton" name="resetShowText">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Show Text value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -153,6 +175,12 @@
|
|||
</item>
|
||||
<item row="2" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="showText">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Show Text</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show Text</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Element Group Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -65,6 +68,9 @@
|
|||
</property>
|
||||
<item row="0" column="1">
|
||||
<widget class="QPushButton" name="setColor">
|
||||
<property name="accessibleName">
|
||||
<string>Set Color</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Set Color</string>
|
||||
</property>
|
||||
|
@ -72,6 +78,9 @@
|
|||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="Awl::ColorLabel" name="color">
|
||||
<property name="accessibleName">
|
||||
<string>Color</string>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::Box</enum>
|
||||
</property>
|
||||
|
@ -79,6 +88,9 @@
|
|||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QPushButton" name="setVisible">
|
||||
<property name="accessibleName">
|
||||
<string>Set Visible</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Set Visible</string>
|
||||
</property>
|
||||
|
@ -86,6 +98,9 @@
|
|||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QPushButton" name="setInvisible">
|
||||
<property name="accessibleName">
|
||||
<string>Set Invisible</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Set Invisible</string>
|
||||
</property>
|
||||
|
@ -103,8 +118,6 @@
|
|||
<container>1</container>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources>
|
||||
<include location="../musescore.qrc"/>
|
||||
</resources>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Hairpin Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -37,6 +40,9 @@
|
|||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Hairpin</string>
|
||||
</property>
|
||||
|
@ -72,6 +78,9 @@
|
|||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QComboBox" name="hairpinType">
|
||||
<property name="accessibleName">
|
||||
<string>Tyoe</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>crescendo</string>
|
||||
|
@ -103,6 +112,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Velocity change value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -123,6 +135,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -140,6 +155,9 @@
|
|||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QComboBox" name="dynRange">
|
||||
<property name="accessibleName">
|
||||
<string>Dynamic range</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Staff</string>
|
||||
|
@ -158,7 +176,11 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QSpinBox" name="veloChange"/>
|
||||
<widget class="QSpinBox" name="veloChange">
|
||||
<property name="accessibleName">
|
||||
<string>Velocity change</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="label_3">
|
||||
|
@ -172,6 +194,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Dynamic range value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -199,6 +224,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Height value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -219,6 +247,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset continue Height value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -236,6 +267,9 @@
|
|||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QDoubleSpinBox" name="hairpinHeight">
|
||||
<property name="accessibleName">
|
||||
<string>Height</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>sp</string>
|
||||
</property>
|
||||
|
@ -246,6 +280,9 @@
|
|||
</item>
|
||||
<item row="5" column="1">
|
||||
<widget class="QDoubleSpinBox" name="hairpinContHeight">
|
||||
<property name="accessibleName">
|
||||
<string>Continue height</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>sp</string>
|
||||
</property>
|
||||
|
@ -256,6 +293,12 @@
|
|||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QCheckBox" name="hairpinCircledTip">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Circled tip</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Circled tip</string>
|
||||
</property>
|
||||
|
@ -266,6 +309,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Circled tip value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Horizontal Frame Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -74,6 +77,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Right Gap</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -103,6 +109,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Width</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>sp</string>
|
||||
</property>
|
||||
|
@ -122,6 +131,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Left Gap</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -155,6 +167,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Left Gap value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -175,6 +190,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Right Gap value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Image Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -72,6 +75,9 @@
|
|||
</item>
|
||||
<item row="1" column="1" colspan="2">
|
||||
<widget class="QCheckBox" name="autoscale">
|
||||
<property name="accessibleName">
|
||||
<string>Scale to frame size</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
|
@ -79,6 +85,9 @@
|
|||
</item>
|
||||
<item row="1" column="3">
|
||||
<widget class="QToolButton" name="resetAutoscale">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Scale to Frame Size value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -102,6 +111,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Height</string>
|
||||
</property>
|
||||
<property name="decimals">
|
||||
<number>1</number>
|
||||
</property>
|
||||
|
@ -118,6 +130,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Width</string>
|
||||
</property>
|
||||
<property name="decimals">
|
||||
<number>1</number>
|
||||
</property>
|
||||
|
@ -151,6 +166,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Scale Width</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string notr="true">%</string>
|
||||
</property>
|
||||
|
@ -179,6 +197,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Scale Height</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string notr="true">%</string>
|
||||
</property>
|
||||
|
@ -201,6 +222,9 @@
|
|||
</item>
|
||||
<item row="4" column="3">
|
||||
<widget class="QToolButton" name="resetLockAspectRatio">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Lock Aspect Ratio value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -218,6 +242,9 @@
|
|||
</item>
|
||||
<item row="5" column="3">
|
||||
<widget class="QToolButton" name="resetSizeIsSpatium">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Size in Spatium Units value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -235,6 +262,12 @@
|
|||
</item>
|
||||
<item row="4" column="0" colspan="3">
|
||||
<widget class="QCheckBox" name="lockAspectRatio">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Lock Aspect Ratio</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Lock Aspect Ratio</string>
|
||||
</property>
|
||||
|
@ -242,6 +275,12 @@
|
|||
</item>
|
||||
<item row="5" column="0" colspan="3">
|
||||
<widget class="QCheckBox" name="sizeIsSpatium">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Size in Spatium Units</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Size in Spatium Units</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Jump Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -67,7 +70,11 @@
|
|||
<item>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="jumpTo"/>
|
||||
<widget class="QLineEdit" name="jumpTo">
|
||||
<property name="accessibleName">
|
||||
<string>Jump to</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_2">
|
||||
|
@ -91,13 +98,24 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLineEdit" name="playUntil"/>
|
||||
<widget class="QLineEdit" name="playUntil">
|
||||
<property name="accessibleName">
|
||||
<string>Play until</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="continueAt"/>
|
||||
<widget class="QLineEdit" name="continueAt">
|
||||
<property name="accessibleName">
|
||||
<string>Continue at</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QToolButton" name="resetJumpTo">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Jump to value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -109,6 +127,9 @@
|
|||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QToolButton" name="resetPlayUntil">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Play until value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -120,6 +141,9 @@
|
|||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QToolButton" name="resetContinueAt">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Continue at value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Key Signature Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -65,6 +68,12 @@
|
|||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QCheckBox" name="showCourtesy">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Show courtesy</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show courtesy</string>
|
||||
</property>
|
||||
|
@ -75,6 +84,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Show courtesy value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Lasso Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -72,6 +75,9 @@
|
|||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QDoubleSpinBox" name="posY">
|
||||
<property name="accessibleName">
|
||||
<string>Vertical position</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>mm</string>
|
||||
</property>
|
||||
|
@ -91,6 +97,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Height</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>mm</string>
|
||||
</property>
|
||||
|
@ -110,6 +119,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Width</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>mm</string>
|
||||
</property>
|
||||
|
@ -133,6 +145,9 @@
|
|||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QDoubleSpinBox" name="posX">
|
||||
<property name="accessibleName">
|
||||
<string>Horizontal Position</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>mm</string>
|
||||
</property>
|
||||
|
@ -154,8 +169,6 @@
|
|||
<tabstop>sizeWidth</tabstop>
|
||||
<tabstop>sizeHeight</tabstop>
|
||||
</tabstops>
|
||||
<resources>
|
||||
<include location="../musescore.qrc"/>
|
||||
</resources>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Line Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -81,6 +84,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Line color value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -112,6 +118,12 @@
|
|||
</item>
|
||||
<item row="0" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="diagonal">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Allow diagonal</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Allow diagonal</string>
|
||||
</property>
|
||||
|
@ -122,6 +134,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Allow diagonal value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -145,6 +160,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Line color</string>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::Box</enum>
|
||||
</property>
|
||||
|
@ -152,6 +170,9 @@
|
|||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QDoubleSpinBox" name="lineWidth">
|
||||
<property name="accessibleName">
|
||||
<string>Line width</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="Spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -162,6 +183,9 @@
|
|||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QComboBox" name="lineStyle">
|
||||
<property name="accessibleName">
|
||||
<string>Line style</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Solid</string>
|
||||
|
@ -194,6 +218,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Line width value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -214,6 +241,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Line style value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Marker Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -65,6 +68,9 @@
|
|||
</property>
|
||||
<item row="0" column="2">
|
||||
<widget class="QToolButton" name="resetMarkerType">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Marker type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -88,10 +94,17 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLineEdit" name="jumpLabel"/>
|
||||
<widget class="QLineEdit" name="jumpLabel">
|
||||
<property name="accessibleName">
|
||||
<string>Label</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QToolButton" name="resetJumpLabel">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Label value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -109,6 +122,9 @@
|
|||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="markerType">
|
||||
<property name="accessibleName">
|
||||
<string>Marker Type</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Segno</string>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Note Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -74,6 +77,12 @@
|
|||
</property>
|
||||
<item row="7" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="play">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Play</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Play</string>
|
||||
</property>
|
||||
|
@ -87,6 +96,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Tuning</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<double>-200.000000000000000</double>
|
||||
</property>
|
||||
|
@ -154,6 +166,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Dot Position</string>
|
||||
</property>
|
||||
<property name="sizeAdjustPolicy">
|
||||
<enum>QComboBox::AdjustToContentsOnFirstShow</enum>
|
||||
</property>
|
||||
|
@ -188,6 +203,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Dot Position Value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -214,6 +232,9 @@
|
|||
<property name="maxVisibleItems">
|
||||
<number>14</number>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Head group</string>
|
||||
</property>
|
||||
<property name="frame">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -230,6 +251,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Mirror head value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -256,6 +280,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Velocity type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -282,6 +309,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Head type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -305,6 +335,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Velocity</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>-127</number>
|
||||
</property>
|
||||
|
@ -321,6 +354,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Head type</string>
|
||||
</property>
|
||||
<property name="frame">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -359,6 +395,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Velocity type</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Offset</string>
|
||||
|
@ -446,6 +485,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Velocity value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -469,6 +511,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Mirror Head</string>
|
||||
</property>
|
||||
<property name="frame">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -491,6 +536,12 @@
|
|||
</item>
|
||||
<item row="1" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="small">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Small</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Small </string>
|
||||
</property>
|
||||
|
@ -507,6 +558,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Head group value</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../musescore.qrc">
|
||||
<normaloff>:/data/icons/resetproperty.png</normaloff>:/data/icons/resetproperty.png</iconset>
|
||||
|
@ -530,6 +584,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Small value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -556,6 +613,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Tuning value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -582,6 +642,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Play value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Ottava Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -75,6 +78,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -99,6 +105,9 @@
|
|||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="ottavaType">
|
||||
<property name="accessibleName">
|
||||
<string>Type</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>8va</string>
|
||||
|
@ -133,6 +142,9 @@
|
|||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QComboBox" name="placement">
|
||||
<property name="accessibleName">
|
||||
<string>Placement</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>above</string>
|
||||
|
@ -150,6 +162,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Placement value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -167,6 +182,12 @@
|
|||
</item>
|
||||
<item row="2" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="numbersOnly">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Numbers only</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Numbers only</string>
|
||||
</property>
|
||||
|
@ -177,6 +198,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset numbers only value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Rest Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -68,6 +71,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Small value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -85,6 +91,12 @@
|
|||
</item>
|
||||
<item row="0" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="small">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Small</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Small</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Segment Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -87,6 +90,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Leading</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -109,6 +115,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Trailing</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -141,6 +150,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Leading value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -161,6 +173,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Trailing value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Slur Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -74,6 +77,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Line type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -110,6 +116,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Line type</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>solid</string>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Spacer Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -78,6 +81,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Height</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -94,6 +100,9 @@
|
|||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QToolButton" name="resetHeight">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Height value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Tempo Marking Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -68,6 +71,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset follow text value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -95,6 +101,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Tempo value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -112,6 +121,12 @@
|
|||
</item>
|
||||
<item row="0" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="followText">
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Follow text</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Follow text</string>
|
||||
</property>
|
||||
|
@ -119,6 +134,9 @@
|
|||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QDoubleSpinBox" name="tempo">
|
||||
<property name="accessibleName">
|
||||
<string>Tempo</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>BPM</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Text Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -71,13 +74,20 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="style"/>
|
||||
<widget class="QComboBox" name="style">
|
||||
<property name="accessibleName">
|
||||
<string>Style</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QToolButton" name="resetStyle">
|
||||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Style value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Text Line Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Time Signature Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -74,6 +77,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Show courtesy value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -97,6 +103,12 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="focusPolicy">
|
||||
<enum>Qt::TabFocus</enum>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Show courtesy</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Show courtesy</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Trill Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -78,6 +81,9 @@
|
|||
</item>
|
||||
<item row="0" column="1" colspan="2">
|
||||
<widget class="QComboBox" name="trillType">
|
||||
<property name="accessibleName">
|
||||
<string>Type</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>trill line</string>
|
||||
|
@ -110,6 +116,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Trill type</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="whatsThis">
|
||||
<string>Tuplet Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -68,6 +71,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Number Type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -88,6 +94,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Bracket Type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -105,6 +114,9 @@
|
|||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QComboBox" name="numberType">
|
||||
<property name="accessibleName">
|
||||
<string>Number Type</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Number</string>
|
||||
|
@ -138,6 +150,9 @@
|
|||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QComboBox" name="bracketType">
|
||||
<property name="accessibleName">
|
||||
<string>Bracket Type</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Automatic</string>
|
||||
|
@ -164,6 +179,9 @@
|
|||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="direction">
|
||||
<property name="accessibleName">
|
||||
<string>Direction</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Auto</string>
|
||||
|
@ -183,6 +201,9 @@
|
|||
</item>
|
||||
<item row="0" column="2">
|
||||
<widget class="QToolButton" name="resetDirection">
|
||||
<property name="accessibleName">
|
||||
<string>Reset Direction value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="whatsThis">
|
||||
<string>Vertical Frame Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -75,6 +78,12 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="whatsThis">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Top Gap value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -95,6 +104,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Bottom Gap value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -125,6 +137,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Left Margin</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>mm</string>
|
||||
</property>
|
||||
|
@ -144,6 +159,12 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="whatsThis">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Top Gap</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -173,6 +194,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Height</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>sp</string>
|
||||
</property>
|
||||
|
@ -199,6 +223,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Bottom Gap</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string extracomment="spatium unit">sp</string>
|
||||
</property>
|
||||
|
@ -242,6 +269,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Top Margin</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>mm</string>
|
||||
</property>
|
||||
|
@ -261,6 +291,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Right Margin</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>mm</string>
|
||||
</property>
|
||||
|
@ -280,6 +313,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Bottom Margin</string>
|
||||
</property>
|
||||
<property name="suffix">
|
||||
<string>mm</string>
|
||||
</property>
|
||||
|
@ -296,6 +332,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Left Margin value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -316,6 +355,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Right Margin value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -336,6 +378,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Top Margin value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
@ -356,6 +401,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Bottom Margin value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Volta Inspector</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
|
@ -65,6 +68,9 @@
|
|||
</property>
|
||||
<item row="0" column="1" colspan="2">
|
||||
<widget class="QComboBox" name="voltaType">
|
||||
<property name="accessibleName">
|
||||
<string>Type</string>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Open</string>
|
||||
|
@ -89,6 +95,9 @@
|
|||
<property name="toolTip">
|
||||
<string>reset value</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Reset Type value</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
|
|
|
@ -13,14 +13,24 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Instrument wizard</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout" stretch="10,0,15">
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QComboBox" name="instrumentGenreFilter"/>
|
||||
<widget class="QComboBox" name="instrumentGenreFilter">
|
||||
<property name="accessibleName">
|
||||
<string>Instrument Gendre Filter</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QTreeWidget" name="instrumentList">
|
||||
<property name="accessibleName">
|
||||
<string>Instrument List</string>
|
||||
</property>
|
||||
<property name="alternatingRowColors">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -56,6 +66,9 @@
|
|||
</property>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="search">
|
||||
<property name="accessibleName">
|
||||
<string>Search</string>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>Search</string>
|
||||
</property>
|
||||
|
@ -63,6 +76,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="clearSearch">
|
||||
<property name="accessibleName">
|
||||
<string>Clear</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Clear</string>
|
||||
</property>
|
||||
|
@ -95,6 +111,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Add</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Add</string>
|
||||
</property>
|
||||
|
@ -108,6 +127,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Remove</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Remove</string>
|
||||
</property>
|
||||
|
@ -134,6 +156,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Up</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Up</string>
|
||||
</property>
|
||||
|
@ -147,6 +172,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Down</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Down</string>
|
||||
</property>
|
||||
|
@ -173,6 +201,9 @@
|
|||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Add Staff</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Add Staff</string>
|
||||
</property>
|
||||
|
@ -180,6 +211,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="linkedButton">
|
||||
<property name="accessibleName">
|
||||
<string>Add Linked Staff</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Add Linked Staff</string>
|
||||
</property>
|
||||
|
@ -202,6 +236,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QTreeWidget" name="partiturList">
|
||||
<property name="accessibleName">
|
||||
<string>Added Instruments</string>
|
||||
</property>
|
||||
<property name="alternatingRowColors">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -244,9 +281,10 @@
|
|||
</layout>
|
||||
</widget>
|
||||
<tabstops>
|
||||
<tabstop>instrumentGenreFilter</tabstop>
|
||||
<tabstop>instrumentList</tabstop>
|
||||
<tabstop>search</tabstop>
|
||||
<tabstop>clearSearch</tabstop>
|
||||
<tabstop>instrumentList</tabstop>
|
||||
<tabstop>addButton</tabstop>
|
||||
<tabstop>removeButton</tabstop>
|
||||
<tabstop>upButton</tabstop>
|
||||
|
|
|
@ -3994,7 +3994,6 @@ void MuseScore::endCmd()
|
|||
if (e == 0 && cs->noteEntryMode())
|
||||
e = cs->inputState().cr();
|
||||
cs->end();
|
||||
currentScoreView()->setFocus();
|
||||
}
|
||||
else {
|
||||
if (inspector)
|
||||
|
@ -4308,7 +4307,11 @@ void MuseScore::cmd(QAction* a, const QString& cmd)
|
|||
|
||||
else {
|
||||
if (cv) {
|
||||
cv->setFocus();
|
||||
//isAncestorOf is called to see if a widget from inspector has focus
|
||||
//if so, the focus doesn't get shifted to the score, unless escape is
|
||||
//pressed, or the user clicks in the score
|
||||
if(!getInspector()->isAncestorOf(qApp->focusWidget()) || cmd == "escape")
|
||||
cv->setFocus();
|
||||
cv->cmd(a);
|
||||
}
|
||||
else
|
||||
|
|
|
@ -160,6 +160,9 @@ NewWizardPage1::NewWizardPage1(QWidget* parent)
|
|||
{
|
||||
setTitle(tr("Create New Score"));
|
||||
setSubTitle(tr("This wizard creates a new score"));
|
||||
//crash setAccessibleName(title());
|
||||
setAccessibleName(tr("Create New Score"));
|
||||
setAccessibleDescription(subTitle());
|
||||
|
||||
w = new TitleWizard;
|
||||
|
||||
|
@ -192,7 +195,8 @@ NewWizardPage2::NewWizardPage2(QWidget* parent)
|
|||
setTitle(tr("Create New Score"));
|
||||
setSubTitle(tr("Define a set of instruments. Each instrument"
|
||||
" is represented by one or more staves"));
|
||||
|
||||
setAccessibleName(title());
|
||||
setAccessibleDescription(subTitle());
|
||||
complete = false;
|
||||
w = new InstrumentsWidget;
|
||||
QGridLayout* grid = new QGridLayout;
|
||||
|
@ -240,6 +244,9 @@ NewWizardPage3::NewWizardPage3(QWidget* parent)
|
|||
{
|
||||
setTitle(tr("Create New Score"));
|
||||
setSubTitle(tr("Create Time Signature"));
|
||||
setAccessibleName(title());
|
||||
setAccessibleDescription(subTitle());
|
||||
|
||||
w = new TimesigWizard;
|
||||
QGridLayout* grid = new QGridLayout;
|
||||
grid->addWidget(w, 0, 0);
|
||||
|
@ -255,6 +262,8 @@ NewWizardPage4::NewWizardPage4(QWidget* parent)
|
|||
{
|
||||
setTitle(tr("Create New Score"));
|
||||
setSubTitle(tr("Select Template File:"));
|
||||
setAccessibleName(title());
|
||||
setAccessibleDescription(subTitle());
|
||||
|
||||
templateFileDialog = new QFileDialog;
|
||||
templateFileDialog->setParent(this);
|
||||
|
@ -362,9 +371,12 @@ NewWizardPage5::NewWizardPage5(QWidget* parent)
|
|||
{
|
||||
setTitle(tr("Create New Score"));
|
||||
setSubTitle(tr("Select Key Signature and Tempo:"));
|
||||
setAccessibleName(title());
|
||||
setAccessibleDescription(subTitle());
|
||||
|
||||
QGroupBox* b1 = new QGroupBox;
|
||||
b1->setTitle(tr("Key Signature"));
|
||||
b1->setAccessibleName(title());
|
||||
sp = MuseScore::newKeySigPalette();
|
||||
sp->setSelectable(true);
|
||||
sp->setSelected(14);
|
||||
|
@ -380,6 +392,7 @@ NewWizardPage5::NewWizardPage5(QWidget* parent)
|
|||
QLabel* bpm = new QLabel;
|
||||
bpm->setText(tr("BPM:"));
|
||||
_tempo = new QDoubleSpinBox;
|
||||
_tempo->setAccessibleName(tr("Beats per minute"));
|
||||
_tempo->setRange(20.0, 400.0);
|
||||
_tempo->setValue(100.0);
|
||||
QHBoxLayout* l2 = new QHBoxLayout;
|
||||
|
|
|
@ -22,7 +22,14 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="title"/>
|
||||
<widget class="QLineEdit" name="title">
|
||||
<property name="accessibleName">
|
||||
<string>Title</string>
|
||||
</property>
|
||||
<property name="accessibleDescription">
|
||||
<string>Insert title here</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_2">
|
||||
|
@ -32,7 +39,14 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLineEdit" name="subtitle"/>
|
||||
<widget class="QLineEdit" name="subtitle">
|
||||
<property name="accessibleName">
|
||||
<string>Subtitle</string>
|
||||
</property>
|
||||
<property name="accessibleDescription">
|
||||
<string>Insert subtitle here</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_3">
|
||||
|
@ -42,7 +56,14 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="composer"/>
|
||||
<widget class="QLineEdit" name="composer">
|
||||
<property name="accessibleName">
|
||||
<string>Composer</string>
|
||||
</property>
|
||||
<property name="accessibleDescription">
|
||||
<string>Insert composer's name here</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="label_4">
|
||||
|
@ -52,7 +73,14 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QLineEdit" name="poet"/>
|
||||
<widget class="QLineEdit" name="poet">
|
||||
<property name="accessibleName">
|
||||
<string>Lyricist</string>
|
||||
</property>
|
||||
<property name="accessibleDescription">
|
||||
<string>Insert lyricist's name here</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="label_5">
|
||||
|
@ -62,7 +90,14 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QLineEdit" name="copyright"/>
|
||||
<widget class="QLineEdit" name="copyright">
|
||||
<property name="accessibleName">
|
||||
<string>Copyright</string>
|
||||
</property>
|
||||
<property name="accessibleDescription">
|
||||
<string>Insert copyright here</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="0" colspan="2">
|
||||
<widget class="QRadioButton" name="rb1">
|
||||
|
|
|
@ -40,6 +40,7 @@ ShortcutCaptureDialog::ShortcutCaptureDialog(Shortcut* _s, QMap<QString, Shortcu
|
|||
addButton->setEnabled(false);
|
||||
replaceButton->setEnabled(false);
|
||||
oshrtLabel->setText(s->keysToString());
|
||||
oshrtTextLabel->setAccessibleDescription(s->keysToString());
|
||||
oshrtLabel->setEnabled(false);
|
||||
connect(clearButton, SIGNAL(clicked()), SLOT(clearClicked()));
|
||||
connect(addButton, SIGNAL(clicked()), SLOT(addClicked()));
|
||||
|
@ -83,13 +84,18 @@ ShortcutCaptureDialog::~ShortcutCaptureDialog()
|
|||
//---------------------------------------------------------
|
||||
|
||||
bool ShortcutCaptureDialog::eventFilter(QObject* /*o*/, QEvent* e)
|
||||
{
|
||||
if (e->type() == QEvent::KeyPress) {
|
||||
keyPress(static_cast<QKeyEvent*>(e));
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
{
|
||||
if (e->type() == QEvent::KeyPress) {
|
||||
QKeyEvent* keyEvent = static_cast<QKeyEvent*>(e);
|
||||
if(keyEvent->key() == Qt::Key_Tab || keyEvent->key() == Qt::Key_Backtab){
|
||||
QWidget::keyPressEvent(keyEvent);
|
||||
return true;
|
||||
}
|
||||
keyPress(keyEvent);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
//---------------------------------------------------------
|
||||
|
@ -163,6 +169,8 @@ qDebug("capture key 0x%x modifiers 0x%x virt 0x%x scan 0x%x <%s><%s>",
|
|||
|
||||
void ShortcutCaptureDialog::clearClicked()
|
||||
{
|
||||
addButton->setEnabled(false);
|
||||
replaceButton->setEnabled(false);
|
||||
nshrtLabel->setText("");
|
||||
key = 0;
|
||||
}
|
||||
|
|
|
@ -58,6 +58,9 @@
|
|||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="oshrtLabel">
|
||||
<property name="accessibleName">
|
||||
<string>Old shortcuts</string>
|
||||
</property>
|
||||
<property name="readOnly">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -72,6 +75,12 @@
|
|||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QLineEdit" name="nshrtLabel">
|
||||
<property name="accessibleName">
|
||||
<string>New shortcut</string>
|
||||
</property>
|
||||
<property name="accessibleDescription">
|
||||
<string>Type to set shortcut</string>
|
||||
</property>
|
||||
<property name="readOnly">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -98,7 +107,13 @@
|
|||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QToolButton" name="clearButton">
|
||||
<widget class="QPushButton" name="clearButton">
|
||||
<property name="accessibleName">
|
||||
<string>Clear</string>
|
||||
</property>
|
||||
<property name="accessibleDescription">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Clear</string>
|
||||
</property>
|
||||
|
@ -119,6 +134,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="addButton">
|
||||
<property name="accessibleName">
|
||||
<string>Add</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Add</string>
|
||||
</property>
|
||||
|
@ -129,6 +147,9 @@
|
|||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Replace</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Replace</string>
|
||||
</property>
|
||||
|
@ -139,6 +160,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="cancelButton">
|
||||
<property name="accessibleName">
|
||||
<string>Cancel</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Cancel</string>
|
||||
</property>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Time Signature Wizard</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox">
|
||||
|
@ -46,6 +49,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="timesigZ">
|
||||
<property name="accessibleName">
|
||||
<string>Beats in a bar</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
|
@ -75,6 +81,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QComboBox" name="timesigN">
|
||||
<property name="accessibleName">
|
||||
<string>Beat unit</string>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>2</number>
|
||||
</property>
|
||||
|
@ -135,6 +144,9 @@
|
|||
<property name="toolTip">
|
||||
<string>Cut time</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Cut Common Time</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
|
@ -149,6 +161,9 @@
|
|||
<property name="toolTip">
|
||||
<string>Common time</string>
|
||||
</property>
|
||||
<property name="accessibleName">
|
||||
<string>Common Time</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
|
@ -163,6 +178,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="pickupMeasure">
|
||||
<property name="accessibleName">
|
||||
<string>Pickup Measure</string>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Pickup Measure</string>
|
||||
</property>
|
||||
|
@ -185,6 +203,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="pickupTimesigZ">
|
||||
<property name="accessibleName">
|
||||
<string>Beats in a bar</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
|
@ -214,6 +235,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QComboBox" name="pickupTimesigN">
|
||||
<property name="accessibleName">
|
||||
<string>Beat unit</string>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>2</number>
|
||||
</property>
|
||||
|
@ -272,6 +296,9 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_2">
|
||||
<property name="accessibleName">
|
||||
<string>Enter Number of Measures</string>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Enter Number of Measures:</string>
|
||||
</property>
|
||||
|
@ -297,6 +324,12 @@
|
|||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QSpinBox" name="measureCount">
|
||||
<property name="accessibleName">
|
||||
<string>Measures</string>
|
||||
</property>
|
||||
<property name="accessibleDescription">
|
||||
<string>Hint: you can also add or remove measures after creation of the score.</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
</property>
|
||||
|
@ -345,6 +378,17 @@
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<tabstops>
|
||||
<tabstop>tsFraction</tabstop>
|
||||
<tabstop>timesigZ</tabstop>
|
||||
<tabstop>timesigN</tabstop>
|
||||
<tabstop>tsCutTime</tabstop>
|
||||
<tabstop>tsCommonTime</tabstop>
|
||||
<tabstop>pickupMeasure</tabstop>
|
||||
<tabstop>pickupTimesigZ</tabstop>
|
||||
<tabstop>pickupTimesigN</tabstop>
|
||||
<tabstop>measureCount</tabstop>
|
||||
</tabstops>
|
||||
<resources>
|
||||
<include location="musescore.qrc"/>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue