aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols/testbench/ControlContainer.qml
blob: 1149ab35a62b4d3930d51c4b7b53feee92d373db (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
26
27
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick

Item {
    id: container

    implicitWidth: delegate.implicitWidth
    implicitHeight: delegate.implicitHeight

    property var controlMetaObject
    property var states

    Loader {
        id: delegate
        sourceComponent: controlMetaObject ? controlMetaObject.component : null

        function is(state) {
            return container.states.indexOf(state) !== -1
        }

        function anyStateContains(state) {
            return container.states.some(s => s.indexOf(state) !== -1)
        }
    }
}