Experimental "begin track" tool
[viking/gosmore.git] / src / main.c
blob664ebc74ee7495373b21db6d65ac85b8464db26f
1 /*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
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.
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.
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
22 #include "viking.h"
23 #include "icons/viking_icon.png_h"
24 #include "mapcache.h"
25 #include "background.h"
26 #include "dems.h"
27 #include "curl_download.h"
29 #include <stdlib.h>
30 #include <string.h>
32 #include <glib/gprintf.h>
34 #include "modules.h"
36 #define MAX_WINDOWS 1024
38 static guint window_count = 0;
40 static VikWindow *new_window ();
41 static void open_window ( VikWindow *vw, const gchar **files );
42 static void destroy( GtkWidget *widget,
43 gpointer data );
46 /* Another callback */
47 static void destroy( GtkWidget *widget,
48 gpointer data )
50 if ( ! --window_count )
51 gtk_main_quit ();
54 static VikWindow *new_window ()
56 if ( window_count < MAX_WINDOWS )
58 VikWindow *vw = vik_window_new ();
60 g_signal_connect (G_OBJECT (vw), "destroy",
61 G_CALLBACK (destroy), NULL);
62 g_signal_connect (G_OBJECT (vw), "newwindow",
63 G_CALLBACK (new_window), NULL);
64 g_signal_connect (G_OBJECT (vw), "openwindow",
65 G_CALLBACK (open_window), NULL);
67 gtk_widget_show_all ( GTK_WIDGET(vw) );
69 window_count++;
71 return vw;
73 return NULL;
76 static void open_window ( VikWindow *vw, const gchar **files )
78 VikWindow *newvw = new_window();
79 gboolean change_fn = (!files[1]); /* only change fn if one file */
80 if ( newvw )
81 while ( *files ) {
82 vik_window_open_file ( newvw, *(files++), change_fn );
86 static GOptionEntry entries[] =
88 { NULL }
91 int main( int argc, char *argv[] )
93 VikWindow *first_window;
94 GdkPixbuf *main_icon;
95 gboolean dashdash_already = FALSE;
96 int i = 0;
97 GError *error = NULL;
98 gboolean gui_initialized;
100 g_thread_init ( NULL );
101 gdk_threads_init ();
103 gui_initialized = gtk_init_with_args (&argc, &argv, "files+", entries, NULL, &error);
104 if (!gui_initialized)
106 /* check if we have an error message */
107 if (error == NULL)
109 /* no error message, the GUI initialization failed */
110 const gchar *display_name = gdk_get_display_arg_name ();
111 g_fprintf (stderr, "Failed to open display: %s\n", (display_name != NULL) ? display_name : " ");
113 else
115 /* yep, there's an error, so print it */
116 g_fprintf (stderr, "Parsing command line options failed: %s\n", error->message);
117 g_error_free (error);
118 g_fprintf (stderr, "Run \"%s --help\" to see the list of recognized options.\n",argv[0]);
120 return EXIT_FAILURE;
123 curl_download_init();
125 /* Init modules/plugins */
126 modules_init();
128 a_mapcache_init ();
129 a_background_init ();
130 vik_layer_cursors_init ();
131 vik_window_cursors_init ();
133 /* Set the icon */
134 main_icon = gdk_pixbuf_from_pixdata(&viking_icon, FALSE, NULL);
135 gtk_window_set_default_icon(main_icon);
137 /* Create the first window */
138 first_window = new_window();
140 gdk_threads_enter ();
141 while ( ++i < argc ) {
142 if ( strcmp(argv[i],"--") == 0 && !dashdash_already )
143 dashdash_already = TRUE; /* hack to open '-' */
144 else
145 vik_window_open_file ( first_window, argv[i], argc == 2 );
148 gtk_main ();
149 gdk_threads_leave ();
151 a_mapcache_uninit ();
152 a_dems_uninit ();
153 vik_layer_cursors_uninit ();
154 vik_window_cursors_uninit ();
156 return 0;