aboutsummaryrefslogtreecommitdiff
path: root/src/scenes/Scene_placeholder.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/scenes/Scene_placeholder.qml')
-rw-r--r--src/scenes/Scene_placeholder.qml57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/scenes/Scene_placeholder.qml b/src/scenes/Scene_placeholder.qml
new file mode 100644
index 0000000..fcb6134
--- /dev/null
+++ b/src/scenes/Scene_placeholder.qml
@@ -0,0 +1,57 @@
+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
+
+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 feature you expected here are not yet implemented.")
+ horizontalAlignment: Text.AlignHCenter
+ }
+ }
+}
+
+
+
+
+
+
+
+/*##^## Designer {
+ D{i:0;autoSize:true;height:480;width:640}
+}
+ ##^##*/