]> git.street.me.uk Git - andy/viking.git/blame - src/vikwindow.c
add GIO dependency and header for GFile
[andy/viking.git] / src / vikwindow.c
CommitLineData
50a14534
EB
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 */
4c77d5e0
GB
21
22#ifdef HAVE_CONFIG_H
23#include "config.h"
24#endif
25
50a14534
EB
26#include "viking.h"
27#include "background.h"
1d1bc3c1 28#include "acquire.h"
7b3479e3 29#include "datasources.h"
34e71b99 30#include "vikgoto.h"
071da616 31#include "dems.h"
7c259702 32#include "mapcache.h"
42f34743 33#include "print.h"
17a1f8f9 34#include "preferences.h"
f2f2f7bf 35#include "icons/icons.h"
92806042 36#include "vikexttools.h"
50a14534 37
8c00358d 38#ifdef HAVE_STDLIB_H
e4afc73a 39#include <stdlib.h>
8c00358d
GB
40#endif
41#ifdef HAVE_MATH_H
50a14534 42#include <math.h>
8c00358d
GB
43#endif
44#ifdef HAVE_STRING_H
50a14534 45#include <string.h>
8c00358d 46#endif
50a14534 47#include <ctype.h>
f83131b9
MA
48#include <glib.h>
49#include <glib/gstdio.h>
1d1bc3c1 50#include <glib/gprintf.h>
4c77d5e0 51#include <glib/gi18n.h>
314084b8 52#include <gio/gio.h>
50a14534 53
3570ad57
QT
54#define VIKING_WINDOW_WIDTH 1000
55#define VIKING_WINDOW_HEIGHT 800
50a14534
EB
56#define DRAW_IMAGE_DEFAULT_WIDTH 1280
57#define DRAW_IMAGE_DEFAULT_HEIGHT 1024
58#define DRAW_IMAGE_DEFAULT_SAVE_AS_PNG TRUE
59
60static void window_finalize ( GObject *gob );
61static GObjectClass *parent_class;
62
63static void window_init ( VikWindow *vw );
64static void window_class_init ( VikWindowClass *klass );
4c77d5e0 65static void window_set_filename ( VikWindow *vw, const gchar *filename );
50a14534
EB
66
67static void draw_update ( VikWindow *vw );
68
e4afc73a 69static void newwindow_cb ( GtkAction *a, VikWindow *vw );
50a14534
EB
70
71/* Drawing & stuff */
72
73static gboolean delete_event( VikWindow *vw );
74
777e2d4d
EB
75static gboolean key_press_event( VikWindow *vw, GdkEventKey *event, gpointer data );
76
bce3a7b0 77static void window_configure_event ( VikWindow *vw );
50a14534
EB
78static void draw_sync ( VikWindow *vw );
79static void draw_redraw ( VikWindow *vw );
941aa6e9 80static void draw_scroll ( VikWindow *vw, GdkEventScroll *event );
50a14534
EB
81static void draw_click ( VikWindow *vw, GdkEventButton *event );
82static void draw_release ( VikWindow *vw, GdkEventButton *event );
83static void draw_mouse_motion ( VikWindow *vw, GdkEventMotion *event );
e4afc73a
EB
84static void draw_zoom_cb ( GtkAction *a, VikWindow *vw );
85static void draw_goto_cb ( GtkAction *a, VikWindow *vw );
50a14534
EB
86
87static void draw_status ();
88
89/* End Drawing Functions */
90
e4afc73a
EB
91static void menu_addlayer_cb ( GtkAction *a, VikWindow *vw );
92static void menu_properties_cb ( GtkAction *a, VikWindow *vw );
93static void menu_delete_layer_cb ( GtkAction *a, VikWindow *vw );
941aa6e9
AF
94
95/* tool management */
96typedef struct {
97 VikToolInterface ti;
98 gpointer state;
9593a4c9 99 gint layer_type;
941aa6e9 100} toolbox_tool_t;
9593a4c9 101#define TOOL_LAYER_TYPE_NONE -1
941aa6e9
AF
102
103typedef struct {
104 int active_tool;
105 int n_tools;
106 toolbox_tool_t *tools;
107 VikWindow *vw;
108} toolbox_tools_t;
109
e4afc73a 110static void menu_tool_cb ( GtkAction *old, GtkAction *a, VikWindow *vw );
941aa6e9 111static toolbox_tools_t* toolbox_create(VikWindow *vw);
9593a4c9 112static void toolbox_add_tool(toolbox_tools_t *vt, VikToolInterface *vti, gint layer_type );
941aa6e9
AF
113static int toolbox_get_tool(toolbox_tools_t *vt, const gchar *tool_name);
114static void toolbox_activate(toolbox_tools_t *vt, const gchar *tool_name);
f2f2f7bf 115static const GdkCursor *toolbox_get_cursor(toolbox_tools_t *vt, const gchar *tool_name);
941aa6e9 116static void toolbox_click (toolbox_tools_t *vt, GdkEventButton *event);
dc2c040e 117static void toolbox_move (toolbox_tools_t *vt, GdkEventMotion *event);
941aa6e9
AF
118static void toolbox_release (toolbox_tools_t *vt, GdkEventButton *event);
119
50a14534 120
941aa6e9 121/* ui creation */
e4afc73a 122static void window_create_ui( VikWindow *window );
941aa6e9 123static void register_vik_icons (GtkIconFactory *icon_factory);
50a14534 124
941aa6e9 125/* i/o */
e4afc73a
EB
126static void load_file ( GtkAction *a, VikWindow *vw );
127static gboolean save_file_as ( GtkAction *a, VikWindow *vw );
128static gboolean save_file ( GtkAction *a, VikWindow *vw );
2bf7cadd 129static gboolean save_file_and_exit ( GtkAction *a, VikWindow *vw );
50a14534
EB
130static gboolean window_save ( VikWindow *vw );
131
132struct _VikWindow {
133 GtkWindow gtkwindow;
134 VikViewport *viking_vvp;
135 VikLayersPanel *viking_vlp;
136 VikStatusbar *viking_vs;
137
e4afc73a
EB
138 GtkToolbar *toolbar;
139
50a14534
EB
140 GtkItemFactory *item_factory;
141
941aa6e9 142 /* tool management state */
50a14534 143 guint current_tool;
941aa6e9 144 toolbox_tools_t *vt;
50a14534
EB
145 guint16 tool_layer_id;
146 guint16 tool_tool_id;
147
79845167
QT
148 GtkActionGroup *action_group;
149
50a14534
EB
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;
f2a1ca71 159 GtkWidget *save_img_dia, *save_img_dir_dia;
50a14534
EB
160
161 gboolean only_updating_coord_mode_ui; /* hack for a bug in GTK */
e4afc73a 162 GtkUIManager *uim;
c9177aae
QT
163
164 /* half-drawn update */
165 VikLayer *trigger;
166 VikCoord trigger_center;
50a14534
EB
167};
168
169enum {
576cbd17
GB
170 TOOL_PAN = 0,
171 TOOL_ZOOM,
50a14534
EB
172 TOOL_RULER,
173 TOOL_LAYER,
174 NUMBER_OF_TOOLS
175};
176
177enum {
178 VW_NEWWINDOW_SIGNAL,
179 VW_OPENWINDOW_SIGNAL,
180 VW_LAST_SIGNAL
181};
182
183static guint window_signals[VW_LAST_SIGNAL] = { 0 };
184
576cbd17 185static gchar *tool_names[NUMBER_OF_TOOLS] = { N_("Pan"), N_("Zoom"), N_("Ruler") };
50a14534
EB
186
187GType 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
014128f6
QT
211VikViewport * vik_window_viewport(VikWindow *vw)
212{
213 return(vw->viking_vvp);
214}
215
79845167
QT
216void 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
50a14534
EB
236static 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
bce3a7b0 246
50a14534
EB
247static 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);
8c4f1350 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);
50a14534
EB
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
263static void window_init ( VikWindow *vw )
264{
265 GtkWidget *main_vbox;
266 GtkWidget *hpaned;
267
79845167 268 vw->action_group = NULL;
50a14534 269
24277274 270 vw->viking_vvp = vik_viewport_new();
50a14534
EB
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
941aa6e9
AF
275 vw->vt = toolbox_create(vw);
276 window_create_ui(vw);
4c77d5e0 277 window_set_filename (vw, NULL);
941aa6e9 278
576cbd17 279 toolbox_activate(vw->vt, "Pan");
941aa6e9 280
50a14534 281 vw->filename = NULL;
e4afc73a 282 vw->item_factory = NULL;
50a14534 283
50a14534
EB
284 vw->modified = FALSE;
285 vw->only_updating_coord_mode_ui = FALSE;
941aa6e9 286
50a14534
EB
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
e4afc73a
EB
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);
886031df
AF
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);
50a14534 299
92806042 300 vik_ext_tools_add_menu_items ( vw, vw->uim );
777e2d4d 301
50a14534
EB
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);
bce3a7b0 305 g_signal_connect_swapped (G_OBJECT(vw->viking_vvp), "configure_event", G_CALLBACK(window_configure_event), vw);
fe27d6d2 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 );
50a14534
EB
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
165d30aa 313 g_signal_connect_swapped (G_OBJECT (vw->viking_vvp), "key_press_event", G_CALLBACK (key_press_event), vw);
777e2d4d 314
9a3cdf12 315 gtk_window_set_default_size ( GTK_WINDOW(vw), VIKING_WINDOW_WIDTH, VIKING_WINDOW_HEIGHT);
50a14534
EB
316
317 hpaned = gtk_hpaned_new ();
181f5d0c
MA
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 );
50a14534
EB
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;
f2a1ca71
QT
330 vw->save_img_dia = NULL;
331 vw->save_img_dir_dia = NULL;
50a14534
EB
332}
333
334VikWindow *vik_window_new ()
335{
336 return VIK_WINDOW ( g_object_new ( VIK_WINDOW_TYPE, NULL ) );
337}
338
777e2d4d
EB
339static 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
50a14534
EB
350static gboolean delete_event( VikWindow *vw )
351{
a5fd2196 352#ifdef VIKING_PROMPT_IF_MODIFIED
50a14534 353 if ( vw->modified )
a5fd2196
QT
354#else
355 if (0)
356#endif
50a14534
EB
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,
4c77d5e0
GB
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 );
50a14534
EB
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;
e4afc73a 369 default: gtk_widget_destroy ( GTK_WIDGET(dia) ); return ! save_file(NULL, vw);
50a14534
EB
370 }
371 }
372 return FALSE;
373}
374
375/* Drawing stuff */
e4afc73a 376static void newwindow_cb ( GtkAction *a, VikWindow *vw )
50a14534
EB
377{
378 g_signal_emit ( G_OBJECT(vw), window_signals[VW_NEWWINDOW_SIGNAL], 0 );
379}
380
381static void draw_update ( VikWindow *vw )
382{
383 draw_redraw (vw);
384 draw_sync (vw);
385}
386
387static 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
394static void draw_status ( VikWindow *vw )
395{
396 static gchar zoom_level[22];
4c77d5e0 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") );
50a14534
EB
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
4c77d5e0 401 vik_statusbar_set_message ( vw->viking_vs, 0, _(tool_names[vw->current_tool]) );
50a14534
EB
402
403 vik_statusbar_set_message ( vw->viking_vs, 2, zoom_level );
404}
405
c9177aae
QT
406void vik_window_set_redraw_trigger(VikLayer *vl)
407{
730a38c1 408 VikWindow *vw = VIK_WINDOW(VIK_GTK_WINDOW_FROM_LAYER(vl));
be3b5803
GB
409 if (NULL != vw)
410 vw->trigger = vl;
c9177aae
QT
411}
412
bce3a7b0
EB
413static void window_configure_event ( VikWindow *vw )
414{
f2f2f7bf 415 static int first = 1;
bce3a7b0 416 draw_redraw ( vw );
372132a6
GB
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
f2f2f7bf 420 const GdkCursor *cursor = NULL;
372132a6 421 first = 0;
f2f2f7bf
GB
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 );
372132a6 425 }
bce3a7b0
EB
426}
427
50a14534
EB
428static void draw_redraw ( VikWindow *vw )
429{
c9177aae
QT
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;
0df66d57
EB
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. */
c9177aae 438 else if ( (old_trigger != new_trigger) || !vik_coord_equals(&old_center, &vw->trigger_center) )
0df66d57
EB
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 */
50a14534 444 vik_viewport_clear ( vw->viking_vvp);
50a14534 445 vik_layers_panel_draw_all ( vw->viking_vlp );
acaf7113 446 vik_viewport_draw_scale ( vw->viking_vvp );
c933487f 447 vik_viewport_draw_centermark ( vw->viking_vvp );
0df66d57
EB
448
449 vik_viewport_set_half_drawn ( vw->viking_vvp, FALSE ); /* just in case. */
50a14534
EB
450}
451
941aa6e9
AF
452gboolean draw_buf_done = TRUE;
453
454static 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
b57126a3
GB
468static 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
941aa6e9
AF
475static void draw_click (VikWindow *vw, GdkEventButton *event)
476{
165d30aa 477 gtk_widget_grab_focus ( GTK_WIDGET(vw->viking_vvp) );
941aa6e9
AF
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) {
b57126a3 483 vik_window_pan_click ( vw, event );
941aa6e9
AF
484 }
485 else {
486 toolbox_click(vw->vt, event);
487 }
488}
489
b57126a3
GB
490static 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
941aa6e9
AF
497static void draw_mouse_motion (VikWindow *vw, GdkEventMotion *event)
498{
499 static VikCoord coord;
500 static struct UTM utm;
501 static struct LatLon ll;
a58aaed4
GB
502 #define BUFFER_SIZE 50
503 static char pointer_buf[BUFFER_SIZE];
504 gchar *lat = NULL, *lon = NULL;
071da616 505 gint16 alt;
228213c5
QT
506 gdouble zoom;
507 VikDemInterpol interpol_method;
941aa6e9 508
fe27d6d2
SB
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
576cbd17 516 toolbox_move(vw->vt, event);
941aa6e9
AF
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 );
a58aaed4 521 a_coords_latlon_to_string ( &ll, &lat, &lon );
228213c5
QT
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)
a58aaed4 531 g_snprintf ( pointer_buf, BUFFER_SIZE, _("%s %s %dm"), lat, lon, alt );
071da616 532 else
a58aaed4
GB
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;
941aa6e9
AF
538 vik_statusbar_set_message ( vw->viking_vs, 4, pointer_buf );
539
b57126a3 540 vik_window_pan_move ( vw, event );
fe27d6d2
SB
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 ); */
b57126a3
GB
547}
548
549static 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;
941aa6e9
AF
558}
559
560static void draw_release ( VikWindow *vw, GdkEventButton *event )
561{
165d30aa
EB
562 gtk_widget_grab_focus ( GTK_WIDGET(vw->viking_vvp) );
563
941aa6e9 564 if ( event->button == 2 ) { /* move / pan */
b57126a3 565 vik_window_pan_release(vw, event);
941aa6e9
AF
566 }
567 else {
568 toolbox_release(vw->vt, event);
569 }
570}
571
572static void draw_scroll (VikWindow *vw, GdkEventScroll *event)
573{
d1a45556
JN
574 guint modifiers = event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK);
575 if ( modifiers == GDK_CONTROL_MASK ) {
8c721f83
EB
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 );
d1a45556
JN
581 } else if ( modifiers == GDK_SHIFT_MASK ) {
582 /* shift == pan left & right */
8c721f83
EB
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 );
d1a45556 587 } else if ( modifiers == (GDK_CONTROL_MASK | GDK_SHIFT_MASK) ) {
3c575a4a
JN
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 )
8c721f83 595 vik_viewport_zoom_in (vw->viking_vvp);
3c575a4a 596 else
8c721f83 597 vik_viewport_zoom_out(vw->viking_vvp);
3c575a4a
JN
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) );
e086b16d
EB
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);
8c721f83
EB
606 }
607
941aa6e9
AF
608 draw_update(vw);
609}
610
611
612
613/********************************************************************************
614 ** Ruler tool code
615 ********************************************************************************/
e4847ce9
AF
616static 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];
0dff88ea
AF
621 GdkGC *labgc = vik_viewport_new_gc ( vvp, "#cccccc", 1);
622 GdkGC *thickgc = gdk_gc_new(d);
623
e4847ce9
AF
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);
0dff88ea 629 gdouble angle;
15614495 630 gdouble baseangle = 0;
0dff88ea 631 gint i;
e4847ce9 632
0dff88ea 633 /* draw line with arrow ends */
d9ffd267
EB
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
15614495
AF
640 a_viewport_clip_line(&x1, &y1, &x2, &y2);
641 gdk_draw_line(d, gc, x1, y1, x2, y2);
d9ffd267 642
e4847ce9
AF
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
0dff88ea
AF
650 /* draw compass */
651#define CR 80
652#define CW 4
15614495
AF
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
0dff88ea
AF
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 }
15614495 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);
0dff88ea 685
e4847ce9 686
0dff88ea
AF
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++) {
15614495
AF
690 c = cos(i*M_PI/90.0 + baseangle);
691 s = sin(i*M_PI/90.0 + baseangle);
e4847ce9 692
0dff88ea
AF
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 }
e4847ce9 699 }
0dff88ea
AF
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);
15614495
AF
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);
0dff88ea
AF
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 if (distance >= 1000 && distance < 100000) {
15614495 729 g_sprintf(str, "%3.2f km", distance/1000.0);
0dff88ea 730 } else if (distance < 1000) {
15614495 731 g_sprintf(str, "%d m", (int)distance);
0dff88ea 732 } else {
15614495 733 g_sprintf(str, "%d km", (int)distance/1000);
0dff88ea
AF
734 }
735 pango_layout_set_text(pl, str, -1);
736
737 pango_layout_get_pixel_size ( pl, &wd, &hd );
738 if (dy>0) {
739 xd = (x1+x2)/2 + dy;
740 yd = (y1+y2)/2 - hd/2 - dx;
741 } else {
742 xd = (x1+x2)/2 - dy;
743 yd = (y1+y2)/2 - hd/2 + dx;
744 }
024f32c1
EB
745
746 if ( xd < -5 || yd < -5 || xd > vik_viewport_get_width(vvp)+5 || yd > vik_viewport_get_height(vvp)+5 ) {
747 xd = x2 + 10;
748 yd = y2 - 5;
749 }
750
0dff88ea
AF
751 LABEL(xd, yd, wd, hd);
752
753 /* draw label with bearing */
15614495 754 g_sprintf(str, "%3.1f°", angle*180.0/M_PI);
0dff88ea
AF
755 pango_layout_set_text(pl, str, -1);
756 pango_layout_get_pixel_size ( pl, &wb, &hb );
757 xb = x1 + CR*cos(angle-M_PI_2);
758 yb = y1 + CR*sin(angle-M_PI_2);
759
024f32c1
EB
760 if ( xb < -5 || yb < -5 || xb > vik_viewport_get_width(vvp)+5 || yb > vik_viewport_get_height(vvp)+5 ) {
761 xb = x2 + 10;
762 yb = y2 + 10;
763 }
764
0dff88ea
AF
765 {
766 GdkRectangle r1 = {xd-2, yd-1, wd+4, hd+1}, r2 = {xb-2, yb-1, wb+4, hb+1};
767 if (gdk_rectangle_intersect(&r1, &r2, &r2)) {
768 xb = xd + wd + 5;
769 }
770 }
771 LABEL(xb, yb, wb, hb);
e4847ce9 772 }
03d62e57 773#undef LABEL
e4847ce9 774
024f32c1 775 g_object_unref ( G_OBJECT ( pl ) );
0dff88ea
AF
776 g_object_unref ( G_OBJECT ( labgc ) );
777 g_object_unref ( G_OBJECT ( thickgc ) );
e4847ce9
AF
778}
779
941aa6e9
AF
780typedef struct {
781 VikWindow *vw;
782 VikViewport *vvp;
783 gboolean has_oldcoord;
784 VikCoord oldcoord;
785} ruler_tool_state_t;
03d62e57 786
941aa6e9 787static gpointer ruler_create (VikWindow *vw, VikViewport *vvp)
03d62e57 788{
941aa6e9
AF
789 ruler_tool_state_t *s = g_new(ruler_tool_state_t, 1);
790 s->vw = vw;
791 s->vvp = vvp;
792 s->has_oldcoord = FALSE;
793 return s;
03d62e57
AF
794}
795
941aa6e9 796static void ruler_destroy (ruler_tool_state_t *s)
50a14534 797{
941aa6e9
AF
798 g_free(s);
799}
50a14534 800
941aa6e9
AF
801static VikLayerToolFuncStatus ruler_click (VikLayer *vl, GdkEventButton *event, ruler_tool_state_t *s)
802{
803 struct LatLon ll;
804 VikCoord coord;
805 gchar *temp;
806 if ( event->button == 1 ) {
a58aaed4 807 gchar *lat=NULL, *lon=NULL;
941aa6e9
AF
808 vik_viewport_screen_to_coord ( s->vvp, (gint) event->x, (gint) event->y, &coord );
809 vik_coord_to_latlon ( &coord, &ll );
a58aaed4 810 a_coords_latlon_to_string ( &ll, &lat, &lon );
941aa6e9 811 if ( s->has_oldcoord ) {
a58aaed4 812 temp = g_strdup_printf ( "%s %s DIFF %f meters", lat, lon, vik_coord_diff( &coord, &(s->oldcoord) ) );
941aa6e9
AF
813 s->has_oldcoord = FALSE;
814 }
815 else {
a58aaed4 816 temp = g_strdup_printf ( "%s %s", lat, lon );
941aa6e9
AF
817 s->has_oldcoord = TRUE;
818 }
50a14534 819
941aa6e9
AF
820 vik_statusbar_set_message ( s->vw->viking_vs, 3, temp );
821 g_free ( temp );
e4847ce9 822
941aa6e9
AF
823 s->oldcoord = coord;
824 }
825 else {
826 vik_viewport_set_center_screen ( s->vvp, (gint) event->x, (gint) event->y );
827 draw_update ( s->vw );
828 }
829 return VIK_LAYER_TOOL_ACK;
830}
e4847ce9 831
dc2c040e 832static VikLayerToolFuncStatus ruler_move (VikLayer *vl, GdkEventMotion *event, ruler_tool_state_t *s)
941aa6e9
AF
833{
834 VikViewport *vvp = s->vvp;
835 VikWindow *vw = s->vw;
836
837 struct LatLon ll;
838 VikCoord coord;
839 gchar *temp;
840
841 if ( s->has_oldcoord ) {
842 int oldx, oldy, w1, h1, w2, h2;
843 static GdkPixmap *buf = NULL;
a58aaed4 844 gchar *lat=NULL, *lon=NULL;
941aa6e9
AF
845 w1 = vik_viewport_get_width(vvp);
846 h1 = vik_viewport_get_height(vvp);
847 if (!buf) {
848 buf = gdk_pixmap_new ( GTK_WIDGET(vvp)->window, w1, h1, -1 );
849 }
850 gdk_drawable_get_size(buf, &w2, &h2);
851 if (w1 != w2 || h1 != h2) {
852 g_object_unref ( G_OBJECT ( buf ) );
853 buf = gdk_pixmap_new ( GTK_WIDGET(vvp)->window, w1, h1, -1 );
e4847ce9 854 }
e4847ce9 855
941aa6e9
AF
856 vik_viewport_screen_to_coord ( vvp, (gint) event->x, (gint) event->y, &coord );
857 vik_coord_to_latlon ( &coord, &ll );
858 vik_viewport_coord_to_screen ( vvp, &s->oldcoord, &oldx, &oldy );
859
860 gdk_draw_drawable (buf, GTK_WIDGET(vvp)->style->black_gc,
861 vik_viewport_get_pixmap(vvp), 0, 0, 0, 0, -1, -1);
862 draw_ruler(vvp, buf, GTK_WIDGET(vvp)->style->black_gc, oldx, oldy, event->x, event->y, vik_coord_diff( &coord, &(s->oldcoord)) );
863 if (draw_buf_done) {
864 static gpointer pass_along[3];
865 pass_along[0] = GTK_WIDGET(vvp)->window;
866 pass_along[1] = GTK_WIDGET(vvp)->style->black_gc;
867 pass_along[2] = buf;
868 g_idle_add_full (G_PRIORITY_HIGH_IDLE + 10, draw_buf, pass_along, NULL);
869 draw_buf_done = FALSE;
870 }
a58aaed4
GB
871 a_coords_latlon_to_string(&ll, &lat, &lon);
872 temp = g_strdup_printf ( "%s %s DIFF %f meters", lat, lon, vik_coord_diff( &coord, &(s->oldcoord) ) );
941aa6e9
AF
873 vik_statusbar_set_message ( vw->viking_vs, 3, temp );
874 g_free ( temp );
acaf7113 875 }
941aa6e9
AF
876 return VIK_LAYER_TOOL_ACK;
877}
50a14534 878
941aa6e9
AF
879static VikLayerToolFuncStatus ruler_release (VikLayer *vl, GdkEventButton *event, ruler_tool_state_t *s)
880{
881 return VIK_LAYER_TOOL_ACK;
50a14534
EB
882}
883
941aa6e9 884static void ruler_deactivate (VikLayer *vl, ruler_tool_state_t *s)
50a14534 885{
941aa6e9 886 draw_update ( s->vw );
50a14534
EB
887}
888
941aa6e9
AF
889static VikToolInterface ruler_tool =
890 { "Ruler",
891 (VikToolConstructorFunc) ruler_create,
892 (VikToolDestructorFunc) ruler_destroy,
893 (VikToolActivationFunc) NULL,
894 (VikToolActivationFunc) ruler_deactivate,
895 (VikToolMouseFunc) ruler_click,
dc2c040e 896 (VikToolMouseMoveFunc) ruler_move,
f2f2f7bf
GB
897 (VikToolMouseFunc) ruler_release,
898 NULL,
899 GDK_CURSOR_IS_PIXMAP,
5bfafde9 900 &cursor_ruler_pixbuf };
941aa6e9
AF
901/*** end ruler code ********************************************************/
902
903
904
905/********************************************************************************
906 ** Zoom tool code
907 ********************************************************************************/
908static gpointer zoomtool_create (VikWindow *vw, VikViewport *vvp)
50a14534 909{
941aa6e9 910 return vw;
50a14534
EB
911}
912
941aa6e9 913static VikLayerToolFuncStatus zoomtool_click (VikLayer *vl, GdkEventButton *event, VikWindow *vw)
50a14534 914{
941aa6e9
AF
915 vw->modified = TRUE;
916 vik_viewport_set_center_screen ( vw->viking_vvp, (gint) event->x, (gint) event->y );
917 if ( event->button == 1 )
918 vik_viewport_zoom_in (vw->viking_vvp);
919 else if ( event->button == 3 )
920 vik_viewport_zoom_out (vw->viking_vvp);
921 draw_update ( vw );
922 return VIK_LAYER_TOOL_ACK;
923}
50a14534 924
dc2c040e 925static VikLayerToolFuncStatus zoomtool_move (VikLayer *vl, GdkEventMotion *event, VikViewport *vvp)
941aa6e9
AF
926{
927 return VIK_LAYER_TOOL_ACK;
928}
50a14534 929
941aa6e9
AF
930static VikLayerToolFuncStatus zoomtool_release (VikLayer *vl, GdkEventButton *event, VikViewport *vvp)
931{
932 return VIK_LAYER_TOOL_ACK;
50a14534
EB
933}
934
941aa6e9
AF
935static VikToolInterface zoom_tool =
936 { "Zoom",
937 (VikToolConstructorFunc) zoomtool_create,
938 (VikToolDestructorFunc) NULL,
939 (VikToolActivationFunc) NULL,
940 (VikToolActivationFunc) NULL,
941 (VikToolMouseFunc) zoomtool_click,
dc2c040e 942 (VikToolMouseMoveFunc) zoomtool_move,
f2f2f7bf
GB
943 (VikToolMouseFunc) zoomtool_release,
944 NULL,
945 GDK_CURSOR_IS_PIXMAP,
5bfafde9 946 &cursor_zoom_pixbuf };
463f9d07 947/*** end zoom code ********************************************************/
941aa6e9 948
576cbd17
GB
949/********************************************************************************
950 ** Pan tool code
951 ********************************************************************************/
952static gpointer pantool_create (VikWindow *vw, VikViewport *vvp)
953{
954 return vw;
955}
956
957static VikLayerToolFuncStatus pantool_click (VikLayer *vl, GdkEventButton *event, VikWindow *vw)
958{
959 vw->modified = TRUE;
960 if ( event->button == 1 )
961 vik_window_pan_click ( vw, event );
962 draw_update ( vw );
963 return VIK_LAYER_TOOL_ACK;
964}
965
dc2c040e 966static VikLayerToolFuncStatus pantool_move (VikLayer *vl, GdkEventMotion *event, VikWindow *vw)
576cbd17
GB
967{
968 vik_window_pan_move ( vw, event );
969 return VIK_LAYER_TOOL_ACK;
970}
971
972static VikLayerToolFuncStatus pantool_release (VikLayer *vl, GdkEventButton *event, VikWindow *vw)
973{
974 if ( event->button == 1 )
975 vik_window_pan_release ( vw, event );
976 return VIK_LAYER_TOOL_ACK;
977}
978
979static VikToolInterface pan_tool =
980 { "Pan",
981 (VikToolConstructorFunc) pantool_create,
982 (VikToolDestructorFunc) NULL,
983 (VikToolActivationFunc) NULL,
984 (VikToolActivationFunc) NULL,
985 (VikToolMouseFunc) pantool_click,
dc2c040e 986 (VikToolMouseMoveFunc) pantool_move,
f2f2f7bf
GB
987 (VikToolMouseFunc) pantool_release,
988 NULL,
989 GDK_FLEUR };
576cbd17
GB
990/*** end pan code ********************************************************/
991
8c721f83
EB
992static void draw_pan_cb ( GtkAction *a, VikWindow *vw )
993{
994 if (!strcmp(gtk_action_get_name(a), "PanNorth")) {
995 vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp)/2, 0 );
996 } else if (!strcmp(gtk_action_get_name(a), "PanEast")) {
997 vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp), vik_viewport_get_height(vw->viking_vvp)/2 );
998 } else if (!strcmp(gtk_action_get_name(a), "PanSouth")) {
999 vik_viewport_set_center_screen ( vw->viking_vvp, vik_viewport_get_width(vw->viking_vvp)/2, vik_viewport_get_height(vw->viking_vvp) );
1000 } else if (!strcmp(gtk_action_get_name(a), "PanWest")) {
1001 vik_viewport_set_center_screen ( vw->viking_vvp, 0, vik_viewport_get_height(vw->viking_vvp)/2 );
1002 }
1003 draw_update ( vw );
1004}
941aa6e9 1005
7de42638
EB
1006static void full_screen_cb ( GtkAction *a, VikWindow *vw )
1007{
1008 GtkWidget *check_box = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/FullScreen" );
1009 g_assert(check_box);
1010 gboolean state = gtk_check_menu_item_get_active ( GTK_CHECK_MENU_ITEM(check_box));
1011 if ( state )
1012 gtk_window_fullscreen ( GTK_WINDOW(vw) );
1013 else
1014 gtk_window_unfullscreen ( GTK_WINDOW(vw) );
1015}
941aa6e9 1016
e4afc73a 1017static void draw_zoom_cb ( GtkAction *a, VikWindow *vw )
50a14534 1018{
e4afc73a
EB
1019 guint what = 128;
1020
1021 if (!strcmp(gtk_action_get_name(a), "ZoomIn")) {
1022 what = -3;
1023 }
1024 else if (!strcmp(gtk_action_get_name(a), "ZoomOut")) {
1025 what = -4;
1026 }
1027 else if (!strcmp(gtk_action_get_name(a), "Zoom0.25")) {
1028 what = -2;
1029 }
1030 else if (!strcmp(gtk_action_get_name(a), "Zoom0.5")) {
1031 what = -1;
1032 }
1033 else {
1034 gchar *s = (gchar *)gtk_action_get_name(a);
1035 what = atoi(s+4);
1036 }
1037
50a14534
EB
1038 switch (what)
1039 {
1040 case -3: vik_viewport_zoom_in ( vw->viking_vvp ); break;
1041 case -4: vik_viewport_zoom_out ( vw->viking_vvp ); break;
1042 case -1: vik_viewport_set_zoom ( vw->viking_vvp, 0.5 ); break;
1043 case -2: vik_viewport_set_zoom ( vw->viking_vvp, 0.25 ); break;
1044 default: vik_viewport_set_zoom ( vw->viking_vvp, what );
1045 }
1046 draw_update ( vw );
1047}
1048
e4afc73a 1049void draw_goto_cb ( GtkAction *a, VikWindow *vw )
50a14534
EB
1050{
1051 VikCoord new_center;
e4afc73a
EB
1052
1053 if (!strcmp(gtk_action_get_name(a), "GotoLL")) {
50a14534
EB
1054 struct LatLon ll, llold;
1055 vik_coord_to_latlon ( vik_viewport_get_center ( vw->viking_vvp ), &llold );
1056 if ( a_dialog_goto_latlon ( GTK_WINDOW(vw), &ll, &llold ) )
1057 vik_coord_load_from_latlon ( &new_center, vik_viewport_get_coord_mode(vw->viking_vvp), &ll );
1058 else
1059 return;
1060 }
e4afc73a 1061 else if (!strcmp(gtk_action_get_name(a), "GotoUTM")) {
50a14534
EB
1062 struct UTM utm, utmold;
1063 vik_coord_to_utm ( vik_viewport_get_center ( vw->viking_vvp ), &utmold );
1064 if ( a_dialog_goto_utm ( GTK_WINDOW(vw), &utm, &utmold ) )
1065 vik_coord_load_from_utm ( &new_center, vik_viewport_get_coord_mode(vw->viking_vvp), &utm );
1066 else
1067 return;
1068 }
e4afc73a 1069 else {
8dc8da82 1070 g_critical("Houston, we've had a problem.");
e4afc73a
EB
1071 return;
1072 }
50a14534
EB
1073
1074 vik_viewport_set_center_coord ( vw->viking_vvp, &new_center );
1075 draw_update ( vw );
1076}
1077
e4afc73a 1078static void menu_addlayer_cb ( GtkAction *a, VikWindow *vw )
50a14534 1079{
e4afc73a
EB
1080 gint type;
1081 for ( type = 0; type < VIK_LAYER_NUM_TYPES; type++ ) {
1082 if (!strcmp(vik_layer_get_interface(type)->name, gtk_action_get_name(a))) {
1083 if ( vik_layers_panel_new_layer ( vw->viking_vlp, type ) ) {
1084 draw_update ( vw );
1085 vw->modified = TRUE;
1086 }
1087 }
50a14534
EB
1088 }
1089}
1090
e4afc73a 1091static void menu_copy_layer_cb ( GtkAction *a, VikWindow *vw )
50a14534 1092{
2cebc318 1093 a_clipboard_copy_selected ( vw->viking_vlp );
50a14534
EB
1094}
1095
e4afc73a 1096static void menu_cut_layer_cb ( GtkAction *a, VikWindow *vw )
50a14534 1097{
2cebc318 1098 a_clipboard_copy_selected ( vw->viking_vlp );
e4afc73a 1099 menu_delete_layer_cb ( a, vw );
50a14534
EB
1100}
1101
e4afc73a 1102static void menu_paste_layer_cb ( GtkAction *a, VikWindow *vw )
50a14534
EB
1103{
1104 if ( a_clipboard_paste ( vw->viking_vlp ) )
1105 {
1106 draw_update ( vw );
1107 vw->modified = TRUE;
1108 }
1109}
1110
e4afc73a 1111static void menu_properties_cb ( GtkAction *a, VikWindow *vw )
50a14534
EB
1112{
1113 if ( ! vik_layers_panel_properties ( vw->viking_vlp ) )
4c77d5e0 1114 a_dialog_info_msg ( GTK_WINDOW(vw), _("You must select a layer to show its properties.") );
50a14534
EB
1115}
1116
d0a5f320
AF
1117static void help_about_cb ( GtkAction *a, VikWindow *vw )
1118{
1119 a_dialog_about(GTK_WINDOW(vw));
1120}
1121
e4afc73a 1122static void menu_delete_layer_cb ( GtkAction *a, VikWindow *vw )
50a14534
EB
1123{
1124 if ( vik_layers_panel_get_selected ( vw->viking_vlp ) )
1125 {
1126 vik_layers_panel_delete_selected ( vw->viking_vlp );
1127 vw->modified = TRUE;
1128 }
1129 else
4c77d5e0 1130 a_dialog_info_msg ( GTK_WINDOW(vw), _("You must select a layer to delete.") );
50a14534
EB
1131}
1132
181f5d0c
MA
1133static void view_side_panel_cb ( GtkAction *a, VikWindow *vw )
1134{
1135 GtkWidget *check_box = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ViewSidePanel" );
1136 g_assert(check_box);
1137 gboolean state = gtk_check_menu_item_get_active ( GTK_CHECK_MENU_ITEM(check_box));
1138 if ( state )
1139 gtk_widget_show(GTK_WIDGET(vw->viking_vlp));
1140 else
1141 gtk_widget_hide(GTK_WIDGET(vw->viking_vlp));
1142}
1143
941aa6e9
AF
1144/***************************************
1145 ** tool management routines
1146 **
1147 ***************************************/
1148
1149static toolbox_tools_t* toolbox_create(VikWindow *vw)
1150{
1151 toolbox_tools_t *vt = g_new(toolbox_tools_t, 1);
1152 vt->tools = NULL;
1153 vt->n_tools = 0;
1154 vt->active_tool = -1;
1155 vt->vw = vw;
1156 if (!vw->viking_vvp) {
7742da66 1157 g_critical("no viewport found.");
941aa6e9
AF
1158 exit(1);
1159 }
1160 return vt;
1161}
1162
9593a4c9 1163static void toolbox_add_tool(toolbox_tools_t *vt, VikToolInterface *vti, gint layer_type )
941aa6e9
AF
1164{
1165 vt->tools = g_renew(toolbox_tool_t, vt->tools, vt->n_tools+1);
1166 vt->tools[vt->n_tools].ti = *vti;
9593a4c9 1167 vt->tools[vt->n_tools].layer_type = layer_type;
941aa6e9
AF
1168 if (vti->create) {
1169 vt->tools[vt->n_tools].state = vti->create(vt->vw, vt->vw->viking_vvp);
1170 }
1171 else {
1172 vt->tools[vt->n_tools].state = NULL;
1173 }
1174 vt->n_tools++;
1175}
1176
1177static int toolbox_get_tool(toolbox_tools_t *vt, const gchar *tool_name)
1178{
1179 int i;
1180 for (i=0; i<vt->n_tools; i++) {
1181 if (!strcmp(tool_name, vt->tools[i].ti.name)) {
1182 break;
1183 }
1184 }
1185 return i;
1186}
1187
1188static void toolbox_activate(toolbox_tools_t *vt, const gchar *tool_name)
1189{
1190 int tool = toolbox_get_tool(vt, tool_name);
1191 toolbox_tool_t *t = &vt->tools[tool];
1192 VikLayer *vl = vik_layers_panel_get_selected ( vt->vw->viking_vlp );
1193
1194 if (tool == vt->n_tools) {
7742da66 1195 g_critical("trying to activate a non-existent tool...");
941aa6e9
AF
1196 exit(1);
1197 }
1198 /* is the tool already active? */
1199 if (vt->active_tool == tool) {
1200 return;
1201 }
1202
1203 if (vt->active_tool != -1) {
1204 if (vt->tools[vt->active_tool].ti.deactivate) {
1205 vt->tools[vt->active_tool].ti.deactivate(NULL, vt->tools[vt->active_tool].state);
1206 }
1207 }
1208 if (t->ti.activate) {
1209 t->ti.activate(vl, t->state);
1210 }
1211 vt->active_tool = tool;
1212}
1213
f2f2f7bf
GB
1214static const GdkCursor *toolbox_get_cursor(toolbox_tools_t *vt, const gchar *tool_name)
1215{
1216 int tool = toolbox_get_tool(vt, tool_name);
1217 toolbox_tool_t *t = &vt->tools[tool];
1218 if (t->ti.cursor == NULL) {
1219 if (t->ti.cursor_type == GDK_CURSOR_IS_PIXMAP && t->ti.cursor_data != NULL) {
1220 GError *cursor_load_err = NULL;
1221 GdkPixbuf *cursor_pixbuf = gdk_pixbuf_from_pixdata (t->ti.cursor_data, FALSE, &cursor_load_err);
1222 /* TODO: settable offeset */
1223 t->ti.cursor = gdk_cursor_new_from_pixbuf ( gdk_display_get_default(), cursor_pixbuf, 3, 3 );
1224 g_object_unref ( G_OBJECT(cursor_pixbuf) );
1225 } else {
1226 t->ti.cursor = gdk_cursor_new ( t->ti.cursor_type );
1227 }
1228 }
1229 return t->ti.cursor;
1230}
1231
941aa6e9
AF
1232static void toolbox_click (toolbox_tools_t *vt, GdkEventButton *event)
1233{
1234 VikLayer *vl = vik_layers_panel_get_selected ( vt->vw->viking_vlp );
1235 if (vt->active_tool != -1 && vt->tools[vt->active_tool].ti.click) {
9593a4c9
EB
1236 gint ltype = vt->tools[vt->active_tool].layer_type;
1237 if ( ltype == TOOL_LAYER_TYPE_NONE || (vl && ltype == vl->type) )
1238 vt->tools[vt->active_tool].ti.click(vl, event, vt->tools[vt->active_tool].state);
941aa6e9
AF
1239 }
1240}
1241
dc2c040e 1242static void toolbox_move (toolbox_tools_t *vt, GdkEventMotion *event)
941aa6e9
AF
1243{
1244 VikLayer *vl = vik_layers_panel_get_selected ( vt->vw->viking_vlp );
1245 if (vt->active_tool != -1 && vt->tools[vt->active_tool].ti.move) {
9593a4c9
EB
1246 gint ltype = vt->tools[vt->active_tool].layer_type;
1247 if ( ltype == TOOL_LAYER_TYPE_NONE || (vl && ltype == vl->type) )
165d30aa
EB
1248 if ( VIK_LAYER_TOOL_ACK_GRAB_FOCUS == vt->tools[vt->active_tool].ti.move(vl, event, vt->tools[vt->active_tool].state) )
1249 gtk_widget_grab_focus ( GTK_WIDGET(vt->vw->viking_vvp) );
941aa6e9
AF
1250 }
1251}
1252
1253static void toolbox_release (toolbox_tools_t *vt, GdkEventButton *event)
1254{
1255 VikLayer *vl = vik_layers_panel_get_selected ( vt->vw->viking_vlp );
9593a4c9
EB
1256 if (vt->active_tool != -1 && vt->tools[vt->active_tool].ti.release ) {
1257 gint ltype = vt->tools[vt->active_tool].layer_type;
1258 if ( ltype == TOOL_LAYER_TYPE_NONE || (vl && ltype == vl->type) )
1259 vt->tools[vt->active_tool].ti.release(vl, event, vt->tools[vt->active_tool].state);
941aa6e9
AF
1260 }
1261}
1262/** End tool management ************************************/
1263
8fb71d6c
EB
1264void vik_window_enable_layer_tool ( VikWindow *vw, gint layer_id, gint tool_id )
1265{
1266 gtk_action_activate ( gtk_action_group_get_action ( vw->action_group, vik_layer_get_interface(layer_id)->tools[tool_id].name ) );
1267}
941aa6e9
AF
1268
1269/* this function gets called whenever a toolbar tool is clicked */
e4afc73a 1270static void menu_tool_cb ( GtkAction *old, GtkAction *a, VikWindow *vw )
50a14534
EB
1271{
1272 /* White Magic, my friends ... White Magic... */
8fb71d6c 1273 int layer_id, tool_id;
f2f2f7bf 1274 const GdkCursor *cursor = NULL;
e4afc73a 1275
941aa6e9
AF
1276 toolbox_activate(vw->vt, gtk_action_get_name(a));
1277
f2f2f7bf
GB
1278 cursor = toolbox_get_cursor(vw->vt, gtk_action_get_name(a));
1279 /* We set cursor, even if it is NULL: it resets to default */
1280 gdk_window_set_cursor ( GTK_WIDGET(vw->viking_vvp)->window, cursor );
1281
576cbd17
GB
1282 if (!strcmp(gtk_action_get_name(a), "Pan")) {
1283 vw->current_tool = TOOL_PAN;
576cbd17
GB
1284 }
1285 else if (!strcmp(gtk_action_get_name(a), "Zoom")) {
e4afc73a
EB
1286 vw->current_tool = TOOL_ZOOM;
1287 }
1288 else if (!strcmp(gtk_action_get_name(a), "Ruler")) {
1289 vw->current_tool = TOOL_RULER;
1290 }
1291 else {
79845167 1292 /* TODO: only enable tools from active layer */
8fb71d6c
EB
1293 for (layer_id=0; layer_id<VIK_LAYER_NUM_TYPES; layer_id++) {
1294 for ( tool_id = 0; tool_id < vik_layer_get_interface(layer_id)->tools_count; tool_id++ ) {
1295 if (!strcmp(vik_layer_get_interface(layer_id)->tools[tool_id].name, gtk_action_get_name(a))) {
1296 vw->current_tool = TOOL_LAYER;
1297 vw->tool_layer_id = layer_id;
1298 vw->tool_tool_id = tool_id;
e4afc73a
EB
1299 }
1300 }
1301 }
1302 }
50a14534
EB
1303 draw_status ( vw );
1304}
1305
1306static void window_set_filename ( VikWindow *vw, const gchar *filename )
1307{
1308 gchar *title;
4c77d5e0 1309 const gchar *file;
50a14534
EB
1310 if ( vw->filename )
1311 g_free ( vw->filename );
1312 if ( filename == NULL )
1313 {
1314 vw->filename = NULL;
4c77d5e0 1315 file = _("Untitled");
50a14534
EB
1316 }
1317 else
1318 {
1319 vw->filename = g_strdup(filename);
4c77d5e0 1320 file = a_file_basename ( filename );
50a14534 1321 }
4c77d5e0
GB
1322 title = g_strdup_printf( "%s - Viking", file );
1323 gtk_window_set_title ( GTK_WINDOW(vw), title );
1324 g_free ( title );
50a14534
EB
1325}
1326
7bc965c0
GB
1327GtkWidget *vik_window_get_drawmode_button ( VikWindow *vw, VikViewportDrawMode mode )
1328{
1329 GtkWidget *mode_button;
1330 gchar *buttonname;
1331 switch ( mode ) {
794c8f18 1332#ifdef VIK_CONFIG_EXPEDIA
7bc965c0 1333 case VIK_VIEWPORT_DRAWMODE_EXPEDIA: buttonname = "/ui/MainMenu/View/ModeExpedia"; break;
794c8f18 1334#endif
7bc965c0 1335 case VIK_VIEWPORT_DRAWMODE_MERCATOR: buttonname = "/ui/MainMenu/View/ModeMercator"; break;
794c8f18 1336 default: buttonname = "/ui/MainMenu/View/ModeUTM";
7bc965c0
GB
1337 }
1338 mode_button = gtk_ui_manager_get_widget ( vw->uim, buttonname );
1339 g_assert ( mode_button );
1340 return mode_button;
1341}
1342
13505702
GB
1343static void on_activate_recent_item (GtkRecentChooser *chooser,
1344 VikWindow *self)
1345{
1346 gchar *filename;
1347
1348 filename = gtk_recent_chooser_get_current_uri (chooser);
1349 if (filename != NULL)
1350 {
1351 GFile *file = g_file_new_for_uri ( filename );
1352 gchar *path = g_file_get_path ( file );
1353 g_object_unref ( file );
1354 if ( self->filename )
1355 {
1356 gchar *filenames[] = { path, NULL };
1357 g_signal_emit ( G_OBJECT(self), window_signals[VW_OPENWINDOW_SIGNAL], 0, filenames );
1358 }
1359 else
1360 vik_window_open_file ( self, filename, TRUE );
1361 g_free ( path );
1362 }
1363
1364 g_free (filename);
1365}
1366
1367static void setup_recent_files (VikWindow *self)
1368{
1369 GtkRecentManager *manager;
1370 GtkRecentFilter *filter;
1371 GtkWidget *menu, *menu_item;
1372
1373 filter = gtk_recent_filter_new ();
1374 /* gtk_recent_filter_add_application (filter, g_get_application_name()); */
1375 gtk_recent_filter_add_group(filter, "viking");
1376
1377 manager = gtk_recent_manager_get_default ();
1378 menu = gtk_recent_chooser_menu_new_for_manager (manager);
1379 gtk_recent_chooser_set_sort_type (GTK_RECENT_CHOOSER (menu), GTK_RECENT_SORT_MRU);
1380 gtk_recent_chooser_add_filter (GTK_RECENT_CHOOSER (menu), filter);
1381
1382 menu_item = gtk_ui_manager_get_widget (self->uim, "/ui/MainMenu/File/OpenRecentFile");
1383 gtk_menu_item_set_submenu (GTK_MENU_ITEM (menu_item), menu);
1384
1385 g_signal_connect (G_OBJECT (menu), "item-activated",
1386 G_CALLBACK (on_activate_recent_item), (gpointer) self);
1387}
1388
1389static void update_recently_used_document(const gchar *filename)
1390{
1391 /* Update Recently Used Document framework */
1392 GtkRecentManager *manager = gtk_recent_manager_get_default();
1393 GtkRecentData *recent_data = g_slice_new (GtkRecentData);
1394 gchar *groups[] = {"viking", NULL};
1395 GFile *file = g_file_new_for_commandline_arg(filename);
1396 gchar *uri = g_file_get_uri(file);
1397 gchar *basename = g_path_get_basename(filename);
1398 g_object_unref(file);
1399 file = NULL;
1400
1401 recent_data->display_name = basename;
1402 recent_data->description = NULL;
1403 recent_data->mime_type = "text/x-gps-data";
1404 recent_data->app_name = (gchar *) g_get_application_name ();
1405 recent_data->app_exec = g_strjoin (" ", g_get_prgname (), "%f", NULL);
1406 recent_data->groups = groups;
1407 recent_data->is_private = FALSE;
1408 if (!gtk_recent_manager_add_full (manager, uri, recent_data))
1409 {
1410 g_warning (_("Unable to add '%s' to the list of recently used documents"), uri);
1411 }
1412
1413 g_free (uri);
1414 g_free (basename);
1415 g_free (recent_data->app_exec);
1416 g_slice_free (GtkRecentData, recent_data);
1417}
1418
50a14534
EB
1419void vik_window_open_file ( VikWindow *vw, const gchar *filename, gboolean change_filename )
1420{
1421 switch ( a_file_load ( vik_layers_panel_get_top_layer(vw->viking_vlp), vw->viking_vvp, filename ) )
1422 {
1423 case 0:
4c77d5e0 1424 a_dialog_error_msg ( GTK_WINDOW(vw), _("The file you requested could not be opened.") );
50a14534
EB
1425 break;
1426 case 1:
1427 {
1428 GtkWidget *mode_button;
13505702 1429 /* Update UI */
50a14534
EB
1430 if ( change_filename )
1431 window_set_filename ( vw, filename );
7bc965c0 1432 mode_button = vik_window_get_drawmode_button ( vw, vik_viewport_get_drawmode ( vw->viking_vvp ) );
50a14534
EB
1433 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. */
1434 gtk_check_menu_item_set_active ( GTK_CHECK_MENU_ITEM(mode_button), TRUE );
1435 vw->only_updating_coord_mode_ui = FALSE;
1436
1437 vik_layers_panel_change_coord_mode ( vw->viking_vlp, vik_viewport_get_coord_mode ( vw->viking_vvp ) );
1657065a
QT
1438
1439 mode_button = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ShowScale" );
1440 g_assert ( mode_button );
1441 gtk_check_menu_item_set_active ( GTK_CHECK_MENU_ITEM(mode_button),vik_viewport_get_draw_scale(vw->viking_vvp) );
1442
1443 mode_button = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ShowCenterMark" );
1444 g_assert ( mode_button );
1445 gtk_check_menu_item_set_active ( GTK_CHECK_MENU_ITEM(mode_button),vik_viewport_get_draw_centermark(vw->viking_vvp) );
50a14534 1446 }
13505702
GB
1447 default:
1448 update_recently_used_document(filename);
1449 draw_update ( vw );
50a14534
EB
1450 }
1451}
e4afc73a 1452static void load_file ( GtkAction *a, VikWindow *vw )
50a14534 1453{
6e4a49aa
MA
1454 GSList *files = NULL;
1455 GSList *cur_file = NULL;
e4afc73a
EB
1456 gboolean newwindow;
1457 if (!strcmp(gtk_action_get_name(a), "Open")) {
1458 newwindow = TRUE;
1459 }
1460 else if (!strcmp(gtk_action_get_name(a), "Append")) {
1461 newwindow = FALSE;
1462 }
1463 else {
8dc8da82 1464 g_critical("Houston, we've had a problem.");
e4afc73a
EB
1465 return;
1466 }
1467
50a14534
EB
1468 if ( ! vw->open_dia )
1469 {
6e4a49aa
MA
1470 vw->open_dia = gtk_file_chooser_dialog_new (_("Please select a GPS data file to open. "),
1471 GTK_WINDOW(vw),
1472 GTK_FILE_CHOOSER_ACTION_OPEN,
1473 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1474 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
1475 NULL);
1476 gtk_file_chooser_set_select_multiple ( GTK_FILE_CHOOSER(vw->open_dia), TRUE );
50a14534
EB
1477 gtk_window_set_transient_for ( GTK_WINDOW(vw->open_dia), GTK_WINDOW(vw) );
1478 gtk_window_set_destroy_with_parent ( GTK_WINDOW(vw->open_dia), TRUE );
1479 }
6e4a49aa 1480 if ( gtk_dialog_run ( GTK_DIALOG(vw->open_dia) ) == GTK_RESPONSE_ACCEPT )
50a14534
EB
1481 {
1482 gtk_widget_hide ( vw->open_dia );
a5fd2196 1483#ifdef VIKING_PROMPT_IF_MODIFIED
50a14534 1484 if ( (vw->modified || vw->filename) && newwindow )
a5fd2196
QT
1485#else
1486 if ( vw->filename && newwindow )
1487#endif
6e4a49aa 1488 g_signal_emit ( G_OBJECT(vw), window_signals[VW_OPENWINDOW_SIGNAL], 0, gtk_file_chooser_get_filenames (GTK_FILE_CHOOSER(vw->open_dia) ) );
50a14534 1489 else {
6e4a49aa
MA
1490 files = gtk_file_chooser_get_filenames (GTK_FILE_CHOOSER(vw->open_dia) );
1491 gboolean change_fn = newwindow && (g_slist_length(files)==1); /* only change fn if one file */
1492
1493 cur_file = files;
1494 while ( cur_file ) {
1495 gchar *file_name = cur_file->data;
1496 vik_window_open_file ( vw, file_name, change_fn );
1497 g_free (file_name);
1498 cur_file = g_slist_next (cur_file);
50a14534 1499 }
6e4a49aa 1500 g_slist_free (files);
50a14534
EB
1501 }
1502 }
1503 else
1504 gtk_widget_hide ( vw->open_dia );
1505}
1506
e4afc73a 1507static gboolean save_file_as ( GtkAction *a, VikWindow *vw )
50a14534
EB
1508{
1509 gboolean rv = FALSE;
1510 const gchar *fn;
1511 if ( ! vw->save_dia )
1512 {
6e4a49aa
MA
1513 vw->save_dia = gtk_file_chooser_dialog_new (_("Save as Viking File."),
1514 GTK_WINDOW(vw),
1515 GTK_FILE_CHOOSER_ACTION_SAVE,
1516 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1517 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
1518 NULL);
50a14534
EB
1519 gtk_window_set_transient_for ( GTK_WINDOW(vw->save_dia), GTK_WINDOW(vw) );
1520 gtk_window_set_destroy_with_parent ( GTK_WINDOW(vw->save_dia), TRUE );
1521 }
1522
6e4a49aa 1523 while ( gtk_dialog_run ( GTK_DIALOG(vw->save_dia) ) == GTK_RESPONSE_ACCEPT )
50a14534 1524 {
6e4a49aa 1525 fn = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER(vw->save_dia) );
45acf79e 1526 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 ) ) )
50a14534
EB
1527 {
1528 window_set_filename ( vw, fn );
1529 rv = window_save ( vw );
1530 vw->modified = FALSE;
1531 break;
1532 }
1533 }
1534 gtk_widget_hide ( vw->save_dia );
1535 return rv;
1536}
1537
1538static gboolean window_save ( VikWindow *vw )
1539{
1540 if ( a_file_save ( vik_layers_panel_get_top_layer ( vw->viking_vlp ), vw->viking_vvp, vw->filename ) )
13505702
GB
1541 {
1542 update_recently_used_document ( vw->filename );
50a14534 1543 return TRUE;
13505702 1544 }
50a14534
EB
1545 else
1546 {
4c77d5e0 1547 a_dialog_error_msg ( GTK_WINDOW(vw), _("The filename you requested could not be opened for writing.") );
50a14534
EB
1548 return FALSE;
1549 }
1550}
1551
e4afc73a 1552static gboolean save_file ( GtkAction *a, VikWindow *vw )
50a14534
EB
1553{
1554 if ( ! vw->filename )
e4afc73a 1555 return save_file_as ( NULL, vw );
50a14534
EB
1556 else
1557 {
1558 vw->modified = FALSE;
1559 return window_save ( vw );
1560 }
1561}
1562
1d1bc3c1
EB
1563static void acquire_from_gps ( GtkAction *a, VikWindow *vw )
1564{
7b3479e3
EB
1565 a_acquire(vw, vw->viking_vlp, vw->viking_vvp, &vik_datasource_gps_interface );
1566}
1567
1568static void acquire_from_google ( GtkAction *a, VikWindow *vw )
1569{
1570 a_acquire(vw, vw->viking_vlp, vw->viking_vvp, &vik_datasource_google_interface );
1d1bc3c1
EB
1571}
1572
1ef9e637 1573#ifdef VIK_CONFIG_GEOCACHES
3333c069
EB
1574static void acquire_from_gc ( GtkAction *a, VikWindow *vw )
1575{
1576 a_acquire(vw, vw->viking_vlp, vw->viking_vvp, &vik_datasource_gc_interface );
1577}
1ef9e637 1578#endif
3333c069 1579
369126f3
QT
1580static void goto_address( GtkAction *a, VikWindow *vw)
1581{
34e71b99 1582 a_vik_goto(vw, vw->viking_vlp, vw->viking_vvp);
369126f3
QT
1583}
1584
7c259702
JJ
1585static void mapcache_flush_cb ( GtkAction *a, VikWindow *vw )
1586{
1587 a_mapcache_flush();
1588}
1589
17a1f8f9
EB
1590static void preferences_cb ( GtkAction *a, VikWindow *vw )
1591{
1592 a_preferences_show_window ( GTK_WINDOW(vw) );
1593}
1594
e4afc73a 1595static void clear_cb ( GtkAction *a, VikWindow *vw )
50a14534
EB
1596{
1597 vik_layers_panel_clear ( vw->viking_vlp );
1598 window_set_filename ( vw, NULL );
1599 draw_update ( vw );
1600}
1601
e4afc73a 1602static void window_close ( GtkAction *a, VikWindow *vw )
50a14534
EB
1603{
1604 if ( ! delete_event ( vw ) )
1605 gtk_widget_destroy ( GTK_WIDGET(vw) );
1606}
1607
2bf7cadd
QT
1608static gboolean save_file_and_exit ( GtkAction *a, VikWindow *vw )
1609{
7bb60307 1610 if (save_file( NULL, vw)) {
2bf7cadd 1611 window_close( NULL, vw);
7bb60307
QT
1612 return(TRUE);
1613 }
2bf7cadd
QT
1614 else
1615 return(FALSE);
1616}
1617
e4afc73a 1618static void zoom_to_cb ( GtkAction *a, VikWindow *vw )
50a14534
EB
1619{
1620 gdouble xmpp = vik_viewport_get_xmpp ( vw->viking_vvp ), ympp = vik_viewport_get_ympp ( vw->viking_vvp );
1621 if ( a_dialog_custom_zoom ( GTK_WINDOW(vw), &xmpp, &ympp ) )
1622 {
1623 vik_viewport_set_xmpp ( vw->viking_vvp, xmpp );
1624 vik_viewport_set_ympp ( vw->viking_vvp, ympp );
1625 draw_update ( vw );
1626 }
1627}
1628
1629static void save_image_file ( VikWindow *vw, const gchar *fn, guint w, guint h, gdouble zoom, gboolean save_as_png )
1630{
1631 /* more efficient way: stuff draws directly to pixbuf (fork viewport) */
1632 GdkPixbuf *pixbuf_to_save;
1633 gdouble old_xmpp, old_ympp;
1634 GError *error = NULL;
1635
1636 /* backup old zoom & set new */
1637 old_xmpp = vik_viewport_get_xmpp ( vw->viking_vvp );
1638 old_ympp = vik_viewport_get_ympp ( vw->viking_vvp );
1639 vik_viewport_set_zoom ( vw->viking_vvp, zoom );
1640
1641 /* reset width and height: */
1642 vik_viewport_configure_manually ( vw->viking_vvp, w, h );
1643
1644 /* draw all layers */
1645 draw_redraw ( vw );
1646
1647 /* save buffer as file. */
1648 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);
1649 gdk_pixbuf_save ( pixbuf_to_save, fn, save_as_png ? "png" : "jpeg", &error, NULL );
1650 if (error)
1651 {
7742da66 1652 g_warning("Unable to write to file %s: %s", fn, error->message );
50a14534
EB
1653 g_error_free (error);
1654 }
1655 g_object_unref ( G_OBJECT(pixbuf_to_save) );
1656
1657 /* pretend like nothing happened ;) */
1658 vik_viewport_set_xmpp ( vw->viking_vvp, old_xmpp );
1659 vik_viewport_set_ympp ( vw->viking_vvp, old_ympp );
1660 vik_viewport_configure ( vw->viking_vvp );
1661 draw_update ( vw );
1662}
1663
1664static 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 )
1665{
1666 gulong size = sizeof(gchar) * (strlen(fn) + 15);
1667 gchar *name_of_file = g_malloc ( size );
1668 guint x = 1, y = 1;
1669 struct UTM utm_orig, utm;
1670
1671 /* *** copied from above *** */
1672 GdkPixbuf *pixbuf_to_save;
1673 gdouble old_xmpp, old_ympp;
1674 GError *error = NULL;
1675
1676 /* backup old zoom & set new */
1677 old_xmpp = vik_viewport_get_xmpp ( vw->viking_vvp );
1678 old_ympp = vik_viewport_get_ympp ( vw->viking_vvp );
1679 vik_viewport_set_zoom ( vw->viking_vvp, zoom );
1680
1681 /* reset width and height: do this only once for all images (same size) */
1682 vik_viewport_configure_manually ( vw->viking_vvp, w, h );
1683 /* *** end copy from above *** */
1684
1685 g_assert ( vik_viewport_get_coord_mode ( vw->viking_vvp ) == VIK_COORD_UTM );
1686
f83131b9 1687 g_mkdir(fn,0777);
50a14534
EB
1688
1689 utm_orig = *((const struct UTM *)vik_viewport_get_center ( vw->viking_vvp ));
1690
1691 for ( y = 1; y <= tiles_h; y++ )
1692 {
1693 for ( x = 1; x <= tiles_w; x++ )
1694 {
3d9454e6 1695 g_snprintf ( name_of_file, size, "%s%cy%d-x%d.%s", fn, G_DIR_SEPARATOR, y, x, save_as_png ? "png" : "jpg" );
50a14534
EB
1696 utm = utm_orig;
1697 if ( tiles_w & 0x1 )
1698 utm.easting += ((gdouble)x - ceil(((gdouble)tiles_w)/2)) * (w*zoom);
1699 else
1700 utm.easting += ((gdouble)x - (((gdouble)tiles_w)+1)/2) * (w*zoom);
1701 if ( tiles_h & 0x1 ) /* odd */
1702 utm.northing -= ((gdouble)y - ceil(((gdouble)tiles_h)/2)) * (h*zoom);
1703 else /* even */
1704 utm.northing -= ((gdouble)y - (((gdouble)tiles_h)+1)/2) * (h*zoom);
1705
1706 /* move to correct place. */
1707 vik_viewport_set_center_utm ( vw->viking_vvp, &utm );
1708
1709 draw_redraw ( vw );
1710
1711 /* save buffer as file. */
1712 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);
1713 gdk_pixbuf_save ( pixbuf_to_save, name_of_file, save_as_png ? "png" : "jpeg", &error, NULL );
1714 if (error)
1715 {
7742da66 1716 g_warning("Unable to write to file %s: %s", name_of_file, error->message );
50a14534
EB
1717 g_error_free (error);
1718 }
1719
1720 g_object_unref ( G_OBJECT(pixbuf_to_save) );
1721 }
1722 }
1723
1724 vik_viewport_set_center_utm ( vw->viking_vvp, &utm_orig );
1725 vik_viewport_set_xmpp ( vw->viking_vvp, old_xmpp );
1726 vik_viewport_set_ympp ( vw->viking_vvp, old_ympp );
1727 vik_viewport_configure ( vw->viking_vvp );
1728 draw_update ( vw );
1729
1730 g_free ( name_of_file );
1731}
1732
1733static void draw_to_image_file_current_window_cb(GtkWidget* widget,GdkEventButton *event,gpointer *pass_along)
1734{
1735 VikWindow *vw = VIK_WINDOW(pass_along[0]);
1736 GtkSpinButton *width_spin = GTK_SPIN_BUTTON(pass_along[1]), *height_spin = GTK_SPIN_BUTTON(pass_along[2]);
1737 GtkSpinButton *zoom_spin = GTK_SPIN_BUTTON(pass_along[3]);
1738 gdouble width_min, width_max, height_min, height_max;
1739 gint width, height;
1740
1741 gtk_spin_button_get_range ( width_spin, &width_min, &width_max );
1742 gtk_spin_button_get_range ( height_spin, &height_min, &height_max );
1743
1744 /* TODO: support for xzoom and yzoom values */
1745 width = vik_viewport_get_width ( vw->viking_vvp ) * vik_viewport_get_xmpp ( vw->viking_vvp ) / gtk_spin_button_get_value ( zoom_spin );
1746 height = vik_viewport_get_height ( vw->viking_vvp ) * vik_viewport_get_xmpp ( vw->viking_vvp ) / gtk_spin_button_get_value ( zoom_spin );
1747
1748 if ( width > width_max || width < width_min || height > height_max || height < height_min )
4c77d5e0 1749 a_dialog_info_msg ( GTK_WINDOW(vw), _("Viewable region outside allowable pixel size bounds for image. Clipping width/height values.") );
50a14534
EB
1750
1751 gtk_spin_button_set_value ( width_spin, width );
1752 gtk_spin_button_set_value ( height_spin, height );
1753}
1754
1755static void draw_to_image_file_total_area_cb (GtkSpinButton *spinbutton, gpointer *pass_along)
1756{
1757 GtkSpinButton *width_spin = GTK_SPIN_BUTTON(pass_along[1]), *height_spin = GTK_SPIN_BUTTON(pass_along[2]);
1758 GtkSpinButton *zoom_spin = GTK_SPIN_BUTTON(pass_along[3]);
1759 gchar *label_text;
1760 gdouble w, h;
1761 w = gtk_spin_button_get_value(width_spin) * gtk_spin_button_get_value(zoom_spin);
1762 h = gtk_spin_button_get_value(height_spin) * gtk_spin_button_get_value(zoom_spin);
1763 if (pass_along[4]) /* save many images; find TOTAL area covered */
1764 {
1765 w *= gtk_spin_button_get_value(GTK_SPIN_BUTTON(pass_along[4]));
1766 h *= gtk_spin_button_get_value(GTK_SPIN_BUTTON(pass_along[5]));
1767 }
4c77d5e0 1768 label_text = g_strdup_printf ( _("Total area: %ldm x %ldm (%.3f sq. km)"), (glong)w, (glong)h, (w*h/1000000));
50a14534
EB
1769 gtk_label_set_text(GTK_LABEL(pass_along[6]), label_text);
1770 g_free ( label_text );
1771}
1772
1773static void draw_to_image_file ( VikWindow *vw, const gchar *fn, gboolean one_image_only )
1774{
1775 /* todo: default for answers inside VikWindow or static (thruout instance) */
4c77d5e0 1776 GtkWidget *dialog = gtk_dialog_new_with_buttons ( _("Save to Image File"), GTK_WINDOW(vw),
50a14534
EB
1777 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
1778 GTK_STOCK_CANCEL,
1779 GTK_RESPONSE_REJECT,
1780 GTK_STOCK_OK,
1781 GTK_RESPONSE_ACCEPT,
10888930 1782 NULL );
50a14534
EB
1783 GtkWidget *width_label, *width_spin, *height_label, *height_spin;
1784 GtkWidget *png_radio, *jpeg_radio;
1785 GtkWidget *current_window_button;
1786 gpointer current_window_pass_along[7];
1787 GtkWidget *zoom_label, *zoom_spin;
1788 GtkWidget *total_size_label;
1789
1790 /* only used if (!one_image_only) */
886031df 1791 GtkWidget *tiles_width_spin = NULL, *tiles_height_spin = NULL;
50a14534
EB
1792
1793
4c77d5e0 1794 width_label = gtk_label_new ( _("Width (pixels):") );
50a14534 1795 width_spin = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new ( vw->draw_image_width, 10, 5000, 10, 100, 0 )), 10, 0 );
4c77d5e0 1796 height_label = gtk_label_new ( _("Height (pixels):") );
50a14534
EB
1797 height_spin = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new ( vw->draw_image_height, 10, 5000, 10, 100, 0 )), 10, 0 );
1798
4c77d5e0 1799 zoom_label = gtk_label_new ( _("Zoom (meters per pixel):") );
50a14534
EB
1800 /* TODO: separate xzoom and yzoom factors */
1801 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);
1802
1803 total_size_label = gtk_label_new ( NULL );
1804
4c77d5e0 1805 current_window_button = gtk_button_new_with_label ( _("Area in current viewable window") );
50a14534
EB
1806 current_window_pass_along [0] = vw;
1807 current_window_pass_along [1] = width_spin;
1808 current_window_pass_along [2] = height_spin;
1809 current_window_pass_along [3] = zoom_spin;
1810 current_window_pass_along [4] = NULL; /* used for one_image_only != 1 */
1811 current_window_pass_along [5] = NULL;
1812 current_window_pass_along [6] = total_size_label;
1813 g_signal_connect ( G_OBJECT(current_window_button), "button_press_event", G_CALLBACK(draw_to_image_file_current_window_cb), current_window_pass_along );
1814
4c77d5e0
GB
1815 png_radio = gtk_radio_button_new_with_label ( NULL, _("Save as PNG") );
1816 jpeg_radio = gtk_radio_button_new_with_label_from_widget ( GTK_RADIO_BUTTON(png_radio), _("Save as JPEG") );
50a14534
EB
1817
1818 if ( ! vw->draw_image_save_as_png )
1819 gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON(jpeg_radio), TRUE );
1820
1821 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), width_label, FALSE, FALSE, 0);
1822 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), width_spin, FALSE, FALSE, 0);
1823 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), height_label, FALSE, FALSE, 0);
1824 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), height_spin, FALSE, FALSE, 0);
1825 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), current_window_button, FALSE, FALSE, 0);
1826 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), png_radio, FALSE, FALSE, 0);
1827 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), jpeg_radio, FALSE, FALSE, 0);
1828 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), zoom_label, FALSE, FALSE, 0);
1829 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), zoom_spin, FALSE, FALSE, 0);
1830
1831 if ( ! one_image_only )
1832 {
1833 GtkWidget *tiles_width_label, *tiles_height_label;
1834
1835
4c77d5e0 1836 tiles_width_label = gtk_label_new ( _("East-west image tiles:") );
50a14534 1837 tiles_width_spin = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new ( 5, 1, 10, 1, 100, 0 )), 1, 0 );
4c77d5e0 1838 tiles_height_label = gtk_label_new ( _("North-south image tiles:") );
50a14534
EB
1839 tiles_height_spin = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new ( 5, 1, 10, 1, 100, 0 )), 1, 0 );
1840 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), tiles_width_label, FALSE, FALSE, 0);
1841 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), tiles_width_spin, FALSE, FALSE, 0);
1842 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), tiles_height_label, FALSE, FALSE, 0);
1843 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), tiles_height_spin, FALSE, FALSE, 0);
1844
1845 current_window_pass_along [4] = tiles_width_spin;
1846 current_window_pass_along [5] = tiles_height_spin;
1847 g_signal_connect ( G_OBJECT(tiles_width_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1848 g_signal_connect ( G_OBJECT(tiles_height_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1849 }
1850 gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), total_size_label, FALSE, FALSE, 0);
1851 g_signal_connect ( G_OBJECT(width_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1852 g_signal_connect ( G_OBJECT(height_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1853 g_signal_connect ( G_OBJECT(zoom_spin), "value-changed", G_CALLBACK(draw_to_image_file_total_area_cb), current_window_pass_along );
1854
1855 draw_to_image_file_total_area_cb ( NULL, current_window_pass_along ); /* set correct size info now */
1856
1857 gtk_widget_show_all ( GTK_DIALOG(dialog)->vbox );
1858
1859 if ( gtk_dialog_run ( GTK_DIALOG(dialog) ) == GTK_RESPONSE_ACCEPT )
1860 {
1861 gtk_widget_hide ( GTK_WIDGET(dialog) );
1862 if ( one_image_only )
1863 save_image_file ( vw, fn,
1864 vw->draw_image_width = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(width_spin) ),
1865 vw->draw_image_height = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(height_spin) ),
1866 gtk_spin_button_get_value ( GTK_SPIN_BUTTON(zoom_spin) ), /* do not save this value, default is current zoom */
1867 vw->draw_image_save_as_png = gtk_toggle_button_get_active ( GTK_TOGGLE_BUTTON(png_radio) ) );
1868 else {
1869 if ( vik_viewport_get_coord_mode(vw->viking_vvp) == VIK_COORD_UTM )
1870 save_image_dir ( vw, fn,
1871 vw->draw_image_width = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(width_spin) ),
1872 vw->draw_image_height = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(height_spin) ),
1873 gtk_spin_button_get_value ( GTK_SPIN_BUTTON(zoom_spin) ), /* do not save this value, default is current zoom */
1874 vw->draw_image_save_as_png = gtk_toggle_button_get_active ( GTK_TOGGLE_BUTTON(png_radio) ),
1875 gtk_spin_button_get_value ( GTK_SPIN_BUTTON(tiles_width_spin) ),
1876 gtk_spin_button_get_value ( GTK_SPIN_BUTTON(tiles_height_spin) ) );
1877 else
4c77d5e0 1878 a_dialog_error_msg ( GTK_WINDOW(vw), _("You must be in UTM mode to use this feature") );
50a14534
EB
1879 }
1880 }
1881 gtk_widget_destroy ( GTK_WIDGET(dialog) );
1882}
1883
1884
e4afc73a 1885static void draw_to_image_file_cb ( GtkAction *a, VikWindow *vw )
50a14534 1886{
50a14534 1887 const gchar *fn;
f2a1ca71 1888 if (!vw->save_img_dia) {
6e4a49aa
MA
1889 vw->save_img_dia = gtk_file_chooser_dialog_new (_("Save Image"),
1890 GTK_WINDOW(vw),
1891 GTK_FILE_CHOOSER_ACTION_SAVE,
1892 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1893 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
1894 NULL);
f2a1ca71
QT
1895 gtk_window_set_transient_for ( GTK_WINDOW(vw->save_img_dia), GTK_WINDOW(vw) );
1896 gtk_window_set_destroy_with_parent ( GTK_WINDOW(vw->save_img_dia), TRUE );
1897 }
50a14534 1898
6e4a49aa 1899 while ( gtk_dialog_run ( GTK_DIALOG(vw->save_img_dia) ) == GTK_RESPONSE_ACCEPT )
50a14534 1900 {
6e4a49aa 1901 fn = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER(vw->save_img_dia) );
45acf79e 1902 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 ) ) )
50a14534 1903 {
50a14534
EB
1904 draw_to_image_file ( vw, fn, TRUE );
1905 break;
1906 }
1907 }
f2a1ca71 1908 gtk_widget_hide ( vw->save_img_dia );
50a14534
EB
1909}
1910
e4afc73a 1911static void draw_to_image_dir_cb ( GtkAction *a, VikWindow *vw )
50a14534 1912{
6e4a49aa
MA
1913 gchar *fn = NULL;
1914
f2a1ca71 1915 if (!vw->save_img_dir_dia) {
6e4a49aa
MA
1916 vw->save_img_dir_dia = gtk_file_chooser_dialog_new (_("Choose a directory to hold images"),
1917 GTK_WINDOW(vw),
1918 GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
1919 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1920 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1921 NULL);
f2a1ca71
QT
1922 gtk_window_set_transient_for ( GTK_WINDOW(vw->save_img_dir_dia), GTK_WINDOW(vw) );
1923 gtk_window_set_destroy_with_parent ( GTK_WINDOW(vw->save_img_dir_dia), TRUE );
1924 }
6e4a49aa
MA
1925
1926 while ( gtk_dialog_run ( GTK_DIALOG(vw->save_img_dir_dia) ) == GTK_RESPONSE_ACCEPT )
50a14534 1927 {
6e4a49aa
MA
1928 fn = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER(vw->save_img_dir_dia) );
1929 if ( fn )
50a14534 1930 {
50a14534 1931 draw_to_image_file ( vw, fn, FALSE );
6e4a49aa
MA
1932 g_free(fn);
1933 fn = NULL;
50a14534
EB
1934 break;
1935 }
1936 }
f2a1ca71 1937 gtk_widget_hide ( vw->save_img_dir_dia );
50a14534
EB
1938}
1939
9a995996 1940#if GTK_CHECK_VERSION(2,10,0)
42f34743
QT
1941static void print_cb ( GtkAction *a, VikWindow *vw )
1942{
1943 a_print(vw, vw->viking_vvp);
1944}
9a995996 1945#endif
42f34743 1946
50a14534 1947/* really a misnomer: changes coord mode (actual coordinates) AND/OR draw mode (viewport only) */
e4afc73a 1948static void window_change_coord_mode_cb ( GtkAction *old_a, GtkAction *a, VikWindow *vw )
50a14534 1949{
e4afc73a
EB
1950 VikViewportDrawMode drawmode;
1951 if (!strcmp(gtk_action_get_name(a), "ModeUTM")) {
1952 drawmode = VIK_VIEWPORT_DRAWMODE_UTM;
1953 }
1954 else if (!strcmp(gtk_action_get_name(a), "ModeExpedia")) {
1955 drawmode = VIK_VIEWPORT_DRAWMODE_EXPEDIA;
1956 }
e4afc73a
EB
1957 else if (!strcmp(gtk_action_get_name(a), "ModeMercator")) {
1958 drawmode = VIK_VIEWPORT_DRAWMODE_MERCATOR;
1959 }
1960 else {
8dc8da82 1961 g_critical("Houston, we've had a problem.");
e4afc73a
EB
1962 return;
1963 }
1964
50a14534
EB
1965 if ( !vw->only_updating_coord_mode_ui )
1966 {
1967 VikViewportDrawMode olddrawmode = vik_viewport_get_drawmode ( vw->viking_vvp );
1968 if ( olddrawmode != drawmode )
1969 {
1970 /* this takes care of coord mode too */
1971 vik_viewport_set_drawmode ( vw->viking_vvp, drawmode );
1972 if ( drawmode == VIK_VIEWPORT_DRAWMODE_UTM ) {
1973 vik_layers_panel_change_coord_mode ( vw->viking_vlp, VIK_COORD_UTM );
1974 } else if ( olddrawmode == VIK_VIEWPORT_DRAWMODE_UTM ) {
1975 vik_layers_panel_change_coord_mode ( vw->viking_vlp, VIK_COORD_LATLON );
1976 }
1977 draw_update ( vw );
1978 }
1979 }
1980}
1981
35c7c0ba
EB
1982static void set_draw_scale ( GtkAction *a, VikWindow *vw )
1983{
1657065a
QT
1984 GtkWidget *check_box = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ShowScale" );
1985 g_assert(check_box);
1986 gboolean state = gtk_check_menu_item_get_active ( GTK_CHECK_MENU_ITEM(check_box));
1987 vik_viewport_set_draw_scale ( vw->viking_vvp, state );
35c7c0ba
EB
1988 draw_update ( vw );
1989}
1990
c933487f
QT
1991static void set_draw_centermark ( GtkAction *a, VikWindow *vw )
1992{
1657065a
QT
1993 GtkWidget *check_box = gtk_ui_manager_get_widget ( vw->uim, "/ui/MainMenu/View/ShowCenterMark" );
1994 g_assert(check_box);
1995 gboolean state = gtk_check_menu_item_get_active ( GTK_CHECK_MENU_ITEM(check_box));
1996 vik_viewport_set_draw_centermark ( vw->viking_vvp, state );
c933487f
QT
1997 draw_update ( vw );
1998}
1999
e4afc73a 2000static void set_bg_color ( GtkAction *a, VikWindow *vw )
50a14534 2001{
4c77d5e0 2002 GtkWidget *colorsd = gtk_color_selection_dialog_new ( _("Choose a background color") );
50a14534
EB
2003 GdkColor *color = vik_viewport_get_background_gdkcolor ( vw->viking_vvp );
2004 gtk_color_selection_set_previous_color ( GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(colorsd)->colorsel), color );
2005 gtk_color_selection_set_current_color ( GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(colorsd)->colorsel), color );
2006 if ( gtk_dialog_run ( GTK_DIALOG(colorsd) ) == GTK_RESPONSE_OK )
2007 {
2008 gtk_color_selection_get_current_color ( GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(colorsd)->colorsel), color );
2009 vik_viewport_set_background_gdkcolor ( vw->viking_vvp, color );
2010 draw_update ( vw );
2011 }
2012 g_free ( color );
2013 gtk_widget_destroy ( colorsd );
2014}
2015
941aa6e9
AF
2016
2017
2018/***********************************************************************************************
2019 ** GUI Creation
2020 ***********************************************************************************************/
2021
e4afc73a 2022static GtkActionEntry entries[] = {
5515e2d3
JJ
2023 { "File", NULL, N_("_File"), 0, 0, 0 },
2024 { "Edit", NULL, N_("_Edit"), 0, 0, 0 },
2025 { "View", NULL, N_("_View"), 0, 0, 0 },
2026 { "SetZoom", NULL, N_("_Zoom"), 0, 0, 0 },
2027 { "SetPan", NULL, N_("_Pan"), 0, 0, 0 },
2028 { "Layers", NULL, N_("_Layers"), 0, 0, 0 },
2029 { "Tools", NULL, N_("_Tools"), 0, 0, 0 },
92806042 2030 { "Exttools", NULL, N_("_Webtools"), 0, 0, 0 },
5515e2d3
JJ
2031 { "Help", NULL, N_("_Help"), 0, 0, 0 },
2032
2033 { "New", GTK_STOCK_NEW, N_("_New"), "<control>N", N_("New file"), (GCallback)newwindow_cb },
2034 { "Open", GTK_STOCK_OPEN, N_("_Open"), "<control>O", N_("Open a file"), (GCallback)load_file },
13505702 2035 { "OpenRecentFile", NULL, N_("Open _Recent file"), NULL, NULL, (GCallback)NULL },
5515e2d3
JJ
2036 { "Append", GTK_STOCK_ADD, N_("A_ppend File"), NULL, N_("Append data from a different file"), (GCallback)load_file },
2037 { "Acquire", NULL, N_("A_cquire"), 0, 0, 0 },
2038 { "AcquireGPS", NULL, N_("From _GPS"), NULL, N_("Transfer data from a GPS device"), (GCallback)acquire_from_gps },
2039 { "AcquireGoogle", NULL, N_("Google _Directions"), NULL, N_("Get driving directions from Google"), (GCallback)acquire_from_google },
1ef9e637 2040#ifdef VIK_CONFIG_GEOCACHES
5515e2d3 2041 { "AcquireGC", NULL, N_("Geo_caches"), NULL, N_("Get Geocaches from geocaching.com"), (GCallback)acquire_from_gc },
1ef9e637 2042#endif
5515e2d3
JJ
2043 { "Save", GTK_STOCK_SAVE, N_("_Save"), "<control>S", N_("Save the file"), (GCallback)save_file },
2044 { "SaveAs", GTK_STOCK_SAVE_AS, N_("Save _As"), NULL, N_("Save the file under different name"), (GCallback)save_file_as },
2045 { "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 },
2046 { "GenImgDir", GTK_STOCK_DND_MULTIPLE, N_("Generate _Directory of Images"), NULL, N_("FIXME:IMGDIR"), (GCallback)draw_to_image_dir_cb },
9a995996
EB
2047
2048#if GTK_CHECK_VERSION(2,10,0)
5515e2d3 2049 { "Print", GTK_STOCK_PRINT, N_("_Print..."), NULL, N_("Print maps"), (GCallback)print_cb },
9a995996
EB
2050#endif
2051
5515e2d3
JJ
2052 { "Exit", GTK_STOCK_QUIT, N_("E_xit"), "<control>W", N_("Exit the program"), (GCallback)window_close },
2053 { "SaveExit", GTK_STOCK_QUIT, N_("Save and Exit"), NULL, N_("Save and Exit the program"), (GCallback)save_file_and_exit },
2054
150618fe
GB
2055 { "GotoSearch", GTK_STOCK_JUMP_TO, N_("Go To location"), NULL, N_("Go to address/place using text search"), (GCallback)goto_address },
2056 { "GotoLL", GTK_STOCK_JUMP_TO, N_("_Go to Lat\\/Lon..."), NULL, N_("Go to arbitrary lat\\/lon coordinate"), (GCallback)draw_goto_cb },
2057 { "GotoUTM", GTK_STOCK_JUMP_TO, N_("Go to UTM..."), NULL, N_("Go to arbitrary UTM coordinate"), (GCallback)draw_goto_cb },
5515e2d3
JJ
2058 { "SetBGColor",GTK_STOCK_SELECT_COLOR, N_("Set Background Color..."), NULL, NULL, (GCallback)set_bg_color },
2059 { "ZoomIn", GTK_STOCK_ZOOM_IN, N_("Zoom _In"), "<control>plus", NULL, (GCallback)draw_zoom_cb },
2060 { "ZoomOut", GTK_STOCK_ZOOM_OUT, N_("Zoom _Out"), "<control>minus", NULL, (GCallback)draw_zoom_cb },
7f9f736d 2061 { "ZoomTo", GTK_STOCK_ZOOM_FIT, N_("Zoom _To"), "<control>Z", NULL, (GCallback)zoom_to_cb },
5515e2d3
JJ
2062 { "Zoom0.25", NULL, N_("0.25"), NULL, NULL, (GCallback)draw_zoom_cb },
2063 { "Zoom0.5", NULL, N_("0.5"), NULL, NULL, (GCallback)draw_zoom_cb },
2064 { "Zoom1", NULL, N_("1"), NULL, NULL, (GCallback)draw_zoom_cb },
2065 { "Zoom2", NULL, N_("2"), NULL, NULL, (GCallback)draw_zoom_cb },
2066 { "Zoom4", NULL, N_("4"), NULL, NULL, (GCallback)draw_zoom_cb },
2067 { "Zoom8", NULL, N_("8"), NULL, NULL, (GCallback)draw_zoom_cb },
2068 { "Zoom16", NULL, N_("16"), NULL, NULL, (GCallback)draw_zoom_cb },
2069 { "Zoom32", NULL, N_("32"), NULL, NULL, (GCallback)draw_zoom_cb },
2070 { "Zoom64", NULL, N_("64"), NULL, NULL, (GCallback)draw_zoom_cb },
2071 { "Zoom128", NULL, N_("128"), NULL, NULL, (GCallback)draw_zoom_cb },
2072 { "PanNorth", NULL, N_("Pan North"), "<control>Up", NULL, (GCallback)draw_pan_cb },
2073 { "PanEast", NULL, N_("Pan East"), "<control>Right", NULL, (GCallback)draw_pan_cb },
2074 { "PanSouth", NULL, N_("Pan South"), "<control>Down", NULL, (GCallback)draw_pan_cb },
2075 { "PanWest", NULL, N_("Pan West"), "<control>Left", NULL, (GCallback)draw_pan_cb },
2076 { "BGJobs", GTK_STOCK_EXECUTE, N_("Background _Jobs"), NULL, NULL, (GCallback)a_background_show_window },
2077
2078 { "Cut", GTK_STOCK_CUT, N_("Cu_t"), NULL, NULL, (GCallback)menu_cut_layer_cb },
2079 { "Copy", GTK_STOCK_COPY, N_("_Copy"), NULL, NULL, (GCallback)menu_copy_layer_cb },
2080 { "Paste", GTK_STOCK_PASTE, N_("_Paste"), NULL, NULL, (GCallback)menu_paste_layer_cb },
2081 { "Delete", GTK_STOCK_DELETE, N_("_Delete"), NULL, NULL, (GCallback)menu_delete_layer_cb },
2082 { "DeleteAll", NULL, N_("Delete All"), NULL, NULL, (GCallback)clear_cb },
7c259702
JJ
2083 { "MapCacheFlush",NULL, N_("Flush Map cache"), NULL, NULL, (GCallback)mapcache_flush_cb },
2084 { "Preferences",GTK_STOCK_PREFERENCES, N_("_Preferences..."), NULL, NULL, (GCallback)preferences_cb },
5515e2d3
JJ
2085 { "Properties",GTK_STOCK_PROPERTIES, N_("_Properties"), NULL, NULL, (GCallback)menu_properties_cb },
2086
2087 { "About", GTK_STOCK_ABOUT, N_("_About"), NULL, NULL, (GCallback)help_about_cb },
e4afc73a
EB
2088};
2089
2090/* Radio items */
2091static GtkRadioActionEntry mode_entries[] = {
5515e2d3
JJ
2092 { "ModeUTM", NULL, N_("_UTM Mode"), "<control>u", NULL, 0 },
2093 { "ModeExpedia", NULL, N_("_Expedia Mode"), "<control>e", NULL, 1 },
562b91f8 2094 { "ModeMercator", NULL, N_("_Mercator Mode"), "<control>g", NULL, 4 }
50a14534
EB
2095};
2096
e4afc73a 2097static GtkRadioActionEntry tool_entries[] = {
576cbd17
GB
2098 { "Pan", "vik-icon-pan", N_("_Pan"), "<control><shift>P", N_("Pan Tool"), 0 },
2099 { "Zoom", "vik-icon-zoom", N_("_Zoom"), "<control><shift>Z", N_("Zoom Tool"), 1 },
2100 { "Ruler", "vik-icon-ruler", N_("_Ruler"), "<control><shift>R", N_("Ruler Tool"), 2 }
e4afc73a 2101};
50a14534 2102
35c7c0ba 2103static GtkToggleActionEntry toggle_entries[] = {
94807fab
GB
2104 { "ShowScale", NULL, N_("Show Scale"), NULL, N_("Show Scale"), (GCallback)set_draw_scale, TRUE },
2105 { "ShowCenterMark", NULL, N_("Show Center Mark"), NULL, N_("Show Center Mark"), (GCallback)set_draw_centermark, TRUE },
2106 { "FullScreen", GTK_STOCK_FULLSCREEN, N_("Full Screen"), "F11", N_("Activate full screen mode"), (GCallback)full_screen_cb, FALSE },
2107 { "ViewSidePanel", GTK_STOCK_INDEX, N_("Show Side Panel"), "F9", N_("Show Side Panel"), (GCallback)view_side_panel_cb, TRUE },
35c7c0ba
EB
2108};
2109
a527cfff 2110#include "menu.xml.h"
e4afc73a 2111static void window_create_ui( VikWindow *window )
50a14534 2112{
e4afc73a
EB
2113 GtkUIManager *uim;
2114 GtkActionGroup *action_group;
50a14534 2115 GtkAccelGroup *accel_group;
e4afc73a 2116 GError *error;
e4afc73a
EB
2117 guint i, j, mid;
2118 GtkIconFactory *icon_factory;
2119 GtkIconSet *icon_set;
e4afc73a
EB
2120 GtkRadioActionEntry *tools = NULL, *radio;
2121 guint ntools;
2122
2123 uim = gtk_ui_manager_new ();
2124 window->uim = uim;
2125
9593a4c9
EB
2126 toolbox_add_tool(window->vt, &ruler_tool, TOOL_LAYER_TYPE_NONE);
2127 toolbox_add_tool(window->vt, &zoom_tool, TOOL_LAYER_TYPE_NONE);
576cbd17 2128 toolbox_add_tool(window->vt, &pan_tool, TOOL_LAYER_TYPE_NONE);
941aa6e9 2129
e4afc73a 2130 error = NULL;
a527cfff 2131 if (!(mid = gtk_ui_manager_add_ui_from_string (uim, menu_xml, -1, &error))) {
e4afc73a
EB
2132 g_error_free (error);
2133 exit (1);
2134 }
2135
2136 action_group = gtk_action_group_new ("MenuActions");
5515e2d3 2137 gtk_action_group_set_translation_domain(action_group, PACKAGE_NAME);
e4afc73a 2138 gtk_action_group_add_actions (action_group, entries, G_N_ELEMENTS (entries), window);
35c7c0ba 2139 gtk_action_group_add_toggle_actions (action_group, toggle_entries, G_N_ELEMENTS (toggle_entries), window);
6a9ff0ee 2140 gtk_action_group_add_radio_actions (action_group, mode_entries, G_N_ELEMENTS (mode_entries), 4, (GCallback)window_change_coord_mode_cb, window);
e4afc73a
EB
2141
2142 icon_factory = gtk_icon_factory_new ();
ee36ac4f 2143 gtk_icon_factory_add_default (icon_factory);
e4afc73a
EB
2144
2145 register_vik_icons(icon_factory);
2146
2147 ntools = 0;
2148 for (i=0; i<G_N_ELEMENTS(tool_entries); i++) {
2149 tools = g_renew(GtkRadioActionEntry, tools, ntools+1);
2150 radio = &tools[ntools];
2151 ntools++;
2152 *radio = tool_entries[i];
2153 radio->value = ntools;
2154 }
2155
2156 for (i=0; i<VIK_LAYER_NUM_TYPES; i++) {
2157 GtkActionEntry action;
2158 gtk_ui_manager_add_ui(uim, mid, "/ui/MainMenu/Layers/",
2159 vik_layer_get_interface(i)->name,
2160 vik_layer_get_interface(i)->name,
2161 GTK_UI_MANAGER_MENUITEM, FALSE);
2162
2163 icon_set = gtk_icon_set_new_from_pixbuf (gdk_pixbuf_from_pixdata (vik_layer_get_interface(i)->icon, FALSE, NULL ));
2164 gtk_icon_factory_add (icon_factory, vik_layer_get_interface(i)->name, icon_set);
2165 gtk_icon_set_unref (icon_set);
2166
2167 action.name = vik_layer_get_interface(i)->name;
2168 action.stock_id = vik_layer_get_interface(i)->name;
4c77d5e0 2169 action.label = g_strdup_printf( _("New %s Layer"), vik_layer_get_interface(i)->name);
e4afc73a
EB
2170 action.accelerator = NULL;
2171 action.tooltip = NULL;
2172 action.callback = (GCallback)menu_addlayer_cb;
2173 gtk_action_group_add_actions(action_group, &action, 1, window);
2174
2175 if ( vik_layer_get_interface(i)->tools_count ) {
2176 gtk_ui_manager_add_ui(uim, mid, "/ui/MainMenu/Tools/", vik_layer_get_interface(i)->name, NULL, GTK_UI_MANAGER_SEPARATOR, FALSE);
2177 gtk_ui_manager_add_ui(uim, mid, "/ui/MainToolbar/ToolItems/", vik_layer_get_interface(i)->name, NULL, GTK_UI_MANAGER_SEPARATOR, FALSE);
2178 }
2179
2180 for ( j = 0; j < vik_layer_get_interface(i)->tools_count; j++ ) {
2181 tools = g_renew(GtkRadioActionEntry, tools, ntools+1);
2182 radio = &tools[ntools];
2183 ntools++;
2184
e4afc73a 2185 gtk_ui_manager_add_ui(uim, mid, "/ui/MainMenu/Tools",
4c77d5e0 2186 _(vik_layer_get_interface(i)->tools[j].name),
e4afc73a
EB
2187 vik_layer_get_interface(i)->tools[j].name,
2188 GTK_UI_MANAGER_MENUITEM, FALSE);
2189 gtk_ui_manager_add_ui(uim, mid, "/ui/MainToolbar/ToolItems",
4c77d5e0 2190 _(vik_layer_get_interface(i)->tools[j].name),
e4afc73a
EB
2191 vik_layer_get_interface(i)->tools[j].name,
2192 GTK_UI_MANAGER_TOOLITEM, FALSE);
2193
9593a4c9 2194 toolbox_add_tool(window->vt, &(vik_layer_get_interface(i)->tools[j]), i);
941aa6e9 2195
e4afc73a
EB
2196 radio->name = vik_layer_get_interface(i)->tools[j].name;
2197 radio->stock_id = vik_layer_get_interface(i)->tools[j].name,
4c77d5e0 2198 radio->label = _(vik_layer_get_interface(i)->tools[j].name);
e4afc73a 2199 radio->accelerator = NULL;
4c77d5e0 2200 radio->tooltip = _(vik_layer_get_interface(i)->tools[j].name);
e4afc73a
EB
2201 radio->value = ntools;
2202 }
2203 }
ee36ac4f 2204 g_object_unref (icon_factory);
50a14534 2205
e4afc73a
EB
2206 gtk_action_group_add_radio_actions(action_group, tools, ntools, 0, (GCallback)menu_tool_cb, window);
2207 g_free(tools);
50a14534 2208
e4afc73a 2209 gtk_ui_manager_insert_action_group (uim, action_group, 0);
50a14534 2210
79845167
QT
2211 for (i=0; i<VIK_LAYER_NUM_TYPES; i++) {
2212 for ( j = 0; j < vik_layer_get_interface(i)->tools_count; j++ ) {
2213 GtkAction *action = gtk_action_group_get_action(action_group,
2214 vik_layer_get_interface(i)->tools[j].name);
2215 g_object_set(action, "sensitive", FALSE, NULL);
2216 }
2217 }
2218 window->action_group = action_group;
2219
e4afc73a
EB
2220 accel_group = gtk_ui_manager_get_accel_group (uim);
2221 gtk_window_add_accel_group (GTK_WINDOW (window), accel_group);
2222 gtk_ui_manager_ensure_update (uim);
13505702
GB
2223
2224 setup_recent_files(window);
e4afc73a 2225}
50a14534 2226
50a14534 2227
941aa6e9 2228
e4afc73a 2229static struct {
4bd45256 2230 const GdkPixdata *data;
e4afc73a
EB
2231 gchar *stock_id;
2232} stock_icons[] = {
5bfafde9
GB
2233 { &begintr_18_pixbuf, "Begin Track" },
2234 { &iscissors_18_pixbuf, "Magic Scissors" },
2235 { &mover_22_pixbuf, "vik-icon-pan" },
2236 { &demdl_18_pixbuf, "DEM Download/Import" },
2237 { &showpic_18_pixbuf, "Show Picture" },
2238 { &addtr_18_pixbuf, "Create Track" },
2239 { &edtr_18_pixbuf, "Edit Trackpoint" },
2240 { &addwp_18_pixbuf, "Create Waypoint" },
2241 { &edwp_18_pixbuf, "Edit Waypoint" },
2242 { &zoom_18_pixbuf, "vik-icon-zoom" },
2243 { &ruler_18_pixbuf, "vik-icon-ruler" },
2244 { &geozoom_18_pixbuf, "Georef Zoom Tool" },
2245 { &geomove_18_pixbuf, "Georef Move Map" },
2246 { &mapdl_18_pixbuf, "Maps Download" },
2247 { &showpic_18_pixbuf, "Show Picture" },
e4afc73a
EB
2248};
2249
e4afc73a
EB
2250static gint n_stock_icons = G_N_ELEMENTS (stock_icons);
2251
2252static void
2253register_vik_icons (GtkIconFactory *icon_factory)
2254{
2255 GtkIconSet *icon_set;
e4afc73a 2256 gint i;
e4afc73a
EB
2257
2258 for (i = 0; i < n_stock_icons; i++) {
4bd45256
EB
2259 icon_set = gtk_icon_set_new_from_pixbuf (gdk_pixbuf_from_pixdata (
2260 stock_icons[i].data, FALSE, NULL ));
e4afc73a
EB
2261 gtk_icon_factory_add (icon_factory, stock_icons[i].stock_id, icon_set);
2262 gtk_icon_set_unref (icon_set);
2263 }
50a14534 2264}
bce3a7b0 2265