X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/a5c8699d09440bf7ceb9b3402b21aee555e45098..ae341715def192766a721bc47d8f3987a89bda10:/src/main.c?ds=inline diff --git a/src/main.c b/src/main.c index 7bb15dfd..af9ea4c5 100644 --- a/src/main.c +++ b/src/main.c @@ -24,19 +24,26 @@ #endif /* HAVE_CONFIG */ #include "viking.h" -#include "icons/viking_icon.png_h" +#include "icons/icons.h" #include "mapcache.h" #include "background.h" #include "dems.h" +#include "babel.h" #include "curl_download.h" #include "preferences.h" +#include "globals.h" +#include "vikmapslayer.h" #ifdef VIK_CONFIG_GEOCACHES void a_datasource_gc_init(); #endif +#ifdef HAVE_STDLIB_H #include +#endif +#ifdef HAVE_STRING_H #include +#endif #include #include @@ -45,13 +52,29 @@ void a_datasource_gc_init(); #define MAX_WINDOWS 1024 +/* FIXME LOCALEDIR must be configured by ./configure --localedir */ +/* But something does not work actually. */ +/* So, we need to redefine this variable on windows. */ +#ifdef WINDOWS +#undef LOCALEDIR +#define LOCALEDIR "locale" +#endif + static guint window_count = 0; static VikWindow *new_window (); -static void open_window ( VikWindow *vw, const gchar **files ); +static void open_window ( VikWindow *vw, GSList *files ); static void destroy( GtkWidget *widget, gpointer data ); +/* Callback to mute log message */ +static void mute_log(const gchar *log_domain, + GLogLevelFlags log_level, + const gchar *message, + gpointer user_data) +{ + /* Nothing to do, we just want to mute */ +} /* Another callback */ static void destroy( GtkWidget *widget, @@ -83,22 +106,33 @@ static VikWindow *new_window () return NULL; } -static void open_window ( VikWindow *vw, const gchar **files ) +static void open_window ( VikWindow *vw, GSList *files ) { - VikWindow *newvw = new_window(); - gboolean change_fn = (!files[1]); /* only change fn if one file */ - if ( newvw ) - while ( *files ) { - vik_window_open_file ( newvw, *(files++), change_fn ); + gboolean change_fn = (g_slist_length(files) == 1); /* only change fn if one file */ + GSList *cur_file = files; + while ( cur_file ) { + // Only open a new window if a viking file + gchar *file_name = cur_file->data; + if (vw != NULL && check_file_magic_vik ( file_name ) ) { + VikWindow *newvw = new_window(); + if (newvw) + vik_window_open_file ( newvw, file_name, change_fn ); + } + else { + vik_window_open_file ( vw, file_name, change_fn ); } + g_free (file_name); + cur_file = g_slist_next (cur_file); + } + g_slist_free (files); } /* Options */ -static gboolean version = FALSE; - static GOptionEntry entries[] = { - { "version", 'v', 0, G_OPTION_ARG_NONE, &version, "Show version", NULL }, + { "debug", 'd', 0, G_OPTION_ARG_NONE, &vik_debug, N_("Enable debug output"), NULL }, + { "verbose", 'V', 0, G_OPTION_ARG_NONE, &vik_verbose, N_("Enable verbose output"), NULL }, + { "version", 'v', 0, G_OPTION_ARG_NONE, &vik_version, N_("Show version"), NULL }, { NULL } }; @@ -138,30 +172,37 @@ int main( int argc, char *argv[] ) return EXIT_FAILURE; } - if (version) + if (vik_version) { - g_printf ("%s %s, Copyright (c) 2003-2007 Evan Battaglia\n", PACKAGE_NAME, PACKAGE_VERSION); + g_printf ("%s %s\nCopyright (c) 2003-2008 Evan Battaglia\nCopyright (c) 2008-2010 Viking's contributors\n", PACKAGE_NAME, PACKAGE_VERSION); return EXIT_SUCCESS; } + if (!vik_debug) + g_log_set_handler (NULL, G_LOG_LEVEL_DEBUG, mute_log, NULL); + + a_preferences_init (); + + a_vik_preferences_init (); + + a_download_init(); curl_download_init(); + a_babel_init (); + /* Init modules/plugins */ modules_init(); + maps_layer_init (); a_mapcache_init (); a_background_init (); - a_preferences_init (); #ifdef VIK_CONFIG_GEOCACHES a_datasource_gc_init(); #endif - vik_layer_cursors_init (); - vik_window_cursors_init (); - /* Set the icon */ - main_icon = gdk_pixbuf_from_pixdata(&viking_icon, FALSE, NULL); + main_icon = gdk_pixbuf_from_pixdata(&viking_pixbuf, FALSE, NULL); gtk_window_set_default_icon(main_icon); /* Create the first window */ @@ -178,11 +219,14 @@ int main( int argc, char *argv[] ) gtk_main (); gdk_threads_leave (); + a_babel_uninit (); + + a_background_uninit (); a_mapcache_uninit (); a_dems_uninit (); a_preferences_uninit (); - vik_layer_cursors_uninit (); - vik_window_cursors_uninit (); + + curl_download_uninit(); return 0; }