]> www.fi.muni.cz Git - evince.git/blob - shell/ev-application.c
5a870148fd3c4352fc9e984cc8c5081598987433
[evince.git] / shell / ev-application.c
1 /* this file is part of evince, a gnome document viewer
2  *
3  *  Copyright (C) 2004 Martin Kretzschmar
4  *
5  *  Author:
6  *    Martin Kretzschmar <martink@gnome.org>
7  *
8  * Evince is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * Evince is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
21  */
22
23
24 #include <config.h>
25 #include <stdlib.h>
26 #include <string.h>
27
28 #include <glib.h>
29 #include <glib/gi18n.h>
30 #include <glib/gstdio.h>
31 #include <gtk/gtk.h>
32 #ifdef GDK_WINDOWING_X11
33 #include <gdk/gdkx.h>
34 #endif
35 #include <unistd.h>
36
37 #include "totem-scrsaver.h"
38
39 #ifdef WITH_SMCLIENT
40 #include "eggsmclient.h"
41 #endif
42
43 #include "ev-application.h"
44 #include "ev-file-helpers.h"
45 #include "ev-stock-icons.h"
46
47 #ifdef ENABLE_DBUS
48 #include "ev-media-player-keys.h"
49 #endif /* ENABLE_DBUS */
50
51 #ifdef ENABLE_DBUS
52 #include <dbus/dbus-glib-bindings.h>
53 static gboolean ev_application_open_uri (EvApplication  *application,
54                                          const char     *uri,
55                                          GHashTable     *args,
56                                          guint           timestamp,
57                                          GError        **error);
58 #include "ev-application-service.h"
59 #endif
60
61 struct _EvApplication {
62         GObject base_instance;
63
64         gchar *uri;
65
66         gchar *dot_dir;
67         gchar *data_dir;
68
69 #ifdef ENABLE_DBUS
70         DBusGConnection *connection;
71         EvMediaPlayerKeys *keys;
72 #endif
73
74         TotemScrsaver *scr_saver;
75
76 #ifdef WITH_SMCLIENT
77         EggSMClient *smclient;
78 #endif
79
80         gchar *filechooser_open_uri;
81         gchar *filechooser_save_uri;
82 };
83
84 struct _EvApplicationClass {
85         GObjectClass base_class;
86 };
87
88 static EvApplication *instance;
89
90 G_DEFINE_TYPE (EvApplication, ev_application, G_TYPE_OBJECT);
91
92 #ifdef ENABLE_DBUS
93 #define APPLICATION_DBUS_OBJECT_PATH "/org/gnome/evince/Evince"
94 #define APPLICATION_DBUS_INTERFACE   "org.gnome.evince.Application"
95 #endif
96
97 /**
98  * ev_application_get_instance:
99  *
100  * Checks for #EvApplication instance, if it doesn't exist it does create it.
101  *
102  * Returns: an instance of the #EvApplication data.
103  */
104 EvApplication *
105 ev_application_get_instance (void)
106 {
107         if (!instance) {
108                 instance = EV_APPLICATION (g_object_new (EV_TYPE_APPLICATION, NULL));
109         }
110
111         return instance;
112 }
113
114 /* Session */
115 gboolean
116 ev_application_load_session (EvApplication *application)
117 {
118         GKeyFile *state_file;
119         gchar    *uri;
120
121 #ifdef WITH_SMCLIENT
122         if (egg_sm_client_is_resumed (application->smclient)) {
123                 state_file = egg_sm_client_get_state_file (application->smclient);
124                 if (!state_file)
125                         return FALSE;
126         } else
127 #endif /* WITH_SMCLIENT */
128                 return FALSE;
129
130         uri = g_key_file_get_string (state_file, "Evince", "uri", NULL);
131         if (!uri)
132                 return FALSE;
133
134         ev_application_open_uri_at_dest (application, uri,
135                                          gdk_screen_get_default (),
136                                          NULL, 0, NULL,
137                                          GDK_CURRENT_TIME);
138         g_free (uri);
139         g_key_file_free (state_file);
140
141         return TRUE;
142 }
143
144 #ifdef WITH_SMCLIENT
145
146 static void
147 smclient_save_state_cb (EggSMClient   *client,
148                         GKeyFile      *state_file,
149                         EvApplication *application)
150 {
151         if (!application->uri)
152                 return;
153
154         g_key_file_set_string (state_file, "Evince", "uri", application->uri);
155 }
156
157 static void
158 smclient_quit_cb (EggSMClient   *client,
159                   EvApplication *application)
160 {
161         ev_application_shutdown (application);
162 }
163 #endif /* WITH_SMCLIENT */
164
165 static void
166 ev_application_init_session (EvApplication *application)
167 {
168 #ifdef WITH_SMCLIENT
169         application->smclient = egg_sm_client_get ();
170         g_signal_connect (application->smclient, "save_state",
171                           G_CALLBACK (smclient_save_state_cb),
172                           application);
173         g_signal_connect (application->smclient, "quit",
174                           G_CALLBACK (smclient_quit_cb),
175                           application);
176 #endif
177 }
178
179 /**
180  * ev_display_open_if_needed:
181  * @name: the name of the display to be open if it's needed.
182  *
183  * Search among all the open displays if any of them have the same name as the
184  * passed name. If the display isn't found it tries the open it.
185  *
186  * Returns: a #GdkDisplay of the display with the passed name.
187  */
188 static GdkDisplay *
189 ev_display_open_if_needed (const gchar *name)
190 {
191         GSList     *displays;
192         GSList     *l;
193         GdkDisplay *display = NULL;
194
195         displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
196
197         for (l = displays; l != NULL; l = l->next) {
198                 const gchar *display_name = gdk_display_get_name ((GdkDisplay *) l->data);
199
200                 if (g_ascii_strcasecmp (display_name, name) == 0) {
201                         display = l->data;
202                         break;
203                 }
204         }
205
206         g_slist_free (displays);
207
208         return display != NULL ? display : gdk_display_open (name);
209 }
210
211 /**
212  * get_screen_from_args:
213  * @args: a #GHashTable with data passed to the application.
214  *
215  * Looks for the screen in the display available in the hash table passed to the
216  * application. If the display isn't opened, it's opened and the #GdkScreen
217  * assigned to the screen in that display returned.
218  *
219  * Returns: the #GdkScreen assigned to the screen on the display indicated by
220  *          the data on the #GHashTable.
221  */
222 static GdkScreen *
223 get_screen_from_args (GHashTable *args)
224 {
225         GValue     *value = NULL;
226         GdkDisplay *display = NULL;
227         GdkScreen  *screen = NULL;
228
229         g_assert (args != NULL);
230         
231         value = g_hash_table_lookup (args, "display");
232         if (value) {
233                 const gchar *display_name;
234                 
235                 display_name = g_value_get_string (value);
236                 display = ev_display_open_if_needed (display_name);
237         }
238         
239         value = g_hash_table_lookup (args, "screen");
240         if (value) {
241                 gint screen_number;
242                 
243                 screen_number = g_value_get_int (value);
244                 screen = gdk_display_get_screen (display, screen_number);
245         }
246
247         return screen;
248 }
249
250 /**
251  * get_window_run_mode_from_args:
252  * @args: a #GHashTable with data passed to the application.
253  *
254  * It does look if the mode option has been passed from command line, using it
255  * as the window run mode, otherwise the run mode will be the normal mode.
256  *
257  * Returns: The window run mode passed from command line or
258  *          EV_WINDOW_MODE_NORMAL in other case.
259  */
260 static EvWindowRunMode
261 get_window_run_mode_from_args (GHashTable *args)
262 {
263         EvWindowRunMode  mode = EV_WINDOW_MODE_NORMAL;
264         GValue          *value = NULL;
265
266         g_assert (args != NULL);
267
268         value = g_hash_table_lookup (args, "mode");
269         if (value) {
270                 mode = g_value_get_uint (value);
271         }
272
273         return mode;
274 }
275
276 /**
277  * get_destination_from_args:
278  * @args: a #GHashTable with data passed to the application.
279  *
280  * It does look for the page-label argument parsed from the command line and
281  * if it does exist, it returns an #EvLinkDest.
282  *
283  * Returns: An #EvLinkDest to page-label if it has been passed from the command
284  *          line, NULL in other case.
285  */
286 static EvLinkDest *
287 get_destination_from_args (GHashTable *args)
288 {
289         EvLinkDest *dest = NULL;
290         GValue     *value = NULL;
291         
292         g_assert (args != NULL);
293         
294         value = g_hash_table_lookup (args, "page-label");
295         if (value) {
296                 const gchar *page_label;
297
298                 page_label = g_value_get_string (value);
299                 dest = ev_link_dest_new_page_label (page_label);
300         }
301
302         return dest;
303 }
304
305 static const gchar *
306 get_find_string_from_args (GHashTable *args)
307 {
308         GValue *value = NULL;
309
310         g_assert (args != NULL);
311
312         value = g_hash_table_lookup (args, "find-string");
313         
314         return value ? g_value_get_string (value) : NULL;
315 }
316
317 static void
318 value_free (GValue *value)
319 {
320         g_value_unset (value);
321         g_free (value);
322 }
323
324 static GHashTable *
325 build_args (GdkScreen      *screen,
326             EvLinkDest     *dest,
327             EvWindowRunMode mode,
328             const gchar    *search_string)
329 {
330         GHashTable  *args;
331         GValue      *value;
332         GdkDisplay  *display;
333         const gchar *display_name;
334         gint         screen_number;
335
336         args = g_hash_table_new_full (g_str_hash,
337                                       g_str_equal,
338                                       (GDestroyNotify)g_free,
339                                       (GDestroyNotify)value_free);
340
341         /* Display */
342         display = gdk_screen_get_display (screen);
343         display_name = gdk_display_get_name (display);
344         value = g_new0 (GValue, 1);
345         g_value_init (value, G_TYPE_STRING);
346         g_value_set_string (value, display_name);
347         g_hash_table_insert (args, g_strdup ("display"), value);
348
349         /* Screen */
350         screen_number = gdk_screen_get_number (screen);
351         value = g_new0 (GValue, 1);
352         g_value_init (value, G_TYPE_INT);
353         g_value_set_int (value, screen_number);
354         g_hash_table_insert (args, g_strdup ("screen"), value);
355
356         /* Page label */
357         if (dest) {
358                 value = g_new0 (GValue, 1);
359                 g_value_init (value, G_TYPE_STRING);
360                 g_value_set_string (value, ev_link_dest_get_page_label (dest));
361
362                 g_hash_table_insert (args, g_strdup ("page-label"), value);
363         }
364
365         /* Find string */
366         if (search_string) {
367                 value = g_new0 (GValue, 1);
368                 g_value_init (value, G_TYPE_STRING);
369                 g_value_set_string (value, search_string);
370
371                 g_hash_table_insert (args, g_strdup ("find-string"), value);
372         }
373
374         /* Mode */
375         if (mode != EV_WINDOW_MODE_NORMAL) {
376                 value = g_new0 (GValue, 1);
377                 g_value_init (value, G_TYPE_UINT);
378                 g_value_set_uint (value, mode);
379
380                 g_hash_table_insert (args, g_strdup ("mode"), value);
381         }
382
383         return args;
384 }
385
386 static void
387 child_setup (gpointer user_data)
388 {
389         gchar *startup_id;
390
391         startup_id = g_strdup_printf ("_TIME%lu",
392                                       (unsigned long)GPOINTER_TO_INT (user_data));
393         g_setenv ("DESKTOP_STARTUP_ID", startup_id, TRUE);
394         g_free (startup_id);
395 }
396
397 static void
398 ev_spawn (const char     *uri,
399           GdkScreen      *screen,
400           EvLinkDest     *dest,
401           EvWindowRunMode mode,
402           const gchar    *search_string,
403           guint           timestamp)
404 {
405         gchar   *argv[6];
406         guint    arg = 0;
407         gint     i;
408         gboolean res;
409         GError  *error = NULL;
410
411 #ifdef G_OS_WIN32
412 {
413         gchar *dir;
414
415         dir = g_win32_get_package_installation_directory_of_module (NULL);
416         argv[arg++] = g_build_filename (dir, "bin", "evince", NULL);
417         g_free (dir);
418 }
419 #else
420         argv[arg++] = g_build_filename (BINDIR, "evince", NULL);
421 #endif
422
423         /* Page label */
424         if (dest) {
425                 const gchar *page_label;
426
427                 page_label = ev_link_dest_get_page_label (dest);
428                 if (page_label)
429                         argv[arg++] = g_strdup_printf ("--page-label=%s", page_label);
430                 else
431                         argv[arg++] = g_strdup_printf ("--page-label=%d",
432                                                        ev_link_dest_get_page (dest));
433         }
434
435         /* Find string */
436         if (search_string) {
437                 argv[arg++] = g_strdup_printf ("--find=%s", search_string);
438         }
439
440         /* Mode */
441         switch (mode) {
442         case EV_WINDOW_MODE_FULLSCREEN:
443                 argv[arg++] = g_strdup ("-f");
444                 break;
445         case EV_WINDOW_MODE_PRESENTATION:
446                 argv[arg++] = g_strdup ("-s");
447                 break;
448         default:
449                 break;
450         }
451
452         argv[arg++] = (gchar *)uri;
453         argv[arg] = NULL;
454
455         res = gdk_spawn_on_screen (screen, NULL /* wd */, argv, NULL /* env */,
456                                    0,
457                                    child_setup,
458                                    GINT_TO_POINTER(timestamp),
459                                    NULL, &error);
460         if (!res) {
461                 g_warning ("Error launching evince %s: %s\n", uri, error->message);
462                 g_error_free (error);
463         }
464
465         for (i = 0; i < arg - 1; i++) {
466                 g_free (argv[i]);
467         }
468 }
469
470 static GList *
471 ev_application_get_windows (EvApplication *application)
472 {
473         GList *l, *toplevels;
474         GList *windows = NULL;
475
476         toplevels = gtk_window_list_toplevels ();
477
478         for (l = toplevels; l != NULL; l = l->next) {
479                 if (EV_IS_WINDOW (l->data)) {
480                         windows = g_list_append (windows, l->data);
481                 }
482         }
483
484         g_list_free (toplevels);
485
486         return windows;
487 }
488
489 static EvWindow *
490 ev_application_get_empty_window (EvApplication *application,
491                                  GdkScreen     *screen)
492 {
493         EvWindow *empty_window = NULL;
494         GList    *windows = ev_application_get_windows (application);
495         GList    *l;
496
497         for (l = windows; l != NULL; l = l->next) {
498                 EvWindow *window = EV_WINDOW (l->data);
499
500                 if (ev_window_is_empty (window) &&
501                     gtk_window_get_screen (GTK_WINDOW (window)) == screen) {
502                         empty_window = window;
503                         break;
504                 }
505         }
506
507         g_list_free (windows);
508
509         return empty_window;
510 }
511
512
513 #ifdef ENABLE_DBUS
514 static gboolean
515 ev_application_register_uri (EvApplication *application,
516                              const gchar   *uri,
517                              GHashTable    *args,
518                              guint          timestamp)
519 {
520         DBusGProxy *proxy;
521         gchar      *owner;
522         gboolean    retval = TRUE;
523         GError     *error = NULL;
524
525         if (!application->connection)
526                 return TRUE;
527
528         proxy = dbus_g_proxy_new_for_name (application->connection,
529                                            "org.gnome.evince.Daemon",
530                                            "/org/gnome/evince/Daemon",
531                                            "org.gnome.evince.Daemon");
532         if (!dbus_g_proxy_call (proxy, "RegisterDocument", &error,
533                                 G_TYPE_STRING, uri,
534                                 G_TYPE_INVALID,
535                                 G_TYPE_STRING, &owner,
536                                 G_TYPE_INVALID)) {
537                 g_warning ("Error registering document: %s\n", error->message);
538                 g_error_free (error);
539                 g_object_unref (proxy);
540
541                 return TRUE;
542         }
543         g_object_unref (proxy);
544
545         if (*owner == ':') {
546                 /* Already registered */
547                 proxy = dbus_g_proxy_new_for_name_owner (application->connection,
548                                                          owner,
549                                                          APPLICATION_DBUS_OBJECT_PATH,
550                                                          APPLICATION_DBUS_INTERFACE,
551                                                          &error);
552                 if (proxy) {
553                         if (!dbus_g_proxy_call (proxy, "OpenURI", &error,
554                                                 G_TYPE_STRING, uri,
555                                                 dbus_g_type_get_map ("GHashTable", G_TYPE_STRING, G_TYPE_VALUE), args,
556                                                 G_TYPE_UINT, timestamp,
557                                                 G_TYPE_INVALID,
558                                                 G_TYPE_INVALID)) {
559                                 g_warning ("%s", error->message);
560                                 g_error_free (error);
561                         }
562                         g_object_unref (proxy);
563                 } else {
564                         g_warning ("Error creating proxy: %s\n", error->message);
565                         g_error_free (error);
566                 }
567
568                 /* Do not continue opening this document */
569                 retval = FALSE;
570         }
571
572         g_free (owner);
573
574         return retval;
575 }
576
577 static void
578 ev_application_unregister_uri (EvApplication *application,
579                                const gchar   *uri)
580 {
581         DBusGProxy *proxy;
582         GError     *error = NULL;
583
584         if (!application->connection)
585                 return;
586
587         proxy = dbus_g_proxy_new_for_name (application->connection,
588                                            "org.gnome.evince.Daemon",
589                                            "/org/gnome/evince/Daemon",
590                                            "org.gnome.evince.Daemon");
591         if (!dbus_g_proxy_call (proxy, "UnregisterDocument", &error,
592                                 G_TYPE_STRING, uri,
593                                 G_TYPE_INVALID,
594                                 G_TYPE_INVALID)) {
595                 g_warning ("Error unregistering document: %s\n", error->message);
596                 g_error_free (error);
597         }
598
599         g_object_unref (proxy);
600 }
601 #endif /* ENABLE_DBUS */
602
603 static void
604 ev_application_open_uri_in_window (EvApplication  *application,
605                                    const char     *uri,
606                                    EvWindow       *ev_window,
607                                    GdkScreen      *screen,
608                                    EvLinkDest     *dest,
609                                    EvWindowRunMode mode,
610                                    const gchar    *search_string,
611                                    guint           timestamp)
612 {
613         if (screen) {
614                 ev_stock_icons_set_screen (screen);
615                 gtk_window_set_screen (GTK_WINDOW (ev_window), screen);
616         }
617
618         /* We need to load uri before showing the window, so
619            we can restore window size without flickering */
620         ev_window_open_uri (ev_window, uri, dest, mode, search_string);
621
622         if (!GTK_WIDGET_REALIZED (GTK_WIDGET (ev_window)))
623                 gtk_widget_realize (GTK_WIDGET (ev_window));
624
625 #ifdef GDK_WINDOWING_X11
626         if (timestamp <= 0)
627                 timestamp = gdk_x11_get_server_time (GTK_WIDGET (ev_window)->window);
628         gdk_x11_window_set_user_time (GTK_WIDGET (ev_window)->window, timestamp);
629
630         ev_document_fc_mutex_lock ();
631         gtk_window_present (GTK_WINDOW (ev_window));
632         ev_document_fc_mutex_unlock ();
633 #else
634         ev_document_fc_mutex_lock ();
635         gtk_window_present_with_time (GTK_WINDOW (ev_window), timestamp);
636         ev_document_fc_mutex_unlock ();
637 #endif /* GDK_WINDOWING_X11 */
638 }
639
640 /**
641  * ev_application_open_uri_at_dest:
642  * @application: The instance of the application.
643  * @uri: The uri to be opened.
644  * @screen: Thee screen where the link will be shown.
645  * @dest: The #EvLinkDest of the document.
646  * @mode: The run mode of the window.
647  * @timestamp: Current time value.
648  */
649 void
650 ev_application_open_uri_at_dest (EvApplication  *application,
651                                  const char     *uri,
652                                  GdkScreen      *screen,
653                                  EvLinkDest     *dest,
654                                  EvWindowRunMode mode,
655                                  const gchar    *search_string,
656                                  guint           timestamp)
657 {
658         EvWindow *ev_window;
659
660         g_return_if_fail (uri != NULL);
661
662         if (application->uri && strcmp (application->uri, uri) != 0) {
663                 /* spawn a new evince process */
664                 ev_spawn (uri, screen, dest, mode, search_string, timestamp);
665                 return;
666         } else {
667 #ifdef ENABLE_DBUS
668                 GHashTable *args = build_args (screen, dest, mode, search_string);
669                 gboolean    ret;
670
671                 /* Register the uri or send OpenURI to
672                  * remote instance if already registered
673                  */
674                 ret = ev_application_register_uri (application, uri, args, timestamp);
675                 g_hash_table_destroy (args);
676                 if (!ret)
677                         return;
678 #endif /* ENABLE_DBUS */
679
680                 ev_window = ev_application_get_empty_window (application, screen);
681                 if (!ev_window)
682                         ev_window = EV_WINDOW (ev_window_new ());
683         }
684
685         application->uri = g_strdup (uri);
686
687         ev_application_open_uri_in_window (application, uri, ev_window,
688                                            screen, dest, mode,
689                                            search_string,
690                                            timestamp);
691 }
692
693 /**
694  * ev_application_open_window:
695  * @application: The instance of the application.
696  * @timestamp: Current time value.
697  *
698  * Creates a new window
699  */
700 void
701 ev_application_open_window (EvApplication *application,
702                             GdkScreen     *screen,
703                             guint32        timestamp)
704 {
705         GtkWidget *new_window = ev_window_new ();
706
707         if (screen) {
708                 ev_stock_icons_set_screen (screen);
709                 gtk_window_set_screen (GTK_WINDOW (new_window), screen);
710         }
711
712         if (!GTK_WIDGET_REALIZED (new_window))
713                 gtk_widget_realize (new_window);
714
715 #ifdef GDK_WINDOWING_X11
716         if (timestamp <= 0)
717                 timestamp = gdk_x11_get_server_time (new_window->window);
718         gdk_x11_window_set_user_time (new_window->window, timestamp);
719
720         gtk_window_present (GTK_WINDOW (new_window));
721 #else
722         gtk_window_present_with_time (GTK_WINDOW (new_window), timestamp);
723 #endif /* GDK_WINDOWING_X11 */
724 }
725
726 /**
727  * ev_application_open_uri:
728  * @application: The instance of the application.
729  * @uri: The uri to be opened
730  * @args: A #GHashTable with the arguments data.
731  * @timestamp: Current time value.
732  * @error: The #GError facility.
733  */
734 static gboolean
735 ev_application_open_uri (EvApplication  *application,
736                          const char     *uri,
737                          GHashTable     *args,
738                          guint           timestamp,
739                          GError        **error)
740 {
741         GList           *windows, *l;
742         EvLinkDest      *dest = NULL;
743         EvWindowRunMode  mode = EV_WINDOW_MODE_NORMAL;
744         const gchar     *search_string = NULL;
745         GdkScreen       *screen = NULL;
746
747         g_assert (application->uri != NULL);
748
749         /* FIXME: we don't need uri anymore,
750          * maybe this method should be renamed
751          * as reload, refresh or something like that
752          */
753         if (!application->uri || strcmp (application->uri, uri)) {
754                 g_warning ("Invalid uri: %s, expected %s\n",
755                            uri, application->uri);
756                 return TRUE;
757         }
758
759         if (args) {
760                 screen = get_screen_from_args (args);
761                 dest = get_destination_from_args (args);
762                 mode = get_window_run_mode_from_args (args);
763                 search_string = get_find_string_from_args (args);
764         }
765
766         windows = ev_application_get_windows (application);
767         for (l = windows; l != NULL; l = g_list_next (l)) {
768                 EvWindow *ev_window = EV_WINDOW (l->data);
769
770                 ev_application_open_uri_in_window (application, uri, ev_window,
771                                                    screen, dest, mode,
772                                                    search_string,
773                                                    timestamp);
774         }
775         g_list_free (windows);
776
777         if (dest)
778                 g_object_unref (dest);
779
780         return TRUE;
781 }
782
783 void
784 ev_application_open_uri_list (EvApplication *application,
785                               GSList        *uri_list,
786                               GdkScreen     *screen,
787                               guint          timestamp)
788 {
789         GSList *l;
790
791         for (l = uri_list; l != NULL; l = l->next) {
792                 ev_application_open_uri_at_dest (application, (char *)l->data,
793                                                  screen, NULL, 0, NULL,
794                                                  timestamp);
795         }
796 }
797
798 static void
799 ev_application_accel_map_save (EvApplication *application)
800 {
801         gchar *accel_map_file;
802         gchar *tmp_filename;
803         gint   fd;
804
805         accel_map_file = g_build_filename (g_get_home_dir (),
806                                            ".gnome2", "accels",
807                                            "evince", NULL);
808
809         tmp_filename = g_strdup_printf ("%s.XXXXXX", accel_map_file);
810
811         fd = g_mkstemp (tmp_filename);
812         if (fd == -1) {
813                 g_free (accel_map_file);
814                 g_free (tmp_filename);
815
816                 return;
817         }
818         gtk_accel_map_save_fd (fd);
819         close (fd);
820
821         if (g_rename (tmp_filename, accel_map_file) == -1) {
822                 /* FIXME: win32? */
823                 g_unlink (tmp_filename);
824         }
825
826         g_free (accel_map_file);
827         g_free (tmp_filename);
828 }
829
830 static void
831 ev_application_accel_map_load (EvApplication *application)
832 {
833         gchar *accel_map_file;
834
835         accel_map_file = g_build_filename (g_get_home_dir (),
836                                            ".gnome2", "accels",
837                                            "evince", NULL);
838         gtk_accel_map_load (accel_map_file);
839         g_free (accel_map_file);
840 }
841
842 void
843 ev_application_shutdown (EvApplication *application)
844 {
845         if (application->uri) {
846 #ifdef ENABLE_DBUS
847                 ev_application_unregister_uri (application,
848                                                application->uri);
849 #endif
850                 g_free (application->uri);
851                 application->uri = NULL;
852         }
853
854         ev_application_accel_map_save (application);
855
856         g_object_unref (application->scr_saver);
857         application->scr_saver = NULL;
858
859 #ifdef ENABLE_DBUS
860         if (application->keys) {
861                 g_object_unref (application->keys);
862                 application->keys = NULL;
863         }
864 #endif /* ENABLE_DBUS */
865         
866         g_free (application->dot_dir);
867         application->dot_dir = NULL;
868         g_free (application->data_dir);
869         application->data_dir = NULL;
870         g_free (application->filechooser_open_uri);
871         application->filechooser_open_uri = NULL;
872         g_free (application->filechooser_save_uri);
873         application->filechooser_save_uri = NULL;
874
875         g_object_unref (application);
876         instance = NULL;
877         
878         gtk_main_quit ();
879 }
880
881 static void
882 ev_application_class_init (EvApplicationClass *ev_application_class)
883 {
884 #ifdef ENABLE_DBUS
885         dbus_g_object_type_install_info (EV_TYPE_APPLICATION,
886                                          &dbus_glib_ev_application_object_info);
887 #endif
888 }
889
890 static void
891 ev_application_init (EvApplication *ev_application)
892 {
893         GError *error = NULL;
894
895         ev_application->dot_dir = g_build_filename (g_get_home_dir (),
896                                                     ".gnome2",
897                                                     "evince",
898                                                     NULL);
899
900 #ifdef G_OS_WIN32
901 {
902         gchar *dir;
903
904         dir = g_win32_get_package_installation_directory_of_module (NULL);
905         ev_application->data_dir = g_build_filename (dir, "share", "evince", NULL);
906         g_free (dir);
907 }
908 #else
909         ev_application->data_dir = g_strdup (DATADIR);
910 #endif
911
912         ev_application_init_session (ev_application);
913
914         ev_application_accel_map_load (ev_application);
915
916         ev_application->scr_saver = totem_scrsaver_new ();
917
918 #ifdef ENABLE_DBUS
919         ev_application->connection = dbus_g_bus_get (DBUS_BUS_STARTER, &error);
920         if (ev_application->connection) {
921                 dbus_g_connection_register_g_object (ev_application->connection,
922                                                      APPLICATION_DBUS_OBJECT_PATH,
923                                                      G_OBJECT (ev_application));
924         } else {
925                 g_warning ("Error connection to DBus: %s\n", error->message);
926                 g_error_free (error);
927         }
928         ev_application->keys = ev_media_player_keys_new ();
929 #endif /* ENABLE_DBUS */
930 }
931
932 gboolean
933 ev_application_has_window (EvApplication *application)
934 {
935         GList   *windows = ev_application_get_windows (application);
936         gboolean retval = windows != NULL;
937
938         g_list_free (windows);
939
940         return retval;
941 }
942
943 const gchar *
944 ev_application_get_uri (EvApplication *application)
945 {
946         return application->uri;
947 }
948
949 /**
950  * ev_application_get_media_keys:
951  * @application: The instance of the application.
952  *
953  * It gives you access to the media player keys handler object.
954  *
955  * Returns: A #EvMediaPlayerKeys.
956  */
957 GObject *
958 ev_application_get_media_keys (EvApplication *application)
959 {
960 #ifdef ENABLE_DBUS
961         return G_OBJECT (application->keys);
962 #else
963         return NULL;
964 #endif /* ENABLE_DBUS */
965 }
966
967 void
968 ev_application_set_filechooser_uri (EvApplication       *application,
969                                     GtkFileChooserAction action,
970                                     const gchar         *uri)
971 {
972         if (action == GTK_FILE_CHOOSER_ACTION_OPEN) {
973                 g_free (application->filechooser_open_uri);
974                 application->filechooser_open_uri = g_strdup (uri);
975         } else if (action == GTK_FILE_CHOOSER_ACTION_SAVE) {
976                 g_free (application->filechooser_save_uri);
977                 application->filechooser_save_uri = g_strdup (uri);
978         }
979 }
980
981 const gchar *
982 ev_application_get_filechooser_uri (EvApplication       *application,
983                                     GtkFileChooserAction action)
984 {
985         if (action == GTK_FILE_CHOOSER_ACTION_OPEN) {
986                 if (application->filechooser_open_uri)
987                         return application->filechooser_open_uri;
988         } else if (action == GTK_FILE_CHOOSER_ACTION_SAVE) {
989                 if (application->filechooser_save_uri)
990                         return application->filechooser_save_uri;
991         }
992
993         return NULL;
994 }
995
996 void
997 ev_application_screensaver_enable (EvApplication *application)
998 {
999         totem_scrsaver_enable (application->scr_saver);
1000 }
1001
1002 void
1003 ev_application_screensaver_disable (EvApplication *application)
1004 {
1005         totem_scrsaver_disable (application->scr_saver);
1006 }
1007
1008 const gchar *
1009 ev_application_get_dot_dir (EvApplication *application,
1010                             gboolean create)
1011 {
1012         if (create)
1013                 g_mkdir_with_parents (application->dot_dir, 0700);
1014
1015         return application->dot_dir;
1016 }
1017
1018 const gchar *
1019 ev_application_get_data_dir (EvApplication   *application)
1020 {
1021         return application->data_dir;
1022 }