2018-05-10 16:17:45 +03:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.0
|
|
|
|
import QtQuick.Controls.Material 2.0
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
|
|
|
|
TopBar {
|
|
|
|
property string message: "Qt Deployer"
|
|
|
|
text: message
|
|
|
|
|
|
|
|
ToolButton {
|
|
|
|
id: home
|
|
|
|
text: "➔"
|
|
|
|
rotation: 180
|
|
|
|
font.pointSize: largeFont
|
|
|
|
anchors.right: parent.right
|
|
|
|
onClicked: swipeview.currentIndex = 0
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
ToolButton {
|
|
|
|
text: qsTr("About")
|
|
|
|
font.pointSize: smallFont
|
|
|
|
anchors.right: home.left
|
|
|
|
onClicked: {
|
2018-06-17 19:50:55 +03:00
|
|
|
swipeview.currentIndex = 5
|
2018-05-10 16:17:45 +03:00
|
|
|
}
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
}
|