added Labels on CalculatorStartPage
This commit is contained in:
parent
6de4ed1ae2
commit
2cd966e53c
2 changed files with 33 additions and 6 deletions
|
@ -17,6 +17,7 @@ Page {
|
|||
Label {
|
||||
id: gameProcess
|
||||
text: calculator.actualNumCount + " of " + calculator.numCount
|
||||
font.pixelSize: parent.width * 0.05
|
||||
anchors {
|
||||
right: parent.right
|
||||
rightMargin: parent.width * 0.025
|
||||
|
|
|
@ -10,14 +10,12 @@ Page {
|
|||
|
||||
ColumnLayout {
|
||||
id: column
|
||||
spacing: 5
|
||||
//spacing: height / 40
|
||||
width: parent.width
|
||||
anchors.fill: parent
|
||||
anchors.topMargin: parent.height * 0.02
|
||||
anchors.bottomMargin: parent.height * 0.02
|
||||
|
||||
onSpacingChanged: console.log(parent.width)
|
||||
|
||||
Label {
|
||||
id: heading
|
||||
font.pixelSize: parent.width * 0.075
|
||||
|
@ -27,6 +25,13 @@ Page {
|
|||
Layout.rightMargin: parent.width * 0.5 - width * 0.5
|
||||
}
|
||||
|
||||
Label {
|
||||
id: tickIntervalInfo
|
||||
text: "Interval:"
|
||||
font.pixelSize: parent.height * 0.05
|
||||
Layout.leftMargin: parent.width * 0.05
|
||||
}
|
||||
|
||||
|
||||
TextField {
|
||||
id: tickInterval
|
||||
|
@ -40,10 +45,17 @@ Page {
|
|||
Keys.onReturnPressed: root.start()
|
||||
}
|
||||
|
||||
Label {
|
||||
id: numCountInfo
|
||||
text: "Summands:"
|
||||
font.pixelSize: parent.height * 0.05
|
||||
Layout.leftMargin: parent.width * 0.05
|
||||
}
|
||||
|
||||
TextField {
|
||||
id: numCount
|
||||
text: calculator.numCount
|
||||
placeholderText: "numbercount"
|
||||
placeholderText: "summands"
|
||||
validator: IntValidator {bottom: 1; top: 100000;}
|
||||
horizontalAlignment: Qt.AlignHCenter
|
||||
Layout.fillWidth: true
|
||||
|
@ -52,10 +64,17 @@ Page {
|
|||
Keys.onReturnPressed: root.start()
|
||||
}
|
||||
|
||||
Label {
|
||||
id: minInfo
|
||||
text: "Minimum:"
|
||||
font.pixelSize: parent.height * 0.05
|
||||
Layout.leftMargin: parent.width * 0.05
|
||||
}
|
||||
|
||||
TextField {
|
||||
id: min
|
||||
text: calculator.min
|
||||
placeholderText: "min"
|
||||
placeholderText: "minimum"
|
||||
validator: IntValidator {bottom: -100000; top: 100000;}
|
||||
horizontalAlignment: Qt.AlignHCenter
|
||||
Layout.fillWidth: true
|
||||
|
@ -64,10 +83,17 @@ Page {
|
|||
Keys.onReturnPressed: root.start()
|
||||
}
|
||||
|
||||
Label {
|
||||
id: maxInfo
|
||||
text: "Maximum:"
|
||||
font.pixelSize: parent.height * 0.05
|
||||
Layout.leftMargin: parent.width * 0.05
|
||||
}
|
||||
|
||||
TextField {
|
||||
id: max
|
||||
text: calculator.max
|
||||
placeholderText: "max"
|
||||
placeholderText: "maximum"
|
||||
validator: IntValidator {bottom: -100000; top: 100000;}
|
||||
horizontalAlignment: Qt.AlignHCenter
|
||||
Layout.fillWidth: true
|
||||
|
|
Loading…
Reference in a new issue