mathtrainingstuff/CalculatorEndPage.qml

87 lines
2 KiB
QML
Raw Normal View History

import QtQuick 2.11
import QtQuick.Controls 2.4
import "./"
Page {
id: root
signal pageOpened()
2018-11-26 19:33:59 +01:00
TextField {
id: sumInput
placeholderText: "sum"
visible: !won.visible
validator: IntValidator {bottom: -1000000; top: 1000000;}
anchors {
horizontalCenter: parent.horizontalCenter
top: parent.top
topMargin: parent.height * 0.1
}
Keys.onReturnPressed: calculator.checkSum(sumInput.text)
}
Label {
id: won
text: calculator.endPageLabelText
font.pixelSize: parent.width * 0.2
visible: calculator.endPageVisibility
anchors {
horizontalCenter: parent.horizontalCenter
top: parent.top
topMargin: parent.height * 0.2
}
}
2018-11-26 19:33:59 +01:00
/*
Row {
anchors {
horizontalCenter: parent.horizontalCenter
bottom: parent.bottom
bottomMargin: parent.height * 0.2
}
height: childrenRect.height
width: childrenRect.width
spacing: root.height * 0.1
2018-11-26 19:33:59 +01:00
RoundButton {
id: homeButton
height: parent.width * 0.2
width: height
text: "home"
onClicked: {
game.state = "starting"
calculator.reset()
}
}
2018-11-26 19:33:59 +01:00
RoundButton {
id: startButtons
height: parent.width * 0.2
width: height
text: "start"
onClicked: {
calculator.reset()
calculator.state = "starting"
}
}
2018-11-26 19:33:59 +01:00
}
*/
2018-11-26 19:33:59 +01:00
RoundButton {
id: homeButton
height: parent.width * 0.2
width: height
text: "home"
visible: endPageVisibility
anchors {
horizontalCenter: parent.horizontalCenter
bottom: parent.bottom
bottomMargin: parent.height * 0.1
}
2018-11-26 19:33:59 +01:00
onClicked: {
calculator.reset()
calculator.state = "starting"
}
}
}