mathtrainingstuff/CalculatorMainPage.qml

85 lines
1.8 KiB
QML
Raw Normal View History

2018-11-22 12:39:09 +01:00
import QtQuick 2.9
import QtQuick.Controls 2.4
import "./"
Page {
2018-11-23 17:14:09 +01:00
id: root
2018-11-22 12:39:09 +01:00
signal pageOpened()
2018-11-23 17:14:09 +01:00
Label {
id: num
anchors.centerIn: parent
font.pixelSize: calculator.height * 0.6
text: calculator.nextNum
2018-11-22 12:39:09 +01:00
}
2018-11-23 17:14:09 +01:00
ProgressBar {
id: prog
property int progress: 0
//property string col: "green"
value: progress/100
2018-11-23 17:14:09 +01:00
anchors {
bottom: parent.bottom
bottomMargin: parent.height * 0.02
left: parent.left
leftMargin: parent.width * 0.01
right: parent.right
rightMargin: parent.width * 0.01
}
/*
progress: Rectangle {
color: col
}
*/
2018-11-23 17:14:09 +01:00
NumberAnimation {
id: progNumAnim
2018-11-23 17:14:09 +01:00
target: prog
property: "progress"
from: 100
to: 0
duration: tick.interval
easing.type: Easing.Linear
2018-11-22 12:39:09 +01:00
}
/*
ColorAnimation {
id: progColAnim
target: prog
property: "color"
from: "green"
to: "red"
duration: tick.interval
easing.type: Easing.Linear
}
*/
2018-11-23 17:14:09 +01:00
}
2018-11-22 12:39:09 +01:00
2018-11-23 17:14:09 +01:00
Timer {
id: tick
interval: calculator.tickInterval
repeat: false
running: calculator.state === "running"
2018-11-22 12:39:09 +01:00
2018-11-23 17:14:09 +01:00
onTriggered: {
2018-11-26 19:33:59 +01:00
if (calculator.actualNumCount < calculator.numCount) {
2018-11-23 17:14:09 +01:00
nextNumber()
tick.start()
2018-11-22 12:39:09 +01:00
}
2018-11-23 17:14:09 +01:00
else {
calculator.state = "ending"
2018-11-22 12:39:09 +01:00
}
}
2018-11-23 17:14:09 +01:00
onRunningChanged: {
if(running){
progNumAnim.start()
//progColAnim.start()
2018-11-22 12:39:09 +01:00
}
}
}
}