]> www.fi.muni.cz Git - evince.git/blob - previewer/ev-previewer.c
[windows] Properly define the _WIN32_WINNT version
[evince.git] / previewer / ev-previewer.c
1 /* ev-previewer.c: 
2  *  this file is part of evince, a gnome document viewer
3  *
4  * Copyright (C) 2009 Carlos Garcia Campos <carlosgc@gnome.org>
5  *
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.
10  *
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.
15  *
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.
19  */
20
21 #include <config.h>
22
23 #include <gtk/gtk.h>
24 #include <glib/gi18n.h>
25 #include <evince-document.h>
26 #include <evince-view.h>
27
28 #include "ev-previewer-window.h"
29
30 #ifdef G_OS_WIN32
31 #ifdef DATADIR
32 #undef DATADIR
33 #endif
34 #include <io.h>
35 #include <conio.h>
36 #if !(_WIN32_WINNT >= 0x0500)
37 #error "_WIN32_WINNT must be defined >= 0x0500"
38 #endif
39 #include <windows.h>
40 #endif
41
42 static gboolean      unlink_temp_file = FALSE;
43 static const gchar  *print_settings;
44 static const gchar **filenames;
45
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") },
50         { NULL }
51 };
52
53 static void
54 ev_previewer_unlink_tempfile (const gchar *filename)
55 {
56         GFile *file, *tempdir;
57
58         file = g_file_new_for_path (filename);
59         tempdir = g_file_new_for_path (g_get_tmp_dir ());
60
61         if (g_file_has_prefix (file, tempdir)) {
62                 g_file_delete (file, NULL, NULL);
63         }
64
65         g_object_unref (file);
66         g_object_unref (tempdir);
67 }
68
69 static void
70 ev_previewer_load_job_finished (EvJob           *job,
71                                 EvDocumentModel *model)
72 {
73         if (ev_job_is_failed (job)) {
74                 g_warning ("%s", job->error->message);
75                 g_object_unref (job);
76
77                 return;
78         }
79         ev_document_model_set_document (model, job->document);
80         g_object_unref (job);
81 }
82
83 static void
84 ev_previewer_load_document (const gchar     *filename,
85                             EvDocumentModel *model)
86 {
87         EvJob *job;
88         gchar *uri;
89
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),
94                           model);
95         ev_job_scheduler_push_job (job, EV_JOB_PRIORITY_NONE);
96         g_free (uri);
97 }
98
99 gint
100 main (gint argc, gchar **argv)
101 {
102         GtkWidget       *window;
103         GOptionContext  *context;
104         const gchar     *filename;
105         EvDocumentModel *model;
106         GError          *error = NULL;
107
108 #ifdef G_OS_WIN32
109     if (fileno (stdout) != -1 &&
110           _get_osfhandle (fileno (stdout)) != -1)
111         {
112           /* stdout is fine, presumably redirected to a file or pipe */
113         }
114     else
115     {
116           typedef BOOL (* WINAPI AttachConsole_t) (DWORD);
117
118           AttachConsole_t p_AttachConsole =
119             (AttachConsole_t) GetProcAddress (GetModuleHandle ("kernel32.dll"), "AttachConsole");
120
121           if (p_AttachConsole != NULL && p_AttachConsole (ATTACH_PARENT_PROCESS))
122       {
123               freopen ("CONOUT$", "w", stdout);
124               dup2 (fileno (stdout), 1);
125               freopen ("CONOUT$", "w", stderr);
126               dup2 (fileno (stderr), 2);
127
128       }
129         }
130 #endif
131
132         /* Init glib threads asap */
133         if (!g_thread_supported ())
134                 g_thread_init (NULL);
135
136 #ifdef ENABLE_NLS
137         /* Initialize the i18n stuff */
138         bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
139         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
140         textdomain (GETTEXT_PACKAGE);
141 #endif
142         
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);
146
147         g_option_context_add_group (context, gtk_get_option_group (TRUE));
148         
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);
153
154                 return 1;
155         }
156         g_option_context_free (context);
157
158         if (!filenames) {
159                 g_warning ("File argument is required");
160                 
161                 return 1;
162         }
163
164         filename = filenames[0];
165         
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);
168
169                 return 1;
170         }
171
172         if (!ev_init ())
173                 return 1;
174
175         ev_stock_icons_init ();
176
177         g_set_application_name (_("GNOME Document Previewer"));
178         gtk_window_set_default_icon_name ("evince");
179
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);
189
190         ev_previewer_load_document (filename, model);
191         
192         gtk_main ();
193
194         if (unlink_temp_file)
195                 ev_previewer_unlink_tempfile (filename);
196         if (print_settings)
197                 ev_previewer_unlink_tempfile (print_settings);
198
199         ev_shutdown ();
200         ev_stock_icons_shutdown ();
201         g_object_unref (model);
202         
203         return 0;
204 }