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
|
/* -*- Mode: JS2; indent-tabs-mode: nil; js2-basic-offset: 4 -*- */
/* vim: set et ts=4 sw=4: */
/*
* Copyright (c) 2011, 2012, 2013 Red Hat, Inc.
*
* GNOME Maps is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* GNOME Maps is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with GNOME Maps; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* Mattias Bengtsson <mattias.jc.bengtsson@gmail.com>
*/
const Cairo = imports.cairo;
const Gdk = imports.gi.Gdk;
const GObject = imports.gi.GObject;
const Gtk = imports.gi.Gtk;
const Lang = imports.lang;
const Application = imports.application;
const RouteEntry = imports.routeEntry;
const RouteQuery = imports.routeQuery;
const Utils = imports.utils;
const InstructionRow = new Lang.Class({
Name: "InstructionRow",
Extends: Gtk.ListBoxRow,
_init: function(params) {
this.turnPoint = params.turnPoint;
delete params.turnPoint;
this.parent(params);
this.visible = true;
let ui = Utils.getUIObject('sidebar', ['instruction-box',
'direction-image',
'instruction-label',
'distance-label']);
ui.instructionLabel.label = this.turnPoint.instruction;
ui.directionImage.icon_name = this.turnPoint.iconName;
if (this.turnPoint.distance > 0)
ui.distanceLabel.label = Utils.prettyDistance(this.turnPoint.distance);
this.add(ui.instructionBox);
}
});
const Sidebar = new Lang.Class({
Name: 'Sidebar',
Extends: Gtk.Revealer,
_init: function(mapView) {
this.parent({ visible: true,
transition_type: Gtk.RevealerTransitionType.SLIDE_LEFT,
transition_duration: 400, // ms
halign: Gtk.Align.END,
valign: Gtk.Align.FILL
});
this.get_style_context().add_class('maps-sidebar');
let ui = Utils.getUIObject('sidebar', [ 'sidebar',
'entry-list',
'instruction-list-scrolled',
'instruction-stack',
'instruction-spinner',
'instruction-list',
'mode-pedestrian-toggle',
'mode-bike-toggle',
'mode-car-toggle',
'time-info',
'distance-info' ]);
this._mapView = mapView;
this._entryList = ui.entryList;
this._instructionList = ui.instructionList;
this._instructionStack = ui.instructionStack;
this._instructionWindow = ui.instructionListScrolled;
this._instructionSpinner = ui.instructionSpinner;
this._timeInfo = ui.timeInfo;
this._distanceInfo = ui.distanceInfo;
this._initInstructionList();
this._initTransportationToggles(ui.modePedestrianToggle,
ui.modeBikeToggle,
ui.modeCarToggle);
this._initQuerySignals();
let query = Application.routeService.query;
query.addPoint(0);
query.addPoint(1);
this.add(ui.sidebar);
},
_initTransportationToggles: function(pedestrian, bike, car) {
let query = Application.routeService.query;
let transport = RouteQuery.Transportation;
let onToggle = function(mode, button) {
if (button.active && query.transportation !== mode)
query.transportation = mode;
};
pedestrian.connect('toggled', onToggle.bind(this, transport.PEDESTRIAN));
car.connect('toggled', onToggle.bind(this, transport.CAR));
bike.connect('toggled', onToggle.bind(this, transport.BIKE));
let setToggles = function() {
switch(query.transportation) {
case transport.PEDESTRIAN:
pedestrian.active = true;
break;
case transport.CAR:
car.active = true;
break;
case transport.BIKE:
bike.active = true;
break;
}
};
setToggles();
query.connect('notify::transportation', setToggles);
},
_initQuerySignals: function() {
let query = Application.routeService.query;
query.connect('point-added', (function(obj, point, index) {
this._createRouteEntry(index, point);
}).bind(this));
query.connect('point-removed', (function(obj, point, index) {
let row = this._entryList.get_row_at_index(index);
row.destroy();
}).bind(this));
},
_createRouteEntry: function(index, point) {
let type;
if (index === 0)
type = RouteEntry.Type.FROM;
else if (index === this._entryList.get_children().length)
type = RouteEntry.Type.TO;
else
type = RouteEntry.Type.VIA;
let routeEntry = new RouteEntry.RouteEntry({ type: type,
point: point,
mapView: this._mapView });
this._entryList.insert(routeEntry, index);
if (type === RouteEntry.Type.FROM) {
routeEntry.button.connect('clicked', (function() {
let lastIndex = this._entryList.get_children().length;
Application.routeService.query.addPoint(lastIndex - 1);
}).bind(this));
this.bind_property('child-revealed',
routeEntry.entry, 'has_focus',
GObject.BindingFlags.DEFAULT);
} else if (type === RouteEntry.Type.VIA) {
routeEntry.button.connect('clicked', function() {
let row = routeEntry.get_parent();
Application.routeService.query.removePoint(row.get_index());
});
}
this._initRouteDragAndDrop(routeEntry);
},
_initInstructionList: function() {
let route = Application.routeService.route;
let query = Application.routeService.query;
route.connect('reset', (function() {
this._clearInstructions();
this._instructionStack.visible_child = this._instructionWindow;
let length = this._entryList.get_children().length;
for (let index = 1; index < (length - 1); index++) {
query.removePoint(index);
}
}).bind(this));
query.connect('notify', (function() {
if (query.isValid())
this._instructionStack.visible_child = this._instructionSpinner;
else
this._clearInstructions();
}).bind(this));
route.connect('update', (function() {
this._clearInstructions();
this._instructionStack.visible_child = this._instructionWindow;
route.turnPoints.forEach((function(turnPoint) {
let row = new InstructionRow({ visible: true,
turnPoint: turnPoint });
this._instructionList.add(row);
}).bind(this));
/* Translators: %s is a time expression with the format "%f h" or "%f min" */
this._timeInfo.label = _("Estimated time: %s").format(Utils.prettyTime(route.time));
this._distanceInfo.label = Utils.prettyDistance(route.distance);
}).bind(this));
this._instructionList.connect('row-selected',(function(listbox, row) {
if (row)
this._mapView.showTurnPoint(row.turnPoint);
}).bind(this));
},
_clearInstructions: function() {
let listBox = this._instructionList;
listBox.forall(listBox.remove.bind(listBox));
this._timeInfo.label = '';
this._distanceInfo.label = '';
},
// Iterate over points and establish the new order of places
_reorderRoutePoints: function(srcIndex, destIndex) {
let query = Application.routeService.query;
let points = query.points;
let srcPlace = this._draggedPoint.place;
// Determine if we are swapping from "above" or "below"
let step = (srcIndex < destIndex) ? -1 : 1;
// Hold off on notifying the changes to query.points until
// we have re-arranged the places.
query.freeze_notify();
for (let i = destIndex; i !== (srcIndex + step); i += step) {
// swap
[points[i].place, srcPlace] = [srcPlace, points[i].place];
}
query.thaw_notify();
},
_onDragDrop: function(row, context, x, y, time) {
let query = Application.routeService.query;
let srcIndex = query.points.indexOf(this._draggedPoint);
let destIndex = row.get_index();
this._reorderRoutePoints(srcIndex, destIndex);
Gtk.drag_finish(context, true, false, time);
return true;
},
_dragHighlightRow: function(row) {
row.opacity = 0.6;
},
_dragUnhighlightRow: function(row) {
row.opacity = 1.0;
},
// Set the opacity of the row we are currently dragging above
// to semi transparent.
_onDragMotion: function(row, context, x, y, time) {
let routeEntry = row.get_child();
if (this._draggedPoint && this._draggedPoint !== routeEntry.point) {
this._dragHighlightRow(row);
Gdk.drag_status(context, Gdk.DragAction.MOVE, time);
} else
Gdk.drag_status(context, 0, time);
return true;
},
// Drag ends, show the dragged row again.
_onDragEnd: function(context, row) {
this._draggedPoint = null;
// Restore to natural height
row.height_request = -1;
row.get_child().show();
},
// Drag begins, set the correct drag icon and hide the dragged row.
_onDragBegin: function(context, row) {
let routeEntry = row.get_child();
let dragEntry = this._dragWidget.get_child();
this._draggedPoint = routeEntry.point;
// Set a fixed height on the row to prevent the sidebar height
// to shrink while dragging a row.
let height = row.get_allocated_height();
row.height_request = height;
row.get_child().hide();
dragEntry.entry.text = routeEntry.entry.text;
Gtk.drag_set_icon_surface(context,
this._dragWidget.get_surface(), 0, 0);
},
// We add RouteEntry to an OffscreenWindow and paint the background
// of the entry to be transparent. We can later use the GtkOffscreenWindow
// method get_surface to generate our drag icon.
_initDragWidget: function() {
let dragEntry = new RouteEntry.RouteEntry({ type: RouteEntry.Type.TO,
name: 'dragged-entry',
app_paintable: true });
this._dragWidget = new Gtk.OffscreenWindow({ visible: true });
dragEntry.connect('draw', (function(widget, cr) {
cr.setSourceRGBA(0.0, 0.0, 0.0, 0.0);
cr.setOperator(Cairo.Operator.SOURCE);
cr.paint();
cr.setOperator(Cairo.Operator.OVER);
}).bind(this));
this._dragWidget.add(dragEntry);
},
// Set up drag and drop between RouteEntrys. The drag source is from a
// GtkEventBox that contains the start/end icon next in the entry. And
// the drag destination is the ListBox row.
_initRouteDragAndDrop: function(routeEntry) {
let dragIcon = routeEntry.iconEventBox;
let row = routeEntry.get_parent();
dragIcon.drag_source_set(Gdk.ModifierType.BUTTON1_MASK,
null,
Gdk.DragAction.MOVE);
dragIcon.drag_source_add_image_targets();
row.drag_dest_set(Gtk.DestDefaults.MOTION,
null,
Gdk.DragAction.MOVE);
row.drag_dest_add_image_targets();
dragIcon.connect('drag-begin', (function(icon, context) {
this._onDragBegin(context, row);
}).bind(this));
dragIcon.connect('drag-end', (function(icon, context) {
this._onDragEnd(context, row);
}).bind(this));
row.connect('drag-leave', this._dragUnhighlightRow.bind(this, row));
row.connect('drag-motion', this._onDragMotion.bind(this));
row.connect('drag-drop', this._onDragDrop.bind(this));
this._initDragWidget();
}
});
|