diff options
| author | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-08-10 14:56:44 +0200 |
|---|---|---|
| committer | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-08-10 14:56:44 +0200 |
| commit | 6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a (patch) | |
| tree | cd2c53b90bb13375df387414e99e6d8e7509e2a9 /src/scenes/Scene_no_server_available.qml | |
| parent | afeb0381f568b4c9f51296cd5de325c8c8aac3f2 (diff) | |
| download | RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.tar.gz RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.tar.bz2 RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.zip | |
Complete restructure of current code tree
Diffstat (limited to 'src/scenes/Scene_no_server_available.qml')
| -rw-r--r-- | src/scenes/Scene_no_server_available.qml | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/src/scenes/Scene_no_server_available.qml b/src/scenes/Scene_no_server_available.qml deleted file mode 100644 index 7b99b55..0000000 --- a/src/scenes/Scene_no_server_available.qml +++ /dev/null @@ -1,71 +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_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} -} - ##^##*/ |
