summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/listview/highlight.qml
blob: e3c948edbcf49419a15ca0837f9897c8d192755c (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
Rect {
    width: 180; height: 200; color: "white"

    // ContactModel model is defined in dummydata/ContactModel.qml
    // The viewer automatically loads files in dummydata/* to assist
    // development without a real data source.

    // Define a delegate component.  A component will be
    // instantiated for each visible item in the list.
//! [0]
    Component {
        id: Delegate
        Item {
            id: Wrapper
            width: 180; height: 40
            VerticalLayout {
                x: 5; y: 5
                Text { text: '<b>Name:</b> ' + name }
                Text { text: '<b>Number:</b> ' + number }
            }
        }
    }
//! [0]
    // Specify a highlight with custom movement.  Note that autoHighlight
    // is set to false in the ListView so that we can control how the
    // highlight moves to the current item.
//! [1]
    Component {
        id: Highlight
        Rect {
            width: 180; height: 40
            color: "lightsteelblue"; radius: 5
            y: Follow {
                source: List.current.y
                spring: 3
                damping: 0.1
            }
        }
    }
    ListView {
        id: List
        width: parent.height; height: parent.height
        model: ContactModel; delegate: Delegate
        highlight: Highlight
        autoHighlight: false
        focus: true
    }
//! [1]
}