summaryrefslogtreecommitdiff
path: root/navit/gui/qt5_qml/skins/modern/maps.qml
blob: 2eab6798da08151b9493104db7b70a3498ca104c (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
import QtQuick 2.0

ListView {
    id: list
    model: backend.maps
    delegate: Item {
        height: 64
        width: parent.width;
        Rectangle {
            color: "#1e1b18"
            height: parent.height;
            width: parent.width;
            border.width: 1

            Image {
                id: image1
                height: parent.height - 4;
                source : active ? "icons/appbar.layer.svg" : "icons/appbar.layer.delete.svg"
                opacity: active ? 1 : 0.1
            }

            Text {
                text: name
                color: "#ffffff"
                anchors.verticalCenter: parent.verticalCenter
                anchors.left: image1.right
                anchors.leftMargin: 8
            }

            MouseArea {
                id: mouse_area1
                z: 1
                hoverEnabled: false
                anchors.fill: parent

                onClicked:{
                    list.currentIndex = index
                    console.log("test " + index);
                }
            }
        }
    }

    Component.onCompleted: backend.get_maps()
}