40bb36843c3013270c88a58eceb5f56caf8bd376
[geeqie.git] / src / bar_gps.c
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: Colin Clark
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include "main.h"
23 #ifdef HAVE_LIBCHAMPLAIN
24 #ifdef HAVE_LIBCHAMPLAIN_GTK
25
26 #include "bar_gps.h"
27
28 #include "bar.h"
29 #include "filedata.h"
30 #include "layout.h"
31 #include "metadata.h"
32 #include "menu.h"
33 #include "misc.h"
34 #include "rcfile.h"
35 #include "thumb.h"
36 #include "ui_menu.h"
37 #include "uri_utils.h"
38 #include "ui_utildlg.h"
39
40 #include <clutter-gtk/clutter-gtk.h>
41 #include <champlain/champlain.h>
42 #include <champlain-gtk/champlain-gtk.h>
43
44 #define MARKER_COLOUR 0x00, 0x00, 0xff, 0xff
45 #define TEXT_COLOUR 0x00, 0x00, 0x00, 0xff
46 #define THUMB_COLOUR 0xff, 0xff, 0xff, 0xff
47 #define THUMB_SIZE 100
48
49 #define DIRECTION_SIZE 300
50
51 /*
52  *-------------------------------------------------------------------
53  * GPS Map utils
54  *-------------------------------------------------------------------
55  */
56
57 typedef struct _PaneGPSData PaneGPSData;
58 struct _PaneGPSData
59 {
60         PaneData pane;
61         GtkWidget *widget;
62         gchar *map_source;
63         gint height;
64         FileData *fd;
65         ClutterActor *gps_view;
66         ChamplainMarkerLayer *icon_layer;
67         GList *selection_list;
68         GList *not_added;
69         ChamplainBoundingBox *bbox;
70         guint num_added;
71         guint create_markers_id;
72         GtkWidget *progress;
73         GtkWidget *slider;
74         GtkWidget *state;
75         gint selection_count;
76         gboolean centre_map_checked;
77         gboolean enable_markers_checked;
78         gdouble dest_latitude;
79         gdouble dest_longitude;
80         GList *geocode_list;
81 };
82
83 /*
84  *-------------------------------------------------------------------
85  * drag-and-drop
86  *-------------------------------------------------------------------
87  */
88 enum {
89         TARGET_APP_COLLECTION_MEMBER,
90         TARGET_APP_EXIF_ENTRY,
91         TARGET_APP_KEYWORD_PATH,
92         TARGET_URI_LIST,
93         TARGET_TEXT_PLAIN
94 };
95
96 static GtkTargetEntry bar_pane_gps_drop_types[] = {
97         { "text/uri-list", 0, TARGET_URI_LIST },
98         { "text/plain", 0, TARGET_TEXT_PLAIN }
99 };
100 static gint n_gps_entry_drop_types = 2;
101
102 static void bar_pane_gps_close_cancel_cb(GenericDialog *gd, gpointer data)
103 {
104         PaneGPSData *pgd = data;
105
106         g_list_free(pgd->geocode_list);
107 }
108
109 static void bar_pane_gps_close_save_cb(GenericDialog *gd, gpointer data)
110 {
111         PaneGPSData *pgd = data;
112         FileData *fd;
113         GList *work;
114
115         work = g_list_first(pgd->geocode_list);
116         while (work)
117                 {
118                 fd = work->data;
119                 if (fd->name && !fd->parent)
120                         {
121                         work = work->next;
122                         metadata_write_GPS_coord(fd, "Xmp.exif.GPSLatitude", pgd->dest_latitude);
123                         metadata_write_GPS_coord(fd, "Xmp.exif.GPSLongitude", pgd->dest_longitude);
124                         }
125                 }
126         g_list_free(work);
127         g_list_free(pgd->geocode_list);
128 }
129
130  static void bar_pane_gps_dnd_receive(GtkWidget *pane, GdkDragContext *context,
131                                                                           gint x, gint y,
132                                                                           GtkSelectionData *selection_data, guint info,
133                                                                           guint time, gpointer data)
134 {
135         PaneGPSData *pgd;
136         GenericDialog *gd;
137         FileData *fd, *fd_found;
138         GList *work, *list;
139         gint count, geocoded_count;
140         gdouble latitude, longitude;
141         GString *message;
142         gchar *location;
143         gchar **latlong;
144
145         pgd = g_object_get_data(G_OBJECT(pane), "pane_data");
146         if (!pgd) return;
147
148         if (info == TARGET_URI_LIST)
149                 {
150                 pgd->dest_longitude = champlain_view_x_to_longitude(CHAMPLAIN_VIEW(pgd->gps_view), x);
151                 pgd->dest_latitude = champlain_view_y_to_latitude(CHAMPLAIN_VIEW(pgd->gps_view), y);
152
153                 count = 0;
154                 geocoded_count = 0;
155                 pgd->geocode_list = NULL;
156
157                 list = uri_filelist_from_gtk_selection_data(selection_data);
158
159                 if (list)
160                         {
161                         work = list;
162                         while (work)
163                                 {
164                                 fd = work->data;
165                                 work = work->next;
166                                 if (fd->name && !fd->parent)
167                                         {
168                                         count++;
169                                         pgd->geocode_list = g_list_append(pgd->geocode_list, fd);
170                                         latitude = metadata_read_GPS_coord(fd, "Xmp.exif.GPSLatitude", 1000);
171                                         longitude = metadata_read_GPS_coord(fd, "Xmp.exif.GPSLongitude", 1000);
172                                         if (latitude != 1000 && longitude != 1000)
173                                                 {
174                                                 geocoded_count++;
175                                                 }
176                                         }
177                                 }
178                         g_list_free(work);
179
180                         if(count)
181                                 {
182                                 message = g_string_new("");
183                                 if (count == 1)
184                                         {
185                                         fd_found = g_list_first(pgd->geocode_list)->data;
186                                         g_string_append_printf(message,
187                                                         _("\nDo you want to geocode image %s?"), fd_found->name);
188                                         }
189                                 else
190                                         {
191                                         g_string_append_printf(message,
192                                                         _("\nDo you want to geocode %i images?"), count);
193                                         }
194                                 if (geocoded_count == 1 && count == 1)
195                                         {
196                                         g_string_append_printf(message,
197                                                         _("\nThis image is already geocoded!"));
198                                         }
199                                 else if (geocoded_count == 1 && count > 1)
200                                         {
201                                         g_string_append_printf(message,
202                                                         _("\nOne image is already geocoded!"));
203                                         }
204                                 else if (geocoded_count > 1 && count > 1)
205                                         {
206                                         g_string_append_printf(message,
207                                                         _("\n%i Images are already geocoded!"), geocoded_count);
208                                         }
209
210                                 location = g_strdup_printf("%lf %lf", pgd->dest_latitude,
211                                                                                                                 pgd->dest_longitude);
212                                 g_string_append_printf(message, _("\n\nPosition: %s \n"), location);
213
214                                 gd = generic_dialog_new(_("Geocode images"),
215                                                         "geocode_images", NULL, TRUE,
216                                                         bar_pane_gps_close_cancel_cb, pgd);
217                                 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION,
218                                                         _("Write lat/long to meta-data?"),
219                                                         message->str);
220
221                                 generic_dialog_add_button(gd, GTK_STOCK_SAVE, NULL,
222                                                                                                 bar_pane_gps_close_save_cb, TRUE);
223
224                                 gtk_widget_show(gd->dialog);
225                                 g_free(location);
226                                 g_string_free(message, TRUE);
227                                 }
228                         }
229                 }
230
231         if (info == TARGET_TEXT_PLAIN)
232                 {
233                 location = decode_geo_parameters(gtk_selection_data_get_data(selection_data));
234                 if (!(g_strstr_len(location,-1,"Error")))
235                         {
236                         latlong = g_strsplit(location, " ", 2);
237                         champlain_view_center_on(CHAMPLAIN_VIEW(pgd->gps_view),
238                                                         g_ascii_strtod(latlong[0],NULL),
239                                                         g_ascii_strtod(latlong[1],NULL));
240                         g_strfreev(latlong);
241                         }
242                 g_free(location);
243                 }
244
245         return;
246 }
247
248 static void bar_pane_gps_dnd_init(gpointer data)
249 {
250         PaneGPSData *pgd = data;
251
252         gtk_drag_dest_set(pgd->widget,
253                           GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_HIGHLIGHT | GTK_DEST_DEFAULT_DROP,
254                           bar_pane_gps_drop_types, n_gps_entry_drop_types,
255                           GDK_ACTION_COPY | GDK_ACTION_MOVE);
256         g_signal_connect(G_OBJECT(pgd->widget), "drag_data_received",
257                          G_CALLBACK(bar_pane_gps_dnd_receive), NULL);
258
259 }
260
261 static gboolean bar_gps_draw_direction (ClutterCanvas *canvas,
262                                 cairo_t *cr, gpointer data)
263 {
264         cairo_set_source_rgb(cr, 255, 0, 0);
265
266         cairo_set_line_width(cr, 2);
267         cairo_move_to(cr, 0, 1);
268         cairo_line_to(cr, DIRECTION_SIZE, 1);
269
270         cairo_stroke(cr);
271
272         return TRUE;
273 }
274
275 static void bar_pane_gps_thumb_done_cb(ThumbLoader *tl, gpointer data)
276 {
277         FileData *fd;
278         ClutterActor *marker;
279         ClutterActor *actor;
280
281         marker = CLUTTER_ACTOR(data);
282         fd = g_object_get_data(G_OBJECT(marker), "file_fd");
283         if (fd->thumb_pixbuf != NULL)
284                 {
285                 actor = gtk_clutter_texture_new();
286                 gtk_clutter_texture_set_from_pixbuf(GTK_CLUTTER_TEXTURE(actor), fd->thumb_pixbuf, NULL);
287                 champlain_label_set_image(CHAMPLAIN_LABEL(marker), actor);
288                 }
289         thumb_loader_free(tl);
290 }
291
292 static void bar_pane_gps_thumb_error_cb(ThumbLoader *tl, gpointer data)
293 {
294         thumb_loader_free(tl);
295 }
296
297 static gboolean bar_pane_gps_marker_keypress_cb(GtkWidget *widget, ClutterButtonEvent *bevent, gpointer data)
298 {
299         //PaneGPSData *pgd = data;
300         FileData *fd;
301         ClutterActor *label_marker, *parent_marker;
302         ClutterColor marker_colour = { MARKER_COLOUR };
303         ClutterColor text_colour = { TEXT_COLOUR };
304         ClutterColor thumb_colour = { THUMB_COLOUR };
305         gchar *current_text;
306         ClutterActor *actor, *direction;
307         ClutterActor *current_image;
308         GString *text;
309         gint height, width, rotate;
310         gchar *altitude = NULL;
311         ThumbLoader *tl;
312
313         if (bevent->button == MOUSE_BUTTON_LEFT)
314                 {
315                 label_marker = CLUTTER_ACTOR(widget);
316                 fd = g_object_get_data(G_OBJECT(label_marker), "file_fd");
317
318                 /* If the marker is showing a thumbnail, delete it
319                  */
320                 current_image = champlain_label_get_image(CHAMPLAIN_LABEL(label_marker));
321                 if (current_image != NULL)
322                         {
323                         clutter_actor_destroy(CLUTTER_ACTOR(current_image));
324                         champlain_label_set_image(CHAMPLAIN_LABEL(label_marker), NULL);
325                         }
326
327                 current_text = g_strdup(champlain_label_get_text(CHAMPLAIN_LABEL(label_marker)));
328
329                 /* If the marker is showing only the text character, replace it with a
330                  * thumbnail and date and altitude
331                  */
332                 if (g_strcmp0(current_text, "i") == 0)
333                         {
334                         /* If a thumbail has already been generated, use that. If not try the pixbuf of the full image.
335                          * If not, call the thumb_loader to generate a thumbnail and update the marker later in the
336                          * thumb_loader callback
337                          */
338                          if (fd->thumb_pixbuf != NULL)
339                                 {
340                                 actor = gtk_clutter_texture_new();
341                                 gtk_clutter_texture_set_from_pixbuf(GTK_CLUTTER_TEXTURE(actor), fd->thumb_pixbuf, NULL);
342                                 champlain_label_set_image(CHAMPLAIN_LABEL(label_marker), actor);
343                                 }
344                         else if (fd->pixbuf != NULL)
345                                 {
346                                 actor = gtk_clutter_texture_new();
347                                 width = gdk_pixbuf_get_width (fd->pixbuf);
348                                 height = gdk_pixbuf_get_height (fd->pixbuf);
349                                 switch (fd->exif_orientation)
350                                         {
351                                         case 8:
352                                                 rotate = GDK_PIXBUF_ROTATE_COUNTERCLOCKWISE;
353                                                 break;
354                                         case 3:
355                                                 rotate = GDK_PIXBUF_ROTATE_UPSIDEDOWN;
356                                                 break;
357                                         case 6:
358                                                 rotate = GDK_PIXBUF_ROTATE_CLOCKWISE;
359                                                 break;
360                                         default:
361                                                 rotate = GDK_PIXBUF_ROTATE_NONE;
362                                         }
363
364                                         gtk_clutter_texture_set_from_pixbuf(GTK_CLUTTER_TEXTURE(actor),
365                                                                                 gdk_pixbuf_rotate_simple(gdk_pixbuf_scale_simple(fd->pixbuf, THUMB_SIZE, height * THUMB_SIZE / width,
366                                                                                 GDK_INTERP_NEAREST), rotate), NULL);
367                                         champlain_label_set_image(CHAMPLAIN_LABEL(label_marker), actor);
368                                 }
369                         else
370                                 {
371                                 tl = thumb_loader_new(THUMB_SIZE, THUMB_SIZE);
372                                 thumb_loader_set_callbacks(tl,
373                                                                                         bar_pane_gps_thumb_done_cb,
374                                                                                         bar_pane_gps_thumb_error_cb,
375                                                                                         NULL,
376                                                                                         label_marker);
377                                 thumb_loader_start(tl, fd);
378                                 }
379
380                         text = g_string_new(fd->name);
381                         g_string_append(text, "\n");
382                         g_string_append(text, text_from_time(fd->date));
383                         g_string_append(text, "\n");
384                         altitude = metadata_read_string(fd, "formatted.GPSAltitude", METADATA_FORMATTED);
385                         if (altitude != NULL)
386                                 {
387                                 g_string_append(text, altitude);
388                                 }
389
390                         champlain_label_set_text(CHAMPLAIN_LABEL(label_marker), text->str);
391                         champlain_label_set_font_name(CHAMPLAIN_LABEL(label_marker), "sans 8");
392                         champlain_marker_set_selection_color(&thumb_colour);
393                         champlain_marker_set_selection_text_color(&text_colour);
394
395                         g_free(altitude);
396                         g_string_free(text, TRUE);
397
398                         parent_marker = clutter_actor_get_parent(label_marker);
399                         direction = clutter_actor_get_child_at_index(parent_marker, 0);
400                         clutter_actor_set_opacity(direction, 255);
401                         }
402                 /* otherwise, revert to the hidden text marker
403                  */
404                 else
405                         {
406                         champlain_label_set_text(CHAMPLAIN_LABEL(label_marker), "i");
407                         champlain_label_set_font_name(CHAMPLAIN_LABEL(label_marker), "courier 5");
408                         champlain_marker_set_selection_color(&marker_colour);
409                         champlain_marker_set_selection_text_color(&marker_colour);
410
411                         parent_marker = clutter_actor_get_parent(label_marker);
412                         direction = clutter_actor_get_child_at_index(parent_marker, 0);
413                         clutter_actor_set_opacity(direction, 0);
414                         }
415
416                 g_free(current_text);
417
418                 return TRUE;
419                 }
420         return TRUE;
421 }
422
423 static gboolean bar_pane_gps_create_markers_cb(gpointer data)
424 {
425         PaneGPSData *pgd = data;
426         gdouble latitude;
427         gdouble longitude;
428         gdouble compass;
429         FileData *fd;
430         ClutterActor *parent_marker, *label_marker;
431         ClutterActor *direction;
432         ClutterColor marker_colour = { MARKER_COLOUR };
433         ClutterColor thumb_colour = { THUMB_COLOUR };
434         GString *message;
435         ClutterContent *canvas;
436
437         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(pgd->progress),
438                                                         (gdouble)(pgd->selection_count - g_list_length(pgd->not_added)) /
439                                                         (gdouble)pgd->selection_count);
440
441         message = g_string_new("");
442         g_string_printf(message, "%i/%i", (pgd->selection_count - g_list_length(pgd->not_added)),
443                                                                                                                                                         pgd->selection_count);
444         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(pgd->progress), message->str);
445         g_string_free(message, TRUE);
446
447         if(pgd->not_added)
448                 {
449                 fd = pgd->not_added->data;
450                 pgd->not_added = pgd->not_added->next;
451
452                 latitude = metadata_read_GPS_coord(fd, "Xmp.exif.GPSLatitude", 0);
453                 longitude = metadata_read_GPS_coord(fd, "Xmp.exif.GPSLongitude", 0);
454                 compass = metadata_read_GPS_direction(fd, "Xmp.exif.GPSImgDirection", 1000);
455
456                 if (!(latitude == 0 && longitude == 0))
457                         {
458                         pgd->num_added++;
459
460                         parent_marker = champlain_marker_new();
461                         clutter_actor_set_reactive(parent_marker, FALSE);
462                         label_marker = champlain_label_new_with_text("i","courier 5", &marker_colour, &marker_colour);
463                         clutter_actor_set_reactive(label_marker, TRUE);
464                         champlain_marker_set_selection_color(&thumb_colour);
465
466                         if (compass != 1000)
467                                 {
468                                 canvas = clutter_canvas_new();
469                                 clutter_canvas_set_size(CLUTTER_CANVAS (canvas), DIRECTION_SIZE, 3);
470                                 g_signal_connect(canvas, "draw", G_CALLBACK(bar_gps_draw_direction), NULL);
471                                 direction = clutter_actor_new();
472                                 clutter_actor_set_size(direction, DIRECTION_SIZE, 3);
473                                 clutter_actor_set_position(direction, 0, 0);
474                                 clutter_actor_set_rotation_angle(direction, CLUTTER_Z_AXIS, compass -90.00);
475                                 clutter_actor_set_content(direction, canvas);
476                                 clutter_content_invalidate(canvas);
477                                 g_object_unref(canvas);
478
479                                 clutter_actor_add_child(parent_marker, direction);
480                                 clutter_actor_set_opacity(direction, 0);
481                                 }
482
483                         clutter_actor_add_child(parent_marker, label_marker);
484
485                         champlain_location_set_location(CHAMPLAIN_LOCATION(parent_marker), latitude, longitude);
486                         champlain_marker_layer_add_marker(pgd->icon_layer, CHAMPLAIN_MARKER(parent_marker));
487
488                         g_signal_connect(G_OBJECT(label_marker), "button_release_event",
489                                         G_CALLBACK(bar_pane_gps_marker_keypress_cb), pgd);
490
491                         g_object_set_data(G_OBJECT(label_marker), "file_fd", fd);
492
493                         champlain_bounding_box_extend(pgd->bbox, latitude, longitude);
494
495                         }
496                 return TRUE;
497                 }
498
499         if (pgd->centre_map_checked)
500                 {
501                 if (pgd->num_added == 1)
502                         {
503                         champlain_bounding_box_get_center(pgd->bbox, &latitude, &longitude);
504                         champlain_view_go_to(CHAMPLAIN_VIEW(pgd->gps_view), latitude, longitude);
505                         }
506                  else if (pgd->num_added > 1)
507                         {
508                         champlain_view_ensure_visible(CHAMPLAIN_VIEW(pgd->gps_view), pgd->bbox, TRUE);
509                         }
510                 }
511         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(pgd->progress), 0);
512         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(pgd->progress), NULL);
513         pgd->create_markers_id = 0;
514
515         return FALSE;
516 }
517
518 static void bar_pane_gps_update(PaneGPSData *pgd)
519 {
520         GList *list;
521
522         /* The widget does not have a parent during bar_pane_gps_new, so calling gtk_widget_show_all there gives a
523          * "Gtk-CRITICAL **: gtk_widget_realize: assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed"
524          * error. gtk_widget_show_all can be given after it has been added to the bar.
525          */
526         if (gtk_widget_get_parent(pgd->widget) != NULL)
527                 gtk_widget_show_all(pgd->widget);
528
529         /* If a create-marker background process is running, kill it
530          * and start again
531          */
532         if (pgd->create_markers_id != 0)
533                 {
534                 if (g_idle_remove_by_data(pgd))
535                         {
536                         pgd->create_markers_id = 0;
537                         }
538                 else
539                         {
540                         return;
541                         }
542                 }
543
544         /* Delete any markers currently displayed
545          */
546
547         champlain_marker_layer_remove_all(pgd->icon_layer);
548
549         if (!pgd->enable_markers_checked)
550                 {
551                 return;
552                 }
553
554         /* For each selected photo that has GPS data, create a marker containing
555          * a single, small text character the same colour as the marker background.
556          * Use a background process in case the user selects a large number of files.
557          */
558         filelist_free(pgd->selection_list);
559         if (pgd->bbox) champlain_bounding_box_free(pgd->bbox);
560
561         list = layout_selection_list(pgd->pane.lw);
562         list = file_data_process_groups_in_selection(list, FALSE, NULL);
563
564         pgd->selection_list = list;
565         pgd->not_added = list;
566
567         pgd->bbox = champlain_bounding_box_new();
568         pgd->selection_count = g_list_length(pgd->selection_list);
569         pgd->create_markers_id = g_idle_add(bar_pane_gps_create_markers_cb, pgd);
570         pgd->num_added = 0;
571 }
572
573 void bar_pane_gps_set_map_source(PaneGPSData *pgd, const gchar *map_id)
574 {
575         ChamplainMapSource *map_source;
576         ChamplainMapSourceFactory *map_factory;
577
578         map_factory = champlain_map_source_factory_dup_default();
579         map_source = champlain_map_source_factory_create(map_factory, map_id);
580
581         if (map_source != NULL)
582                 {
583                 g_object_set(G_OBJECT(pgd->gps_view), "map-source", map_source, NULL);
584                 }
585
586         g_object_unref(map_factory);
587 }
588
589 void bar_pane_gps_enable_markers_checked_toggle_cb(GtkWidget *menu_widget, gpointer data)
590 {
591         PaneGPSData *pgd = data;
592
593         if (pgd->enable_markers_checked)
594                 {
595                 pgd->enable_markers_checked = FALSE;
596                 }
597         else
598                 {
599                 pgd->enable_markers_checked = TRUE;
600                 }
601 }
602
603 static void bar_pane_gps_centre_map_checked_toggle_cb(GtkWidget *menu_widget, gpointer data)
604 {
605         PaneGPSData *pgd = data;
606
607         if (pgd->centre_map_checked)
608                 {
609                 pgd->centre_map_checked = FALSE;
610                 }
611         else
612                 {
613                 pgd->centre_map_checked = TRUE;
614                 }
615 }
616
617 static void bar_pane_gps_change_map_cb(GtkWidget *widget, gpointer data)
618 {
619         PaneGPSData *pgd = data;
620         gchar *mapsource;
621
622         if (!gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(widget)))
623                 return;
624
625         if (!pgd) return;
626
627         mapsource = g_object_get_data(G_OBJECT(widget), "menu_item_radio_data");
628         bar_pane_gps_set_map_source(pgd, mapsource);
629 }
630
631 static void bar_pane_gps_notify_selection(GtkWidget *bar, gint count)
632 {
633         PaneGPSData *pgd;
634
635         if (count == 0) return;
636
637         pgd = g_object_get_data(G_OBJECT(bar), "pane_data");
638         if (!pgd) return;
639
640         bar_pane_gps_update(pgd);
641 }
642
643 static void bar_pane_gps_set_fd(GtkWidget *bar, FileData *fd)
644 {
645         PaneGPSData *pgd;
646
647         pgd = g_object_get_data(G_OBJECT(bar), "pane_data");
648         if (!pgd) return;
649
650         file_data_unref(pgd->fd);
651         pgd->fd = file_data_ref(fd);
652
653         bar_pane_gps_update(pgd);
654 }
655
656 static gint bar_pane_gps_event(GtkWidget *bar, GdkEvent *event)
657 {
658         PaneGPSData *pgd;
659
660         pgd = g_object_get_data(G_OBJECT(bar), "pane_data");
661         if (!pgd) return FALSE;
662
663         if (gtk_widget_has_focus(pgd->widget)) return gtk_widget_event(GTK_WIDGET(pgd->widget), event);
664
665         return FALSE;
666 }
667
668 static void bar_pane_gps_write_config(GtkWidget *pane, GString *outstr, gint indent)
669 {
670         PaneGPSData *pgd;
671         gint zoom;
672         ChamplainMapSource *mapsource;
673         const gchar *map_id;
674         gchar *str = NULL;
675         GString *buffer = g_string_new(str);
676         gdouble position;
677         gint int_position;
678
679         pgd = g_object_get_data(G_OBJECT(pane), "pane_data");
680         if (!pgd) return;
681
682         WRITE_NL();
683         WRITE_STRING("<pane_gps ");
684         write_char_option(outstr, indent, "id", pgd->pane.id);
685         write_char_option(outstr, indent, "title", gtk_label_get_text(GTK_LABEL(pgd->pane.title)));
686         WRITE_BOOL(pgd->pane, expanded);
687         WRITE_INT(*pgd, height);
688         indent++;
689
690         g_object_get(G_OBJECT(pgd->gps_view), "map-source", &mapsource, NULL);
691         map_id = champlain_map_source_get_id(mapsource);
692         WRITE_NL();
693         write_char_option(outstr, indent, "map-id", map_id);
694
695         g_object_get(G_OBJECT(pgd->gps_view), "zoom-level", &zoom, NULL);
696         g_string_printf(buffer, "%d", zoom);
697         WRITE_NL();
698         write_char_option(outstr, indent, "zoom-level", buffer->str);
699
700         g_object_get(G_OBJECT(pgd->gps_view), "latitude", &position, NULL);
701         int_position = position * 1000000;
702         g_string_printf(buffer, "%i", int_position);
703         WRITE_NL();
704         write_char_option(outstr, indent, "latitude", buffer->str);
705
706         g_object_get(G_OBJECT(pgd->gps_view), "longitude", &position, NULL);
707         int_position = position * 1000000;
708         g_string_printf(buffer, "%i", int_position);
709         WRITE_NL();
710         write_char_option(outstr, indent, "longitude", buffer->str);
711
712         indent--;
713         WRITE_NL();
714         WRITE_STRING("/>");
715
716   g_object_unref(mapsource);
717
718 }
719
720 static void bar_pane_gps_slider_changed_cb(GtkScaleButton *slider,
721                                            gdouble zoom,
722                                            gpointer data)
723 {
724         PaneGPSData *pgd = data;
725         GString *message;
726
727         message = g_string_new("");
728         g_string_printf(message, _("Zoom %i"), (gint)zoom);
729
730         g_object_set(G_OBJECT(CHAMPLAIN_VIEW(pgd->gps_view)), "zoom-level", (gint)zoom, NULL);
731         gtk_widget_set_tooltip_text(GTK_WIDGET(slider), message->str);
732         g_string_free(message, TRUE);
733
734 }
735 static void bar_pane_gps_view_state_changed_cb(ChamplainView *view,
736                                                GParamSpec *gobject,
737                                                gpointer data)
738 {
739         PaneGPSData *pgd = data;
740         ChamplainState status;
741         gint zoom;
742         GString *message;
743
744         g_object_get(G_OBJECT(view), "zoom-level", &zoom, NULL);
745         message = g_string_new("");
746         g_string_printf(message, _("Zoom level %i"), zoom);
747
748         g_object_get(G_OBJECT(view), "state", &status, NULL);
749         if (status == CHAMPLAIN_STATE_LOADING)
750                 {
751                 gtk_label_set_text(GTK_LABEL(pgd->state), _("Loading map"));
752                 }
753         else
754                 {
755                 gtk_label_set_text(GTK_LABEL(pgd->state), message->str);
756                 }
757
758         gtk_widget_set_tooltip_text(GTK_WIDGET(pgd->slider), message->str);
759         gtk_scale_button_set_value(GTK_SCALE_BUTTON(pgd->slider), (gdouble)zoom);
760
761         g_string_free(message, TRUE);
762 }
763
764 static void bar_pane_gps_notify_cb(FileData *fd, NotifyType type, gpointer data)
765 {
766         PaneGPSData *pgd = data;
767
768         if ((type & (NOTIFY_REREAD | NOTIFY_CHANGE | NOTIFY_METADATA)) &&
769             g_list_find(pgd->selection_list, fd))
770                 {
771                 bar_pane_gps_update(pgd);
772                 }
773 }
774
775 const gchar *bar_pane_gps_get_map_id(PaneGPSData *pgd)
776 {
777         const gchar *map_id;
778         ChamplainMapSource *mapsource;
779
780         g_object_get(G_OBJECT(pgd->gps_view), "map-source", &mapsource, NULL);
781         map_id = champlain_map_source_get_id(mapsource);
782
783         g_object_unref(mapsource);
784
785         return map_id;
786 }
787
788 static GtkWidget *bar_pane_gps_menu(PaneGPSData *pgd)
789 {
790         GtkWidget *menu;
791         GtkWidget *map_centre;
792         ChamplainMapSourceFactory *map_factory;
793         GSList *map_list;
794         ChamplainMapSourceDesc *map_desc;
795         const gchar *current;
796
797         menu = popup_menu_short_lived();
798
799         map_factory = champlain_map_source_factory_dup_default();
800         map_list = champlain_map_source_factory_get_registered(map_factory);
801         current = bar_pane_gps_get_map_id(pgd);
802
803         while (map_list)
804                 {
805                 map_desc = (ChamplainMapSourceDesc *)(map_list->data);
806
807                 menu_item_add_radio(menu,
808                                     champlain_map_source_desc_get_name(map_desc),
809                                     (gpointer)champlain_map_source_desc_get_id(map_desc),
810                                     strcmp(champlain_map_source_desc_get_id(map_desc), current) == 0,
811                                     G_CALLBACK(bar_pane_gps_change_map_cb), pgd);
812
813                 map_list = g_slist_next(map_list);
814                 }
815
816         menu_item_add_divider(menu);
817         menu_item_add_check(menu, _("Enable markers"), pgd->enable_markers_checked,
818                             G_CALLBACK(bar_pane_gps_enable_markers_checked_toggle_cb), pgd);
819         map_centre = menu_item_add_check(menu, _("Centre map on marker"), pgd->centre_map_checked,
820                                          G_CALLBACK(bar_pane_gps_centre_map_checked_toggle_cb), pgd);
821         if (!pgd->enable_markers_checked)
822                 {
823                 gtk_widget_set_sensitive(map_centre, FALSE);
824                 }
825
826         g_slist_free(map_list);
827         g_object_unref(map_factory);
828
829         return menu;
830 }
831
832 /* Determine if the map is to be re-centred on the marker when another photo is selected
833  */
834 void bar_pane_gps_map_centreing(PaneGPSData *pgd)
835 {
836         GenericDialog *gd;
837         GString *message = g_string_new("");
838
839         if (pgd->centre_map_checked)
840                 {
841                 message = g_string_append(message, _("Move map centre to marker\n is disabled"));
842                 pgd->centre_map_checked = FALSE;
843                 }
844         else
845                 {
846                 message = g_string_append(message, _("Move map centre to marker\n is enabled"));
847                 pgd->centre_map_checked = TRUE;
848                 }
849
850         gd = generic_dialog_new(_("Map centering"),
851                                 "map_centering", NULL, TRUE, NULL, pgd);
852         generic_dialog_add_message(gd, GTK_STOCK_DIALOG_INFO,
853                                 "Map Centering", message->str);
854         generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, NULL, TRUE);
855
856         gtk_widget_show(gd->dialog);
857
858         g_string_free(message, TRUE);
859 }
860
861 static gboolean bar_pane_gps_map_keypress_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data)
862 {
863         PaneGPSData *pgd = data;
864         GtkWidget *menu;
865         GtkClipboard *clipboard;
866         gchar *geo_coords;
867
868         if (bevent->button == MOUSE_BUTTON_RIGHT)
869                 {
870                 menu = bar_pane_gps_menu(pgd);
871                 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, bevent->button, bevent->time);
872                 return TRUE;
873                 }
874         else if (bevent->button == MOUSE_BUTTON_MIDDLE)
875                 {
876                 bar_pane_gps_map_centreing(pgd);
877                 return TRUE;
878                 }
879         else if (bevent->button == MOUSE_BUTTON_LEFT)
880                 {
881                 clipboard = gtk_clipboard_get(GDK_SELECTION_PRIMARY);
882                 geo_coords = g_strdup_printf("%lf %lf",
883                                                         champlain_view_y_to_latitude(
884                                                                 CHAMPLAIN_VIEW(pgd->gps_view),bevent->y),
885                                                         champlain_view_x_to_longitude(
886                                                                 CHAMPLAIN_VIEW(pgd->gps_view),bevent->x));
887                 gtk_clipboard_set_text(clipboard, geo_coords, -1);
888
889                 g_free(geo_coords);
890
891                 return TRUE;
892                 }
893         else
894                 {
895                 return FALSE;
896                 }
897 }
898
899 static void bar_pane_gps_destroy(GtkWidget *widget, gpointer data)
900 {
901         PaneGPSData *pgd = data;
902
903         file_data_unregister_notify_func(bar_pane_gps_notify_cb, pgd);
904
905         g_idle_remove_by_data(pgd);
906
907         filelist_free(pgd->selection_list);
908         if (pgd->bbox) champlain_bounding_box_free(pgd->bbox);
909
910         file_data_unref(pgd->fd);
911         g_free(pgd->map_source);
912         g_free(pgd->pane.id);
913         clutter_actor_destroy(pgd->gps_view);
914         g_free(pgd);
915 }
916
917
918 GtkWidget *bar_pane_gps_new(const gchar *id, const gchar *title, const gchar *map_id,
919                                                 const gint zoom, const gdouble latitude, const gdouble longitude,
920                                         gboolean expanded, gint height)
921 {
922         PaneGPSData *pgd;
923         GtkWidget *vbox, *frame;
924         GtkWidget *gpswidget;
925         GtkWidget *status, *state, *progress, *slider;
926         ChamplainMarkerLayer *layer;
927         ChamplainView *view;
928         const gchar *slider_list[] = {"zoom-in", "zoom-out", NULL};
929         const gchar **slider_icons = slider_list;
930
931         pgd = g_new0(PaneGPSData, 1);
932
933         pgd->pane.pane_set_fd = bar_pane_gps_set_fd;
934         pgd->pane.pane_notify_selection = bar_pane_gps_notify_selection;
935         pgd->pane.pane_event = bar_pane_gps_event;
936         pgd->pane.pane_write_config = bar_pane_gps_write_config;
937         pgd->pane.title = bar_pane_expander_title(title);
938         pgd->pane.id = g_strdup(id);
939         pgd->pane.type = PANE_GPS;
940         pgd->pane.expanded = expanded;
941         pgd->height = height;
942
943         frame = gtk_frame_new(NULL);
944         vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
945
946         gpswidget = gtk_champlain_embed_new();
947         view = gtk_champlain_embed_get_view(GTK_CHAMPLAIN_EMBED(gpswidget));
948
949         gtk_box_pack_start(GTK_BOX(vbox), gpswidget, TRUE, TRUE, 0);
950         gtk_container_add(GTK_CONTAINER(frame), vbox);
951
952         status = gtk_box_new(GTK_ORIENTATION_HORIZONTAL,0);
953         slider = gtk_scale_button_new(GTK_ICON_SIZE_SMALL_TOOLBAR, 1, 17, 1, slider_icons);
954         gtk_widget_set_tooltip_text(slider, "Zoom");
955         gtk_scale_button_set_value(GTK_SCALE_BUTTON(slider), (gdouble)zoom);
956
957         progress = gtk_progress_bar_new();
958 #if GTK_CHECK_VERSION(3,0,0)
959         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progress), "");
960         gtk_progress_bar_set_show_text(GTK_PROGRESS_BAR(progress), TRUE);
961 #endif
962         state = gtk_label_new("");
963         gtk_label_set_justify(GTK_LABEL(state), GTK_JUSTIFY_CENTER);
964
965         gtk_box_pack_start(GTK_BOX(status), GTK_WIDGET(slider), FALSE, FALSE, 0);
966         gtk_box_pack_start(GTK_BOX(status), GTK_WIDGET(state), FALSE, FALSE, 5);
967         gtk_box_pack_end(GTK_BOX(status), GTK_WIDGET(progress), FALSE, FALSE, 0);
968         gtk_box_pack_end(GTK_BOX(vbox),GTK_WIDGET(status), FALSE, FALSE, 0);
969
970         layer = champlain_marker_layer_new();
971         champlain_view_add_layer(view, CHAMPLAIN_LAYER(layer));
972
973         pgd->icon_layer = layer;
974         pgd->gps_view = CLUTTER_ACTOR(view);
975         pgd->widget = frame;
976         pgd->progress = progress;
977         pgd->slider = slider;
978         pgd->state = state;
979
980         bar_pane_gps_set_map_source(pgd, map_id);
981
982         g_object_set(G_OBJECT(view), "kinetic-mode", TRUE,
983                                      "zoom-level", zoom,
984                                      "keep-center-on-resize", TRUE,
985                                      "deceleration", 1.1,
986                                      "zoom-on-double-click", FALSE,
987                                      "max-zoom-level", 17,
988                                      "min-zoom-level", 1,
989                                      NULL);
990         champlain_view_center_on(view, latitude, longitude);
991         pgd->centre_map_checked = TRUE;
992         g_object_set_data(G_OBJECT(pgd->widget), "pane_data", pgd);
993         g_signal_connect(G_OBJECT(pgd->widget), "destroy", G_CALLBACK(bar_pane_gps_destroy), pgd);
994
995         gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN);
996
997         gtk_widget_set_size_request(pgd->widget, -1, height);
998
999         g_signal_connect(G_OBJECT(gpswidget), "button_press_event", G_CALLBACK(bar_pane_gps_map_keypress_cb), pgd);
1000         g_signal_connect(pgd->gps_view, "notify::state", G_CALLBACK(bar_pane_gps_view_state_changed_cb), pgd);
1001         g_signal_connect(pgd->gps_view, "notify::zoom-level", G_CALLBACK(bar_pane_gps_view_state_changed_cb), pgd);
1002         g_signal_connect(G_OBJECT(slider), "value-changed", G_CALLBACK(bar_pane_gps_slider_changed_cb), pgd);
1003
1004         bar_pane_gps_dnd_init(pgd);
1005
1006         file_data_register_notify_func(bar_pane_gps_notify_cb, pgd, NOTIFY_PRIORITY_LOW);
1007
1008         pgd->create_markers_id = 0;
1009         pgd->enable_markers_checked = TRUE;
1010         pgd->centre_map_checked = TRUE;
1011
1012         return pgd->widget;
1013 }
1014
1015 GtkWidget *bar_pane_gps_new_from_config(const gchar **attribute_names, const gchar **attribute_values)
1016 {
1017         gchar *title = g_strdup(_("GPS Map"));
1018         gchar *map_id = NULL;
1019         gboolean expanded = TRUE;
1020         gint height = 350;
1021         gint zoom = 7;
1022         gdouble latitude;
1023         gdouble longitude;
1024         /* Latitude and longitude are stored in the config file as an integer of
1025          * (actual value * 1,000,000). There is no READ_DOUBLE utilty function.
1026          */
1027         gint int_latitude = 54000000;
1028         gint int_longitude = -4000000;
1029         gchar *id = g_strdup("gps");
1030         GtkWidget *ret;
1031
1032         while (*attribute_names)
1033                 {
1034                 const gchar *option = *attribute_names++;
1035                 const gchar *value = *attribute_values++;
1036
1037                 if (READ_CHAR_FULL("title", title))
1038                         continue;
1039                 if (READ_CHAR_FULL("map-id", map_id))
1040                         continue;
1041                 if (READ_INT_CLAMP_FULL("zoom-level", zoom, 1, 20))
1042                         continue;
1043                 if (READ_INT_CLAMP_FULL("latitude", int_latitude, -90000000, +90000000))
1044                         continue;
1045                 if (READ_INT_CLAMP_FULL("longitude", int_longitude, -90000000, +90000000))
1046                         continue;
1047                 if (READ_BOOL_FULL("expanded", expanded))
1048                         continue;
1049                 if (READ_INT_FULL("height", height))
1050                         continue;
1051                 if (READ_CHAR_FULL("id", id))
1052                         continue;
1053
1054                 log_printf("unknown attribute %s = %s\n", option, value);
1055                 }
1056
1057         bar_pane_translate_title(PANE_COMMENT, id, &title);
1058         latitude = int_latitude / 1000000;
1059         longitude = int_longitude / 1000000;
1060         ret = bar_pane_gps_new(id, title, map_id, zoom, latitude, longitude, expanded, height);
1061         g_free(title);
1062         g_free(map_id);
1063         g_free(id);
1064         return ret;
1065 }
1066
1067 void bar_pane_gps_update_from_config(GtkWidget *pane, const gchar **attribute_names,
1068                                                                                 const gchar **attribute_values)
1069 {
1070         PaneGPSData *pgd;
1071         gint zoom;
1072         gint int_longitude, int_latitude;
1073         gdouble longitude, latitude;
1074
1075         pgd = g_object_get_data(G_OBJECT(pane), "pane_data");
1076         if (!pgd)
1077                 return;
1078
1079         gchar *title = NULL;
1080
1081         while (*attribute_names)
1082         {
1083                 const gchar *option = *attribute_names++;
1084                 const gchar *value = *attribute_values++;
1085
1086                 if (READ_CHAR_FULL("title", title))
1087                         continue;
1088                 if (READ_CHAR_FULL("map-id", pgd->map_source))
1089                         continue;
1090                 if (READ_BOOL_FULL("expanded", pgd->pane.expanded))
1091                         continue;
1092                 if (READ_INT_FULL("height", pgd->height))
1093                         continue;
1094                 if (READ_CHAR_FULL("id", pgd->pane.id))
1095                         continue;
1096                 if (READ_INT_CLAMP_FULL("zoom-level", zoom, 1, 8))
1097                         {
1098                         g_object_set(G_OBJECT(CHAMPLAIN_VIEW(pgd->gps_view)), "zoom-level", zoom, NULL);
1099                         continue;
1100                         }
1101                 if (READ_INT_CLAMP_FULL("longitude", int_longitude, -90000000, +90000000))
1102                         {
1103                         longitude = int_longitude / 1000000;
1104                         g_object_set(G_OBJECT(CHAMPLAIN_VIEW(pgd->gps_view)), "longitude", longitude, NULL);
1105                         continue;
1106                         }
1107                 if (READ_INT_CLAMP_FULL("latitude", int_latitude, -90000000, +90000000))
1108                         {
1109                         latitude = int_latitude / 1000000;
1110                         g_object_set(G_OBJECT(CHAMPLAIN_VIEW(pgd->gps_view)), "latitude", latitude, NULL);
1111                         continue;
1112                         }
1113                 log_printf("unknown attribute %s = %s\n", option, value);
1114         }
1115
1116         if (title)
1117                 {
1118                 bar_pane_translate_title(PANE_COMMENT, pgd->pane.id, &title);
1119                 gtk_label_set_text(GTK_LABEL(pgd->pane.title), title);
1120                 g_free(title);
1121                 }
1122
1123         gtk_widget_set_size_request(pgd->widget, -1, pgd->height);
1124         bar_update_expander(pane);
1125 }
1126
1127 #endif
1128 #endif
1129
1130 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */