QtDeployer/source/QML/main.qml

51 lines
753 B
QML
Raw Normal View History

2018-03-12 11:43:03 +03:30
import QtQuick 2.7
2018-05-10 16:17:45 +03:00
import Qt.labs.platform 1.0
2018-03-12 11:43:03 +03:30
import QtQuick.Controls 2.0
import QtQuick.Controls.Material 2.0
ApplicationWindow {
id: window
visible: true
2018-05-07 15:34:38 +03:00
title: qsTr("Qt Deployer")
2018-03-12 11:43:03 +03:30
width: 600
height: sp.implicitHeight + 30
property real smallFont: window.font.pointSize
property real mediumFont: window.font.pointSize + 2
property real largeFont: window.font.pointSize + 4
2018-04-24 16:55:29 +03:00
Material.accent: "#41cd71"
Material.primary: "#41cd71"
2018-03-12 11:43:03 +03:30
property var buttonColor: Material.accent
SwipeView {
id: swipeview
interactive: false
anchors.fill: parent
StartPage {
id: sp
}
PreparePage {
id: prp
}
ProcessPage {
id: pp
}
ResultPage {
id: rp
2018-05-10 16:17:45 +03:00
}
About {
id: ab
}
2018-03-12 11:43:03 +03:30
}
2018-05-10 16:17:45 +03:00
2018-03-12 11:43:03 +03:30
}