aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols/gifs/data/qtquickcontrols-checkdelegate-tristate.qml
blob: 3dfec43cf59e43df6279581ab22cc4ac904e0c9a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtQuick.Window

Window {
    id: window
    width: 170
    height: column.implicitHeight
    visible: true

    property alias english: english
    property alias norwegian: norwegian

    ColumnLayout {
        id: column
        anchors.fill: parent

        CheckDelegate {
            text: qsTr("Languages")
            checkState: english.checked && norwegian.checked
                ? Qt.Checked : (english.checked || norwegian.checked) ? Qt.PartiallyChecked : Qt.Unchecked
            tristate: true
            Layout.fillWidth: true
        }
        CheckDelegate {
            id: english
            text: qsTr("English")
            checked: true
            leftPadding: indicator.width + 14
            Layout.fillWidth: true
        }
        CheckDelegate {
            id: norwegian
            text: qsTr("Norwegian")
            checked: true
            leftPadding: indicator.width + 14
            Layout.fillWidth: true
        }
    }
}