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
23 #include "icons/viking_icon.png_h"
25 #include "background.h"
27 #include "curl_download.h"
33 #define MAX_WINDOWS 1024
35 static guint window_count
= 0;
37 static VikWindow
*new_window ();
38 static void open_window ( VikWindow
*vw
, const gchar
**files
);
39 static void destroy( GtkWidget
*widget
,
43 /* Another callback */
44 static void destroy( GtkWidget
*widget
,
47 if ( ! --window_count
)
51 static VikWindow
*new_window ()
53 if ( window_count
< MAX_WINDOWS
)
55 VikWindow
*vw
= vik_window_new ();
57 g_signal_connect (G_OBJECT (vw
), "destroy",
58 G_CALLBACK (destroy
), NULL
);
59 g_signal_connect (G_OBJECT (vw
), "newwindow",
60 G_CALLBACK (new_window
), NULL
);
61 g_signal_connect (G_OBJECT (vw
), "openwindow",
62 G_CALLBACK (open_window
), NULL
);
64 gtk_widget_show_all ( GTK_WIDGET(vw
) );
73 static void open_window ( VikWindow
*vw
, const gchar
**files
)
75 VikWindow
*newvw
= new_window();
76 gboolean change_fn
= (!files
[1]); /* only change fn if one file */
79 vik_window_open_file ( newvw
, *(files
++), change_fn
);
83 int main( int argc
, char *argv
[] )
85 VikWindow
*first_window
;
87 gboolean dashdash_already
= FALSE
;
90 g_thread_init ( NULL
);
93 gtk_init (&argc
, &argv
);
99 /* Init modules/plugins */
103 a_background_init ();
106 main_icon
= gdk_pixbuf_from_pixdata(&viking_icon
, FALSE
, NULL
);
107 gtk_window_set_default_icon(main_icon
);
109 /* Create the first window */
110 first_window
= new_window();
112 gdk_threads_enter ();
113 while ( ++i
< argc
) {
114 if ( strcmp(argv
[i
],"--") == 0 && !dashdash_already
)
115 dashdash_already
= TRUE
; /* hack to open '-' */
117 vik_window_open_file ( first_window
, argv
[i
], argc
== 2 );
121 gdk_threads_leave ();
123 a_mapcache_uninit ();