summaryrefslogtreecommitdiffstats
path: root/examples/declarative/mapviewer/RouteDialog.qml
blob: a8cdf3b5c40a3c80e049c504e43df0e3c9a70995 (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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the examples of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
**   * Redistributions of source code must retain the above copyright
**     notice, this list of conditions and the following disclaimer.
**   * Redistributions in binary form must reproduce the above copyright
**     notice, this list of conditions and the following disclaimer in
**     the documentation and/or other materials provided with the
**     distribution.
**   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
**     the names of its contributors may be used to endorse or promote
**     products derived from this software without specific prior written
**     permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
** $QT_END_LICENSE$
**
****************************************************************************/

import Qt 4.7
import Qt.location 5.0
import "common" as Common

Item {
    id: dialog
    signal goButtonClicked
    signal cancelButtonClicked

    anchors.fill: parent
    property int gap: 10
    opacity: 0

    property alias title: titleBar.text
    property alias startLatitude: latFrom.text
    property alias startLongitude: longFrom.text
    property alias endLatitude: latTo.text
    property alias endLongitude: longTo.text
    property alias startStreet: streetFrom.text
    property alias startCity: cityFrom.text
    property alias startCountry: countryFrom.text
    property alias endStreet: streetTo.text
    property alias endCity: cityTo.text
    property alias endCountry: countryTo.text
    property alias byCoordinates: coord.enabled
    property int travelMode: RouteQuery.CarTravel             // CarTravel, PedestrianTravel, BicycleTravel, PublicTransitTravel, TruckTravel
    property int routeOptimization: RouteQuery.ShortestRoute  // ShortestRoute, FastestRoute, MostEconomicRoute, MostScenicRoute
                                                              // TODO NoFeature, TollFeature, HighwayFeature, PublicTransitFeature, FerryFeature, TunnelFeature, DirtRoadFeature, ParksFeature, MotorPoolLaneFeature

    Common.Fader {}

    Rectangle {
        id: dialogRectangle
        color: "lightsteelblue"
        opacity: 1
        width: parent.width - gap*2;
        height: options.height + gap*3 + buttonGo.height + titleBar.height

        anchors {
            top: parent.top
            topMargin: 50
            left: parent.left
            leftMargin: gap
        }

        border.width: 1
        border.color: "darkblue"
        radius: 5

        Common.TitleBar {
            id: titleBar;
            width: parent.width; height: 40;
            anchors.top: parent.top; anchors.left: parent.left;
            opacity: 0.9
            text: "Route"
            onClicked: { dialog.cancelButtonClicked() }
        }

        Column {
           id: options
           spacing: gap
           width: dialogRectangle.width - gap*2

           anchors {
               top: titleBar.bottom
               topMargin: gap
               left: dialogRectangle.left
               leftMargin: gap
           }

            states: [
                State {
                    name: "Address"
                    PropertyChanges { target: coord; enabled: false }
                    PropertyChanges { target: address; enabled: true }
                }
            ]


//by coordinates
            Row {
                id: row1
                spacing: gap
                Image {
                    id: optionButtonCoord
                    anchors.verticalCenter:parent.verticalCenter
                    source: coord.enabled ? "resources/option_button_selected.png" : "resources/option_button.png"
                    MouseArea {
                        anchors.fill: parent
                        onClicked: { options.state = "" }
                    }
                }

                Rectangle {
                    id: coord
                    color: dialogRectangle.color
                    border.width: 1
                    border.color: enabled ? "black" : "grey"
                    radius: 5
                    width:options.width - optionButtonCoord.width - row1.spacing
                    height: longTo.y + longTo.height + gap
                    enabled: true

//start point
                    Text {
                        id: fromLabel;
                        font.bold: true;
                        enabled: coord.enabled
                        anchors {
                            top: latFrom.top
                            topMargin:latFrom.height + gap/6 - fromLabel.height/2
                            left: parent.left;
                            leftMargin: gap
                        }
                        text: "From"
                        color: enabled ? "black" : "grey"
                    }

                    TextWithLabel {
                        id: latFrom
                        width: parent.width - fromLabel.width - gap*3
                        text: "-27.575"
                        label: "latitude"
                        enabled: coord.enabled
                        anchors {
                            left: fromLabel.right
                            leftMargin: gap
                            top: parent.top
                            topMargin:gap
                        }
                    }

                    TextWithLabel {
                        id: longFrom
                        width: latFrom.width
                        text: "153.088"
                        label: "longitude"
                        enabled: coord.enabled
                        anchors {
                            left: latFrom.left
                            top: latFrom.bottom
                            topMargin:gap/3
                        }
                    }

//end point
                    Text {
                        id: toLabel;
                        font.bold: true;
                        width: fromLabel.width
                        enabled: coord.enabled
                        anchors {
                            top: latTo.top
                            topMargin:latTo.height + gap/6 - toLabel.height/2
                            left: parent.left;
                            leftMargin: gap;
                        }
                        text: "To"
                        color: enabled ? "black" : "grey"
                    }

                    TextWithLabel {
                        id: latTo
                        width: latFrom.width
                        text: "-27.465"
                        label: "latitude"
                        enabled: coord.enabled
                        anchors {
                            left: toLabel.right
                            leftMargin: gap
                            top: longFrom.bottom
                            topMargin:gap
                        }
                    }

                    TextWithLabel {
                        id: longTo
                        width: latTo.width
                        text: "153.023"
                        label: "longitude"
                        enabled: coord.enabled
                        anchors {
                            left: latTo.left
                            top: latTo.bottom
                            topMargin:gap/3
                        }
                    }
                }
            }

//by address
            Row {
                id: row2
                spacing: gap

                Image {
                    id: optionButtonAddress
                    source: address.enabled ? "resources/option_button_selected.png" : "resources/option_button.png"
                    anchors.verticalCenter: parent.verticalCenter
                    MouseArea {
                        anchors.fill: parent
                        onClicked: { options.state = "Address" }
                    }
                }

                Rectangle {
                    id: address
                    color: dialogRectangle.color
                    border.width: 1
                    border.color: enabled ? "black" : "grey"
                    radius: 5
                    width:coord.width
                    height: countryTo.y + countryTo.height + gap
                    enabled: false

//start point
                    Text {
                        id: fromLabel2;
                        font.bold: true;
                        enabled: address.enabled
                        anchors {
                            top: cityFrom.top
                            left: parent.left;
                            leftMargin: gap
                        }
                        text: "From"
                        color: enabled ? "black" : "grey"
                    }

                    TextWithLabel {
                        id: streetFrom
                        width: parent.width - fromLabel2.width - gap*3
                        text: "Brandl st"
                        label: "street"
                        enabled: address.enabled
                        anchors {
                            left: fromLabel2.right
                            leftMargin: gap
                            top: parent.top
                            topMargin:gap
                        }
                    }

                    TextWithLabel {
                        id: cityFrom
                        width: streetFrom.width
                        text: "Eight Mile Plains"
                        label: "city"
                        enabled: address.enabled
                        anchors {
                            left: streetFrom.left
                            top: streetFrom.bottom
                            topMargin:gap/3
                        }
                    }

                    TextWithLabel {
                        id: countryFrom
                        width: streetFrom.width
                        text: "Australia"
                        label: "country"
                        enabled: address.enabled
                        anchors {
                            left: streetFrom.left
                            top: cityFrom.bottom
                            topMargin:gap/3
                        }
                    }


//end point
                    Text {
                        id: toLabel2;
                        font.bold: true;
                        enabled: address.enabled
                        anchors {
                            top: cityTo.top
                            left: parent.left;
                            leftMargin: gap
                        }
                        text: "To"
                        color: enabled ? "black" : "grey"
                    }

                    TextWithLabel {
                        id: streetTo
                        width: parent.width - fromLabel2.width - gap*3
                        text: "Ann st"
                        label: "street"
                        enabled: address.enabled
                        anchors {
                            left: fromLabel2.right
                            leftMargin: gap
                            top: countryFrom.bottom
                            topMargin:gap
                        }
                    }

                    TextWithLabel {
                        id: cityTo
                        width: streetTo.width
                        text: "Brisbane"
                        label: "city"
                        enabled: address.enabled
                        anchors {
                            left: streetTo.left
                            top: streetTo.bottom
                            topMargin:gap/3
                        }
                    }

                    TextWithLabel {
                        id: countryTo
                        width: streetTo.width
                        text: "Australia"
                        label: "country"
                        enabled: address.enabled
                        anchors {
                            left: streetTo.left
                            top: cityTo.bottom
                            topMargin:gap/3
                        }
                    }

                }
            }
        }

        Common.Button {
            id: buttonGo
            text: "Go!"
            anchors.top: options.bottom
            anchors.topMargin: gap
            width: 80; height: 32
            anchors.horizontalCenter: parent.horizontalCenter
            onClicked: {
                dialog.goButtonClicked ()
            }
        }
    }
}