]> git.sur5r.net Git - glabels/blob - glabels2/src/glabels.c
2009-02-21 JimEvins <evins@snaught.com>
[glabels] / glabels2 / src / glabels.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2
3 /**
4  *  (GLABELS) Label and Business Card Creation program for GNOME
5  *
6  *  glabels.c:  GLabels main module
7  *
8  *  Copyright (C) 2001-2002  Jim Evins <evins@snaught.com>.
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23  */
24
25 #include <config.h>
26
27 #include <glib/gi18n.h>
28
29 #include "warning-handler.h"
30 #include "critical-error-handler.h"
31 #include "stock.h"
32 #include "merge-init.h"
33 #include "recent.h"
34 #include <libglabels/db.h>
35 #include "mini-preview-pixbuf-cache.h"
36 #include "prefs.h"
37 #include "debug.h"
38 #include "window.h"
39 #include "file.h"
40
41
42 /*========================================================*/
43 /* Private macros and constants.                          */
44 /*========================================================*/
45
46
47 /*========================================================*/
48 /* Private globals                                        */
49 /*========================================================*/
50
51
52 /*========================================================*/
53 /* Local function prototypes                              */
54 /*========================================================*/
55
56
57 /****************************************************************************/
58 /* main program                                                             */
59 /****************************************************************************/
60 int
61 main (int argc, char **argv)
62 {
63         gchar **remaining_args = NULL;
64         GOptionEntry option_entries[] = {
65                 { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY,
66                   &remaining_args, NULL, N_("[FILE...]") },
67                 { NULL }
68         };
69
70         GOptionContext *option_context;
71         gchar          *icon_file;
72         GList          *file_list = NULL, *p;
73         GtkWidget      *win;
74         gchar          *utf8_filename;
75         GError         *error = NULL;
76
77         bindtextdomain (GETTEXT_PACKAGE, GLABELS_LOCALEDIR);
78         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
79         textdomain (GETTEXT_PACKAGE);
80
81         option_context = g_option_context_new (_("- gLabels label designer"));
82         g_option_context_add_main_entries (option_context, option_entries, GETTEXT_PACKAGE);
83
84
85         /* Initialize program */
86         gtk_init( &argc, &argv );
87         if (!g_option_context_parse (option_context, &argc, &argv, &error))
88         {
89                 g_print(_("%s\nRun '%s --help' to see a full list of available command line options.\n"),
90                         error->message, argv[0]);
91                 g_error_free (error);
92                 return 1;
93         }
94
95
96         /* Install GUI handlers for critical error and warning messages */
97         gl_critical_error_handler_init();
98         gl_warning_handler_init();
99
100         /* Set default icon */
101         icon_file = GLABELS_ICON_DIR "glabels.png";
102         if (!g_file_test (icon_file, G_FILE_TEST_EXISTS))
103         {
104                 g_message ("Could not find %s", icon_file);
105         }
106         else
107         {
108                 gtk_window_set_default_icon_from_file (icon_file, NULL);
109         }
110
111         
112         /* Initialize subsystems */
113         gl_debug_init ();
114         gl_stock_init ();
115         lgl_db_init ();
116         gl_prefs_init ();
117         gl_mini_preview_pixbuf_cache_init ();
118         gl_merge_init ();
119         gl_recent_init ();
120         
121
122         /* Parse args and build the list of files to be loaded at startup */
123         if (remaining_args != NULL) {
124                 gint i, num_args;
125
126                 num_args = g_strv_length (remaining_args);
127                 for (i = 0; i < num_args; ++i) {
128                         utf8_filename = g_filename_to_utf8 (remaining_args[i], -1, NULL, NULL, NULL);
129                         if (utf8_filename)
130                                 file_list = g_list_append (file_list, utf8_filename);
131                 }
132                 g_strfreev (remaining_args);
133                 remaining_args = NULL;
134         }
135
136
137         /* Open files or create empty top-level window. */
138         for (p = file_list; p; p = p->next) {
139                 win = gl_window_new_from_file (p->data);
140                 gtk_widget_show_all (win);
141                 g_free (p->data);
142         }
143         if ( gl_window_get_window_list() == NULL ) {
144                 win = gl_window_new ();
145                 gtk_widget_show_all (win);
146         }
147         g_list_free (file_list);
148
149         
150         /* Begin main loop */
151         gtk_main();
152
153         return 0;
154 }
155