summaryrefslogtreecommitdiffstats
path: root/examples/applicationmanager/application-features/system-ui/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/applicationmanager/application-features/system-ui/main.qml')
-rw-r--r--examples/applicationmanager/application-features/system-ui/main.qml209
1 files changed, 209 insertions, 0 deletions
diff --git a/examples/applicationmanager/application-features/system-ui/main.qml b/examples/applicationmanager/application-features/system-ui/main.qml
new file mode 100644
index 00000000..93af5d74
--- /dev/null
+++ b/examples/applicationmanager/application-features/system-ui/main.qml
@@ -0,0 +1,209 @@
+/****************************************************************************
+**
+** Copyright (C) 2019 Luxoft Sweden AB
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the Qt Application Manager.
+**
+** $QT_BEGIN_LICENSE:BSD-QTAS$
+** Commercial License Usage
+** Licensees holding valid commercial Qt Automotive Suite licenses may use
+** this file in accordance with the commercial license agreement provided
+** with the Software or, alternatively, in accordance with the terms
+** contained in a written agreement between you and The Qt Company. For
+** licensing terms and conditions see https://www.qt.io/terms-conditions.
+** For further information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+** * Redistributions of source code must retain the above copyright
+** notice, this list of conditions and the following disclaimer.
+** * Redistributions in binary form must reproduce the above copyright
+** notice, this list of conditions and the following disclaimer in
+** the documentation and/or other materials provided with the
+** distribution.
+** * Neither the name of The Qt Company Ltd nor the names of its
+** contributors may be used to endorse or promote products derived
+** from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+** SPDX-License-Identifier: BSD-3-Clause
+**
+****************************************************************************/
+
+import QtQuick 2.11
+import QtQuick.Window 2.11
+import QtApplicationManager.SystemUI 2.0
+
+Window {
+ title: "Fancy Apps - QtApplicationManager Example"
+ width: 1280
+ height: 800
+ color: "whitesmoke"
+
+ Text {
+ anchors.bottom: parent.bottom
+ text: (ApplicationManager.singleProcess ? "Single" : "Multi") + "-Process Mode"
+ }
+
+ Column {
+ z: 9998
+ Repeater {
+ model: ApplicationManager
+
+ Image {
+ source: icon
+ opacity: isRunning ? 0.3 : 1.0
+
+ Rectangle {
+ x: 96; y: 38
+ width: appid.width; height: appid.height
+ color: "whitesmoke"
+ visible: imouse.containsMouse
+
+ Text {
+ id: appid
+ text: application.name("en")
+ }
+ }
+
+ MouseArea {
+ id: imouse
+ anchors.fill: parent
+ hoverEnabled: true
+ onClicked: isRunning ? application.stop() : application.start();
+ }
+ }
+ }
+ }
+
+ Repeater {
+ model: ListModel { id: topLevelWindowsModel }
+
+ delegate: Rectangle {
+ id: chrome
+ width: draggrab.x + 10; height: draggrab.y + 10
+ color: "transparent"
+ border.width: 3
+ border.color: "grey"
+ z: model.index
+
+ Image {
+ id: draggrab
+ x: 710; y: 530
+ source: "grab.png"
+ visible: dragarea.containsMouse
+ }
+
+ MouseArea {
+ id: dragarea
+ anchors.fill: draggrab
+ hoverEnabled: true
+ drag.target: draggrab
+ drag.minimumX: 230
+ drag.minimumY: 170
+ }
+
+ Rectangle {
+ height: 25
+ width: parent.width
+ color: "grey"
+
+ Text {
+ anchors.horizontalCenter: parent.horizontalCenter
+ text: model.window.application ? model.window.application.name("en") : 'External Application'
+ }
+
+ MouseArea {
+ anchors.fill: parent
+ drag.target: chrome
+ onPressed: topLevelWindowsModel.move(model.index, topLevelWindowsModel.count - 1, 1);
+ }
+
+ Rectangle {
+ width: 25; height: 25
+ color: "chocolate"
+
+ MouseArea {
+ anchors.fill: parent
+ onClicked: model.window.close();
+ }
+ }
+ }
+
+ WindowItem {
+ anchors.fill: parent
+ anchors.margins: 3
+ anchors.topMargin: 25
+ window: model.window
+
+ Connections {
+ target: window
+ onContentStateChanged: {
+ if (window.contentState === WindowObject.NoSurface)
+ topLevelWindowsModel.remove(model.index, 1);
+ }
+ }
+ }
+
+ Component.onCompleted: {
+ x = 200 + model.index * 50;
+ y = 20 + model.index * 30;
+ }
+ }
+ }
+
+ Repeater {
+ model: ListModel { id: popupsModel }
+ delegate: WindowItem {
+ z: 9999 + model.index
+ width: 300; height: 100
+ anchors.centerIn: parent
+ window: model.window
+ Connections {
+ target: model.window
+ onContentStateChanged: {
+ if (model.window.contentState === WindowObject.NoSurface)
+ popupsModel.remove(model.index, 1);
+ }
+ }
+ }
+ }
+
+ Connections {
+ target: WindowManager
+ onWindowAdded: {
+ var model = window.windowProperty("type") === "pop-up" ? popupsModel : topLevelWindowsModel;
+ model.append({"window":window});
+ }
+ }
+
+ Connections {
+ target: ApplicationManager
+ onApplicationRunStateChanged: {
+ if (runState === Am.NotRunning
+ && ApplicationManager.application(id).lastExitStatus === Am.CrashExit) {
+ ApplicationManager.startApplication(id);
+ }
+ }
+ }
+}