aboutsummaryrefslogtreecommitdiff
path: root/src/scenes/add_server_wizard/Scene_step_1.qml
blob: 2eb6eaa175fb18d43e9b986c6192ab4923b54def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import QtQuick 2.9
import QtQuick.Window 2.2
import QtQuick.Extras 1.4
import QtQuick.Controls 2.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_step_1"

    Connections {
        target: add_server_wizard
        onStep1Success: {
            //main_content_push("scenes/add_server_wizard/Scene_step_2.qml", StackView.Transition)
            main_content_pop(null)
            mainqmladaptor.showToast(qsTr("Successfully added server address."), 5000);
        }
    }

    Connections {
        target: add_server_wizard
        onStep1Failed: {
            mainqmladaptor.showToast(reason, 3000);
        }
    }

    Rectangle {
        id: rectangle
        anchors.fill: parent
        color: Material.background

        Button {
            id: next_step1_button
            text: qsTr("Next Step")
            anchors.bottom: parent.bottom
            anchors.bottomMargin: 15
            anchors.right: parent.right
            anchors.rightMargin: 15

            onClicked: {
                add_server_wizard.processStep1(host_url.text)
            }
        }

        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}
}
 ##^##*/