]> git.street.me.uk Git - andy/viking.git/blob - src/vikwindow.c
8c443c29c43d640a495f2780808a55e40d7bbd59
[andy/viking.git] / src / vikwindow.c
1 /*
2  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3  *
4  * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include "viking.h"
27 #include "background.h"
28 #include "acquire.h"
29 #include "datasources.h"
30 #include "vikgoto.h"
31 #include "dems.h"
32 #include "mapcache.h"
33 #include "print.h"
34 #include "preferences.h"
35 #include "icons/icons.h"
36 #include "vikexttools.h"
37
38 #ifdef HAVE_STDLIB_H
39 #include <stdlib.h>
40 #endif
41 #ifdef HAVE_MATH_H
42 #include <math.h>
43 #endif
44 #ifdef HAVE_STRING_H
45 #include <string.h>
46 #endif
47 #include <ctype.h>
48 #include <glib.h>
49 #include <glib/gstdio.h>
50 #include <glib/gprintf.h>
51 #include <glib/gi18n.h>
52 #include <gio/gio.h>
53
54 #define VIKING_WINDOW_WIDTH      1000
55 #define VIKING_WINDOW_HEIGHT     800
56 #define DRAW_IMAGE_DEFAULT_WIDTH 1280
57 #define DRAW_IMAGE_DEFAULT_HEIGHT 1024
58 #define DRAW_IMAGE_DEFAULT_SAVE_AS_PNG TRUE
59
60 static void window_finalize ( GObject *gob );
61 static GObjectClass *parent_class;
62
63 static void window_init ( VikWindow *vw );
64 static void window_class_init ( VikWindowClass *klass );
65 static void window_set_filename ( VikWindow *vw, const gchar *filename );
66
67 static void draw_update ( VikWindow *vw );
68
69 static void newwindow_cb ( GtkAction *a, VikWindow *vw );
70
71 /* Drawing & stuff */
72
73 static gboolean delete_event( VikWindow *vw );
74
75 static gboolean key_press_event( VikWindow *vw, GdkEventKey *event, gpointer data );
76
77 static void window_configure_event ( VikWindow *vw );
78 static void draw_sync ( VikWindow *vw );
79 static void draw_redraw ( VikWindow *vw );
80 static void draw_scroll  ( VikWindow *vw, GdkEventScroll *event );
81 static void draw_click  ( VikWindow *vw, GdkEventButton *event );
82 static void draw_release ( VikWindow *vw, GdkEventButton *event );
83 static void draw_mouse_motion ( VikWindow *vw, GdkEventMotion *event );
84 static void draw_zoom_cb ( GtkAction *a, VikWindow *vw );
85 static void draw_goto_cb ( GtkAction *a, VikWindow *vw );
86
87 static void draw_status ();
88
89 /* End Drawing Functions */
90
91 static void menu_addlayer_cb ( GtkAction *a, VikWindow *vw );
92 static void menu_properties_cb ( GtkAction *a, VikWindow *vw );
93 static void menu_delete_layer_cb ( GtkAction *a, VikWindow *vw );
94
95 /* tool management */
96 typedef struct {
97   VikToolInterface ti;
98   gpointer state;
99   gint layer_type;
100 } toolbox_tool_t;
101 #define TOOL_LAYER_TYPE_NONE -1
102
103 typedef struct {
104   int                   active_tool;
105   int                   n_tools;
106   toolbox_tool_t        *tools;
107   VikWindow *vw;
108 } toolbox_tools_t;
109
110 static void menu_tool_cb ( GtkAction *old, GtkAction *a, VikWindow *vw );
111 static toolbox_tools_t* toolbox_create(VikWindow *vw);
112 static void toolbox_add_tool(toolbox_tools_t *vt, VikToolInterface *vti, gint layer_type );
113 static int toolbox_get_tool(toolbox_tools_t *vt, const gchar *tool_name);
114 static void toolbox_activate(toolbox_tools_t *vt, const gchar *tool_name);
115 static const GdkCursor *toolbox_get_cursor(toolbox_tools_t *vt, const gchar *tool_name);
116 static void toolbox_click (toolbox_tools_t *vt, GdkEventButton *event);
117 static void toolbox_move (toolbox_tools_t *vt, GdkEventMotion *event);
118 static void toolbox_release (toolbox_tools_t *vt, GdkEventButton *event);
119
120
121 /* ui creation */
122 static void window_create_ui( VikWindow *window );
123 static void register_vik_icons (GtkIconFactory *icon_factory);
124
125 /* i/o */
126 static void load_file ( GtkAction *a, VikWindow *vw );
127 static gboolean save_file_as ( GtkAction *a, VikWindow *vw );
128 static gboolean save_file ( GtkAction *a, VikWindow *vw );
129 static gboolean save_file_and_exit ( GtkAction *a, VikWindow *vw );
130 static gboolean window_save ( VikWindow *vw );
131
132 struct _VikWindow {
133   GtkWindow gtkwindow;
134   VikViewport *viking_vvp;
135   VikLayersPanel *viking_vlp;
136   VikStatusbar *viking_vs;
137
138   GtkToolbar *toolbar;
139
140   GtkItemFactory *item_factory;
141
142   /* tool management state */
143   guint current_tool;
144   toolbox_tools_t *vt;
145   guint16 tool_layer_id;
146   guint16 tool_tool_id;
147
148   GtkActionGroup *action_group;
149
150   gint pan_x, pan_y;
151
152   guint draw_image_width, draw_image_height;
153   gboolean draw_image_save_as_png;
154
155   gchar *filename;
156   gboolean modified;
157
158   GtkWidget *open_dia, *save_dia;
159   GtkWidget *save_img_dia, *save_img_dir_dia;
160
161   gboolean only_updating_coord_mode_ui; /* hack for a bug in GTK */
162   GtkUIManager *uim;
163
164   /* half-drawn update */
165   VikLayer *trigger;
166   VikCoord trigger_center;
167 };
168
169 enum {
170  TOOL_PAN = 0,
171  TOOL_ZOOM,
172  TOOL_RULER,
173  TOOL_LAYER,
174  NUMBER_OF_TOOLS
175 };
176
177 enum {
178   VW_NEWWINDOW_SIGNAL,
179   VW_OPENWINDOW_SIGNAL,
180   VW_LAST_SIGNAL
181 };
182
183 static guint window_signals[VW_LAST_SIGNAL] = { 0 };
184
185 static gchar *tool_names[NUMBER_OF_TOOLS] = { N_("Pan"), N_("Zoom"), N_("Ruler") };
186
187 GType vik_window_get_type (void)
188 {
189   static GType vw_type = 0;
190
191   if (!vw_type)
192   {
193     static const GTypeInfo vw_info = 
194     {
195       sizeof (VikWindowClass),
196       NULL, /* base_init */
197       NULL, /* base_finalize */
198       (GClassInitFunc) window_class_init, /* class_init */
199       NULL, /* class_finalize */
200       NULL, /* class_data */
201       sizeof (VikWindow),
202       0,
203       (GInstanceInitFunc) window_init,
204     };
205     vw_type = g_type_register_static ( GTK_TYPE_WINDOW, "VikWindow", &vw_info, 0 );
206   }
207
208   return vw_type;
209 }
210
211 VikViewport * vik_window_viewport(VikWindow *vw)
212 {
213   return(vw->viking_vvp);
214 }
215
216 void vik_window_selected_layer(VikWindow *vw, VikLayer *vl)
217 {
218   int i, j, tool_count;
219   VikLayerInterface *layer_interface;
220
221   if (!vw->action_group) return;
222
223   for (i=0; i<VIK_LAYER_NUM_TYPES; i++) {
224     GtkAction *action;
225     layer_interface = vik_layer_get_interface(i);
226     tool_count = layer_interface->tools_count;
227
228     for (j = 0; j < tool_count; j++) {
229       action = gtk_action_group_get_action(vw->action_group,
230             layer_interface->tools[j].name);
231       g_object_set(action, "sensitive", i == vl->type, NULL);
232     }
233   }
234 }
235
236 static void window_finalize ( GObject *gob )
237 {
238   VikWindow *vw = VIK_WINDOW(gob);
239   g_return_if_fail ( vw != NULL );
240
241   a_background_remove_status ( vw->viking_vs );
242
243   G_OBJECT_CLASS(parent_class)->finalize(gob);
244 }
245
246
247 static void window_class_init ( VikWindowClass *klass )
248 {
249   /* destructor */
250   GObjectClass *object_class;
251
252   window_signals[VW_NEWWINDOW_SIGNAL] = g_signal_new ( "newwindow", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (VikWindowClass, newwindow), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
253   window_signals[VW_OPENWINDOW_SIGNAL] = g_signal_new ( "openwindow", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (VikWindowClass, openwindow), NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER);
254
255   object_class = G_OBJECT_CLASS (klass);
256
257   object_class->finalize = window_finalize;
258
259   parent_class = g_type_class_peek_parent (klass);
260
261 }
262
263 static void window_init ( VikWindow *vw )
264 {
265   GtkWidget *main_vbox;
266   GtkWidget *hpaned;
267
268   vw->action_group = NULL;
269
270   vw->viking_vvp = vik_viewport_new();
271   vw->viking_vlp = vik_layers_panel_new();
272   vik_layers_panel_set_viewport ( vw->viking_vlp, vw->viking_vvp );
273   vw->viking_vs = vik_statusbar_new();
274
275   vw->vt = toolbox_create(vw);
276   window_create_ui(vw);
277   window_set_filename (vw, NULL);
278   
279   toolbox_activate(vw->vt, "Pan");
280
281   vw->filename = NULL;
282   vw->item_factory = NULL;
283
284   vw->modified = FALSE;
285   vw->only_updating_coord_mode_ui = FALSE;
286   
287   vw->pan_x = vw->pan_y = -1;
288   vw->draw_image_width = DRAW_IMAGE_DEFAULT_WIDTH;
289   vw->draw_image_height = DRAW_IMAGE_DEFAULT_HEIGHT;
290   vw->draw_image_save_as_png = DRAW_IMAGE_DEFAULT_SAVE_AS_PNG;
291
292   main_vbox = gtk_vbox_new(FALSE, 1);
293   gtk_container_add (GTK_CONTAINER (vw), main_vbox);
294
295   gtk_box_pack_start (GTK_BOX(main_vbox), gtk_ui_manager_get_widget (vw->uim, "/MainMenu"), FALSE, TRUE, 0);
296   gtk_box_pack_start (GTK_BOX(main_vbox), gtk_ui_manager_get_widget (vw->uim, "/MainToolbar"), FALSE, TRUE, 0);
297   gtk_toolbar_set_icon_size(GTK_TOOLBAR(gtk_ui_manager_get_widget (vw->uim, "/MainToolbar")), GTK_ICON_SIZE_SMALL_TOOLBAR);
298   gtk_toolbar_set_style (GTK_TOOLBAR(gtk_ui_manager_get_widget (vw->uim, "/MainToolbar")), GTK_TOOLBAR_ICONS);
299
300   vik_ext_tools_add_menu_items ( vw, vw->uim );
301
302   g_signal_connect (G_OBJECT (vw), "delete_event", G_CALLBACK (delete_event), NULL);
303
304   g_signal_connect_swapped (G_OBJECT(vw->viking_vvp), "expose_event", G_CALLBACK(draw_sync), vw);
305   g_signal_connect_swapped (G_OBJECT(vw->viking_vvp), "configure_event", G_CALLBACK(window_configure_event), vw);
306   gtk_widget_add_events ( GTK_WIDGET(vw->viking_vvp), GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_KEY_PRESS_MASK );
307   g_signal_connect_swapped (G_OBJECT(vw->viking_vvp), "scroll_event", G_CALLBACK(draw_scroll), vw);
308   g_signal_connect_swapped (G_OBJECT(vw->viking_vvp), "button_press_event", G_CALLBACK(draw_click), vw);
309   g_signal_connect_swapped (G_OBJECT(vw->viking_vvp), "button_release_event", G_CALLBACK(draw_release), vw);
310   g_signal_connect_swapped (G_OBJECT(vw->viking_vvp), "motion_notify_event", G_CALLBACK(draw_mouse_motion), vw);
311   g_signal_connect_swapped (G_OBJECT(vw->viking_vlp), "update", G_CALLBACK(draw_update), vw);
312
313   g_signal_connect_swapped (G_OBJECT (vw->viking_vvp), "key_press_event", G_CALLBACK (key_press_event), vw);
314
315   gtk_window_set_default_size ( GTK_WINDOW(vw), VIKING_WINDOW_WIDTH, VIKING_WINDOW_HEIGHT);
316
317   hpaned = gtk_hpaned_new ();
318   gtk_paned_pack1 ( GTK_PANED(hpaned), GTK_WIDGET (vw->viking_vlp), FALSE, FALSE );
319   gtk_paned_pack2 ( GTK_PANED(hpaned), GTK_WIDGET (vw->viking_vvp), TRUE, TRUE );
320
321   /* This packs the button into the window (a gtk container). */
322   gtk_box_pack_start (GTK_BOX(main_vbox), hpaned, TRUE, TRUE, 0);
323
324   gtk_box_pack_end (GTK_BOX(main_vbox), GTK_WIDGET(vw->viking_vs), FALSE, TRUE, 0);
325
326   a_background_add_status(vw->viking_vs);
327
328   vw->open_dia = NULL;
329   vw->save_dia = NULL;
330   vw->save_img_dia = NULL;
331   vw->save_img_dir_dia = NULL;
332 }
333
334 VikWindow *vik_window_new ()
335 {
336   return VIK_WINDOW ( g_object_new ( VIK_WINDOW_TYPE, NULL ) );
337 }
338
339 static gboolean key_press_event( VikWindow *vw, GdkEventKey *event, gpointer data )
340 {
341   VikLayer *vl = vik_layers_panel_get_selected ( vw->viking_vlp );
342   if (vl && vw->vt->active_tool != -1 && vw->vt->tools[vw->vt->active_tool].ti.key_press ) {
343     gint ltype = vw->vt->tools[vw->vt->active_tool].layer_type;
344     if ( vl && ltype == vl->type )
345       return vw->vt->tools[vw->vt->active_tool].ti.key_press(vl, event, vw->vt->tools[vw->vt->active_tool].state);
346   }
347   return FALSE; /* don't handle the keypress */
348 }
349
350 static gboolean delete_event( VikWindow *vw )
351 {
352 #ifdef VIKING_PROMPT_IF_MODIFIED
353   if ( vw->modified )
354 #else
355   if (0)
356 #endif
357   {
358     GtkDialog *dia;
359     dia = GTK_DIALOG ( gtk_message_dialog_new ( GTK_WINDOW(vw), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
360       _("Do you want to save the changes you made to the document \"%s\"?\n"
361         "\n"
362         "Your changes will be lost if you don't save them."),
363       vw->filename ? a_file_basename ( vw->filename ) : _("Untitled") ) );
364     gtk_dialog_add_buttons ( dia, _("Don't Save"), GTK_RESPONSE_NO, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_SAVE, GTK_RESPONSE_YES, NULL );
365     switch ( gtk_dialog_run ( dia ) )
366     {
367       case GTK_RESPONSE_NO: gtk_widget_destroy ( GTK_WIDGET(dia) ); return FALSE;
368       case GTK_RESPONSE_CANCEL: gtk_widget_destroy ( GTK_WIDGET(dia) ); return TRUE;
369       default: gtk_widget_destroy ( GTK_WIDGET(dia) ); return ! save_file(NULL, vw);
370     }
371   }
372   return FALSE;
373 }
374
375 /* Drawing stuff */
376 static void newwindow_cb ( GtkAction *a, VikWindow *vw )
377 {
378   g_signal_emit ( G_OBJECT(vw), window_signals[VW_NEWWINDOW_SIGNAL], 0 );
379 }
380
381 static void draw_update ( VikWindow *vw )
382 {
383   draw_redraw (vw);
384   draw_sync (vw);
385 }
386
387 static void draw_sync ( VikWindow *vw )
388 {
389   vik_viewport_sync(vw->viking_vvp);
390   draw_status ( vw );
391   /* other things may be necc here later. */
392 }
393
394 static void draw_status ( VikWindow *vw )
395 {
396   static gchar zoom_level[22];
397   g_snprintf ( zoom_level, 22, "%.3f/%.3f %s", vik_viewport_get_xmpp (vw->viking_vvp), vik_viewport_get_ympp(vw->viking_vvp), vik_viewport_get_coord_mode(vw->viking_vvp) == VIK_COORD_UTM ? _("mpp") : _("pixelfact") );
398   if ( vw->current_tool == TOOL_LAYER )
399     vik_statusbar_set_message ( vw->viking_vs, 0, vik_layer_get_interface(vw->tool_layer_id)->tools[vw->tool_tool_id].name );
400   else
401     vik_statusbar_set_message ( vw->viking_vs, 0, _(tool_names[vw->current_tool]) );
402
403   vik_statusbar_set_message ( vw->viking_vs, 2, zoom_level );
404 }
405
406 void vik_window_set_redraw_trigger(VikLayer *vl)
407 {
408   VikWindow *vw = VIK_WINDOW(VIK_GTK_WINDOW_FROM_LAYER(vl));
409   if (NULL != vw)
410     vw->trigger = vl;
411 }
412
413 static void window_configure_event ( VikWindow *vw )
414 {
415   static int first = 1;
416   draw_redraw ( vw );
417   if (first) {
418     // This is a hack to set the cursor corresponding to the first tool
419     // FIXME find the correct way to initialize both tool and its cursor
420     const GdkCursor *cursor = NULL;
421     first = 0;
422     cursor = toolbox_get_cursor(vw->vt, "Pan");
423     /* We set cursor, even if it is NULL: it resets to default */
424     gdk_window_set_cursor ( GTK_WIDGET(vw->viking_vvp)->window, cursor );
425   }
426 }
427
428 static void draw_redraw ( VikWindow *vw )
429 {
430   VikCoord old_center = vw->trigger_center;
431   vw->trigger_center = *(vik_viewport_get_center(vw->viking_vvp));
432   VikLayer *new_trigger = vw->trigger;
433   vw->trigger = NULL;
434   VikLayer *old_trigger = VIK_LAYER(vik_viewport_get_trigger(vw->viking_vvp));
435
436   if ( ! new_trigger )
437     ; /* do nothing -- have to redraw everything. */
438   else if ( (old_trigger != new_trigger) || !vik_coord_equals(&old_center, &vw->trigger_center) )
439     vik_viewport_set_trigger ( vw->viking_vvp, new_trigger ); /* todo: set to half_drawn mode if new trigger is above old */
440   else
441     vik_viewport_set_half_drawn ( vw->viking_vvp, TRUE );
442
443   /* actually draw */
444   vik_viewport_clear ( vw->viking_vvp);
445   vik_layers_panel_draw_all ( vw->viking_vlp );
446   vik_viewport_draw_scale ( vw->viking_vvp );
447   vik_viewport_draw_centermark ( vw->viking_vvp );
448
449   vik_viewport_set_half_drawn ( vw->viking_vvp, FALSE ); /* just in case. */
450 }
451
452 gboolean draw_buf_done = TRUE;
453
454 static gboolean draw_buf(gpointer data)
455 {
456   gpointer *pass_along = data;
457   gdk_threads_enter();
458   gdk_draw_drawable (pass_along[0], pass_along[1],
459                      pass_along[2], 0, 0, 0, 0, -1, -1);
460   draw_buf_done = TRUE;
461   gdk_threads_leave();
462   return FALSE;
463 }
464
465
466 /* Mouse event handlers ************************************************************************/
467
468 static void vik_window_pan_click (VikWindow *vw, GdkEventButton *event)
469 {
470   /* set panning origin */
471   vw->pan_x = (gint) event->x;
472   vw->pan_y = (gint) event->y;
473 }
474
475 static void draw_click (VikWindow *vw, GdkEventButton *event)
476 {
477   gtk_widget_grab_focus ( GTK_WIDGET(vw->viking_vvp) );
478
479   /* middle button pressed.  we reserve all middle button and scroll events
480    * for panning and zooming; tools only get left/right/movement 
481    */
482   if ( event->button == 2) {
483     vik_window_pan_click ( vw, event );
484   } 
485   else {
486     toolbox_click(vw->vt, event);
487   }
488 }
489
490 static void vik_window_pan_move (VikWindow *vw, GdkEventMotion *event)
491 {
492   if ( vw->pan_x != -1 ) {
493     vik_viewport_pan_sync ( vw->viking_vvp, event->x - vw->pan_x, event->y - vw->pan_y );
494   }
495 }
496
497 static void draw_mouse_motion (VikWindow *vw, GdkEventMotion *event)
498 {
499   static VikCoord coord;
500   static struct UTM utm;
501   static struct LatLon ll;
502   #define BUFFER_SIZE 50
503   static char pointer_buf[BUFFER_SIZE];
504   gchar *lat = NULL, *lon = NULL;
505   gint16 alt;
506   gdouble zoom;
507   VikDemInterpol interpol_method;
508
509   /* This is a hack, but work far the best, at least for single pointer systems.
510    * See http://bugzilla.gnome.org/show_bug.cgi?id=587714 for more. */
511   gint x, y;
512   gdk_window_get_pointer (event->window, &x, &y, NULL);
513   event->x = x;
514   event->y = y;
515
516   toolbox_move(vw->vt, event);
517
518   vik_viewport_screen_to_coord ( vw->viking_vvp, event->x, event->y, &coord );
519   vik_coord_to_utm ( &coord, &utm );
520   a_coords_utm_to_latlon ( &utm, &ll );
521   a_coords_latlon_to_string ( &ll, &lat, &lon );
522   /* Change interpolate method according to scale */
523   zoom = vik_viewport_get_zoom(vw->viking_vvp);
524   if (zoom > 2.0)
525     interpol_method = VIK_DEM_INTERPOL_NONE;
526   else if (zoom >= 1.0)
527     interpol_method = VIK_DEM_INTERPOL_SIMPLE;
528   else
529     interpol_method = VIK_DEM_INTERPOL_BEST;
530   if ((alt = a_dems_get_elev_by_coord(&coord, interpol_method)) != VIK_DEM_INVALID_ELEVATION)
531     g_snprintf ( pointer_buf, BUFFER_SIZE, _("%s %s %dm"), lat, lon, alt );
532   else
533     g_snprintf ( pointer_buf, BUFFER_SIZE, _("%s %s"), lat, lon );
534   g_free (lat);
535   lat = NULL;
536   g_free (lon);
537   lon = NULL;
538   vik_statusbar_set_message ( vw->viking_vs, 4, pointer_buf );
539
540   vik_window_pan_move ( vw, event );
541
542   /* This is recommended by the GTK+ documentation, but does not work properly.
543    * Use deprecated way until GTK+ gets a solution for correct motion hint handling:
544    * http://bugzilla.gnome.org/show_bug.cgi?id=587714
545   */
546   /* gdk_event_request_motions ( event ); */
547 }
548
549 static void vik_window_pan_release ( VikWindow *vw, GdkEventButton *event )
550 {
551   if ( ABS(vw->pan_x - event->x) <= 1 && ABS(vw->pan_y - event->y) <= 1 )
552     vik_viewport_set_center_screen ( vw->viking_vvp, vw->pan_x, vw->pan_y );
553   else
554      vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp)/2 - event->x + vw->pan_x,
555                                       vik_viewport_get_height(vw->viking_vvp)/2 - event->y + vw->pan_y );
556   draw_update ( vw );
557   vw->pan_x = vw->pan_y = -1;
558 }
559
560 static void draw_release ( VikWindow *vw, GdkEventButton *event )
561 {
562   gtk_widget_grab_focus ( GTK_WIDGET(vw->viking_vvp) );
563
564   if ( event->button == 2 ) {  /* move / pan */
565     vik_window_pan_release(vw, event);
566   }
567   else {
568     toolbox_release(vw->vt, event);
569   }
570 }
571
572 static void draw_scroll (VikWindow *vw, GdkEventScroll *event)
573 {
574   guint modifiers = event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK);
575   if ( modifiers == GDK_CONTROL_MASK ) {
576     /* control == pan up & down */
577     if ( event->direction == GDK_SCROLL_UP )
578       vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp)/2, vik_viewport_get_height(vw->viking_vvp)/3 );
579     else
580       vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp)/2, vik_viewport_get_height(vw->viking_vvp)*2/3 );
581   } else if ( modifiers == GDK_SHIFT_MASK ) {
582     /* shift == pan left & right */
583     if ( event->direction == GDK_SCROLL_UP )
584       vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp)/3, vik_viewport_get_height(vw->viking_vvp)/2 );
585     else
586       vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp)*2/3, vik_viewport_get_height(vw->viking_vvp)/2 );
587   } else if ( modifiers == (GDK_CONTROL_MASK | GDK_SHIFT_MASK) ) {
588     /* control+shift == make sure mouse is still over the same point on the map when we zoom */
589     VikCoord coord;
590     gint x, y;
591     gint center_x = vik_viewport_get_width ( vw->viking_vvp ) / 2;
592     gint center_y = vik_viewport_get_height ( vw->viking_vvp ) / 2;
593     vik_viewport_screen_to_coord ( vw->viking_vvp, event->x, event->y, &coord );
594     if ( event->direction == GDK_SCROLL_UP )
595       vik_viewport_zoom_in (vw->viking_vvp);
596     else
597       vik_viewport_zoom_out(vw->viking_vvp);
598     vik_viewport_coord_to_screen ( vw->viking_vvp, &coord, &x, &y );
599     vik_viewport_set_center_screen ( vw->viking_vvp, center_x + (x - event->x),
600                                      center_y + (y - event->y) );
601   } else {
602     if ( event->direction == GDK_SCROLL_UP )
603       vik_viewport_zoom_in (vw->viking_vvp);
604     else
605       vik_viewport_zoom_out (vw->viking_vvp);
606   }
607
608   draw_update(vw);
609 }
610
611
612
613 /********************************************************************************
614  ** Ruler tool code
615  ********************************************************************************/
616 static void draw_ruler(VikViewport *vvp, GdkDrawable *d, GdkGC *gc, gint x1, gint y1, gint x2, gint y2, gdouble distance)
617 {
618   PangoFontDescription *pfd;
619   PangoLayout *pl;
620   gchar str[128];
621   GdkGC *labgc = vik_viewport_new_gc ( vvp, "#cccccc", 1);
622   GdkGC *thickgc = gdk_gc_new(d);
623   
624   gdouble len = sqrt((x1-x2)*(x1-x2) + (y1-y2)*(y1-y2));
625   gdouble dx = (x2-x1)/len*10; 
626   gdouble dy = (y2-y1)/len*10;
627   gdouble c = cos(15.0 * M_PI/180.0);
628   gdouble s = sin(15.0 * M_PI/180.0);
629   gdouble angle;
630   gdouble baseangle = 0;
631   gint i;
632
633   /* draw line with arrow ends */
634   {
635     gint tmp_x1=x1, tmp_y1=y1, tmp_x2=x2, tmp_y2=y2;
636     a_viewport_clip_line(&tmp_x1, &tmp_y1, &tmp_x2, &tmp_y2);
637     gdk_draw_line(d, gc, tmp_x1, tmp_y1, tmp_x2, tmp_y2);
638   }
639
640   a_viewport_clip_line(&x1, &y1, &x2, &y2);
641   gdk_draw_line(d, gc, x1, y1, x2, y2);
642
643   gdk_draw_line(d, gc, x1 - dy, y1 + dx, x1 + dy, y1 - dx);
644   gdk_draw_line(d, gc, x2 - dy, y2 + dx, x2 + dy, y2 - dx);
645   gdk_draw_line(d, gc, x2, y2, x2 - (dx * c + dy * s), y2 - (dy * c - dx * s));
646   gdk_draw_line(d, gc, x2, y2, x2 - (dx * c - dy * s), y2 - (dy * c + dx * s));
647   gdk_draw_line(d, gc, x1, y1, x1 + (dx * c + dy * s), y1 + (dy * c - dx * s));
648   gdk_draw_line(d, gc, x1, y1, x1 + (dx * c - dy * s), y1 + (dy * c + dx * s));
649
650   /* draw compass */
651 #define CR 80
652 #define CW 4
653   angle = atan2(dy, dx) + M_PI_2;
654
655   if ( vik_viewport_get_drawmode ( vvp ) == VIK_VIEWPORT_DRAWMODE_UTM) {
656     VikCoord test;
657     struct LatLon ll;
658     struct UTM u;
659     gint tx, ty;
660
661     vik_viewport_screen_to_coord ( vvp, x1, y1, &test );
662     vik_coord_to_latlon ( &test, &ll );
663     ll.lat += vik_viewport_get_ympp ( vvp ) * vik_viewport_get_height ( vvp ) / 11000.0; // about 11km per degree latitude
664     a_coords_latlon_to_utm ( &ll, &u );
665     vik_coord_load_from_utm ( &test, VIK_VIEWPORT_DRAWMODE_UTM, &u );
666     vik_viewport_coord_to_screen ( vvp, &test, &tx, &ty );
667
668     baseangle = M_PI - atan2(tx-x1, ty-y1);
669     angle -= baseangle;
670   }
671
672   if (angle<0) 
673     angle+=2*M_PI;
674   if (angle>2*M_PI)
675     angle-=2*M_PI;
676
677   {
678     GdkColor color;
679     gdk_gc_copy(thickgc, gc);
680     gdk_gc_set_line_attributes(thickgc, CW, GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER);
681     gdk_color_parse("#2255cc", &color);
682     gdk_gc_set_rgb_fg_color(thickgc, &color);
683   }
684   gdk_draw_arc (d, thickgc, FALSE, x1-CR+CW/2, y1-CR+CW/2, 2*CR-CW, 2*CR-CW, (90 - baseangle*180/M_PI)*64, -angle*180/M_PI*64);
685
686
687   gdk_gc_copy(thickgc, gc);
688   gdk_gc_set_line_attributes(thickgc, 2, GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_MITER);
689   for (i=0; i<180; i++) {
690     c = cos(i*M_PI/90.0 + baseangle);
691     s = sin(i*M_PI/90.0 + baseangle);
692
693     if (i%5) {
694       gdk_draw_line (d, gc, x1 + CR*c, y1 + CR*s, x1 + (CR+CW)*c, y1 + (CR+CW)*s);
695     } else {
696       gdouble ticksize = 2*CW;
697       gdk_draw_line (d, thickgc, x1 + (CR-CW)*c, y1 + (CR-CW)*s, x1 + (CR+ticksize)*c, y1 + (CR+ticksize)*s);
698     }
699   }
700
701   gdk_draw_arc (d, gc, FALSE, x1-CR, y1-CR, 2*CR, 2*CR, 0, 64*360);
702   gdk_draw_arc (d, gc, FALSE, x1-CR-CW, y1-CR-CW, 2*(CR+CW), 2*(CR+CW), 0, 64*360);
703   gdk_draw_arc (d, gc, FALSE, x1-CR+CW, y1-CR+CW, 2*(CR-CW), 2*(CR-CW), 0, 64*360);
704   c = (CR+CW*2)*cos(baseangle);
705   s = (CR+CW*2)*sin(baseangle);
706   gdk_draw_line (d, gc, x1-c, y1-s, x1+c, y1+s);
707   gdk_draw_line (d, gc, x1+s, y1-c, x1-s, y1+c);
708
709   /* draw labels */
710 #define LABEL(x, y, w, h) { \
711     gdk_draw_rectangle(d, labgc, TRUE, (x)-2, (y)-1, (w)+4, (h)+1); \
712     gdk_draw_rectangle(d, gc, FALSE, (x)-2, (y)-1, (w)+4, (h)+1); \
713     gdk_draw_layout(d, gc, (x), (y), pl); } 
714   {
715     gint wd, hd, xd, yd;
716     gint wb, hb, xb, yb;
717
718     pl = gtk_widget_create_pango_layout (GTK_WIDGET(vvp), NULL);
719
720     pfd = pango_font_description_from_string ("Sans 8"); // FIXME: settable option? global variable?
721     pango_layout_set_font_description (pl, pfd);
722     pango_font_description_free (pfd);
723
724     pango_layout_set_text(pl, "N", -1);
725     gdk_draw_layout(d, gc, x1-5, y1-CR-3*CW-8, pl);
726
727     /* draw label with distance */
728     vik_units_distance_t dist_units = a_vik_get_units_distance ();
729     switch (dist_units) {
730     case VIK_UNITS_DISTANCE_KILOMETRES:
731       if (distance >= 1000 && distance < 100000) {
732         g_sprintf(str, "%3.2f km", distance/1000.0);
733       } else if (distance < 1000) {
734         g_sprintf(str, "%d m", (int)distance);
735       } else {
736         g_sprintf(str, "%d km", (int)distance/1000);
737       }
738       break;
739     case VIK_UNITS_DISTANCE_MILES:
740       if (distance >= 1600 && distance < 160000) {
741         g_sprintf(str, "%3.2f miles", distance/1600.0);
742       } else if (distance < 1600) {
743         g_sprintf(str, "%d yards", (int)(distance*1.0936133));
744       } else {
745         g_sprintf(str, "%d miles", (int)distance/1600);
746       }
747       break;
748     default:
749       g_critical("Houston, we've had a problem. distance=%d", dist_units);
750     }
751
752     pango_layout_set_text(pl, str, -1);
753
754     pango_layout_get_pixel_size ( pl, &wd, &hd );
755     if (dy>0) {
756       xd = (x1+x2)/2 + dy;
757       yd = (y1+y2)/2 - hd/2 - dx;
758     } else {
759       xd = (x1+x2)/2 - dy;
760       yd = (y1+y2)/2 - hd/2 + dx;
761     }
762
763     if ( xd < -5 || yd < -5 || xd > vik_viewport_get_width(vvp)+5 || yd > vik_viewport_get_height(vvp)+5 ) {
764       xd = x2 + 10;
765       yd = y2 - 5;
766     }
767
768     LABEL(xd, yd, wd, hd);
769
770     /* draw label with bearing */
771     g_sprintf(str, "%3.1f°", angle*180.0/M_PI);
772     pango_layout_set_text(pl, str, -1);
773     pango_layout_get_pixel_size ( pl, &wb, &hb );
774     xb = x1 + CR*cos(angle-M_PI_2);
775     yb = y1 + CR*sin(angle-M_PI_2);
776
777     if ( xb < -5 || yb < -5 || xb > vik_viewport_get_width(vvp)+5 || yb > vik_viewport_get_height(vvp)+5 ) {
778       xb = x2 + 10;
779       yb = y2 + 10;
780     }
781
782     {
783       GdkRectangle r1 = {xd-2, yd-1, wd+4, hd+1}, r2 = {xb-2, yb-1, wb+4, hb+1};
784       if (gdk_rectangle_intersect(&r1, &r2, &r2)) {
785         xb = xd + wd + 5;
786       }
787     }
788     LABEL(xb, yb, wb, hb);
789   }
790 #undef LABEL
791
792   g_object_unref ( G_OBJECT ( pl ) );
793   g_object_unref ( G_OBJECT ( labgc ) );
794   g_object_unref ( G_OBJECT ( thickgc ) );
795 }
796
797 typedef struct {
798   VikWindow *vw;
799   VikViewport *vvp;
800   gboolean has_oldcoord;
801   VikCoord oldcoord;
802 } ruler_tool_state_t;
803
804 static gpointer ruler_create (VikWindow *vw, VikViewport *vvp) 
805 {
806   ruler_tool_state_t *s = g_new(ruler_tool_state_t, 1);
807   s->vw = vw;
808   s->vvp = vvp;
809   s->has_oldcoord = FALSE;
810   return s;
811 }
812
813 static void ruler_destroy (ruler_tool_state_t *s)
814 {
815   g_free(s);
816 }
817
818 static VikLayerToolFuncStatus ruler_click (VikLayer *vl, GdkEventButton *event, ruler_tool_state_t *s)
819 {
820   struct LatLon ll;
821   VikCoord coord;
822   gchar *temp;
823   if ( event->button == 1 ) {
824     gchar *lat=NULL, *lon=NULL;
825     vik_viewport_screen_to_coord ( s->vvp, (gint) event->x, (gint) event->y, &coord );
826     vik_coord_to_latlon ( &coord, &ll );
827     a_coords_latlon_to_string ( &ll, &lat, &lon );
828     if ( s->has_oldcoord ) {
829       vik_units_distance_t dist_units = a_vik_get_units_distance ();
830       switch (dist_units) {
831       case VIK_UNITS_DISTANCE_KILOMETRES:
832         temp = g_strdup_printf ( "%s %s DIFF %f meters", lat, lon, vik_coord_diff( &coord, &(s->oldcoord) ) );
833         break;
834       case VIK_UNITS_DISTANCE_MILES:
835         temp = g_strdup_printf ( "%s %s DIFF %f miles", lat, lon, vik_coord_diff( &coord, &(s->oldcoord) )* 0.000621371192);
836         break;
837       default:
838         temp = g_strdup_printf ("Just to keep the compiler happy");
839         g_critical("Houston, we've had a problem. distance=%d", dist_units);
840       }
841
842       s->has_oldcoord = FALSE;
843     }
844     else {
845       temp = g_strdup_printf ( "%s %s", lat, lon );
846       s->has_oldcoord = TRUE;
847     }
848
849     vik_statusbar_set_message ( s->vw->viking_vs, 3, temp );
850     g_free ( temp );
851
852     s->oldcoord = coord;
853   }
854   else {
855     vik_viewport_set_center_screen ( s->vvp, (gint) event->x, (gint) event->y );
856     draw_update ( s->vw );
857   }
858   return VIK_LAYER_TOOL_ACK;
859 }
860
861 static VikLayerToolFuncStatus ruler_move (VikLayer *vl, GdkEventMotion *event, ruler_tool_state_t *s)
862 {
863   VikViewport *vvp = s->vvp;
864   VikWindow *vw = s->vw;
865
866   struct LatLon ll;
867   VikCoord coord;
868   gchar *temp;
869
870   if ( s->has_oldcoord ) {
871     int oldx, oldy, w1, h1, w2, h2;
872     static GdkPixmap *buf = NULL;
873     gchar *lat=NULL, *lon=NULL;
874     w1 = vik_viewport_get_width(vvp); 
875     h1 = vik_viewport_get_height(vvp);
876     if (!buf) {
877       buf = gdk_pixmap_new ( GTK_WIDGET(vvp)->window, w1, h1, -1 );
878     }
879     gdk_drawable_get_size(buf, &w2, &h2);
880     if (w1 != w2 || h1 != h2) {
881       g_object_unref ( G_OBJECT ( buf ) );
882       buf = gdk_pixmap_new ( GTK_WIDGET(vvp)->window, w1, h1, -1 );
883     }
884
885     vik_viewport_screen_to_coord ( vvp, (gint) event->x, (gint) event->y, &coord );
886     vik_coord_to_latlon ( &coord, &ll );
887     vik_viewport_coord_to_screen ( vvp, &s->oldcoord, &oldx, &oldy );
888
889     gdk_draw_drawable (buf, GTK_WIDGET(vvp)->style->black_gc, 
890                        vik_viewport_get_pixmap(vvp), 0, 0, 0, 0, -1, -1);
891     draw_ruler(vvp, buf, GTK_WIDGET(vvp)->style->black_gc, oldx, oldy, event->x, event->y, vik_coord_diff( &coord, &(s->oldcoord)) );
892     if (draw_buf_done) {
893       static gpointer pass_along[3];
894       pass_along[0] = GTK_WIDGET(vvp)->window;
895       pass_along[1] = GTK_WIDGET(vvp)->style->black_gc;
896       pass_along[2] = buf;
897       g_idle_add_full (G_PRIORITY_HIGH_IDLE + 10, draw_buf, pass_along, NULL);
898       draw_buf_done = FALSE;
899     }
900     a_coords_latlon_to_string(&ll, &lat, &lon);
901     vik_units_distance_t dist_units = a_vik_get_units_distance ();
902     switch (dist_units) {
903     case VIK_UNITS_DISTANCE_KILOMETRES:
904       temp = g_strdup_printf ( "%s %s DIFF %f meters", lat, lon, vik_coord_diff( &coord, &(s->oldcoord) ) );
905       break;
906     case VIK_UNITS_DISTANCE_MILES:
907       temp = g_strdup_printf ( "%s %s DIFF %f miles", lat, lon, vik_coord_diff( &coord, &(s->oldcoord) )* 0.000621371192);
908       break;
909     default:
910       temp = g_strdup_printf ("Just to keep the compiler happy");
911       g_critical("Houston, we've had a problem. distance=%d", dist_units);
912     }
913     vik_statusbar_set_message ( vw->viking_vs, 3, temp );
914     g_free ( temp );
915   }
916   return VIK_LAYER_TOOL_ACK;
917 }
918
919 static VikLayerToolFuncStatus ruler_release (VikLayer *vl, GdkEventButton *event, ruler_tool_state_t *s)
920 {
921   return VIK_LAYER_TOOL_ACK;
922 }
923
924 static void ruler_deactivate (VikLayer *vl, ruler_tool_state_t *s)
925 {
926   draw_update ( s->vw );
927 }
928
929 static VikToolInterface ruler_tool = 
930   { "Ruler", 
931     (VikToolConstructorFunc) ruler_create,
932     (VikToolDestructorFunc) ruler_destroy,
933     (VikToolActivationFunc) NULL,
934     (VikToolActivationFunc) ruler_deactivate, 
935     (VikToolMouseFunc) ruler_click, 
936     (VikToolMouseMoveFunc) ruler_move, 
937     (VikToolMouseFunc) ruler_release,
938     NULL,
939     GDK_CURSOR_IS_PIXMAP,
940     &cursor_ruler_pixbuf };
941 /*** end ruler code ********************************************************/
942
943
944
945 /********************************************************************************
946  ** Zoom tool code
947  ********************************************************************************/
948 static gpointer zoomtool_create (VikWindow *vw, VikViewport *vvp)
949 {
950   return vw;
951 }
952
953 static VikLayerToolFuncStatus zoomtool_click (VikLayer *vl, GdkEventButton *event, VikWindow *vw)
954 {
955   vw->modified = TRUE;
956   vik_viewport_set_center_screen ( vw->viking_vvp, (gint) event->x, (gint) event->y );
957   if ( event->button == 1 )
958     vik_viewport_zoom_in (vw->viking_vvp);
959   else if ( event->button == 3 )
960     vik_viewport_zoom_out (vw->viking_vvp);
961   draw_update ( vw );
962   return VIK_LAYER_TOOL_ACK;
963 }
964
965 static VikLayerToolFuncStatus zoomtool_move (VikLayer *vl, GdkEventMotion *event, VikViewport *vvp)
966 {
967   return VIK_LAYER_TOOL_ACK;
968 }
969
970 static VikLayerToolFuncStatus zoomtool_release (VikLayer *vl, GdkEventButton *event, VikViewport *vvp)
971 {
972   return VIK_LAYER_TOOL_ACK;
973 }
974
975 static VikToolInterface zoom_tool = 
976   { "Zoom", 
977     (VikToolConstructorFunc) zoomtool_create,
978     (VikToolDestructorFunc) NULL,
979     (VikToolActivationFunc) NULL,
980     (VikToolActivationFunc) NULL,
981     (VikToolMouseFunc) zoomtool_click, 
982     (VikToolMouseMoveFunc) zoomtool_move,
983     (VikToolMouseFunc) zoomtool_release,
984     NULL,
985     GDK_CURSOR_IS_PIXMAP,
986     &cursor_zoom_pixbuf };
987 /*** end zoom code ********************************************************/
988
989 /********************************************************************************
990  ** Pan tool code
991  ********************************************************************************/
992 static gpointer pantool_create (VikWindow *vw, VikViewport *vvp)
993 {
994   return vw;
995 }
996
997 static VikLayerToolFuncStatus pantool_click (VikLayer *vl, GdkEventButton *event, VikWindow *vw)
998 {
999   vw->modified = TRUE;
1000   if ( event->button == 1 )
1001     vik_window_pan_click ( vw, event );
1002   draw_update ( vw );
1003   return VIK_LAYER_TOOL_ACK;
1004 }
1005
1006 static VikLayerToolFuncStatus pantool_move (VikLayer *vl, GdkEventMotion *event, VikWindow *vw)
1007 {
1008   vik_window_pan_move ( vw, event );
1009   return VIK_LAYER_TOOL_ACK;
1010 }
1011
1012 static VikLayerToolFuncStatus pantool_release (VikLayer *vl, GdkEventButton *event, VikWindow *vw)
1013 {
1014   if ( event->button == 1 )
1015     vik_window_pan_release ( vw, event );
1016   return VIK_LAYER_TOOL_ACK;
1017 }
1018
1019 static VikToolInterface pan_tool = 
1020   { "Pan", 
1021     (VikToolConstructorFunc) pantool_create,
1022     (VikToolDestructorFunc) NULL,
1023     (VikToolActivationFunc) NULL,
1024     (VikToolActivationFunc) NULL,
1025     (VikToolMouseFunc) pantool_click, 
1026     (VikToolMouseMoveFunc) pantool_move,
1027     (VikToolMouseFunc) pantool_release,
1028     NULL,
1029     GDK_FLEUR };
1030 /*** end pan code ********************************************************/
1031
1032 static void draw_pan_cb ( GtkAction *a, VikWindow *vw )
1033 {
1034   if (!strcmp(gtk_action_get_name(a), "PanNorth")) {
1035     vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp)/2, 0 );
1036   } else if (!strcmp(gtk_action_get_name(a), "PanEast")) {
1037     vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp), vik_viewport_get_height(vw->viking_vvp)/2 );
1038   } else if (!strcmp(gtk_action_get_name(a), "PanSouth")) {
1039     vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp)/2, vik_viewport_get_height(vw->viking_vvp) );
1040   } else if (!strcmp(gtk_action_get_name(a), "PanWest")) {
1041     vik_viewport_set_center_screen ( vw->viking_vvp, 0, vik_viewport_get_height(vw->viking_vvp)/2 );
1042   }
1043   draw_update ( vw );
1044 }
1045
1046 static void full_screen_cb ( GtkAction *a, VikWindow *vw )
1047 {
1048   GtkWidget *check_box = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/FullScreen" );
1049   g_assert(check_box);
1050   gboolean state = gtk_check_menu_item_get_active ( GTK_CHECK_MENU_ITEM(check_box));
1051   if ( state )
1052     gtk_window_fullscreen ( GTK_WINDOW(vw) );
1053   else
1054     gtk_window_unfullscreen ( GTK_WINDOW(vw) );
1055 }
1056
1057 static void draw_zoom_cb ( GtkAction *a, VikWindow *vw )
1058 {
1059   guint what = 128;
1060
1061   if (!strcmp(gtk_action_get_name(a), "ZoomIn")) {
1062     what = -3;
1063   } 
1064   else if (!strcmp(gtk_action_get_name(a), "ZoomOut")) {
1065     what = -4;
1066   }
1067   else if (!strcmp(gtk_action_get_name(a), "Zoom0.25")) {
1068     what = -2;
1069   }
1070   else if (!strcmp(gtk_action_get_name(a), "Zoom0.5")) {
1071     what = -1;
1072   }
1073   else {
1074     gchar *s = (gchar *)gtk_action_get_name(a);
1075     what = atoi(s+4);
1076   }
1077
1078   switch (what)
1079   {
1080     case -3: vik_viewport_zoom_in ( vw->viking_vvp ); break;
1081     case -4: vik_viewport_zoom_out ( vw->viking_vvp ); break;
1082     case -1: vik_viewport_set_zoom ( vw->viking_vvp, 0.5 ); break;
1083     case -2: vik_viewport_set_zoom ( vw->viking_vvp, 0.25 ); break;
1084     default: vik_viewport_set_zoom ( vw->viking_vvp, what );
1085   }
1086   draw_update ( vw );
1087 }
1088
1089 void draw_goto_cb ( GtkAction *a, VikWindow *vw )
1090 {
1091   VikCoord new_center;
1092
1093   if (!strcmp(gtk_action_get_name(a), "GotoLL")) {
1094     struct LatLon ll, llold;
1095     vik_coord_to_latlon ( vik_viewport_get_center ( vw->viking_vvp ), &llold );
1096     if ( a_dialog_goto_latlon ( GTK_WINDOW(vw), &ll, &llold ) )
1097       vik_coord_load_from_latlon ( &new_center, vik_viewport_get_coord_mode(vw->viking_vvp), &ll );
1098     else
1099       return;
1100   }
1101   else if (!strcmp(gtk_action_get_name(a), "GotoUTM")) {
1102     struct UTM utm, utmold;
1103     vik_coord_to_utm ( vik_viewport_get_center ( vw->viking_vvp ), &utmold );
1104     if ( a_dialog_goto_utm ( GTK_WINDOW(vw), &utm, &utmold ) )
1105       vik_coord_load_from_utm ( &new_center, vik_viewport_get_coord_mode(vw->viking_vvp), &utm );
1106     else
1107      return;
1108   }
1109   else {
1110     g_critical("Houston, we've had a problem.");
1111     return;
1112   }
1113
1114   vik_viewport_set_center_coord ( vw->viking_vvp, &new_center );
1115   draw_update ( vw );
1116 }
1117
1118 static void menu_addlayer_cb ( GtkAction *a, VikWindow *vw )
1119 {
1120   gint type;
1121   for ( type = 0; type < VIK_LAYER_NUM_TYPES; type++ ) {
1122     if (!strcmp(vik_layer_get_interface(type)->name, gtk_action_get_name(a))) {
1123       if ( vik_layers_panel_new_layer ( vw->viking_vlp, type ) ) {
1124         draw_update ( vw );
1125         vw->modified = TRUE;
1126       }
1127     }
1128   }
1129 }
1130
1131 static void menu_copy_layer_cb ( GtkAction *a, VikWindow *vw )
1132 {
1133   a_clipboard_copy_selected ( vw->viking_vlp );
1134 }
1135
1136 static void menu_cut_layer_cb ( GtkAction *a, VikWindow *vw )
1137 {
1138   a_clipboard_copy_selected ( vw->viking_vlp );
1139   menu_delete_layer_cb ( a, vw );
1140 }
1141
1142 static void menu_paste_layer_cb ( GtkAction *a, VikWindow *vw )
1143 {
1144   if ( a_clipboard_paste ( vw->viking_vlp ) )
1145   {
1146     draw_update ( vw );
1147     vw->modified = TRUE;
1148   }
1149 }
1150
1151 static void menu_properties_cb ( GtkAction *a, VikWindow *vw )
1152 {
1153   if ( ! vik_layers_panel_properties ( vw->viking_vlp ) )
1154     a_dialog_info_msg ( GTK_WINDOW(vw), _("You must select a layer to show its properties.") );
1155 }
1156
1157 static void help_about_cb ( GtkAction *a, VikWindow *vw )
1158 {
1159   a_dialog_about(GTK_WINDOW(vw));
1160 }
1161
1162 static void menu_delete_layer_cb ( GtkAction *a, VikWindow *vw )
1163 {
1164   if ( vik_layers_panel_get_selected ( vw->viking_vlp ) )
1165   {
1166     vik_layers_panel_delete_selected ( vw->viking_vlp );
1167     vw->modified = TRUE;
1168   }
1169   else
1170     a_dialog_info_msg ( GTK_WINDOW(vw), _("You must select a layer to delete.") );
1171 }
1172
1173 static void view_side_panel_cb ( GtkAction *a, VikWindow *vw )
1174 {
1175   GtkWidget *check_box = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ViewSidePanel" );
1176   g_assert(check_box);
1177   gboolean state = gtk_check_menu_item_get_active ( GTK_CHECK_MENU_ITEM(check_box));
1178   if ( state )
1179     gtk_widget_show(GTK_WIDGET(vw->viking_vlp));
1180   else
1181     gtk_widget_hide(GTK_WIDGET(vw->viking_vlp));
1182 }
1183
1184 /***************************************
1185  ** tool management routines
1186  **
1187  ***************************************/
1188
1189 static toolbox_tools_t* toolbox_create(VikWindow *vw)
1190 {
1191   toolbox_tools_t *vt = g_new(toolbox_tools_t, 1);
1192   vt->tools = NULL;
1193   vt->n_tools = 0;
1194   vt->active_tool = -1;
1195   vt->vw = vw;
1196   if (!vw->viking_vvp) {
1197     g_critical("no viewport found.");
1198     exit(1);
1199   }
1200   return vt;
1201 }
1202
1203 static void toolbox_add_tool(toolbox_tools_t *vt, VikToolInterface *vti, gint layer_type )
1204 {
1205   vt->tools = g_renew(toolbox_tool_t, vt->tools, vt->n_tools+1);
1206   vt->tools[vt->n_tools].ti = *vti;
1207   vt->tools[vt->n_tools].layer_type = layer_type;
1208   if (vti->create) {
1209     vt->tools[vt->n_tools].state = vti->create(vt->vw, vt->vw->viking_vvp);
1210   } 
1211   else {
1212     vt->tools[vt->n_tools].state = NULL;
1213   }
1214   vt->n_tools++;
1215 }
1216
1217 static int toolbox_get_tool(toolbox_tools_t *vt, const gchar *tool_name)
1218 {
1219   int i;
1220   for (i=0; i<vt->n_tools; i++) {
1221     if (!strcmp(tool_name, vt->tools[i].ti.name)) {
1222       break;
1223     }
1224   }
1225   return i;
1226 }
1227
1228 static void toolbox_activate(toolbox_tools_t *vt, const gchar *tool_name)
1229 {
1230   int tool = toolbox_get_tool(vt, tool_name);
1231   toolbox_tool_t *t = &vt->tools[tool];
1232   VikLayer *vl = vik_layers_panel_get_selected ( vt->vw->viking_vlp );
1233
1234   if (tool == vt->n_tools) {
1235     g_critical("trying to activate a non-existent tool...");
1236     exit(1);
1237   }
1238   /* is the tool already active? */
1239   if (vt->active_tool == tool) {
1240     return;
1241   }
1242
1243   if (vt->active_tool != -1) {
1244     if (vt->tools[vt->active_tool].ti.deactivate) {
1245       vt->tools[vt->active_tool].ti.deactivate(NULL, vt->tools[vt->active_tool].state);
1246     }
1247   }
1248   if (t->ti.activate) {
1249     t->ti.activate(vl, t->state);
1250   }
1251   vt->active_tool = tool;
1252 }
1253
1254 static const GdkCursor *toolbox_get_cursor(toolbox_tools_t *vt, const gchar *tool_name)
1255 {
1256   int tool = toolbox_get_tool(vt, tool_name);
1257   toolbox_tool_t *t = &vt->tools[tool];
1258   if (t->ti.cursor == NULL) {
1259     if (t->ti.cursor_type == GDK_CURSOR_IS_PIXMAP && t->ti.cursor_data != NULL) {
1260       GError *cursor_load_err = NULL;
1261       GdkPixbuf *cursor_pixbuf = gdk_pixbuf_from_pixdata (t->ti.cursor_data, FALSE, &cursor_load_err);
1262       /* TODO: settable offeset */
1263       t->ti.cursor = gdk_cursor_new_from_pixbuf ( gdk_display_get_default(), cursor_pixbuf, 3, 3 );
1264       g_object_unref ( G_OBJECT(cursor_pixbuf) );
1265     } else {
1266       t->ti.cursor = gdk_cursor_new ( t->ti.cursor_type );
1267     }
1268   }
1269   return t->ti.cursor;
1270 }
1271
1272 static void toolbox_click (toolbox_tools_t *vt, GdkEventButton *event)
1273 {
1274   VikLayer *vl = vik_layers_panel_get_selected ( vt->vw->viking_vlp );
1275   if (vt->active_tool != -1 && vt->tools[vt->active_tool].ti.click) {
1276     gint ltype = vt->tools[vt->active_tool].layer_type;
1277     if ( ltype == TOOL_LAYER_TYPE_NONE || (vl && ltype == vl->type) )
1278       vt->tools[vt->active_tool].ti.click(vl, event, vt->tools[vt->active_tool].state);
1279   }
1280 }
1281
1282 static void toolbox_move (toolbox_tools_t *vt, GdkEventMotion *event)
1283 {
1284   VikLayer *vl = vik_layers_panel_get_selected ( vt->vw->viking_vlp );
1285   if (vt->active_tool != -1 && vt->tools[vt->active_tool].ti.move) {
1286     gint ltype = vt->tools[vt->active_tool].layer_type;
1287     if ( ltype == TOOL_LAYER_TYPE_NONE || (vl && ltype == vl->type) )
1288       if ( VIK_LAYER_TOOL_ACK_GRAB_FOCUS == vt->tools[vt->active_tool].ti.move(vl, event, vt->tools[vt->active_tool].state) )
1289         gtk_widget_grab_focus ( GTK_WIDGET(vt->vw->viking_vvp) );
1290   }
1291 }
1292
1293 static void toolbox_release (toolbox_tools_t *vt, GdkEventButton *event)
1294 {
1295   VikLayer *vl = vik_layers_panel_get_selected ( vt->vw->viking_vlp );
1296   if (vt->active_tool != -1 && vt->tools[vt->active_tool].ti.release ) {
1297     gint ltype = vt->tools[vt->active_tool].layer_type;
1298     if ( ltype == TOOL_LAYER_TYPE_NONE || (vl && ltype == vl->type) )
1299       vt->tools[vt->active_tool].ti.release(vl, event, vt->tools[vt->active_tool].state);
1300   }
1301 }
1302 /** End tool management ************************************/
1303
1304 void vik_window_enable_layer_tool ( VikWindow *vw, gint layer_id, gint tool_id )
1305 {
1306   gtk_action_activate ( gtk_action_group_get_action ( vw->action_group, vik_layer_get_interface(layer_id)->tools[tool_id].name ) );
1307 }
1308
1309 /* this function gets called whenever a toolbar tool is clicked */
1310 static void menu_tool_cb ( GtkAction *old, GtkAction *a, VikWindow *vw )
1311 {
1312   /* White Magic, my friends ... White Magic... */
1313   int layer_id, tool_id;
1314   const GdkCursor *cursor = NULL;
1315
1316   toolbox_activate(vw->vt, gtk_action_get_name(a));
1317
1318   cursor = toolbox_get_cursor(vw->vt, gtk_action_get_name(a));
1319   /* We set cursor, even if it is NULL: it resets to default */
1320   gdk_window_set_cursor ( GTK_WIDGET(vw->viking_vvp)->window, cursor );
1321
1322   if (!strcmp(gtk_action_get_name(a), "Pan")) {
1323     vw->current_tool = TOOL_PAN;
1324   } 
1325   else if (!strcmp(gtk_action_get_name(a), "Zoom")) {
1326     vw->current_tool = TOOL_ZOOM;
1327   } 
1328   else if (!strcmp(gtk_action_get_name(a), "Ruler")) {
1329     vw->current_tool = TOOL_RULER;
1330   }
1331   else {
1332     /* TODO: only enable tools from active layer */
1333     for (layer_id=0; layer_id<VIK_LAYER_NUM_TYPES; layer_id++) {
1334       for ( tool_id = 0; tool_id < vik_layer_get_interface(layer_id)->tools_count; tool_id++ ) {
1335         if (!strcmp(vik_layer_get_interface(layer_id)->tools[tool_id].name, gtk_action_get_name(a))) {
1336            vw->current_tool = TOOL_LAYER;
1337            vw->tool_layer_id = layer_id;
1338            vw->tool_tool_id = tool_id;
1339         }
1340       }
1341     }
1342   }
1343   draw_status ( vw );
1344 }
1345
1346 static void window_set_filename ( VikWindow *vw, const gchar *filename )
1347 {
1348   gchar *title;
1349   const gchar *file;
1350   if ( vw->filename )
1351     g_free ( vw->filename );
1352   if ( filename == NULL )
1353   {
1354     vw->filename = NULL;
1355     file = _("Untitled");
1356   }
1357   else
1358   {
1359     vw->filename = g_strdup(filename);
1360     file = a_file_basename ( filename );
1361   }
1362   title = g_strdup_printf( "%s - Viking", file );
1363   gtk_window_set_title ( GTK_WINDOW(vw), title );
1364   g_free ( title );
1365 }
1366
1367 GtkWidget *vik_window_get_drawmode_button ( VikWindow *vw, VikViewportDrawMode mode )
1368 {
1369   GtkWidget *mode_button;
1370   gchar *buttonname;
1371   switch ( mode ) {
1372 #ifdef VIK_CONFIG_EXPEDIA
1373     case VIK_VIEWPORT_DRAWMODE_EXPEDIA: buttonname = "/ui/MainMenu/View/ModeExpedia"; break;
1374 #endif
1375     case VIK_VIEWPORT_DRAWMODE_MERCATOR: buttonname = "/ui/MainMenu/View/ModeMercator"; break;
1376     default: buttonname = "/ui/MainMenu/View/ModeUTM";
1377   }
1378   mode_button = gtk_ui_manager_get_widget ( vw->uim, buttonname );
1379   g_assert ( mode_button );
1380   return mode_button;
1381 }
1382
1383 static void on_activate_recent_item (GtkRecentChooser *chooser,
1384                                      VikWindow *self)
1385 {
1386   gchar *filename;
1387
1388   filename = gtk_recent_chooser_get_current_uri (chooser);
1389   if (filename != NULL)
1390   {
1391     GFile *file = g_file_new_for_uri ( filename );
1392     gchar *path = g_file_get_path ( file );
1393     g_object_unref ( file );
1394     if ( self->filename )
1395     {
1396       gchar *filenames[] = { path, NULL };
1397       g_signal_emit ( G_OBJECT(self), window_signals[VW_OPENWINDOW_SIGNAL], 0, filenames );
1398     }
1399     else
1400       vik_window_open_file ( self, filename, TRUE );
1401     g_free ( path );
1402   }
1403
1404   g_free (filename);
1405 }
1406
1407 static void setup_recent_files (VikWindow *self)
1408 {
1409   GtkRecentManager *manager;
1410   GtkRecentFilter *filter;
1411   GtkWidget *menu, *menu_item;
1412
1413   filter = gtk_recent_filter_new ();
1414   /* gtk_recent_filter_add_application (filter, g_get_application_name()); */
1415   gtk_recent_filter_add_group(filter, "viking");
1416
1417   manager = gtk_recent_manager_get_default ();
1418   menu = gtk_recent_chooser_menu_new_for_manager (manager);
1419   gtk_recent_chooser_set_sort_type (GTK_RECENT_CHOOSER (menu), GTK_RECENT_SORT_MRU);
1420   gtk_recent_chooser_add_filter (GTK_RECENT_CHOOSER (menu), filter);
1421
1422   menu_item = gtk_ui_manager_get_widget (self->uim, "/ui/MainMenu/File/OpenRecentFile");
1423   gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu_item), menu);
1424
1425   g_signal_connect (G_OBJECT (menu), "item-activated",
1426                     G_CALLBACK (on_activate_recent_item), (gpointer) self);
1427 }
1428
1429 static void update_recently_used_document(const gchar *filename)
1430 {
1431   /* Update Recently Used Document framework */
1432   GtkRecentManager *manager = gtk_recent_manager_get_default();
1433   GtkRecentData *recent_data = g_slice_new (GtkRecentData);
1434   gchar *groups[] = {"viking", NULL};
1435   GFile *file = g_file_new_for_commandline_arg(filename);
1436   gchar *uri = g_file_get_uri(file);
1437   gchar *basename = g_path_get_basename(filename);
1438   g_object_unref(file);
1439   file = NULL;
1440
1441   recent_data->display_name   = basename;
1442   recent_data->description    = NULL;
1443   recent_data->mime_type      = "text/x-gps-data";
1444   recent_data->app_name       = (gchar *) g_get_application_name ();
1445   recent_data->app_exec       = g_strjoin (" ", g_get_prgname (), "%f", NULL);
1446   recent_data->groups         = groups;
1447   recent_data->is_private     = FALSE;
1448   if (!gtk_recent_manager_add_full (manager, uri, recent_data))
1449   {
1450     g_warning (_("Unable to add '%s' to the list of recently used documents"), uri);
1451   }
1452
1453   g_free (uri);
1454   g_free (basename);
1455   g_free (recent_data->app_exec);
1456   g_slice_free (GtkRecentData, recent_data);
1457 }
1458
1459 void vik_window_open_file ( VikWindow *vw, const gchar *filename, gboolean change_filename )
1460 {
1461   switch ( a_file_load ( vik_layers_panel_get_top_layer(vw->viking_vlp), vw->viking_vvp, filename ) )
1462   {
1463     case 0:
1464       a_dialog_error_msg ( GTK_WINDOW(vw), _("The file you requested could not be opened.") );
1465       break;
1466     case 1:
1467     {
1468       GtkWidget *mode_button;
1469       /* Update UI */
1470       if ( change_filename )
1471         window_set_filename ( vw, filename );
1472       mode_button = vik_window_get_drawmode_button ( vw, vik_viewport_get_drawmode ( vw->viking_vvp ) );
1473       vw->only_updating_coord_mode_ui = TRUE; /* if we don't set this, it will change the coord to UTM if we click Lat/Lon. I don't know why. */
1474       gtk_check_menu_item_set_active ( GTK_CHECK_MENU_ITEM(mode_button), TRUE );
1475       vw->only_updating_coord_mode_ui = FALSE;
1476
1477       vik_layers_panel_change_coord_mode ( vw->viking_vlp, vik_viewport_get_coord_mode ( vw->viking_vvp ) );
1478
1479       mode_button = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ShowScale" );
1480       g_assert ( mode_button );
1481       gtk_check_menu_item_set_active ( GTK_CHECK_MENU_ITEM(mode_button),vik_viewport_get_draw_scale(vw->viking_vvp) );
1482
1483       mode_button = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ShowCenterMark" );
1484       g_assert ( mode_button );
1485       gtk_check_menu_item_set_active ( GTK_CHECK_MENU_ITEM(mode_button),vik_viewport_get_draw_centermark(vw->viking_vvp) );
1486     }
1487     default:
1488       update_recently_used_document(filename);
1489       draw_update ( vw );
1490   }
1491 }
1492 static void load_file ( GtkAction *a, VikWindow *vw )
1493 {
1494   GSList *files = NULL;
1495   GSList *cur_file = NULL;
1496   gboolean newwindow;
1497   if (!strcmp(gtk_action_get_name(a), "Open")) {
1498     newwindow = TRUE;
1499   } 
1500   else if (!strcmp(gtk_action_get_name(a), "Append")) {
1501     newwindow = FALSE;
1502   } 
1503   else {
1504     g_critical("Houston, we've had a problem.");
1505     return;
1506   }
1507     
1508   if ( ! vw->open_dia )
1509   {
1510     vw->open_dia = gtk_file_chooser_dialog_new (_("Please select a GPS data file to open. "),
1511                                       GTK_WINDOW(vw),
1512                                       GTK_FILE_CHOOSER_ACTION_OPEN,
1513                                       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1514                                       GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
1515                                       NULL);
1516     gtk_file_chooser_set_select_multiple ( GTK_FILE_CHOOSER(vw->open_dia), TRUE );
1517     gtk_window_set_transient_for ( GTK_WINDOW(vw->open_dia), GTK_WINDOW(vw) );
1518     gtk_window_set_destroy_with_parent ( GTK_WINDOW(vw->open_dia), TRUE );
1519   }
1520   if ( gtk_dialog_run ( GTK_DIALOG(vw->open_dia) ) == GTK_RESPONSE_ACCEPT )
1521   {
1522     gtk_widget_hide ( vw->open_dia );
1523 #ifdef VIKING_PROMPT_IF_MODIFIED
1524     if ( (vw->modified || vw->filename) && newwindow )
1525 #else
1526     if ( vw->filename && newwindow )
1527 #endif
1528       g_signal_emit ( G_OBJECT(vw), window_signals[VW_OPENWINDOW_SIGNAL], 0, gtk_file_chooser_get_filenames (GTK_FILE_CHOOSER(vw->open_dia) ) );
1529     else {
1530       files = gtk_file_chooser_get_filenames (GTK_FILE_CHOOSER(vw->open_dia) );
1531       gboolean change_fn = newwindow && (g_slist_length(files)==1); /* only change fn if one file */
1532       
1533       cur_file = files;
1534       while ( cur_file ) {
1535         gchar *file_name = cur_file->data;
1536         vik_window_open_file ( vw, file_name, change_fn );
1537         g_free (file_name);
1538         cur_file = g_slist_next (cur_file);
1539       }
1540       g_slist_free (files);
1541     }
1542   }
1543   else
1544     gtk_widget_hide ( vw->open_dia );
1545 }
1546
1547 static gboolean save_file_as ( GtkAction *a, VikWindow *vw )
1548 {
1549   gboolean rv = FALSE;
1550   const gchar *fn;
1551   if ( ! vw->save_dia )
1552   {
1553     vw->save_dia = gtk_file_chooser_dialog_new (_("Save as Viking File."),
1554                                       GTK_WINDOW(vw),
1555                                       GTK_FILE_CHOOSER_ACTION_SAVE,
1556                                       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1557                                       GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
1558                                       NULL);
1559     gtk_window_set_transient_for ( GTK_WINDOW(vw->save_dia), GTK_WINDOW(vw) );
1560     gtk_window_set_destroy_with_parent ( GTK_WINDOW(vw->save_dia), TRUE );
1561   }
1562
1563   while ( gtk_dialog_run ( GTK_DIALOG(vw->save_dia) ) == GTK_RESPONSE_ACCEPT )
1564   {
1565     fn = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER(vw->save_dia) );
1566     if ( g_file_test ( fn, G_FILE_TEST_EXISTS ) == FALSE || a_dialog_overwrite ( GTK_WINDOW(vw->save_dia), _("The file \"%s\" exists, do you wish to overwrite it?"), a_file_basename ( fn ) ) )
1567     {
1568       window_set_filename ( vw, fn );
1569       rv = window_save ( vw );
1570       vw->modified = FALSE;
1571       break;
1572     }
1573   }
1574   gtk_widget_hide ( vw->save_dia );
1575   return rv;
1576 }
1577
1578 static gboolean window_save ( VikWindow *vw )
1579 {
1580   if ( a_file_save ( vik_layers_panel_get_top_layer ( vw->viking_vlp ), vw->viking_vvp, vw->filename ) )
1581   {
1582     update_recently_used_document ( vw->filename );
1583     return TRUE;
1584   }
1585   else
1586   {
1587     a_dialog_error_msg ( GTK_WINDOW(vw), _("The filename you requested could not be opened for writing.") );
1588     return FALSE;
1589   }
1590 }
1591
1592 static gboolean save_file ( GtkAction *a, VikWindow *vw )
1593 {
1594   if ( ! vw->filename )
1595     return save_file_as ( NULL, vw );
1596   else
1597   {
1598     vw->modified = FALSE;
1599     return window_save ( vw );
1600   }
1601 }
1602
1603 static void acquire_from_gps ( GtkAction *a, VikWindow *vw )
1604 {
1605   a_acquire(vw, vw->viking_vlp, vw->viking_vvp, &vik_datasource_gps_interface );
1606 }
1607
1608 static void acquire_from_google ( GtkAction *a, VikWindow *vw )
1609 {
1610   a_acquire(vw, vw->viking_vlp, vw->viking_vvp, &vik_datasource_google_interface );
1611 }
1612
1613 #ifdef VIK_CONFIG_GEOCACHES
1614 static void acquire_from_gc ( GtkAction *a, VikWindow *vw )
1615 {
1616   a_acquire(vw, vw->viking_vlp, vw->viking_vvp, &vik_datasource_gc_interface );
1617 }
1618 #endif
1619
1620 static void goto_address( GtkAction *a, VikWindow *vw)
1621 {
1622   a_vik_goto(vw, vw->viking_vlp, vw->viking_vvp);
1623 }
1624
1625 static void mapcache_flush_cb ( GtkAction *a, VikWindow *vw )
1626 {
1627   a_mapcache_flush();
1628 }
1629
1630 static void preferences_cb ( GtkAction *a, VikWindow *vw )
1631 {
1632   a_preferences_show_window ( GTK_WINDOW(vw) );
1633   draw_update ( vw );
1634 }
1635
1636 static void clear_cb ( GtkAction *a, VikWindow *vw )
1637 {
1638   vik_layers_panel_clear ( vw->viking_vlp );
1639   window_set_filename ( vw, NULL );
1640   draw_update ( vw );
1641 }
1642
1643 static void window_close ( GtkAction *a, VikWindow *vw )
1644 {
1645   if ( ! delete_event ( vw ) )
1646     gtk_widget_destroy ( GTK_WIDGET(vw) );
1647 }
1648
1649 static gboolean save_file_and_exit ( GtkAction *a, VikWindow *vw )
1650 {
1651   if (save_file( NULL, vw)) {
1652     window_close( NULL, vw);
1653     return(TRUE);
1654   }
1655   else
1656     return(FALSE);
1657 }
1658
1659 static void zoom_to_cb ( GtkAction *a, VikWindow *vw )
1660 {
1661   gdouble xmpp = vik_viewport_get_xmpp ( vw->viking_vvp ), ympp = vik_viewport_get_ympp ( vw->viking_vvp );
1662   if ( a_dialog_custom_zoom ( GTK_WINDOW(vw), &xmpp, &ympp ) )
1663   {
1664     vik_viewport_set_xmpp ( vw->viking_vvp, xmpp );
1665     vik_viewport_set_ympp ( vw->viking_vvp, ympp );
1666     draw_update ( vw );
1667   }
1668 }
1669
1670 static void save_image_file ( VikWindow *vw, const gchar *fn, guint w, guint h, gdouble zoom, gboolean save_as_png )
1671 {
1672   /* more efficient way: stuff draws directly to pixbuf (fork viewport) */
1673   GdkPixbuf *pixbuf_to_save;
1674   gdouble old_xmpp, old_ympp;
1675   GError *error = NULL;
1676
1677   /* backup old zoom & set new */
1678   old_xmpp = vik_viewport_get_xmpp ( vw->viking_vvp );
1679   old_ympp = vik_viewport_get_ympp ( vw->viking_vvp );
1680   vik_viewport_set_zoom ( vw->viking_vvp, zoom );
1681
1682   /* reset width and height: */
1683   vik_viewport_configure_manually ( vw->viking_vvp, w, h );
1684
1685   /* draw all layers */
1686   draw_redraw ( vw );
1687
1688   /* save buffer as file. */
1689   pixbuf_to_save = gdk_pixbuf_get_from_drawable ( NULL, GDK_DRAWABLE(vik_viewport_get_pixmap ( vw->viking_vvp )), NULL, 0, 0, 0, 0, w, h);
1690   gdk_pixbuf_save ( pixbuf_to_save, fn, save_as_png ? "png" : "jpeg", &error, NULL );
1691   if (error)
1692   {
1693     g_warning("Unable to write to file %s: %s", fn, error->message );
1694     g_error_free (error);
1695   }
1696   g_object_unref ( G_OBJECT(pixbuf_to_save) );
1697
1698   /* pretend like nothing happened ;) */
1699   vik_viewport_set_xmpp ( vw->viking_vvp, old_xmpp );
1700   vik_viewport_set_ympp ( vw->viking_vvp, old_ympp );
1701   vik_viewport_configure ( vw->viking_vvp );
1702   draw_update ( vw );
1703 }
1704
1705 static void save_image_dir ( VikWindow *vw, const gchar *fn, guint w, guint h, gdouble zoom, gboolean save_as_png, guint tiles_w, guint tiles_h )
1706 {
1707   gulong size = sizeof(gchar) * (strlen(fn) + 15);
1708   gchar *name_of_file = g_malloc ( size );
1709   guint x = 1, y = 1;
1710   struct UTM utm_orig, utm;
1711
1712   /* *** copied from above *** */
1713   GdkPixbuf *pixbuf_to_save;
1714   gdouble old_xmpp, old_ympp;
1715   GError *error = NULL;
1716
1717   /* backup old zoom & set new */
1718   old_xmpp = vik_viewport_get_xmpp ( vw->viking_vvp );
1719   old_ympp = vik_viewport_get_ympp ( vw->viking_vvp );
1720   vik_viewport_set_zoom ( vw->viking_vvp, zoom );
1721
1722   /* reset width and height: do this only once for all images (same size) */
1723   vik_viewport_configure_manually ( vw->viking_vvp, w, h );
1724   /* *** end copy from above *** */
1725
1726   g_assert ( vik_viewport_get_coord_mode ( vw->viking_vvp ) == VIK_COORD_UTM );
1727
1728   g_mkdir(fn,0777);
1729
1730   utm_orig = *((const struct UTM *)vik_viewport_get_center ( vw->viking_vvp ));
1731
1732   for ( y = 1; y <= tiles_h; y++ )
1733   {
1734     for ( x = 1; x <= tiles_w; x++ )
1735     {
1736       g_snprintf ( name_of_file, size, "%s%cy%d-x%d.%s", fn, G_DIR_SEPARATOR, y, x, save_as_png ? "png" : "jpg" );
1737       utm = utm_orig;
1738       if ( tiles_w & 0x1 )
1739         utm.easting += ((gdouble)x - ceil(((gdouble)tiles_w)/2)) * (w*zoom);
1740       else
1741         utm.easting += ((gdouble)x - (((gdouble)tiles_w)+1)/2) * (w*zoom);
1742       if ( tiles_h & 0x1 ) /* odd */
1743         utm.northing -= ((gdouble)y - ceil(((gdouble)tiles_h)/2)) * (h*zoom);
1744       else /* even */
1745         utm.northing -= ((gdouble)y - (((gdouble)tiles_h)+1)/2) * (h*zoom);
1746
1747       /* move to correct place. */
1748       vik_viewport_set_center_utm ( vw->viking_vvp, &utm );
1749
1750       draw_redraw ( vw );
1751
1752       /* save buffer as file. */
1753       pixbuf_to_save = gdk_pixbuf_get_from_drawable ( NULL, GDK_DRAWABLE(vik_viewport_get_pixmap ( vw->viking_vvp )), NULL, 0, 0, 0, 0, w, h);
1754       gdk_pixbuf_save ( pixbuf_to_save, name_of_file, save_as_png ? "png" : "jpeg", &error, NULL );
1755       if (error)
1756       {
1757         g_warning("Unable to write to file %s: %s", name_of_file, error->message );
1758         g_error_free (error);
1759       }
1760
1761       g_object_unref ( G_OBJECT(pixbuf_to_save) );
1762     }
1763   }
1764
1765   vik_viewport_set_center_utm ( vw->viking_vvp, &utm_orig );
1766   vik_viewport_set_xmpp ( vw->viking_vvp, old_xmpp );
1767   vik_viewport_set_ympp ( vw->viking_vvp, old_ympp );
1768   vik_viewport_configure ( vw->viking_vvp );
1769   draw_update ( vw );
1770
1771   g_free ( name_of_file );
1772 }
1773
1774 static void draw_to_image_file_current_window_cb(GtkWidget* widget,GdkEventButton *event,gpointer *pass_along)
1775 {
1776   VikWindow *vw = VIK_WINDOW(pass_along[0]);
1777   GtkSpinButton *width_spin = GTK_SPIN_BUTTON(pass_along[1]), *height_spin = GTK_SPIN_BUTTON(pass_along[2]);
1778   GtkSpinButton *zoom_spin = GTK_SPIN_BUTTON(pass_along[3]);
1779   gdouble width_min, width_max, height_min, height_max;
1780   gint width, height;
1781
1782   gtk_spin_button_get_range ( width_spin, &width_min, &width_max );
1783   gtk_spin_button_get_range ( height_spin, &height_min, &height_max );
1784
1785   /* TODO: support for xzoom and yzoom values */
1786   width = vik_viewport_get_width ( vw->viking_vvp ) * vik_viewport_get_xmpp ( vw->viking_vvp ) / gtk_spin_button_get_value ( zoom_spin );
1787   height = vik_viewport_get_height ( vw->viking_vvp ) * vik_viewport_get_xmpp ( vw->viking_vvp ) / gtk_spin_button_get_value ( zoom_spin );
1788
1789   if ( width > width_max || width < width_min || height > height_max || height < height_min )
1790     a_dialog_info_msg ( GTK_WINDOW(vw), _("Viewable region outside allowable pixel size bounds for image. Clipping width/height values.") );
1791
1792   gtk_spin_button_set_value ( width_spin, width );
1793   gtk_spin_button_set_value ( height_spin, height );
1794 }
1795
1796 static void draw_to_image_file_total_area_cb (GtkSpinButton *spinbutton, gpointer *pass_along)
1797 {
1798   GtkSpinButton *width_spin = GTK_SPIN_BUTTON(pass_along[1]), *height_spin = GTK_SPIN_BUTTON(pass_along[2]);
1799   GtkSpinButton *zoom_spin = GTK_SPIN_BUTTON(pass_along[3]);
1800   gchar *label_text;
1801   gdouble w, h;
1802   w = gtk_spin_button_get_value(width_spin) * gtk_spin_button_get_value(zoom_spin);
1803   h = gtk_spin_button_get_value(height_spin) * gtk_spin_button_get_value(zoom_spin);
1804   if (pass_along[4]) /* save many images; find TOTAL area covered */
1805   {
1806     w *= gtk_spin_button_get_value(GTK_SPIN_BUTTON(pass_along[4]));
1807     h *= gtk_spin_button_get_value(GTK_SPIN_BUTTON(pass_along[5]));
1808   }
1809   vik_units_distance_t dist_units = a_vik_get_units_distance ();
1810   switch (dist_units) {
1811   case VIK_UNITS_DISTANCE_KILOMETRES:
1812     label_text = g_strdup_printf ( _("Total area: %ldm x %ldm (%.3f sq. km)"), (glong)w, (glong)h, (w*h/1000000));
1813     break;
1814   case VIK_UNITS_DISTANCE_MILES:
1815     label_text = g_strdup_printf ( _("Total area: %ldm x %ldm (%.3f sq. miles)"), (glong)w, (glong)h, (w*h/2589988.11));
1816     break;
1817   default:
1818     label_text = g_strdup_printf ("Just to keep the compiler happy");
1819     g_critical("Houston, we've had a problem. distance=%d", dist_units);
1820   }
1821
1822   gtk_label_set_text(GTK_LABEL(pass_along[6]), label_text);
1823   g_free ( label_text );
1824 }
1825
1826 static void draw_to_image_file ( VikWindow *vw, const gchar *fn, gboolean one_image_only )
1827 {
1828   /* todo: default for answers inside VikWindow or static (thruout instance) */
1829   GtkWidget *dialog = gtk_dialog_new_with_buttons ( _("Save to Image File"), GTK_WINDOW(vw),
1830                                                   GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
1831                                                   GTK_STOCK_CANCEL,
1832                                                   GTK_RESPONSE_REJECT,
1833                                                   GTK_STOCK_OK,
1834                                                   GTK_RESPONSE_ACCEPT,
1835                                                   NULL );
1836   GtkWidget *width_label, *width_spin, *height_label, *height_spin;
1837   GtkWidget *png_radio, *jpeg_radio;
1838   GtkWidget *current_window_button;
1839   gpointer current_window_pass_along[7];
1840   GtkWidget *zoom_label, *zoom_spin;
1841   GtkWidget *total_size_label;
1842
1843   /* only used if (!one_image_only) */
1844   GtkWidget *tiles_width_spin = NULL, *tiles_height_spin = NULL;
1845
1846
1847   width_label = gtk_label_new ( _("Width (pixels):") );
1848   width_spin = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new ( vw->draw_image_width, 10, 5000, 10, 100, 0 )), 10, 0 );
1849   height_label = gtk_label_new ( _("Height (pixels):") );
1850   height_spin = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new ( vw->draw_image_height, 10, 5000, 10, 100, 0 )), 10, 0 );
1851
1852   zoom_label = gtk_label_new ( _("Zoom (meters per pixel):") );
1853   /* TODO: separate xzoom and yzoom factors */
1854   zoom_spin = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new ( vik_viewport_get_xmpp(vw->viking_vvp), VIK_VIEWPORT_MIN_ZOOM, VIK_VIEWPORT_MAX_ZOOM/2.0, 1, 100, 3 )), 16, 3);
1855
1856   total_size_label = gtk_label_new ( NULL );
1857
1858   current_window_button = gtk_button_new_with_label ( _("Area in current viewable window") );
1859   current_window_pass_along [0] = vw;
1860   current_window_pass_along [1] = width_spin;
1861   current_window_pass_along [2] = height_spin;
1862   current_window_pass_along [3] = zoom_spin;
1863   current_window_pass_along [4] = NULL; /* used for one_image_only != 1 */
1864   current_window_pass_along [5] = NULL;
1865   current_window_pass_along [6] = total_size_label;
1866   g_signal_connect ( G_OBJECT(current_window_button), "button_press_event", G_CALLBACK(draw_to_image_file_current_window_cb), current_window_pass_along );
1867
1868   png_radio = gtk_radio_button_new_with_label ( NULL, _("Save as PNG") );
1869   jpeg_radio = gtk_radio_button_new_with_label_from_widget ( GTK_RADIO_BUTTON(png_radio), _("Save as JPEG") );
1870
1871   if ( ! vw->draw_image_save_as_png )
1872     gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON(jpeg_radio), TRUE );
1873
1874   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), width_label, FALSE, FALSE, 0);
1875   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), width_spin, FALSE, FALSE, 0);
1876   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), height_label, FALSE, FALSE, 0);
1877   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), height_spin, FALSE, FALSE, 0);
1878   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), current_window_button, FALSE, FALSE, 0);
1879   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), png_radio, FALSE, FALSE, 0);
1880   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), jpeg_radio, FALSE, FALSE, 0);
1881   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), zoom_label, FALSE, FALSE, 0);
1882   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), zoom_spin, FALSE, FALSE, 0);
1883
1884   if ( ! one_image_only )
1885   {
1886     GtkWidget *tiles_width_label, *tiles_height_label;
1887
1888
1889     tiles_width_label = gtk_label_new ( _("East-west image tiles:") );
1890     tiles_width_spin = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new ( 5, 1, 10, 1, 100, 0 )), 1, 0 );
1891     tiles_height_label = gtk_label_new ( _("North-south image tiles:") );
1892     tiles_height_spin = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new ( 5, 1, 10, 1, 100, 0 )), 1, 0 );
1893     gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), tiles_width_label, FALSE, FALSE, 0);
1894     gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), tiles_width_spin, FALSE, FALSE, 0);
1895     gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), tiles_height_label, FALSE, FALSE, 0);
1896     gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), tiles_height_spin, FALSE, FALSE, 0);
1897
1898     current_window_pass_along [4] = tiles_width_spin;
1899     current_window_pass_along [5] = tiles_height_spin;
1900     g_signal_connect ( G_OBJECT(tiles_width_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1901     g_signal_connect ( G_OBJECT(tiles_height_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1902   }
1903   gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), total_size_label, FALSE, FALSE, 0);
1904   g_signal_connect ( G_OBJECT(width_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1905   g_signal_connect ( G_OBJECT(height_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1906   g_signal_connect ( G_OBJECT(zoom_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1907
1908   draw_to_image_file_total_area_cb ( NULL, current_window_pass_along ); /* set correct size info now */
1909
1910   gtk_widget_show_all ( GTK_DIALOG(dialog)->vbox );
1911
1912   if ( gtk_dialog_run ( GTK_DIALOG(dialog) ) == GTK_RESPONSE_ACCEPT )
1913   {
1914     gtk_widget_hide ( GTK_WIDGET(dialog) );
1915     if ( one_image_only )
1916       save_image_file ( vw, fn, 
1917                       vw->draw_image_width = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(width_spin) ),
1918                       vw->draw_image_height = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(height_spin) ),
1919                       gtk_spin_button_get_value ( GTK_SPIN_BUTTON(zoom_spin) ), /* do not save this value, default is current zoom */
1920                       vw->draw_image_save_as_png = gtk_toggle_button_get_active ( GTK_TOGGLE_BUTTON(png_radio) ) );
1921     else {
1922       if ( vik_viewport_get_coord_mode(vw->viking_vvp) == VIK_COORD_UTM )
1923         save_image_dir ( vw, fn, 
1924                        vw->draw_image_width = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(width_spin) ),
1925                        vw->draw_image_height = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(height_spin) ),
1926                        gtk_spin_button_get_value ( GTK_SPIN_BUTTON(zoom_spin) ), /* do not save this value, default is current zoom */
1927                        vw->draw_image_save_as_png = gtk_toggle_button_get_active ( GTK_TOGGLE_BUTTON(png_radio) ),
1928                        gtk_spin_button_get_value ( GTK_SPIN_BUTTON(tiles_width_spin) ),
1929                        gtk_spin_button_get_value ( GTK_SPIN_BUTTON(tiles_height_spin) ) );
1930       else
1931         a_dialog_error_msg ( GTK_WINDOW(vw), _("You must be in UTM mode to use this feature") );
1932     }
1933   }
1934   gtk_widget_destroy ( GTK_WIDGET(dialog) );
1935 }
1936
1937
1938 static void draw_to_image_file_cb ( GtkAction *a, VikWindow *vw )
1939 {
1940   const gchar *fn;
1941   if (!vw->save_img_dia) {
1942     vw->save_img_dia = gtk_file_chooser_dialog_new (_("Save Image"),
1943                                       GTK_WINDOW(vw),
1944                                       GTK_FILE_CHOOSER_ACTION_SAVE,
1945                                       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1946                                       GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
1947                                       NULL);
1948     gtk_window_set_transient_for ( GTK_WINDOW(vw->save_img_dia), GTK_WINDOW(vw) );
1949     gtk_window_set_destroy_with_parent ( GTK_WINDOW(vw->save_img_dia), TRUE );
1950   }
1951
1952   while ( gtk_dialog_run ( GTK_DIALOG(vw->save_img_dia) ) == GTK_RESPONSE_ACCEPT )
1953   {
1954     fn = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER(vw->save_img_dia) );
1955     if ( g_file_test ( fn, G_FILE_TEST_EXISTS ) == FALSE || a_dialog_overwrite ( GTK_WINDOW(vw->save_img_dia), _("The file \"%s\" exists, do you wish to overwrite it?"), a_file_basename ( fn ) ) )
1956     {
1957       draw_to_image_file ( vw, fn, TRUE );
1958       break;
1959     }
1960   }
1961   gtk_widget_hide ( vw->save_img_dia );
1962 }
1963
1964 static void draw_to_image_dir_cb ( GtkAction *a, VikWindow *vw )
1965 {
1966   gchar *fn = NULL;
1967   
1968   if (!vw->save_img_dir_dia) {
1969     vw->save_img_dir_dia = gtk_file_chooser_dialog_new (_("Choose a directory to hold images"),
1970                                       GTK_WINDOW(vw),
1971                                       GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
1972                                       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1973                                       GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1974                                       NULL);
1975     gtk_window_set_transient_for ( GTK_WINDOW(vw->save_img_dir_dia), GTK_WINDOW(vw) );
1976     gtk_window_set_destroy_with_parent ( GTK_WINDOW(vw->save_img_dir_dia), TRUE );
1977   }
1978   
1979   while ( gtk_dialog_run ( GTK_DIALOG(vw->save_img_dir_dia) ) == GTK_RESPONSE_ACCEPT )
1980   {
1981     fn = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER(vw->save_img_dir_dia) );
1982     if ( fn )
1983     {
1984       draw_to_image_file ( vw, fn, FALSE );
1985       g_free(fn);
1986       fn = NULL;
1987       break;
1988     }
1989   }
1990   gtk_widget_hide ( vw->save_img_dir_dia );
1991 }
1992
1993 #if GTK_CHECK_VERSION(2,10,0)
1994 static void print_cb ( GtkAction *a, VikWindow *vw )
1995 {
1996   a_print(vw, vw->viking_vvp);
1997 }
1998 #endif
1999
2000 /* really a misnomer: changes coord mode (actual coordinates) AND/OR draw mode (viewport only) */
2001 static void window_change_coord_mode_cb ( GtkAction *old_a, GtkAction *a, VikWindow *vw )
2002 {
2003   VikViewportDrawMode drawmode;
2004   if (!strcmp(gtk_action_get_name(a), "ModeUTM")) {
2005     drawmode = VIK_VIEWPORT_DRAWMODE_UTM;
2006   }
2007   else if (!strcmp(gtk_action_get_name(a), "ModeExpedia")) {
2008     drawmode = VIK_VIEWPORT_DRAWMODE_EXPEDIA;
2009   }
2010   else if (!strcmp(gtk_action_get_name(a), "ModeMercator")) {
2011     drawmode = VIK_VIEWPORT_DRAWMODE_MERCATOR;
2012   }
2013   else {
2014     g_critical("Houston, we've had a problem.");
2015     return;
2016   }
2017
2018   if ( !vw->only_updating_coord_mode_ui )
2019   {
2020     VikViewportDrawMode olddrawmode = vik_viewport_get_drawmode ( vw->viking_vvp );
2021     if ( olddrawmode != drawmode )
2022     {
2023       /* this takes care of coord mode too */
2024       vik_viewport_set_drawmode ( vw->viking_vvp, drawmode );
2025       if ( drawmode == VIK_VIEWPORT_DRAWMODE_UTM ) {
2026         vik_layers_panel_change_coord_mode ( vw->viking_vlp, VIK_COORD_UTM );
2027       } else if ( olddrawmode == VIK_VIEWPORT_DRAWMODE_UTM ) {
2028         vik_layers_panel_change_coord_mode ( vw->viking_vlp, VIK_COORD_LATLON );
2029       }
2030       draw_update ( vw );
2031     }
2032   }
2033 }
2034
2035 static void set_draw_scale ( GtkAction *a, VikWindow *vw )
2036 {
2037   GtkWidget *check_box = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ShowScale" );
2038   g_assert(check_box);
2039   gboolean state = gtk_check_menu_item_get_active ( GTK_CHECK_MENU_ITEM(check_box));
2040   vik_viewport_set_draw_scale ( vw->viking_vvp, state );
2041   draw_update ( vw );
2042 }
2043
2044 static void set_draw_centermark ( GtkAction *a, VikWindow *vw )
2045 {
2046   GtkWidget *check_box = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ShowCenterMark" );
2047   g_assert(check_box);
2048   gboolean state = gtk_check_menu_item_get_active ( GTK_CHECK_MENU_ITEM(check_box));
2049   vik_viewport_set_draw_centermark ( vw->viking_vvp, state );
2050   draw_update ( vw );
2051 }
2052
2053 static void set_bg_color ( GtkAction *a, VikWindow *vw )
2054 {
2055   GtkWidget *colorsd = gtk_color_selection_dialog_new ( _("Choose a background color") );
2056   GdkColor *color = vik_viewport_get_background_gdkcolor ( vw->viking_vvp );
2057   gtk_color_selection_set_previous_color ( GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(colorsd)->colorsel), color );
2058   gtk_color_selection_set_current_color ( GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(colorsd)->colorsel), color );
2059   if ( gtk_dialog_run ( GTK_DIALOG(colorsd) ) == GTK_RESPONSE_OK )
2060   {
2061     gtk_color_selection_get_current_color ( GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(colorsd)->colorsel), color );
2062     vik_viewport_set_background_gdkcolor ( vw->viking_vvp, color );
2063     draw_update ( vw );
2064   }
2065   g_free ( color );
2066   gtk_widget_destroy ( colorsd );
2067 }
2068
2069
2070
2071 /***********************************************************************************************
2072  ** GUI Creation
2073  ***********************************************************************************************/
2074
2075 static GtkActionEntry entries[] = {
2076   { "File", NULL, N_("_File"), 0, 0, 0 },
2077   { "Edit", NULL, N_("_Edit"), 0, 0, 0 },
2078   { "View", NULL, N_("_View"), 0, 0, 0 },
2079   { "SetZoom", NULL, N_("_Zoom"), 0, 0, 0 },
2080   { "SetPan", NULL, N_("_Pan"), 0, 0, 0 },
2081   { "Layers", NULL, N_("_Layers"), 0, 0, 0 },
2082   { "Tools", NULL, N_("_Tools"), 0, 0, 0 },
2083   { "Exttools", NULL, N_("_Webtools"), 0, 0, 0 },
2084   { "Help", NULL, N_("_Help"), 0, 0, 0 },
2085
2086   { "New",       GTK_STOCK_NEW,          N_("_New"),                          "<control>N", N_("New file"),                                     (GCallback)newwindow_cb          },
2087   { "Open",      GTK_STOCK_OPEN,         N_("_Open..."),                         "<control>O", N_("Open a file"),                                  (GCallback)load_file             },
2088   { "OpenRecentFile", NULL,              N_("Open _Recent File"),         NULL,         NULL,                                               (GCallback)NULL },
2089   { "Append",    GTK_STOCK_ADD,          N_("Append _File..."),           NULL,         N_("Append data from a different file"),            (GCallback)load_file             },
2090   { "Acquire", NULL, N_("A_cquire"), 0, 0, 0 },
2091   { "AcquireGPS",   NULL,                N_("From _GPS..."),              NULL,         N_("Transfer data from a GPS device"),              (GCallback)acquire_from_gps      },
2092   { "AcquireGoogle",   NULL,             N_("Google _Directions..."),     NULL,         N_("Get driving directions from Google"),           (GCallback)acquire_from_google   },
2093 #ifdef VIK_CONFIG_GEOCACHES
2094   { "AcquireGC",   NULL,                 N_("Geo_caches..."),             NULL,         N_("Get Geocaches from geocaching.com"),            (GCallback)acquire_from_gc       },
2095 #endif
2096   { "Save",      GTK_STOCK_SAVE,         N_("_Save"),                         "<control>S", N_("Save the file"),                                (GCallback)save_file             },
2097   { "SaveAs",    GTK_STOCK_SAVE_AS,      N_("Save _As..."),                      NULL,  N_("Save the file under different name"),           (GCallback)save_file_as          },
2098   { "GenImg",    GTK_STOCK_CLEAR,        N_("_Generate Image File..."),          NULL,  N_("Save a snapshot of the workspace into a file"), (GCallback)draw_to_image_file_cb },
2099   { "GenImgDir", GTK_STOCK_DND_MULTIPLE, N_("Generate _Directory of Images..."), NULL,  N_("FIXME:IMGDIR"),                                 (GCallback)draw_to_image_dir_cb  },
2100
2101 #if GTK_CHECK_VERSION(2,10,0)
2102   { "Print",    GTK_STOCK_PRINT,        N_("_Print..."),          NULL,         N_("Print maps"), (GCallback)print_cb },
2103 #endif
2104
2105   { "Exit",      GTK_STOCK_QUIT,         N_("E_xit"),                         "<control>W", N_("Exit the program"),                             (GCallback)window_close          },
2106   { "SaveExit",  GTK_STOCK_QUIT,         N_("Save and Exit"),                 NULL, N_("Save and Exit the program"),                             (GCallback)save_file_and_exit          },
2107
2108   { "GotoSearch", GTK_STOCK_JUMP_TO,     N_("Go to Location..."),             NULL,         N_("Go to address/place using text search"),        (GCallback)goto_address       },
2109   { "GotoLL",    GTK_STOCK_JUMP_TO,      N_("_Go to Lat/Lon..."),           NULL,         N_("Go to arbitrary lat/lon coordinate"),         (GCallback)draw_goto_cb          },
2110   { "GotoUTM",   GTK_STOCK_JUMP_TO,      N_("Go to UTM..."),                  NULL,         N_("Go to arbitrary UTM coordinate"),               (GCallback)draw_goto_cb          },
2111   { "SetBGColor",GTK_STOCK_SELECT_COLOR, N_("Set Background Color..."),       NULL,         NULL,                                           (GCallback)set_bg_color          },
2112   { "ZoomIn",    GTK_STOCK_ZOOM_IN,      N_("Zoom _In"),                   "<control>plus", NULL,                                           (GCallback)draw_zoom_cb          },
2113   { "ZoomOut",   GTK_STOCK_ZOOM_OUT,     N_("Zoom _Out"),                 "<control>minus", NULL,                                           (GCallback)draw_zoom_cb          },
2114   { "ZoomTo",    GTK_STOCK_ZOOM_FIT,     N_("Zoom _To..."),               "<control>Z", NULL,                                           (GCallback)zoom_to_cb            },
2115   { "Zoom0.25",  NULL,                   N_("0.25"),                          NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2116   { "Zoom0.5",   NULL,                   N_("0.5"),                           NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2117   { "Zoom1",     NULL,                   N_("1"),                             NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2118   { "Zoom2",     NULL,                   N_("2"),                             NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2119   { "Zoom4",     NULL,                   N_("4"),                             NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2120   { "Zoom8",     NULL,                   N_("8"),                             NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2121   { "Zoom16",    NULL,                   N_("16"),                            NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2122   { "Zoom32",    NULL,                   N_("32"),                            NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2123   { "Zoom64",    NULL,                   N_("64"),                            NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2124   { "Zoom128",   NULL,                   N_("128"),                           NULL,         NULL,                                           (GCallback)draw_zoom_cb          },
2125   { "PanNorth",  NULL,                   N_("Pan North"),                  "<control>Up", NULL,                                           (GCallback)draw_pan_cb },
2126   { "PanEast",  NULL,                    N_("Pan East"),                   "<control>Right", NULL,                                           (GCallback)draw_pan_cb },
2127   { "PanSouth",  NULL,                   N_("Pan South"),                  "<control>Down", NULL,                                           (GCallback)draw_pan_cb },
2128   { "PanWest",  NULL,                    N_("Pan West"),                   "<control>Left", NULL,                                           (GCallback)draw_pan_cb },
2129   { "BGJobs",    GTK_STOCK_EXECUTE,      N_("Background _Jobs"),              NULL,         NULL,                                           (GCallback)a_background_show_window },
2130
2131   { "Cut",       GTK_STOCK_CUT,          N_("Cu_t"),                          NULL,         NULL,                                           (GCallback)menu_cut_layer_cb     },
2132   { "Copy",      GTK_STOCK_COPY,         N_("_Copy"),                         NULL,         NULL,                                           (GCallback)menu_copy_layer_cb    },
2133   { "Paste",     GTK_STOCK_PASTE,        N_("_Paste"),                        NULL,         NULL,                                           (GCallback)menu_paste_layer_cb   },
2134   { "Delete",    GTK_STOCK_DELETE,       N_("_Delete"),                       NULL,         NULL,                                           (GCallback)menu_delete_layer_cb  },
2135   { "DeleteAll", NULL,                   N_("Delete All"),                    NULL,         NULL,                                           (GCallback)clear_cb              },
2136   { "MapCacheFlush",NULL,                N_("_Flush Map Cache"),              NULL,         NULL,                                           (GCallback)mapcache_flush_cb     },
2137   { "Preferences",GTK_STOCK_PREFERENCES, N_("_Preferences"),                  NULL,         NULL,                                           (GCallback)preferences_cb              },
2138   { "Properties",GTK_STOCK_PROPERTIES,   N_("_Properties"),                   NULL,         NULL,                                           (GCallback)menu_properties_cb    },
2139
2140   { "About",     GTK_STOCK_ABOUT,        N_("_About"),                        NULL,         NULL,                                           (GCallback)help_about_cb    },
2141 };
2142
2143 /* Radio items */
2144 static GtkRadioActionEntry mode_entries[] = {
2145   { "ModeUTM",         NULL,         N_("_UTM Mode"),               "<control>u", NULL, 0 },
2146   { "ModeExpedia",     NULL,         N_("_Expedia Mode"),           "<control>e", NULL, 1 },
2147   { "ModeMercator",    NULL,         N_("_Mercator Mode"),            "<control>g", NULL, 4 }
2148 };
2149
2150 static GtkRadioActionEntry tool_entries[] = {
2151   { "Pan",      "vik-icon-pan",        N_("_Pan"),                         "<control><shift>P", N_("Pan Tool"),  0 },
2152   { "Zoom",      "vik-icon-zoom",        N_("_Zoom"),                         "<control><shift>Z", N_("Zoom Tool"),  1 },
2153   { "Ruler",     "vik-icon-ruler",       N_("_Ruler"),                        "<control><shift>R", N_("Ruler Tool"), 2 }
2154 };
2155
2156 static GtkToggleActionEntry toggle_entries[] = {
2157   { "ShowScale", NULL,                        N_("_Show Scale"),               NULL,         N_("Show Scale"),                                           (GCallback)set_draw_scale, TRUE   },
2158   { "ShowCenterMark", NULL,                   N_("Show _Center Mark"),         NULL,         N_("Show Center Mark"),                                           (GCallback)set_draw_centermark, TRUE   },
2159   { "FullScreen",    GTK_STOCK_FULLSCREEN,    N_("_Full Screen"),              "F11",        N_("Activate full screen mode"),                                           (GCallback)full_screen_cb, FALSE },
2160   { "ViewSidePanel", GTK_STOCK_INDEX,   N_("Show Side Panel"),                 "F9",         N_("Show Side Panel"),                                           (GCallback)view_side_panel_cb, TRUE    },
2161 };
2162
2163 #include "menu.xml.h"
2164 static void window_create_ui( VikWindow *window )
2165 {
2166   GtkUIManager *uim;
2167   GtkActionGroup *action_group;
2168   GtkAccelGroup *accel_group;
2169   GError *error;
2170   guint i, j, mid;
2171   GtkIconFactory *icon_factory;
2172   GtkIconSet *icon_set; 
2173   GtkRadioActionEntry *tools = NULL, *radio;
2174   guint ntools;
2175   
2176   uim = gtk_ui_manager_new ();
2177   window->uim = uim;
2178
2179   toolbox_add_tool(window->vt, &ruler_tool, TOOL_LAYER_TYPE_NONE);
2180   toolbox_add_tool(window->vt, &zoom_tool, TOOL_LAYER_TYPE_NONE);
2181   toolbox_add_tool(window->vt, &pan_tool, TOOL_LAYER_TYPE_NONE);
2182
2183   error = NULL;
2184   if (!(mid = gtk_ui_manager_add_ui_from_string (uim, menu_xml, -1, &error))) {
2185     g_error_free (error);
2186     exit (1);
2187   }
2188
2189   action_group = gtk_action_group_new ("MenuActions");
2190   gtk_action_group_set_translation_domain(action_group, PACKAGE_NAME);
2191   gtk_action_group_add_actions (action_group, entries, G_N_ELEMENTS (entries), window);
2192   gtk_action_group_add_toggle_actions (action_group, toggle_entries, G_N_ELEMENTS (toggle_entries), window);
2193   gtk_action_group_add_radio_actions (action_group, mode_entries, G_N_ELEMENTS (mode_entries), 4, (GCallback)window_change_coord_mode_cb, window);
2194
2195   icon_factory = gtk_icon_factory_new ();
2196   gtk_icon_factory_add_default (icon_factory); 
2197
2198   register_vik_icons(icon_factory);
2199
2200   ntools = 0;
2201   for (i=0; i<G_N_ELEMENTS(tool_entries); i++) {
2202       tools = g_renew(GtkRadioActionEntry, tools, ntools+1);
2203       radio = &tools[ntools];
2204       ntools++;
2205       *radio = tool_entries[i];
2206       radio->value = ntools;
2207   }  
2208
2209   for (i=0; i<VIK_LAYER_NUM_TYPES; i++) {
2210     GtkActionEntry action;
2211     gtk_ui_manager_add_ui(uim, mid,  "/ui/MainMenu/Layers/", 
2212                           vik_layer_get_interface(i)->name,
2213                           vik_layer_get_interface(i)->name,
2214                           GTK_UI_MANAGER_MENUITEM, FALSE);
2215
2216     icon_set = gtk_icon_set_new_from_pixbuf (gdk_pixbuf_from_pixdata (vik_layer_get_interface(i)->icon, FALSE, NULL ));
2217     gtk_icon_factory_add (icon_factory, vik_layer_get_interface(i)->name, icon_set);
2218     gtk_icon_set_unref (icon_set);
2219
2220     action.name = vik_layer_get_interface(i)->name;
2221     action.stock_id = vik_layer_get_interface(i)->name;
2222     action.label = g_strdup_printf( _("New %s Layer"), vik_layer_get_interface(i)->name);
2223     action.accelerator = NULL;
2224     action.tooltip = NULL;
2225     action.callback = (GCallback)menu_addlayer_cb;
2226     gtk_action_group_add_actions(action_group, &action, 1, window);
2227
2228     if ( vik_layer_get_interface(i)->tools_count ) {
2229       gtk_ui_manager_add_ui(uim, mid,  "/ui/MainMenu/Tools/", vik_layer_get_interface(i)->name, NULL, GTK_UI_MANAGER_SEPARATOR, FALSE);
2230       gtk_ui_manager_add_ui(uim, mid,  "/ui/MainToolbar/ToolItems/", vik_layer_get_interface(i)->name, NULL, GTK_UI_MANAGER_SEPARATOR, FALSE);
2231     }
2232
2233     for ( j = 0; j < vik_layer_get_interface(i)->tools_count; j++ ) {
2234       tools = g_renew(GtkRadioActionEntry, tools, ntools+1);
2235       radio = &tools[ntools];
2236       ntools++;
2237       
2238       gtk_ui_manager_add_ui(uim, mid,  "/ui/MainMenu/Tools", 
2239                             _(vik_layer_get_interface(i)->tools[j].name),
2240                             vik_layer_get_interface(i)->tools[j].name,
2241                             GTK_UI_MANAGER_MENUITEM, FALSE);
2242       gtk_ui_manager_add_ui(uim, mid,  "/ui/MainToolbar/ToolItems", 
2243                             _(vik_layer_get_interface(i)->tools[j].name),
2244                             vik_layer_get_interface(i)->tools[j].name,
2245                             GTK_UI_MANAGER_TOOLITEM, FALSE);
2246
2247       toolbox_add_tool(window->vt, &(vik_layer_get_interface(i)->tools[j]), i);
2248
2249       radio->name = vik_layer_get_interface(i)->tools[j].name;
2250       radio->stock_id = vik_layer_get_interface(i)->tools[j].name,
2251       radio->label = _(vik_layer_get_interface(i)->tools[j].name);
2252       radio->accelerator = NULL;
2253       radio->tooltip = _(vik_layer_get_interface(i)->tools[j].name);
2254       radio->value = ntools;
2255     }
2256   }
2257   g_object_unref (icon_factory);
2258
2259   gtk_action_group_add_radio_actions(action_group, tools, ntools, 0, (GCallback)menu_tool_cb, window);
2260   g_free(tools);
2261
2262   gtk_ui_manager_insert_action_group (uim, action_group, 0);
2263
2264   for (i=0; i<VIK_LAYER_NUM_TYPES; i++) {
2265     for ( j = 0; j < vik_layer_get_interface(i)->tools_count; j++ ) {
2266       GtkAction *action = gtk_action_group_get_action(action_group,
2267                             vik_layer_get_interface(i)->tools[j].name);
2268       g_object_set(action, "sensitive", FALSE, NULL);
2269     }
2270   }
2271   window->action_group = action_group;
2272
2273   accel_group = gtk_ui_manager_get_accel_group (uim);
2274   gtk_window_add_accel_group (GTK_WINDOW (window), accel_group);
2275   gtk_ui_manager_ensure_update (uim);
2276   
2277   setup_recent_files(window);
2278 }
2279
2280
2281
2282 static struct { 
2283   const GdkPixdata *data;
2284   gchar *stock_id;
2285 } stock_icons[] = {
2286   { &begintr_18_pixbuf,         "Begin Track"      },
2287   { &iscissors_18_pixbuf,       "Magic Scissors"   },
2288   { &mover_22_pixbuf,           "vik-icon-pan"     },
2289   { &demdl_18_pixbuf,           "DEM Download/Import"     },
2290   { &showpic_18_pixbuf,         "Show Picture"      },
2291   { &addtr_18_pixbuf,           "Create Track"      },
2292   { &edtr_18_pixbuf,            "Edit Trackpoint"   },
2293   { &addwp_18_pixbuf,           "Create Waypoint"   },
2294   { &edwp_18_pixbuf,            "Edit Waypoint"     },
2295   { &zoom_18_pixbuf,            "vik-icon-zoom"     },
2296   { &ruler_18_pixbuf,           "vik-icon-ruler"    },
2297   { &geozoom_18_pixbuf,         "Georef Zoom Tool"  },
2298   { &geomove_18_pixbuf,         "Georef Move Map"   },
2299   { &mapdl_18_pixbuf,           "Maps Download"     },
2300   { &showpic_18_pixbuf,         "Show Picture"      },
2301 };
2302  
2303 static gint n_stock_icons = G_N_ELEMENTS (stock_icons);
2304
2305 static void
2306 register_vik_icons (GtkIconFactory *icon_factory)
2307 {
2308   GtkIconSet *icon_set; 
2309   gint i;
2310
2311   for (i = 0; i < n_stock_icons; i++) {
2312     icon_set = gtk_icon_set_new_from_pixbuf (gdk_pixbuf_from_pixdata (
2313                    stock_icons[i].data, FALSE, NULL ));
2314     gtk_icon_factory_add (icon_factory, stock_icons[i].stock_id, icon_set);
2315     gtk_icon_set_unref (icon_set);
2316   }
2317 }
2318