35 lines
632 B
QML
35 lines
632 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.4
|
|
|
|
import "../Components"
|
|
|
|
Page {
|
|
id: root
|
|
|
|
title: "Einstellungen"
|
|
|
|
signal opened()
|
|
|
|
onOpened: {
|
|
console.log("Settings Form opened")
|
|
|
|
var filters = _cppAppSettings.readFiltersQml()
|
|
}
|
|
|
|
Column {
|
|
id: settingsCol
|
|
|
|
anchors.fill: parent
|
|
|
|
SettingsDelegate {
|
|
width: parent.width
|
|
|
|
onClicked: {
|
|
formStack.push(filterForm)
|
|
}
|
|
|
|
title: "Klassen"
|
|
description: "Wähle die Klassen(stufen) aus, für die du den Vertretungsplan ansehen möchtest"
|
|
}
|
|
}
|
|
}
|