2018-06-21 08:47:09 +02:00
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
|
|
|
|
Page {
|
|
|
|
id: root
|
2018-06-25 08:07:05 +02:00
|
|
|
objectName: "MainPage"
|
2018-07-06 13:29:16 +02:00
|
|
|
//anchors.fill: parent
|
2018-06-25 10:04:11 +02:00
|
|
|
|
2018-06-30 11:05:39 +02:00
|
|
|
Shortcut {
|
|
|
|
sequences: ["Esc", "Back"]
|
|
|
|
enabled: stackView.depth > 1
|
|
|
|
onActivated: {
|
|
|
|
stackView.pop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-21 16:41:02 +02:00
|
|
|
header: AppToolBar {
|
2018-06-21 08:47:09 +02:00
|
|
|
contentHeight: toolButton.implicitHeight
|
|
|
|
|
|
|
|
ToolButton {
|
|
|
|
id: toolButton
|
2018-06-25 10:04:11 +02:00
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
leftMargin: 5
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Label {
|
2018-07-19 17:19:09 +02:00
|
|
|
text: stackView.depth > 1 ? "\u2BC7" : "\u4E09"
|
2018-06-25 10:04:11 +02:00
|
|
|
font.pixelSize: Qt.application.font.pixelSize * 2
|
|
|
|
color: "white"
|
|
|
|
}
|
2018-06-21 16:41:02 +02:00
|
|
|
|
2018-06-21 08:47:09 +02:00
|
|
|
onClicked: {
|
|
|
|
if (stackView.depth > 1) {
|
|
|
|
stackView.pop()
|
|
|
|
} else {
|
|
|
|
drawer.open()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: stackView.currentItem.title
|
2018-07-19 17:19:09 +02:00
|
|
|
anchors {
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
left: toolButton.right
|
|
|
|
leftMargin: parent.width *0.01
|
|
|
|
}
|
|
|
|
|
2018-06-25 10:04:11 +02:00
|
|
|
color: "white"
|
2018-06-21 08:47:09 +02:00
|
|
|
}
|
2018-07-19 17:19:09 +02:00
|
|
|
|
|
|
|
Image {
|
|
|
|
source: stackView.currentItem.icon
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: parent.width *0.1
|
|
|
|
anchors.top: parent.top
|
|
|
|
height: parent.height
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
mipmap: true
|
|
|
|
asynchronous: true
|
|
|
|
}
|
2018-06-21 08:47:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Drawer {
|
|
|
|
id: drawer
|
|
|
|
width: window.width * 0.66
|
|
|
|
height: window.height
|
2018-07-19 17:19:09 +02:00
|
|
|
AppToolBar {
|
|
|
|
id: header
|
|
|
|
showErrorBar: false
|
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
}
|
2018-06-21 08:47:09 +02:00
|
|
|
|
2018-07-19 17:19:09 +02:00
|
|
|
Label {
|
|
|
|
text: "Menü"
|
|
|
|
anchors {
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
left: parent.left
|
|
|
|
leftMargin: 17
|
|
|
|
}
|
|
|
|
|
|
|
|
font.bold: true
|
|
|
|
}
|
|
|
|
}
|
2018-06-21 08:47:09 +02:00
|
|
|
Column {
|
2018-07-19 17:19:09 +02:00
|
|
|
anchors {
|
|
|
|
top: header.bottom
|
|
|
|
bottom: parent.bottom
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-21 08:47:09 +02:00
|
|
|
ItemDelegate {
|
2018-06-21 16:41:02 +02:00
|
|
|
text: qsTr("Fanny Webseite")
|
2018-06-21 08:47:09 +02:00
|
|
|
width: parent.width
|
|
|
|
onClicked: {
|
2018-06-21 16:41:02 +02:00
|
|
|
stackView.push("WebsitePage.qml")
|
2018-06-21 08:47:09 +02:00
|
|
|
drawer.close()
|
|
|
|
}
|
|
|
|
}
|
2018-06-22 15:33:16 +02:00
|
|
|
|
|
|
|
ItemDelegate {
|
|
|
|
text: qsTr("Speiseplan")
|
|
|
|
width: parent.width
|
|
|
|
onClicked: {
|
2018-06-25 00:15:18 +02:00
|
|
|
busyDialog.open()
|
|
|
|
var ret = _cppServerConn.getFoodPlan();
|
2018-06-22 15:33:16 +02:00
|
|
|
drawer.close()
|
2018-06-25 00:15:18 +02:00
|
|
|
busyDialog.close()
|
|
|
|
if(ret === 200 || _cppServerConn.getFoodPlanData(1).cookteam !== ""){
|
|
|
|
stackView.push("FoodPlanForm.qml")
|
|
|
|
}
|
2018-06-22 15:33:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-21 08:47:09 +02:00
|
|
|
ItemDelegate {
|
2018-07-19 17:19:09 +02:00
|
|
|
Label {
|
|
|
|
text: "abmelden"
|
|
|
|
color: "red"
|
|
|
|
anchors {
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
left: parent.left
|
|
|
|
leftMargin: 17
|
|
|
|
}
|
|
|
|
|
|
|
|
font.bold: true
|
2018-06-21 16:41:02 +02:00
|
|
|
}
|
2018-07-19 17:19:09 +02:00
|
|
|
width: parent.width
|
|
|
|
|
2018-06-21 16:41:02 +02:00
|
|
|
Dialog {
|
|
|
|
id: confirmationDialog
|
|
|
|
|
|
|
|
x: (window.width - width) / 2
|
|
|
|
y: (window.height - height) / 2
|
|
|
|
parent: ApplicationWindow.overlay
|
|
|
|
|
|
|
|
|
|
|
|
modal: true
|
|
|
|
standardButtons: Dialog.Cancel | Dialog.Ok
|
|
|
|
Column {
|
|
|
|
spacing: 20
|
|
|
|
anchors.fill: parent
|
|
|
|
Label {
|
|
|
|
text: "Möchtest du dich wirklich abmelden?"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
onAccepted: {
|
|
|
|
_cppServerConn.logout()
|
|
|
|
drawer.close()
|
|
|
|
root.StackView.view.push("LoginPage.qml")
|
|
|
|
}
|
2018-06-21 08:47:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
StackView {
|
|
|
|
id: stackView
|
|
|
|
initialItem: "HomeForm.qml"
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
2018-06-25 00:15:18 +02:00
|
|
|
|
|
|
|
Dialog {
|
|
|
|
id: busyDialog
|
|
|
|
modal: true
|
|
|
|
focus: true
|
|
|
|
//title: "Please wait..."
|
|
|
|
x: (window.width - width) / 2
|
|
|
|
y: window.height / 6
|
|
|
|
//width: Math.min(window.width, window.height) / 3 * 2
|
|
|
|
height: contentHeight * 1.5
|
|
|
|
width: contentWidth * 1.5
|
2018-06-30 20:59:42 +02:00
|
|
|
contentHeight: progressCircle.height
|
|
|
|
contentWidth: progressCircle.width
|
|
|
|
ProgressCircle {
|
|
|
|
id: progressCircle
|
|
|
|
size: 50
|
|
|
|
lineWidth: 5
|
2018-06-25 00:15:18 +02:00
|
|
|
anchors.centerIn: parent
|
2018-06-30 20:59:42 +02:00
|
|
|
colorCircle: "#FF3333"
|
|
|
|
colorBackground: "#E6E6E6"
|
|
|
|
showBackground: true
|
|
|
|
arcBegin: 0
|
|
|
|
arcEnd: 0
|
|
|
|
Label {
|
|
|
|
id: progress
|
|
|
|
anchors.centerIn: parent
|
|
|
|
text: "0%"
|
|
|
|
}
|
|
|
|
Timer {
|
|
|
|
id: refreshTimer
|
|
|
|
interval: 1;
|
|
|
|
running: busyDialog.visible
|
|
|
|
repeat: true
|
|
|
|
onTriggered: {
|
|
|
|
var ret = _cppServerConn.getProgress()
|
|
|
|
if(ret > 100 || ret < 0){
|
|
|
|
ret = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
progress.text = Math.round( ret * 100 ) + "%"
|
|
|
|
progressCircle.arcEnd = 360 * ret
|
|
|
|
}
|
|
|
|
}
|
2018-06-25 00:15:18 +02:00
|
|
|
}
|
|
|
|
}
|
2018-06-21 08:47:09 +02:00
|
|
|
}
|