]> www.fi.muni.cz Git - evince.git/blob - shell/main.c
dfe6a200db31049a0ad72695aefe8a2f9d3011cb
[evince.git] / shell / main.c
1 /*
2  *  Copyright (C) 2004 Marco Pesenti Gritti
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2, or (at your option)
7  *  any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  *
18  */
19
20 #include "config.h"
21
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include <glib/gstdio.h>
26 #include <glib/gi18n.h>
27 #include <gtk/gtk.h>
28
29 #include "ev-application.h"
30 #include "ev-debug.h"
31 #include "ev-init.h"
32 #include "ev-file-helpers.h"
33 #include "ev-stock-icons.h"
34 #include "ev-metadata.h"
35
36 #ifdef WITH_SMCLIENT
37 #include "eggsmclient.h"
38 #ifdef GDK_WINDOWING_X11
39 #include "eggdesktopfile.h"
40 #endif
41 #endif /* WITH_SMCLIENT */
42
43 #ifdef G_OS_WIN32
44 #ifdef DATADIR
45 #undef DATADIR
46 #endif
47 #include <io.h>
48 #include <conio.h>
49 #if !(_WIN32_WINNT >= 0x0500)
50 #error "_WIN32_WINNT must be defined >= 0x0500"
51 #endif
52 #include <windows.h>
53 #endif
54
55 static gchar   *ev_page_label;
56 static gchar   *ev_find_string;
57 static gint     ev_page_index = 0;
58 static gboolean preview_mode = FALSE;
59 static gboolean fullscreen_mode = FALSE;
60 static gboolean presentation_mode = FALSE;
61 static gboolean unlink_temp_file = FALSE;
62 static gchar   *print_settings;
63 static const char **file_arguments = NULL;
64
65
66 static gboolean
67 option_version_cb (const gchar *option_name,
68                    const gchar *value,
69                    gpointer     data,
70                    GError     **error)
71 {
72   g_print ("%s %s\n", _("GNOME Document Viewer"), VERSION);
73
74   exit (0);
75   return FALSE;
76 }
77
78 static const GOptionEntry goption_options[] =
79 {
80         { "page-label", 'p', 0, G_OPTION_ARG_STRING, &ev_page_label, N_("The page label of the document to display."), N_("PAGE")},
81         { "page-index", 'i', 0, G_OPTION_ARG_INT, &ev_page_index, N_("The page number of the document to display."), N_("NUMBER")},
82         { "fullscreen", 'f', 0, G_OPTION_ARG_NONE, &fullscreen_mode, N_("Run evince in fullscreen mode"), NULL },
83         { "presentation", 's', 0, G_OPTION_ARG_NONE, &presentation_mode, N_("Run evince in presentation mode"), NULL },
84         { "preview", 'w', 0, G_OPTION_ARG_NONE, &preview_mode, N_("Run evince as a previewer"), NULL },
85         { "find", 'l', 0, G_OPTION_ARG_STRING, &ev_find_string, N_("The word or phrase to find in the document"), N_("STRING")},
86         { "unlink-tempfile", 'u', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &unlink_temp_file, NULL, NULL },
87         { "print-settings", 't', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_FILENAME, &print_settings, NULL, NULL },
88         { "version", 0, G_OPTION_FLAG_NO_ARG | G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_CALLBACK, option_version_cb, NULL, NULL },
89         { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &file_arguments, NULL, N_("[FILEā€¦]") },
90         { NULL }
91 };
92
93 static gboolean
94 launch_previewer (void)
95 {
96         GString *cmd_str;
97         gchar   *cmd;
98         gint     argc;
99         gchar  **argv;
100         gboolean retval = FALSE;
101         GError  *error = NULL;
102
103         /* Rebuild the command line, ignoring options
104          * not supported by the previewer and taking only
105          * the first path given
106          */
107         cmd_str = g_string_new ("evince-previewer");
108                 
109         if (print_settings) {
110                 gchar *quoted;
111
112                 quoted = g_shell_quote (print_settings);
113                 g_string_append_printf (cmd_str, " --print-settings %s", quoted);
114                 g_free (quoted);
115         }
116
117         if (unlink_temp_file)
118                 g_string_append (cmd_str, " --unlink-tempfile");
119
120         if (file_arguments) {
121                 gchar *quoted;
122                 
123                 quoted = g_shell_quote (file_arguments[0]);
124                 g_string_append_printf (cmd_str, " %s", quoted);
125                 g_free (quoted);
126         }
127
128         cmd = g_string_free (cmd_str, FALSE);
129         g_shell_parse_argv (cmd, &argc, &argv, &error);
130         g_free (cmd);
131         
132         if (!error) {
133                 retval = gdk_spawn_on_screen (gdk_screen_get_default (),
134                                               NULL, argv, NULL,
135                                               G_SPAWN_SEARCH_PATH,
136                                               NULL, NULL, NULL,
137                                               &error);
138                 g_strfreev (argv);
139         }
140
141         if (error) {
142                 g_warning ("Error launching previewer: %s\n", error->message);
143                 g_error_free (error);
144         }
145
146         return retval;
147 }
148
149 static void
150 load_files (const char **files)
151 {
152         GdkScreen       *screen = gdk_screen_get_default ();
153         EvWindowRunMode  mode = EV_WINDOW_MODE_NORMAL;
154         gint             i;
155         EvLinkDest      *global_dest = NULL;
156
157         if (!files) {
158                 if (!ev_application_has_window (EV_APP))
159                         ev_application_open_window (EV_APP, screen, GDK_CURRENT_TIME);
160                 return;
161         }
162
163         if (ev_page_label)
164                 global_dest = ev_link_dest_new_page_label (ev_page_label);
165         else if (ev_page_index)
166                 global_dest = ev_link_dest_new_page (MAX (0, ev_page_index - 1));
167
168         if (fullscreen_mode)
169                 mode = EV_WINDOW_MODE_FULLSCREEN;
170         else if (presentation_mode)
171                 mode = EV_WINDOW_MODE_PRESENTATION;
172
173         for (i = 0; files[i]; i++) {
174                 const gchar *filename;
175                 gchar       *uri;
176                 gchar       *label;
177                 GFile       *file;
178                 EvLinkDest  *dest = NULL;
179                 const gchar *app_uri;
180
181                 filename = files[i];
182                 label = strchr (filename, '#');
183                 if (label) {
184                         *label = 0;
185                         label++;
186                         dest = ev_link_dest_new_page_label (label);
187                 } else if (global_dest) {
188                         dest = g_object_ref (global_dest);
189                 }
190
191                 file = g_file_new_for_commandline_arg (filename);
192                 uri = g_file_get_uri (file);
193                 g_object_unref (file);
194
195                 app_uri = ev_application_get_uri (EV_APP);
196                 if (app_uri && strcmp (app_uri, uri) == 0) {
197                         g_free (uri);
198                         continue;
199                 }
200
201
202
203                 ev_application_open_uri_at_dest (EV_APP, uri, screen, dest,
204                                                  mode, ev_find_string,
205                                                  GDK_CURRENT_TIME);
206
207                 if (dest)
208                         g_object_unref (dest);
209                 g_free (uri);
210         }
211 }
212
213 int
214 main (int argc, char *argv[])
215 {
216         GOptionContext *context;
217         GError         *error = NULL;
218
219 #ifdef G_OS_WIN32
220
221     if (fileno (stdout) != -1 &&
222           _get_osfhandle (fileno (stdout)) != -1)
223         {
224           /* stdout is fine, presumably redirected to a file or pipe */
225         }
226     else
227     {
228           typedef BOOL (* WINAPI AttachConsole_t) (DWORD);
229
230           AttachConsole_t p_AttachConsole =
231             (AttachConsole_t) GetProcAddress (GetModuleHandle ("kernel32.dll"), "AttachConsole");
232
233           if (p_AttachConsole != NULL && p_AttachConsole (ATTACH_PARENT_PROCESS))
234       {
235               freopen ("CONOUT$", "w", stdout);
236               dup2 (fileno (stdout), 1);
237               freopen ("CONOUT$", "w", stderr);
238               dup2 (fileno (stderr), 2);
239
240       }
241         }
242 #endif
243
244         /* Init glib threads asap */
245         if (!g_thread_supported ())
246                 g_thread_init (NULL);
247
248 #ifdef ENABLE_NLS
249         /* Initialize the i18n stuff */
250         bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
251         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
252         textdomain (GETTEXT_PACKAGE);
253 #endif
254
255         context = g_option_context_new (N_("GNOME Document Viewer"));
256         g_option_context_set_translation_domain(context, GETTEXT_PACKAGE);
257         g_option_context_add_main_entries (context, goption_options, GETTEXT_PACKAGE);
258
259 #ifdef WITH_SMCLIENT
260         g_option_context_add_group (context, egg_sm_client_get_option_group ());
261 #endif
262
263         g_option_context_add_group (context, gtk_get_option_group (TRUE));
264
265         if (!g_option_context_parse (context, &argc, &argv, &error)) {
266                 g_printerr ("Cannot parse arguments: %s\n", error->message);
267                 g_error_free (error);
268                 g_option_context_free (context);
269
270                 return 1;
271         }
272         g_option_context_free (context);
273
274         if (preview_mode) {
275                 gboolean retval;
276                 
277                 retval = launch_previewer ();
278                 
279                 return retval ? 0 : 1;
280         }
281
282         if (!ev_init ())
283                 return 1;
284
285         ev_stock_icons_init ();
286
287 #if defined(WITH_SMCLIENT) && defined(GDK_WINDOWING_X11)
288         egg_set_desktop_file (GNOMEDATADIR "/applications/evince.desktop");
289 #else
290         /* Manually set name and icon */
291         g_set_application_name (_("Document Viewer"));
292         gtk_window_set_default_icon_name ("evince");
293 #endif /* WITH_SMCLIENT && GDK_WINDOWING_X11 */
294
295         ev_application_load_session (EV_APP);
296         load_files (file_arguments);
297         if (ev_application_has_window (EV_APP)) {
298                 /* Change directory so we don't prevent unmounting in case the initial cwd
299                  * is on an external device (see bug #575436)
300                  */
301                 g_chdir (g_get_home_dir ());
302
303                 gtk_main ();
304         }
305
306         ev_shutdown ();
307         ev_stock_icons_shutdown ();
308
309         return 0;
310 }