aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/nestedWindowTransientParent.qml
blob: 51f076172d3aafca5cc82e2ec68ff803324a91e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick

//![0]
Window {
    // visible is false by default
    Window {
        transientParent: null
        visible: true
    }
//![0]

    id: outer
    Timer {
        interval: 2000
        running: true
        onTriggered: outer.visible = true
    }
//![1]
}
//![1]