diff options
| author | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-08-10 14:56:44 +0200 |
|---|---|---|
| committer | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-08-10 14:56:44 +0200 |
| commit | 6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a (patch) | |
| tree | cd2c53b90bb13375df387414e99e6d8e7509e2a9 /rwa-support-desktopapp/src/scenes/Scene_placeholder.qml | |
| parent | afeb0381f568b4c9f51296cd5de325c8c8aac3f2 (diff) | |
| download | RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.tar.gz RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.tar.bz2 RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.zip | |
Complete restructure of current code tree
Diffstat (limited to 'rwa-support-desktopapp/src/scenes/Scene_placeholder.qml')
| -rw-r--r-- | rwa-support-desktopapp/src/scenes/Scene_placeholder.qml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/rwa-support-desktopapp/src/scenes/Scene_placeholder.qml b/rwa-support-desktopapp/src/scenes/Scene_placeholder.qml new file mode 100644 index 0000000..f492e00 --- /dev/null +++ b/rwa-support-desktopapp/src/scenes/Scene_placeholder.qml @@ -0,0 +1,56 @@ +import QtQuick 2.9 +import QtQuick.Window 2.2 +import QtQuick.Extras 1.4 +import QtQuick.Controls 2.2 +import QtQuick.Dialogs 1.2 +import QtQuick.Controls.Material 2.3 + +/*! + * This .qml file is a Scene which can be loaded through for + * example a StackView (main_content in main.qml). + */ + +Item { + id: scene_placeholder + objectName: "Scene_placeholder" + + Rectangle { + id: rectangle + anchors.fill: parent + color: Material.background + + Text { + color: Material.foreground + id: title + + text: qsTr("This is the placeholder scene!") + font.pointSize: 18 + wrapMode: Text.WordWrap + + font.bold: true + horizontalAlignment: Text.AlignHCenter + anchors.verticalCenter: parent.verticalCenter + anchors.left: parent.left + anchors.right: parent.right + anchors.margins: 5 + } + + Text { + color: Material.foreground + anchors.top: title.bottom + anchors.margins: 5 + anchors.bottom: parent.bottom + anchors.left: parent.left + anchors.right: parent.right + + wrapMode: Text.WordWrap + text: qsTr("The features you expected here are not yet implemented.") + horizontalAlignment: Text.AlignHCenter + } + } +} + +/*##^## Designer { + D{i:0;autoSize:true;height:480;width:640} +} + ##^##*/ |
