aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview2/data/sectionsNoOverlap.qml
blob: 3a22626032235fe0c64c10583e1bb3877be42599 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import QtQuick.Controls

Rectangle {
    property string sectionProperty: "section"
    property int sectionPositioning: ViewSection.InlineLabels

    width: 640
    height: 480
    color: "#FFFFFF"

    resources: [
        Component {
            id: myDelegate
            Text {
                objectName: model.title
                width: parent.width
                height: 40
                text: "NormalDelegate: " + model.title
                visible: model.isVisible
                verticalAlignment: Text.AlignVCenter
            }
        }
    ]
    ListView {
        id: list
        objectName: "list"
        anchors.fill: parent
        clip: true

        model: ListModel {
            ListElement {
                title: "element1"
                isVisible: true
                section: "section1"
            }
            ListElement {
                title: "element2"
                isVisible: true
                section: "section1"
            }
            ListElement {
                title: "element3"
                isVisible: true
                section: "section2"
            }
            ListElement {
                title: "element4"
                isVisible: true
                section: "section2"
            }
        }

        delegate: myDelegate

        section.property: "section"
        section.criteria: ViewSection.FullString
        section.delegate: Component {
            Text {
                id: sectionDelegate
                objectName: section
                visible: false
                width: parent.width
                height: visible ? 48 : 0
                text: "Section delegate: " + section
                verticalAlignment: Text.AlignVCenter
                elide: Text.ElideMiddle
                Component.onCompleted: function(){
                     Qt.callLater(function(){sectionDelegate.visible = true})
                }
            }
        }
    }
}