summaryrefslogtreecommitdiff
path: root/navit/gui/qt5_qml/themes/Levy/MapControls.qml
blob: 04a618a80d95a427a8a1b49d5fcd607466f6209f (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import QtQuick 2.9
import QtQuick.Layouts 1.3

ColumnLayout {
    id: __root

    signal zoomModeClicked()
    signal dimensionClicked()
    signal zoomInClicked()
    signal zoomOutClicked()
    signal compassClicked()

    property int pitch: 0
    property int orientation: 0
    property bool autoZoom : true

    Item {
        id: modes
        Layout.fillHeight: true
        Layout.fillWidth: true

        Rectangle {
            id: zoomMode
            height: width
            color: "#ffffff"
            radius: width /2
            anchors.verticalCenterOffset: - height * 0.6
            anchors.verticalCenter: parent.verticalCenter
            border.color: "#a6a6a6"
            border.width: 1
            anchors.left: parent.left
            anchors.leftMargin: 0
            anchors.right: parent.right

            Item {
                id: element4
                anchors.fill: parent
                Text {
                    id: element5
                    text: __root.autoZoom ? "M" : "A"
                    font.pixelSize: parent.height * 0.4
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.horizontalCenter: parent.horizontalCenter
                }

                MouseArea {
                    id: mouseArea2
                    anchors.fill: parent
                    onClicked : __root.zoomModeClicked()
                }
            }
        }

        Rectangle {
            id: dimension
            height: width
            color: "#ffffff"
            radius: width /2
            anchors.verticalCenterOffset: width * 0.6
            anchors.verticalCenter: parent.verticalCenter
            anchors.left: parent.left
            anchors.right: parent.right
            anchors.leftMargin: 0
            border.color: "#a6a6a6"
            border.width: 1

            Item {
                id: element6
                Text {
                    id: element7
                    text: __root.pitch === 0 ? "3D" : "2D"
                    font.pixelSize: parent.height * 0.4
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.horizontalCenter: parent.horizontalCenter
                }

                MouseArea {
                    id: mouseArea3
                    anchors.fill: parent
                    onClicked : __root.dimensionClicked()
                }
                anchors.fill: parent
            }
        }
    }

    Item {
        id: zoom
        Layout.fillHeight: true
        Layout.fillWidth: true

        Rectangle {
            id: rectangle
            height: width * 2
            color: "#ffffff"
            anchors.left: parent.left
            anchors.right: parent.right
            anchors.verticalCenter: parent.verticalCenter
            border.width: 1
            border.color: "#a6a6a6"

            Item {
                id: element
                height: parent.height/2
                anchors.top: parent.top
                anchors.topMargin: 0
                anchors.left: parent.left
                anchors.leftMargin: 0
                anchors.right: parent.right

                Text {
                    id: element2
                    text: qsTr("+")
                    font.pixelSize: parent.height * 0.4
                    anchors.horizontalCenter: parent.horizontalCenter
                    anchors.verticalCenter: parent.verticalCenter
                }

                MouseArea {
                    id: mouseArea
                    anchors.fill: parent
                    onClicked : __root.zoomInClicked()
                }
            }

            Rectangle {
                id: rectangle1
                height: 1
                color: "#a6a6a6"
                anchors.verticalCenter: parent.verticalCenter
                anchors.left: parent.left
                anchors.leftMargin: 0
                anchors.right: parent.right
            }


            Item {
                id: element1
                height: parent.height/2
                anchors.bottom: parent.bottom
                anchors.left: parent.left
                anchors.right: parent.right
                anchors.leftMargin: 0

                Text {
                    id: element3
                    text: qsTr("-")
                    font.pixelSize: parent.height * 0.4
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.horizontalCenter: parent.horizontalCenter
                }

                MouseArea {
                    id: mouseArea1
                    anchors.fill: parent
                    onClicked : __root.zoomOutClicked()
                }
            }
        }
    }

    Item{
        id: compass
        Layout.fillHeight: true
        Layout.fillWidth: true
        Image {
            id: image
            anchors.left: parent.left
            anchors.right: parent.right
            anchors.verticalCenter: parent.verticalCenter
            fillMode: Image.PreserveAspectFit
            source: "assets/compass-fave.png"
        }

        Image {
            id: compassNeedle
            height: parent.width
            anchors.horizontalCenter: parent.horizontalCenter
            anchors.verticalCenter: parent.verticalCenter
            fillMode: Image.PreserveAspectFit
            source: "assets/compass-arrow.png"
            transform: Rotation{
                origin.x:compassNeedle.width / 2
                origin.y:compassNeedle.height / 2
                angle:__root.orientation
            }
        }
        MouseArea {
            anchors.fill: parent
            onClicked: __root.compassClicked()
        }
    }
    states: [
        State {
            name: "routeOverview"

            PropertyChanges {
                target: dimension
                visible: false
            }

            PropertyChanges {
                target: zoomMode
                visible: false
            }
        }
    ]
}