ConfigurePage: button dispositions and page height managed
This commit is contained in:
parent
a9aada07d8
commit
a44bb5841c
1 changed files with 14 additions and 6 deletions
|
@ -33,7 +33,6 @@ Dialog {
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
spacing: Theme.paddingLarge
|
|
||||||
|
|
||||||
DialogHeader {
|
DialogHeader {
|
||||||
id: header
|
id: header
|
||||||
|
@ -41,6 +40,7 @@ Dialog {
|
||||||
|
|
||||||
PageHeader {
|
PageHeader {
|
||||||
title: qsTr("Configuration")
|
title: qsTr("Configuration")
|
||||||
|
visible: configurePage.height > 600
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
@ -52,6 +52,7 @@ Dialog {
|
||||||
id: la
|
id: la
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: parent.margin_x
|
anchors.leftMargin: parent.margin_x
|
||||||
|
anchors.top: parent.top
|
||||||
text: Config.la
|
text: Config.la
|
||||||
label: qsTr("La")
|
label: qsTr("La")
|
||||||
width: Theme.fontSizeMedium * 5
|
width: Theme.fontSizeMedium * 5
|
||||||
|
@ -63,6 +64,8 @@ Dialog {
|
||||||
height: buttonHeight
|
height: buttonHeight
|
||||||
anchors.left: la.right
|
anchors.left: la.right
|
||||||
anchors.leftMargin: parent.margin_x
|
anchors.leftMargin: parent.margin_x
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.topMargin: Theme.fontSizeSmall
|
||||||
text: "-"
|
text: "-"
|
||||||
preferredWidth: Theme.buttonWidthSmall
|
preferredWidth: Theme.buttonWidthSmall
|
||||||
onClicked: la.text = parseInt(la.text) - 1
|
onClicked: la.text = parseInt(la.text) - 1
|
||||||
|
@ -73,6 +76,8 @@ Dialog {
|
||||||
height: buttonHeight
|
height: buttonHeight
|
||||||
anchors.left: minus.right
|
anchors.left: minus.right
|
||||||
anchors.leftMargin: parent.margin_x
|
anchors.leftMargin: parent.margin_x
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.topMargin: Theme.fontSizeSmall
|
||||||
text: "+"
|
text: "+"
|
||||||
preferredWidth: Theme.buttonWidthSmall
|
preferredWidth: Theme.buttonWidthSmall
|
||||||
onClicked: la.text = parseInt(la.text) + 1
|
onClicked: la.text = parseInt(la.text) + 1
|
||||||
|
@ -83,10 +88,12 @@ Dialog {
|
||||||
Item {
|
Item {
|
||||||
id: pre_la_parent
|
id: pre_la_parent
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: Theme.fontSizeSmall * 3;
|
height: Theme.fontSizeSmall * 3 + 20;
|
||||||
property double case_l: width / la_tab.length
|
|
||||||
property double case_margin: case_l / 8;
|
property int margin_min: 10
|
||||||
property double case_width: case_l - case_margin * 2
|
property int case_width: Math.min(Theme.fontSizeMedium * 2, (width - margin_min * (la_tab.length + 1)) / la_tab.length)
|
||||||
|
property int case_margin: Math.min(Theme.fontSizeMedium, (width - case_width * la_tab.length) / (la_tab.length + 1))
|
||||||
|
property int case_l: case_margin + case_width
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: la_tab.length
|
model: la_tab.length
|
||||||
|
@ -97,7 +104,7 @@ Dialog {
|
||||||
height: buttonHeight
|
height: buttonHeight
|
||||||
preferredWidth: Theme.buttonWidthSmall
|
preferredWidth: Theme.buttonWidthSmall
|
||||||
x: index * pre_la_parent.case_l + pre_la_parent.case_margin
|
x: index * pre_la_parent.case_l + pre_la_parent.case_margin
|
||||||
y: 0
|
y: 10
|
||||||
down: la.text == configurePage.la_tab[index]
|
down: la.text == configurePage.la_tab[index]
|
||||||
onClicked: la.text = text
|
onClicked: la.text = text
|
||||||
}
|
}
|
||||||
|
@ -129,6 +136,7 @@ Dialog {
|
||||||
checked: Config.notes_style == 1
|
checked: Config.notes_style == 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onAccepted: {
|
onAccepted: {
|
||||||
Config.la = la.text
|
Config.la = la.text
|
||||||
Config.temperament_idx = combo.currentIndex
|
Config.temperament_idx = combo.currentIndex
|
||||||
|
|
Loading…
Reference in a new issue