2 * this file is part of evince, a gnome document viewer
4 * Copyright (C) 2009 Carlos Garcia Campos <carlosgc@gnome.org>
6 * Evince is free software; you can redistribute it and/or modify it
7 * 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 * Evince is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * 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.
24 #include <glib/gi18n.h>
25 #include <evince-document.h>
26 #include <evince-view.h>
28 #include "ev-previewer-window.h"
36 #if !(_WIN32_WINNT >= 0x0500)
37 #error "_WIN32_WINNT must be defined >= 0x0500"
42 static gboolean unlink_temp_file = FALSE;
43 static const gchar *print_settings;
44 static const gchar **filenames;
46 static const GOptionEntry goption_options[] = {
47 { "unlink-tempfile", 'u', 0, G_OPTION_ARG_NONE, &unlink_temp_file, N_("Delete the temporary file"), NULL },
48 { "print-settings", 'p', 0, G_OPTION_ARG_FILENAME, &print_settings, N_("Print settings file"), N_("FILE") },
49 { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &filenames, NULL, N_("FILE") },
54 ev_previewer_unlink_tempfile (const gchar *filename)
56 GFile *file, *tempdir;
58 file = g_file_new_for_path (filename);
59 tempdir = g_file_new_for_path (g_get_tmp_dir ());
61 if (g_file_has_prefix (file, tempdir)) {
62 g_file_delete (file, NULL, NULL);
65 g_object_unref (file);
66 g_object_unref (tempdir);
70 ev_previewer_load_job_finished (EvJob *job,
71 EvDocumentModel *model)
73 if (ev_job_is_failed (job)) {
74 g_warning ("%s", job->error->message);
79 ev_document_model_set_document (model, job->document);
84 ev_previewer_load_document (const gchar *filename,
85 EvDocumentModel *model)
90 uri = g_filename_to_uri (filename, NULL, NULL);
91 job = ev_job_load_new (uri);
92 g_signal_connect (job, "finished",
93 G_CALLBACK (ev_previewer_load_job_finished),
95 ev_job_scheduler_push_job (job, EV_JOB_PRIORITY_NONE);
100 main (gint argc, gchar **argv)
103 GOptionContext *context;
104 const gchar *filename;
105 EvDocumentModel *model;
106 GError *error = NULL;
109 if (fileno (stdout) != -1 &&
110 _get_osfhandle (fileno (stdout)) != -1)
112 /* stdout is fine, presumably redirected to a file or pipe */
116 typedef BOOL (* WINAPI AttachConsole_t) (DWORD);
118 AttachConsole_t p_AttachConsole =
119 (AttachConsole_t) GetProcAddress (GetModuleHandle ("kernel32.dll"), "AttachConsole");
121 if (p_AttachConsole != NULL && p_AttachConsole (ATTACH_PARENT_PROCESS))
123 freopen ("CONOUT$", "w", stdout);
124 dup2 (fileno (stdout), 1);
125 freopen ("CONOUT$", "w", stderr);
126 dup2 (fileno (stderr), 2);
132 /* Init glib threads asap */
133 if (!g_thread_supported ())
134 g_thread_init (NULL);
137 /* Initialize the i18n stuff */
138 bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
139 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
140 textdomain (GETTEXT_PACKAGE);
143 context = g_option_context_new (_("GNOME Document Previewer"));
144 g_option_context_set_translation_domain (context, GETTEXT_PACKAGE);
145 g_option_context_add_main_entries (context, goption_options, GETTEXT_PACKAGE);
147 g_option_context_add_group (context, gtk_get_option_group (TRUE));
149 if (!g_option_context_parse (context, &argc, &argv, &error)) {
150 g_warning ("Error parsing command line arguments: %s", error->message);
151 g_error_free (error);
152 g_option_context_free (context);
156 g_option_context_free (context);
159 g_warning ("File argument is required");
164 filename = filenames[0];
166 if (!g_file_test (filename, G_FILE_TEST_IS_REGULAR)) {
167 g_warning ("Filename \"%s\" does not exist or is not a regular file", filename);
175 ev_stock_icons_init ();
177 g_set_application_name (_("GNOME Document Previewer"));
178 gtk_window_set_default_icon_name ("evince");
180 model = ev_document_model_new ();
181 window = ev_previewer_window_new (model);
182 ev_previewer_window_set_source_file (EV_PREVIEWER_WINDOW (window), filename);
183 ev_previewer_window_set_print_settings (EV_PREVIEWER_WINDOW (window), print_settings);
184 g_signal_connect (window, "delete-event",
185 G_CALLBACK (gtk_main_quit), NULL);
186 g_signal_connect (window, "destroy",
187 G_CALLBACK (gtk_main_quit), NULL);
188 gtk_widget_show (window);
190 ev_previewer_load_document (filename, model);
194 if (unlink_temp_file)
195 ev_previewer_unlink_tempfile (filename);
197 ev_previewer_unlink_tempfile (print_settings);
200 ev_stock_icons_shutdown ();
201 g_object_unref (model);