Ensure static width of spinbox.

This commit is contained in:
armored-dragon 2024-11-19 19:41:53 -06:00
parent 7c462ab71c
commit 74235dc6f3
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -38,114 +38,121 @@ Item {
width: parent.width - 200;
}
SpinBox {
id: spinbox;
value: settingValue;
// decimals: 2;
from: minValue;
to: maxValue;
// stepSize: stepSize;
Item {
Layout.alignment: Qt.AlignRight;
implicitWidth: 200;
implicitHeight: parent.height;
width: 225;
height: parent.height;
contentItem: TextField {
id: spinboxText;
color: "white";
text: parent.value;
verticalAlignment: Qt.AlignVCenter
horizontalAlignment: TextInput.AlignHCenter
width: parent.width;
clip: true;
font.pointSize: 14
validator: RegExpValidator { regExp: /[0-9]*/ }
SpinBox {
id: spinbox;
value: settingValue;
// decimals: 2;
from: minValue;
to: maxValue;
// stepSize: stepSize;
Layout.alignment: Qt.AlignRight;
implicitWidth: 200;
implicitHeight: parent.height;
background: Rectangle {
color: "transparent";
border.width: 1;
border.color: "white";
radius: 10;
}
contentItem: TextField {
id: spinboxText;
color: "white";
text: parent.value;
verticalAlignment: Qt.AlignVCenter
horizontalAlignment: TextInput.AlignHCenter
width: parent.width;
clip: true;
font.pointSize: 14
validator: RegExpValidator { regExp: /[0-9]*/ }
onTextChanged: {
valueChanged(spinbox.value);
}
background: Rectangle {
color: "transparent";
border.width: 1;
border.color: "white";
radius: 10;
}
Keys.onPressed: {
if (event.key === Qt.Key_Return) {
event.accepted = true;
valueChanged(spinboxText.text);
onTextChanged: {
valueChanged(spinbox.value);
}
Keys.onPressed: {
if (event.key === Qt.Key_Return) {
event.accepted = true;
valueChanged(spinboxText.text);
}
}
}
}
up.indicator: Button {
height: parent.height - 15;
width: parent.height;
x: parent.width - width;
anchors.verticalCenter: parent.verticalCenter;
up.indicator: Button {
height: parent.height - 15;
width: parent.height;
x: parent.width - width;
anchors.verticalCenter: parent.verticalCenter;
background: Rectangle {
color: "transparent";
border.color: "white";
border.width: 1;
radius: 10;
}
Text {
text: "+";
color: "white";
font.pointSize: 20;
verticalAlignment: Qt.AlignVCenter
anchors.horizontalCenter: parent.horizontalCenter;
anchors.verticalCenter: parent.verticalCenter;
}
onClicked: {
spinbox.value += 1;
valueChanged(spinbox.value);
}
}
down.indicator: Button {
height: parent.height - 15;
width: parent.height;
anchors.verticalCenter: parent.verticalCenter;
background: Rectangle {
color: "transparent";
border.color: "white";
border.width: 1;
radius: 10;
}
Text {
text: "-";
color: "white";
font.pointSize: 20;
anchors.horizontalCenter: parent.horizontalCenter;
anchors.verticalCenter: parent.verticalCenter;
}
onClicked: {
spinbox.value -= 1;
valueChanged(spinbox.value);
}
}
background: Rectangle {
color: "transparent";
border.color: "white";
border.width: 1;
radius: 10;
}
Text {
text: "+";
color: "white";
font.pointSize: 20;
verticalAlignment: Qt.AlignVCenter
anchors.horizontalCenter: parent.horizontalCenter;
anchors.verticalCenter: parent.verticalCenter;
}
onClicked: {
spinbox.value += 1;
valueChanged(spinbox.value);
}
}
down.indicator: Button {
height: parent.height - 15;
width: parent.height;
anchors.verticalCenter: parent.verticalCenter;
background: Rectangle {
color: "transparent";
border.color: "white";
border.width: 1;
radius: 10;
}
Text {
text: "-";
color: "white";
font.pointSize: 20;
anchors.horizontalCenter: parent.horizontalCenter;
anchors.verticalCenter: parent.verticalCenter;
}
onClicked: {
spinbox.value -= 1;
valueChanged(spinbox.value);
}
Text {
visible: suffixText != "";
text: suffixText;
color: "white";
height: parent.height;
verticalAlignment: Qt.AlignVCenter
x: spinbox.width + 10;
}
background: Rectangle {
color: "transparent";
}
}
Text {
visible: suffixText != "";
text: suffixText;
color: "white";
height: parent.height;
verticalAlignment: Qt.AlignVCenter
}
}
}