aboutsummaryrefslogtreecommitdiff
path: root/src/scenes/Scene_no_server_available.qml
blob: 7b99b55e682df66c6089c0993d8a73c8d4edf02e (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
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_no_server_available
    objectName: "Scene_no_server_available"

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

        Text {
            color: Material.foreground
            id: title

            text: qsTr("Welcome!")
            font.pointSize: 20
            font.bold: true
            wrapMode: Text.WordWrap

            horizontalAlignment: Text.AlignLeft

            anchors.top: parent.top
            anchors.left: parent.left
            anchors.right: parent.right
            anchors.margins: 15
        }

        Text {
            color: Material.foreground
            anchors.top: title.bottom
            anchors.bottom: parent.bottom
            anchors.left: parent.left
            anchors.right: parent.right
            anchors.margins: 15

            horizontalAlignment: Text.AlignLeft
            wrapMode: Text.WordWrap
            /*: 'Add RWA-Server' has to be replaced with the correct translation in file main.qml .*/
            font.pointSize: 13
            text: qsTr("You need to add and select the remote \
web app server to which you want to connect. \
You can see a button to the left in the menu \
which says 'Add RWA-Server'. Follow the steps \
listed there and you can start your remote \
support session afterwards using the buttons \
above 'Add RWA-Server'.")
        }
    }
}







/*##^## Designer {
    D{i:0;autoSize:true;height:480;width:640}
}
 ##^##*/