From 2dc27cddbe35ede34431a6fdf7bf931a7c286bc6 Mon Sep 17 00:00:00 2001 From: Daniel Teichmann Date: Fri, 2 Jul 2021 20:21:39 +0200 Subject: Introduce add_server_wizard.{cpp, h}; drop third add_server_wizard scene --- src/scenes/add_server_wizard/Scene_step_3.qml | 54 --------------------------- 1 file changed, 54 deletions(-) delete mode 100644 src/scenes/add_server_wizard/Scene_step_3.qml (limited to 'src/scenes/add_server_wizard/Scene_step_3.qml') diff --git a/src/scenes/add_server_wizard/Scene_step_3.qml b/src/scenes/add_server_wizard/Scene_step_3.qml deleted file mode 100644 index 337537d..0000000 --- a/src/scenes/add_server_wizard/Scene_step_3.qml +++ /dev/null @@ -1,54 +0,0 @@ -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} -} - ##^##*/ -- cgit v1.2.3