mirror of
https://github.com/QuasarApp/QtDeployer.git
synced 2025-04-28 14:34:35 +00:00
56 lines
808 B
QML
Executable File
56 lines
808 B
QML
Executable File
import QtQuick 2.7
|
|
import Qt.labs.platform 1.0
|
|
import QtQuick.Controls 2.0
|
|
import QtQuick.Controls.Material 2.0
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
visible: true
|
|
title: qsTr("Qt Deployer")
|
|
|
|
width: 600
|
|
|
|
height: sp.implicitHeight + 300
|
|
|
|
property real smallFont: window.font.pointSize
|
|
property real mediumFont: window.font.pointSize + 2
|
|
property real largeFont: window.font.pointSize + 4
|
|
|
|
Material.accent: "#41cd71"
|
|
Material.primary: "#41cd71"
|
|
|
|
property var buttonColor: Material.accent
|
|
|
|
SwipeView {
|
|
id: swipeview
|
|
interactive: false
|
|
anchors.fill: parent
|
|
|
|
StartPage {
|
|
id: sp
|
|
}
|
|
|
|
BuildPage {
|
|
id: rb
|
|
}
|
|
|
|
PreparePage {
|
|
id: prp
|
|
}
|
|
|
|
ProcessPage {
|
|
id: pp
|
|
}
|
|
|
|
ResultPage {
|
|
id: rp
|
|
}
|
|
|
|
About {
|
|
id: ab
|
|
}
|
|
|
|
}
|
|
|
|
}
|