aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickwindow/data/windowattached.qml
blob: e000d5c6fd137630785ffcea8730936f4b2e1bdc (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
import QtQuick 2.4
import QtQuick.Window 2.2

Rectangle {
    id: root
    width: 100
    height: 100
    property bool windowActive: root.Window.active
    Text {
        objectName: "rectangleWindowText"
        anchors.centerIn: parent
        text: (windowActive ? "active" : "inactive") + "\nvisibility: " + root.Window.visibility
    }

    property Window extraWindow: Window {
        objectName: "extraWindow"
        title: "extra window"
        visible: true
        Text {
            objectName: "extraWindowText"
            anchors.centerIn: parent
            text: (extraWindow.active ? "active" : "inactive") + "\nvisibility: " + Window.visibility
        }
    }
}