aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktableview/data/replaceModelTableView.qml
blob: 2b17e055a72082b78d28477d79974634904abd65 (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
import QtQuick 2.14
import QtQml.Models 2.14

Item {
    id: root
    visible: true
    width: 640
    height: 480

    property alias tableView: tv

    ObjectModel {
        id: om
        Rectangle { height: 30; width: 80; color: "red" }
        Rectangle { height: 30; width: 80; color: "green" }
        Rectangle { height: 30; width: 80; color: "blue" }
    }

    ListModel {
        id: lm
        ListElement { name: "1" }
        ListElement { name: "44"}
    }

    DelegateModel {
       id: dm
       model: ListModel {
           ListElement { name: "Apple" }
           ListElement { name: "Orange" }
       }
       delegate: Rectangle {
           height: 25
           width: 100
           Text { text: "Name: " + name}
       }
    }
    TableView {
        id: tv
        visible: true
        anchors.fill: parent
        property int modelId: 0

        model: {
            switch (modelId) {
            case 0:  return lm;
            case 1:  return om;
            case 2:  return dm;
            default: return null;
            }
        }

        delegate: Rectangle {
            id: dlg
            implicitWidth: 40
            implicitHeight: 20
            color: "red"
            Text {
                text: qsTr("name: " + name)
            }
            border.color: "green"
        }
    }
}