aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/windowActiveAttached.qml
blob: 791091ef82a2e89e8ef570a7e7c350246c78eb7d (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//![entire]
import QtQuick

Text {
    text: Window.active ? "active" : "inactive"
}
//![entire]