summaryrefslogtreecommitdiffstats
path: root/multilayer-dashboard/StrokeList.qml
blob: 968202f8c894be2740596c941c49cc0d2afea5e4 (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
78
79
import Qt 4.7
import Qt.labs.gestures 1.0

Rectangle {
    id: borderWidget
    anchors.fill: parent
    radius: 10
    color: "red"

    Rectangle {

        id: mainrect

        anchors.fill: parent
        anchors.margins: 10
        radius: 10
        clip: true

        function foo(index) {
            var colors = ["blue", "green", "grey", "red", "lightgreen"];
            return colors[index % colors.length]
        }

        Rectangle {
            id: list
            radius: 10
            anchors.left: parent.left
            anchors.right: parent.right
            height: parent.height

            onHeightChanged: y = 0

            GestureArea {
                anchors.fill: parent
                Tap { //swallow a tap
                }
            }

            Repeater {
                model: [ "apple", "orange", "pineapple", "coconut", "foo", "bar", "baz", "zealot" ]

                Button {
                    x: 0
                    y: 0 + (height + 2) * index
                    bgColor: mainrect.foo(index)
                    text: modelData
                }
            }

            property int maxY : (mainrect.height < list.childrenRect.height) ?
                    0 :
                    (mainrect.height - list.childrenRect.height)
            property int minY : (mainrect.height < list.childrenRect.height) ?
                    -(list.childrenRect.height - mainrect.height) :
                    0
        }
        GestureArea {
            anchors.fill: parent
            property bool panEnabled : false

            Pan {
                onUpdated: {
                    if (parent.panEnabled)
                        list.y += gesture.delta.y
                    else if (Math.abs(gesture.offset.y) >= 10 && Math.abs(gesture.offset.x) < 10)
                        parent.panEnabled = true

                    if(list.y > list.maxY)
                        list.y = list.maxY
                    else if(list.y < list.minY)
                        list.y = list.minY
                }
                onFinished: {
                    parent.panEnabled = false
                }
            }
        }
    }
}