diff options
author | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-07-01 18:05:40 +0200 |
---|---|---|
committer | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-07-01 18:05:40 +0200 |
commit | 4945818ec1b950081926431dbda093372824b364 (patch) | |
tree | c7e48e7e5a147578072998ab9b19981fb1672434 /src/scenes | |
parent | 2d858e000a4087de5f43352628d6bc41016fffff (diff) | |
download | RWA.Support.DesktopApp-4945818ec1b950081926431dbda093372824b364.tar.gz RWA.Support.DesktopApp-4945818ec1b950081926431dbda093372824b364.tar.bz2 RWA.Support.DesktopApp-4945818ec1b950081926431dbda093372824b364.zip |
Introduce add_server_wizard placeholder scenes; Add independent functions for scene operations.
Diffstat (limited to 'src/scenes')
-rw-r--r-- | src/scenes/add_server_wizard/Scene_step_1.qml | 55 | ||||
-rw-r--r-- | src/scenes/add_server_wizard/Scene_step_2.qml | 55 | ||||
-rw-r--r-- | src/scenes/add_server_wizard/Scene_step_3.qml | 54 |
3 files changed, 164 insertions, 0 deletions
diff --git a/src/scenes/add_server_wizard/Scene_step_1.qml b/src/scenes/add_server_wizard/Scene_step_1.qml new file mode 100644 index 0000000..2061db1 --- /dev/null +++ b/src/scenes/add_server_wizard/Scene_step_1.qml @@ -0,0 +1,55 @@ +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_server_wizard_step_1 + objectName: "Scene_server_wizard_step_1" + + Rectangle { + id: rectangle + anchors.fill: parent + color: Material.background + + Text { + color: Material.foreground + id: title + + text: qsTr("Step 1") + 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 + } + + Button { + id: next_step1_button + text: qsTr("Next Step") + anchors.bottom: parent.bottom + anchors.bottomMargin: 10 + anchors.right: parent.right + anchors.rightMargin: 10 + + onClicked: { + main_content_push("scenes/add_server_wizard/Scene_step_2.qml", StackView.Transition) + } + } + } +} + +/*##^## Designer { + D{i:0;autoSize:true;height:480;width:640} +} + ##^##*/ diff --git a/src/scenes/add_server_wizard/Scene_step_2.qml b/src/scenes/add_server_wizard/Scene_step_2.qml new file mode 100644 index 0000000..acc2a20 --- /dev/null +++ b/src/scenes/add_server_wizard/Scene_step_2.qml @@ -0,0 +1,55 @@ +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_server_wizard_step_2 + objectName: "Scene_server_wizard_step_2" + + Rectangle { + id: rectangle + anchors.fill: parent + color: Material.background + + Text { + color: Material.foreground + id: title + + text: qsTr("Step 2") + 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 + } + + Button { + id: next_step2_button + text: qsTr("Next Step") + anchors.bottom: parent.bottom + anchors.bottomMargin: 10 + anchors.right: parent.right + anchors.rightMargin: 10 + + onClicked: { + main_content_push("scenes/add_server_wizard/Scene_step_3.qml", StackView.Transition) + } + } + } +} + +/*##^## Designer { + D{i:0;autoSize:true;height:480;width:640} +} + ##^##*/ diff --git a/src/scenes/add_server_wizard/Scene_step_3.qml b/src/scenes/add_server_wizard/Scene_step_3.qml new file mode 100644 index 0000000..337537d --- /dev/null +++ b/src/scenes/add_server_wizard/Scene_step_3.qml @@ -0,0 +1,54 @@ +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_server_wizard_step_3 + objectName: "Scene_server_wizard_step_3" + + Rectangle { + id: rectangle + anchors.fill: parent + color: Material.background + + Text { + color: Material.foreground + id: title + + text: qsTr("Step 3") + 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 + } + + Button { + id: next_step3_button + text: qsTr("<- First step") + anchors.top: parent.top + anchors.left: parent.left + anchors.margins: 10 + + onClicked: { + main_content_pop(null, StackView.Transition) + } + } + } +} + +/*##^## Designer { + D{i:0;autoSize:true;height:480;width:640} +} + ##^##*/ |