summaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/simple/apps/tld.test.simple2/app.qml
blob: 1a06c53dcfba67283cc63a9f956cea7b825248f9 (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
// Copyright (C) 2021 The Qt Company Ltd.
// Copyright (C) 2019 Luxoft Sweden AB
// Copyright (C) 2018 Pelagicore AG
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.4
import QtApplicationManager.Application 2.0

ApplicationManagerWindow {
    id: root

    Rectangle {
        anchors.centerIn: parent
        width: 180; height: 180; radius: width/4
        color: "red"
    }

    Connections {
        target: ApplicationInterface
        function onQuit() {
           //Do nothing, so we get killed by appman
        }
    }
}