]> www.fi.muni.cz Git - evince.git/blob - shell/ev-application.c
Remember page setup options too. Paper size is globally remembered while
[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 #include <config.h>
24
25 #include <string.h>
26
27 #include <glib.h>
28 #include <glib/gi18n.h>
29 #include <gtk/gtk.h>
30 #include <gdk/gdkx.h>
31
32 #include "totem-scrsaver.h"
33 #include "eggsmclient.h"
34
35 #include "ev-application.h"
36 #include "ev-document-factory.h"
37 #include "ev-file-helpers.h"
38 #include "ev-utils.h"
39
40 #ifdef ENABLE_DBUS
41 #include "ev-media-player-keys.h"
42 #endif /* ENABLE_DBUS */
43
44 #ifdef ENABLE_DBUS
45 #include <dbus/dbus-glib-bindings.h>
46 #include "ev-application-service.h"
47 #endif
48
49 static void ev_application_add_icon_path_for_screen (GdkScreen     *screen);
50 static void ev_application_save_print_settings      (EvApplication *application);
51
52 struct _EvApplication {
53         GObject base_instance;
54
55         gchar *accel_map_file;
56         
57         gchar *toolbars_file;
58
59         EggToolbarsModel *toolbars_model;
60
61         TotemScrsaver *scr_saver;
62
63         EggSMClient *smclient;
64
65         gchar *last_chooser_uri;
66
67 #ifdef ENABLE_DBUS
68         EvMediaPlayerKeys *keys;
69 #endif /* ENABLE_DBUS */
70
71         GtkPrintSettings *print_settings;
72         GtkPageSetup     *page_setup;
73         GKeyFile         *print_settings_file;
74 };
75
76 struct _EvApplicationClass {
77         GObjectClass base_class;
78 };
79
80 G_DEFINE_TYPE (EvApplication, ev_application, G_TYPE_OBJECT);
81
82 #define APPLICATION_SERVICE_NAME "org.gnome.evince.ApplicationService"
83
84 #define EV_PRINT_SETTINGS_FILE "print-settings"
85 #define EV_PRINT_SETTINGS_GROUP "Print Settings"
86 #define EV_PAGE_SETUP_GROUP "Page Setup"
87
88 #ifdef ENABLE_DBUS
89 gboolean
90 ev_application_register_service (EvApplication *application)
91 {
92         static DBusGConnection *connection = NULL;
93         DBusGProxy *driver_proxy;
94         GError *err = NULL;
95         guint request_name_result;
96
97         if (connection) {
98                 g_warning ("Service already registered.");
99                 return FALSE;
100         }
101         
102         connection = dbus_g_bus_get (DBUS_BUS_STARTER, &err);
103         if (connection == NULL) {
104                 g_warning ("Service registration failed.");
105                 g_error_free (err);
106
107                 return FALSE;
108         }
109
110         driver_proxy = dbus_g_proxy_new_for_name (connection,
111                                                   DBUS_SERVICE_DBUS,
112                                                   DBUS_PATH_DBUS,
113                                                   DBUS_INTERFACE_DBUS);
114
115         if (!org_freedesktop_DBus_request_name (driver_proxy,
116                                                 APPLICATION_SERVICE_NAME,
117                                                 DBUS_NAME_FLAG_DO_NOT_QUEUE,
118                                                 &request_name_result, &err)) {
119                 g_warning ("Service registration failed.");
120                 g_clear_error (&err);
121         }
122
123         g_object_unref (driver_proxy);
124         
125         if (request_name_result == DBUS_REQUEST_NAME_REPLY_EXISTS) {
126                 return FALSE;
127         }
128
129         dbus_g_object_type_install_info (EV_TYPE_APPLICATION,
130                                          &dbus_glib_ev_application_object_info);
131         dbus_g_connection_register_g_object (connection,
132                                              "/org/gnome/evince/Evince",
133                                              G_OBJECT (application));
134         
135         application->scr_saver = totem_scrsaver_new (connection);
136         
137         return TRUE;
138 }
139 #endif /* ENABLE_DBUS */
140
141 /**
142  * ev_application_get_instance:
143  *
144  * Checks for #EvApplication instance, if it doesn't exist it does create it.
145  *
146  * Returns: an instance of the #EvApplication data.
147  */
148 EvApplication *
149 ev_application_get_instance (void)
150 {
151         static EvApplication *instance;
152
153         if (!instance) {
154                 instance = EV_APPLICATION (g_object_new (EV_TYPE_APPLICATION, NULL));
155         }
156
157         return instance;
158 }
159
160 /* Session */
161 gboolean
162 ev_application_load_session (EvApplication *application)
163 {
164         GKeyFile *state_file;
165         gchar   **uri_list;
166         
167         if (!egg_sm_client_is_resumed (application->smclient))
168                 return FALSE;
169
170         state_file = egg_sm_client_get_state_file (application->smclient);
171         if (!state_file)
172                 return FALSE;
173
174         uri_list = g_key_file_get_string_list (state_file,
175                                                "Evince",
176                                                "documents",
177                                                NULL, NULL);
178         if (uri_list) {
179                 gint i;
180
181                 for (i = 0; uri_list[i]; i++) {
182                         if (g_ascii_strcasecmp (uri_list[i], "empty-window") == 0)
183                                 ev_application_open_window (application, NULL, GDK_CURRENT_TIME, NULL);
184                         else
185                                 ev_application_open_uri (application, uri_list[i], NULL, GDK_CURRENT_TIME, NULL);
186                 }
187                 g_strfreev (uri_list);
188         }
189         g_key_file_free (state_file);
190
191         return TRUE;
192 }
193
194 static void
195 smclient_save_state_cb (EggSMClient   *client,
196                         GKeyFile      *state_file,
197                         EvApplication *application)
198 {
199         GList *windows, *l;
200         gint i;
201         const gchar **uri_list;
202         const gchar *empty = "empty-window";
203
204         windows = ev_application_get_windows (application);
205         if (!windows)
206                 return;
207
208         uri_list = g_new (const gchar *, g_list_length (windows));
209         for (l = windows, i = 0; l != NULL; l = g_list_next (l), i++) {
210                 EvWindow *window = EV_WINDOW (l->data);
211
212                 if (ev_window_is_empty (window))
213                         uri_list[i] = empty;
214                 else
215                         uri_list[i] = ev_window_get_uri (window);
216         }
217         g_key_file_set_string_list (state_file,
218                                     "Evince",
219                                     "documents", 
220                                     (const char **)uri_list,
221                                     i);
222         g_free (uri_list);
223 }
224
225 static void
226 smclient_quit_cb (EggSMClient   *client,
227                   EvApplication *application)
228 {
229         ev_application_shutdown (application);
230 }
231
232 static void
233 ev_application_init_session (EvApplication *application)
234 {
235         application->smclient = egg_sm_client_get ();
236         g_signal_connect (application->smclient, "save_state",
237                           G_CALLBACK (smclient_save_state_cb),
238                           application);
239         g_signal_connect (application->smclient, "quit",
240                           G_CALLBACK (smclient_quit_cb),
241                           application);
242 }
243
244 /**
245  * ev_display_open_if_needed:
246  * @name: the name of the display to be open if it's needed.
247  *
248  * Search among all the open displays if any of them have the same name as the
249  * passed name. If the display isn't found it tries the open it.
250  *
251  * Returns: a #GdkDisplay of the display with the passed name.
252  */
253 static GdkDisplay *
254 ev_display_open_if_needed (const gchar *name)
255 {
256         GSList     *displays;
257         GSList     *l;
258         GdkDisplay *display = NULL;
259
260         displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
261
262         for (l = displays; l != NULL; l = l->next) {
263                 const gchar *display_name = gdk_display_get_name ((GdkDisplay *) l->data);
264
265                 if (g_ascii_strcasecmp (display_name, name) == 0) {
266                         display = l->data;
267                         break;
268                 }
269         }
270
271         g_slist_free (displays);
272
273         return display != NULL ? display : gdk_display_open (name);
274 }
275
276 /**
277  * get_screen_from_args:
278  * @args: a #GHashTable with data passed to the application.
279  *
280  * Looks for the screen in the display available in the hash table passed to the
281  * application. If the display isn't opened, it's opened and the #GdkScreen
282  * assigned to the screen in that display returned.
283  *
284  * Returns: the #GdkScreen assigned to the screen on the display indicated by
285  *          the data on the #GHashTable.
286  */
287 static GdkScreen *
288 get_screen_from_args (GHashTable *args)
289 {
290         GValue     *value = NULL;
291         GdkDisplay *display = NULL;
292         GdkScreen  *screen = NULL;
293
294         g_assert (args != NULL);
295         
296         value = g_hash_table_lookup (args, "display");
297         if (value) {
298                 const gchar *display_name;
299                 
300                 display_name = g_value_get_string (value);
301                 display = ev_display_open_if_needed (display_name);
302         }
303         
304         value = g_hash_table_lookup (args, "screen");
305         if (value) {
306                 gint screen_number;
307                 
308                 screen_number = g_value_get_int (value);
309                 screen = gdk_display_get_screen (display, screen_number);
310         }
311
312         return screen;
313 }
314
315 /**
316  * get_window_run_mode_from_args:
317  * @args: a #GHashTable with data passed to the application.
318  *
319  * It does look if the mode option has been passed from command line, using it
320  * as the window run mode, otherwise the run mode will be the normal mode.
321  *
322  * Returns: The window run mode passed from command line or
323  *          EV_WINDOW_MODE_NORMAL in other case.
324  */
325 static EvWindowRunMode
326 get_window_run_mode_from_args (GHashTable *args)
327 {
328         EvWindowRunMode  mode = EV_WINDOW_MODE_NORMAL;
329         GValue          *value = NULL;
330
331         g_assert (args != NULL);
332
333         value = g_hash_table_lookup (args, "mode");
334         if (value) {
335                 mode = g_value_get_uint (value);
336         }
337
338         return mode;
339 }
340
341 /**
342  * get_destination_from_args:
343  * @args: a #GHashTable with data passed to the application.
344  *
345  * It does look for the page-label argument parsed from the command line and
346  * if it does exist, it returns an #EvLinkDest.
347  *
348  * Returns: An #EvLinkDest to page-label if it has been passed from the command
349  *          line, NULL in other case.
350  */
351 static EvLinkDest *
352 get_destination_from_args (GHashTable *args)
353 {
354         EvLinkDest *dest = NULL;
355         GValue     *value = NULL;
356         
357         g_assert (args != NULL);
358         
359         value = g_hash_table_lookup (args, "page-label");
360         if (value) {
361                 const gchar *page_label;
362
363                 page_label = g_value_get_string (value);
364                 dest = ev_link_dest_new_page_label (page_label);
365         }
366
367         return dest;
368 }
369
370 static const gchar *
371 get_find_string_from_args (GHashTable *args)
372 {
373         GValue *value = NULL;
374
375         g_assert (args != NULL);
376
377         value = g_hash_table_lookup (args, "find-string");
378         
379         return value ? g_value_get_string (value) : NULL;
380 }
381
382 /**
383  * get_unlink_temp_file_from_args:
384  * @args: a #GHashTable with data passed to the application.
385  *
386  * It does look if the unlink-temp-file option has been passed from the command
387  * line returning it's boolean representation, otherwise it does return %FALSE.
388  *
389  * Returns: the boolean representation of the unlink-temp-file value or %FALSE
390  *          in other case.
391  */
392 static gboolean
393 get_unlink_temp_file_from_args (GHashTable *args)
394 {
395         gboolean unlink_temp_file = FALSE;
396         GValue  *value = NULL;
397
398         g_assert (args != NULL);
399
400         value = g_hash_table_lookup (args, "unlink-temp-file");
401         if (value) {
402                 unlink_temp_file = g_value_get_boolean (value);
403         }
404         
405         return unlink_temp_file;
406 }
407
408 static const gchar *
409 get_print_settings_from_args (GHashTable *args)
410 {
411         const gchar *print_settings = NULL;
412         GValue      *value = NULL;
413
414         g_assert (args != NULL);
415
416         value = g_hash_table_lookup (args, "print-settings");
417         if (value) {
418                 print_settings = g_value_get_string (value);
419         }
420
421         return print_settings;
422 }
423
424 /**
425  * ev_application_open_window:
426  * @application: The instance of the application.
427  * @args: A #GHashTable with the arguments data.
428  * @timestamp: Current time value.
429  * @error: The #GError facility.
430  * 
431  * Creates a new window and if the args are available, it's not NULL, it gets
432  * the screen from them and assigns the just created window to it. At last it
433  * does show it.
434  *
435  * Returns: %TRUE.
436  */
437 gboolean
438 ev_application_open_window (EvApplication  *application,
439                             GHashTable     *args,
440                             guint32         timestamp,
441                             GError        **error)
442 {
443         GtkWidget *new_window = ev_window_new ();
444         GdkScreen *screen = NULL;
445
446         if (args) {
447                 screen = get_screen_from_args (args);
448         }
449         
450         if (screen) {
451                 gtk_window_set_screen (GTK_WINDOW (new_window), screen);
452         }
453         ev_application_add_icon_path_for_screen (screen);
454
455         if (!GTK_WIDGET_REALIZED (new_window))
456                 gtk_widget_realize (new_window);
457         
458         if (timestamp <= 0)
459                 timestamp = gdk_x11_get_server_time (GTK_WIDGET (new_window)->window);
460         gdk_x11_window_set_user_time (GTK_WIDGET (new_window)->window, timestamp);
461         
462         gtk_window_present (GTK_WINDOW (new_window));
463
464         return TRUE;
465 }
466
467 /**
468  * ev_application_get_empty_window:
469  * @application: The instance of the application.
470  * @screen: The screen where the empty window will be search.
471  *
472  * It does look if there is any empty window in the indicated screen.
473  *
474  * Returns: The first empty #EvWindow in the passed #GdkScreen or NULL in other
475  *          case.
476  */
477 static EvWindow *
478 ev_application_get_empty_window (EvApplication *application,
479                                  GdkScreen     *screen)
480 {
481         EvWindow *empty_window = NULL;
482         GList *windows = ev_application_get_windows (application);
483         GList *l;
484
485         for (l = windows; l != NULL; l = l->next) {
486                 EvWindow *window = EV_WINDOW (l->data);
487
488                 if (ev_window_is_empty (window) &&
489                     gtk_window_get_screen (GTK_WINDOW (window)) == screen) {
490                         empty_window = window;
491                         break;
492                 }
493         }
494
495         g_list_free (windows);
496         
497         return empty_window;
498 }
499
500 /**
501  * ev_application_get_uri_window:
502  * @application: The instance of the application.
503  * @uri: The uri to be opened.
504  *
505  * It looks in the list of the windows for the one with the document represented
506  * by the passed uri on it. If the window is empty or the document isn't present
507  * on any window, it will return NULL.
508  *
509  * Returns: The #EvWindow where the document represented by the passed uri is
510  *          shown, NULL in other case.
511  */
512 static EvWindow *
513 ev_application_get_uri_window (EvApplication *application, const char *uri)
514 {
515         EvWindow *uri_window = NULL;
516         GList *windows = gtk_window_list_toplevels ();
517         GList *l;
518
519         g_return_val_if_fail (uri != NULL, NULL);
520
521         for (l = windows; l != NULL; l = l->next) {
522                 if (EV_IS_WINDOW (l->data)) {
523                         EvWindow *window = EV_WINDOW (l->data);
524                         const char *window_uri = ev_window_get_uri (window);
525
526                         if (window_uri && strcmp (window_uri, uri) == 0 && !ev_window_is_empty (window)) {
527                                 uri_window = window;
528                                 break;
529                         }
530                 }
531         }
532
533         g_list_free (windows);
534         
535         return uri_window;
536 }
537
538 static void
539 ev_application_add_icon_path_for_screen (GdkScreen *screen)
540 {
541         GtkIconTheme *icon_theme;
542
543         icon_theme = screen ? gtk_icon_theme_get_for_screen (screen) : gtk_icon_theme_get_default ();
544         if (icon_theme) {
545                 gchar **path = NULL;
546                 gint    n_paths;
547                 gint    i;
548                 gchar  *ev_icons_path;
549
550                 /* GtkIconTheme will then look in Evince custom hicolor dir
551                  * for icons as well as the standard search paths
552                  */
553                 ev_icons_path = g_build_filename (DATADIR, "icons", NULL);
554                 gtk_icon_theme_get_search_path (icon_theme, &path, &n_paths);
555                 for (i = n_paths - 1; i >= 0; i--) {
556                         if (g_ascii_strcasecmp (ev_icons_path, path[i]) == 0)
557                                 break;
558                 }
559
560                 if (i < 0)
561                         gtk_icon_theme_append_search_path (icon_theme,
562                                                            ev_icons_path);
563
564                 g_free (ev_icons_path);
565                 g_strfreev (path);
566         }       
567 }
568
569 /**
570  * ev_application_open_uri_at_dest:
571  * @application: The instance of the application.
572  * @uri: The uri to be opened.
573  * @screen: Thee screen where the link will be shown.
574  * @dest: The #EvLinkDest of the document.
575  * @mode: The run mode of the window.
576  * @unlink_temp_file: The unlink_temp_file option value.
577  * @timestamp: Current time value.
578  */
579 void
580 ev_application_open_uri_at_dest (EvApplication  *application,
581                                  const char     *uri,
582                                  GdkScreen      *screen,
583                                  EvLinkDest     *dest,
584                                  EvWindowRunMode mode,
585                                  const gchar    *search_string,
586                                  gboolean        unlink_temp_file,
587                                  const gchar    *print_settings, 
588                                  guint           timestamp)
589 {
590         EvWindow *new_window;
591
592         g_return_if_fail (uri != NULL);
593         
594         ev_application_add_icon_path_for_screen (screen);
595
596         new_window = ev_application_get_uri_window (application, uri);
597         
598         if (new_window == NULL) {
599                 new_window = ev_application_get_empty_window (application, screen);
600         }
601
602         if (new_window == NULL) {
603                 new_window = EV_WINDOW (ev_window_new ());
604         }
605
606         if (screen)
607                 gtk_window_set_screen (GTK_WINDOW (new_window), screen);
608
609         /* We need to load uri before showing the window, so
610            we can restore window size without flickering */     
611         ev_window_open_uri (new_window, uri, dest, mode, search_string, 
612                             unlink_temp_file, print_settings);
613
614         if (!GTK_WIDGET_REALIZED (GTK_WIDGET (new_window)))
615                 gtk_widget_realize (GTK_WIDGET (new_window));
616
617         if (timestamp <= 0)
618                 timestamp = gdk_x11_get_server_time (GTK_WIDGET (new_window)->window);
619         gdk_x11_window_set_user_time (GTK_WIDGET (new_window)->window, timestamp);
620
621         ev_document_fc_mutex_lock ();
622         gtk_window_present (GTK_WINDOW (new_window));
623         ev_document_fc_mutex_unlock ();
624 }
625
626 /**
627  * ev_application_open_uri:
628  * @application: The instance of the application.
629  * @uri: The uri to be opened
630  * @args: A #GHashTable with the arguments data.
631  * @timestamp: Current time value.
632  * @error: The #GError facility.
633  */
634 gboolean
635 ev_application_open_uri (EvApplication  *application,
636                          const char     *uri,
637                          GHashTable     *args,
638                          guint           timestamp,
639                          GError        **error)
640 {
641         EvLinkDest      *dest = NULL;
642         EvWindowRunMode  mode = EV_WINDOW_MODE_NORMAL;
643         const gchar     *search_string = NULL;
644         gboolean         unlink_temp_file = FALSE;
645         const gchar     *print_settings = NULL;
646         GdkScreen       *screen = NULL;
647
648         if (args) {
649                 screen = get_screen_from_args (args);
650                 dest = get_destination_from_args (args);
651                 mode = get_window_run_mode_from_args (args);
652                 search_string = get_find_string_from_args (args);
653                 unlink_temp_file = (mode == EV_WINDOW_MODE_PREVIEW &&
654                                     get_unlink_temp_file_from_args (args));
655                 print_settings = get_print_settings_from_args (args);
656         }
657         
658         ev_application_open_uri_at_dest (application, uri, screen,
659                                          dest, mode, search_string,
660                                          unlink_temp_file,
661                                          print_settings, timestamp);
662
663         if (dest)
664                 g_object_unref (dest);
665
666         return TRUE;
667 }
668
669 void
670 ev_application_open_uri_list (EvApplication *application,
671                               GSList        *uri_list,
672                               GdkScreen     *screen,
673                               guint          timestamp)
674 {
675         GSList *l;
676
677         for (l = uri_list; l != NULL; l = l->next) {
678                 ev_application_open_uri_at_dest (application, (char *)l->data,
679                                                  screen, NULL, 0, NULL,
680                                                  FALSE, NULL, timestamp);
681         }
682 }
683
684 void
685 ev_application_shutdown (EvApplication *application)
686 {
687         if (application->accel_map_file) {
688                 gtk_accel_map_save (application->accel_map_file);
689                 g_free (application->accel_map_file);
690                 application->accel_map_file = NULL;
691         }
692         
693         if (application->toolbars_model) {
694                 g_object_unref (application->toolbars_model);
695                 g_free (application->toolbars_file);
696                 application->toolbars_model = NULL;
697                 application->toolbars_file = NULL;
698         }
699
700         ev_application_save_print_settings (application);
701         
702         if (application->print_settings_file) {
703                 g_key_file_free (application->print_settings_file);
704                 application->print_settings_file = NULL;
705         }
706
707         if (application->print_settings) {
708                 g_object_unref (application->print_settings);
709                 application->print_settings = NULL;
710         }
711
712         if (application->page_setup) {
713                 g_object_unref (application->page_setup);
714                 application->page_setup = NULL;
715         }
716
717 #ifdef ENABLE_DBUS
718         if (application->keys) {
719                 g_object_unref (application->keys);
720                 application->keys = NULL;
721         }
722 #endif /* ENABLE_DBUS */
723         
724         g_free (application->last_chooser_uri);
725         g_object_unref (application);
726         
727         gtk_main_quit ();
728 }
729
730 static void
731 ev_application_class_init (EvApplicationClass *ev_application_class)
732 {
733 }
734
735 static void
736 ev_application_init (EvApplication *ev_application)
737 {
738         gint i;
739         const gchar *home_dir;
740         
741         ev_application_init_session (ev_application);
742
743         home_dir = g_get_home_dir ();
744         if (home_dir) {
745                 ev_application->accel_map_file = g_build_filename (home_dir,
746                                                                    ".gnome2",
747                                                                    "accels"
748                                                                    "evince",
749                                                                    NULL);
750                 gtk_accel_map_load (ev_application->accel_map_file);
751         }
752         
753         ev_application->toolbars_model = egg_toolbars_model_new ();
754
755         ev_application->toolbars_file = g_build_filename
756                         (ev_dot_dir (), "evince_toolbar.xml", NULL);
757
758         egg_toolbars_model_load_names (ev_application->toolbars_model,
759                                        DATADIR "/evince-toolbar.xml");
760
761         if (!egg_toolbars_model_load_toolbars (ev_application->toolbars_model,
762                                                ev_application->toolbars_file)) {
763                 egg_toolbars_model_load_toolbars (ev_application->toolbars_model,
764                                                   DATADIR"/evince-toolbar.xml");
765         }
766
767         /* Open item doesn't exist anymore,
768          * convert it to OpenRecent for compatibility
769          */
770         for (i = 0; i < egg_toolbars_model_n_items (ev_application->toolbars_model, 0); i++) {
771                 const gchar *item;
772                 
773                 item = egg_toolbars_model_item_nth (ev_application->toolbars_model, 0, i);
774                 if (g_ascii_strcasecmp (item, "FileOpen") == 0) {
775                         egg_toolbars_model_remove_item (ev_application->toolbars_model, 0, i);
776                         egg_toolbars_model_add_item (ev_application->toolbars_model, 0, i,
777                                                      "FileOpenRecent");
778                         ev_application_save_toolbars_model (ev_application);
779                         break;
780                 }
781         }
782
783         egg_toolbars_model_set_flags (ev_application->toolbars_model, 0,
784                                       EGG_TB_MODEL_NOT_REMOVABLE);
785
786 #ifdef ENABLE_DBUS
787         ev_application->keys = ev_media_player_keys_new ();
788 #endif /* ENABLE_DBUS */
789 }
790
791 /**
792  * ev_application_get_windows:
793  * @application: The instance of the application.
794  *
795  * It creates a list of the top level windows.
796  *
797  * Returns: A #GList of the top level windows.
798  */
799 GList *
800 ev_application_get_windows (EvApplication *application)
801 {
802         GList *l, *toplevels;
803         GList *windows = NULL;
804
805         toplevels = gtk_window_list_toplevels ();
806
807         for (l = toplevels; l != NULL; l = l->next) {
808                 if (EV_IS_WINDOW (l->data)) {
809                         windows = g_list_append (windows, l->data);
810                 }
811         }
812
813         g_list_free (toplevels);
814
815         return windows;
816 }
817
818 /**
819  * ev_application_get_media_keys:
820  * @application: The instance of the application.
821  *
822  * It gives you access to the media player keys handler object.
823  *
824  * Returns: A #EvMediaPlayerKeys.
825  */
826 GObject *
827 ev_application_get_media_keys (EvApplication *application)
828 {
829 #ifdef ENABLE_DBUS
830         return G_OBJECT (application->keys);
831 #else
832         return NULL;
833 #endif /* ENABLE_DBUS */
834 }
835
836 EggToolbarsModel *
837 ev_application_get_toolbars_model (EvApplication *application)
838 {
839         return application->toolbars_model;
840 }
841
842 void
843 ev_application_save_toolbars_model (EvApplication *application)
844 {
845         egg_toolbars_model_save_toolbars (application->toolbars_model,
846                                           application->toolbars_file, "1.0");
847 }
848
849 void
850 ev_application_set_chooser_uri (EvApplication *application, const gchar *uri)
851 {
852         g_free (application->last_chooser_uri);
853         application->last_chooser_uri = g_strdup (uri);
854 }
855
856 const gchar *
857 ev_application_get_chooser_uri (EvApplication *application)
858 {
859         return application->last_chooser_uri;
860 }
861
862 void
863 ev_application_screensaver_enable (EvApplication *application)
864 {
865         if (application->scr_saver)
866                 totem_scrsaver_enable (application->scr_saver); 
867 }
868
869 void
870 ev_application_screensaver_disable (EvApplication *application)
871 {
872         if (application->scr_saver)
873                 totem_scrsaver_disable (application->scr_saver);        
874 }
875
876 static GKeyFile *
877 ev_application_get_print_settings_file (EvApplication *application)
878 {
879         gchar *filename;
880         
881         if (application->print_settings_file)
882                 return application->print_settings_file;
883
884         application->print_settings_file = g_key_file_new ();
885         
886         filename = g_build_filename (ev_dot_dir (), EV_PRINT_SETTINGS_FILE, NULL);
887         if (g_file_test (filename, G_FILE_TEST_IS_REGULAR)) {
888                 GError *error = NULL;
889
890                 g_key_file_load_from_file (application->print_settings_file,
891                                            filename,
892                                            G_KEY_FILE_KEEP_COMMENTS |
893                                            G_KEY_FILE_KEEP_TRANSLATIONS,
894                                            &error);
895                 if (error) {
896                         g_warning ("%s", error->message);
897                         g_error_free (error);
898                 }
899         }
900         g_free (filename);
901
902         return application->print_settings_file;
903 }
904
905 static void
906 ev_application_save_print_settings (EvApplication *application)
907 {
908         GKeyFile *key_file;
909         gchar    *filename;
910         gchar    *data;
911         gssize    data_length;
912         GError   *error = NULL;
913
914         if (!application->print_settings && !application->page_setup)
915                 return;
916         
917         key_file = ev_application_get_print_settings_file (application);
918         if (application->print_settings)
919                 gtk_print_settings_to_key_file (application->print_settings,
920                                                 key_file,
921                                                 EV_PRINT_SETTINGS_GROUP);
922         if (application->page_setup)
923                 gtk_page_setup_to_key_file (application->page_setup,
924                                             key_file,
925                                             EV_PAGE_SETUP_GROUP);
926         
927         filename = g_build_filename (ev_dot_dir (), EV_PRINT_SETTINGS_FILE, NULL);
928         data = g_key_file_to_data (key_file, (gsize *)&data_length, NULL);
929         g_file_set_contents (filename, data, data_length, &error);
930         if (error) {
931                 g_warning ("%s", error->message);
932                 g_error_free (error);
933         }
934         g_free (data);
935         g_free (filename);
936 }
937
938 GtkPrintSettings *
939 ev_application_get_print_settings (EvApplication *application)
940 {
941         GKeyFile         *key_file;
942         GtkPrintSettings *print_settings;
943         
944         if (application->print_settings)
945                 return application->print_settings;
946
947         key_file = ev_application_get_print_settings_file (application);
948         print_settings = g_key_file_has_group (key_file, EV_PRINT_SETTINGS_GROUP) ? 
949                 gtk_print_settings_new_from_key_file (key_file, EV_PRINT_SETTINGS_GROUP, NULL) :
950                 gtk_print_settings_new ();
951
952         application->print_settings = print_settings ? print_settings : gtk_print_settings_new ();
953
954         return application->print_settings;
955 }
956
957 void
958 ev_application_set_print_settings (EvApplication    *application,
959                                    GtkPrintSettings *settings)
960 {
961         GKeyFile *key_file;
962         
963         g_return_if_fail (GTK_IS_PRINT_SETTINGS (settings));
964         
965         if (settings == application->print_settings)
966                 return;
967
968         key_file = ev_application_get_print_settings_file (application);
969         
970         if (application->print_settings)
971                 g_object_unref (application->print_settings);
972         
973         application->print_settings = g_object_ref (settings);
974         gtk_print_settings_to_key_file (settings, key_file, EV_PRINT_SETTINGS_GROUP);
975 }
976
977 GtkPageSetup *
978 ev_application_get_page_setup (EvApplication *application)
979 {
980         GKeyFile     *key_file;
981         GtkPageSetup *page_setup;
982         
983         if (application->page_setup)
984                 return application->page_setup;
985
986         key_file = ev_application_get_print_settings_file (application);
987         page_setup = g_key_file_has_group (key_file, EV_PAGE_SETUP_GROUP) ? 
988                 gtk_page_setup_new_from_key_file (key_file, EV_PAGE_SETUP_GROUP, NULL) :
989                 gtk_page_setup_new ();
990
991         application->page_setup = page_setup ? page_setup : gtk_page_setup_new ();
992
993         return application->page_setup;
994 }
995
996 void
997 ev_application_set_page_setup (EvApplication *application,
998                                GtkPageSetup  *page_setup)
999 {
1000         GKeyFile *key_file;
1001         
1002         g_return_if_fail (GTK_IS_PAGE_SETUP (page_setup));
1003         
1004         if (page_setup == application->page_setup)
1005                 return;
1006
1007         key_file = ev_application_get_print_settings_file (application);
1008         
1009         if (application->page_setup)
1010                 g_object_unref (application->page_setup);
1011         
1012         application->page_setup = g_object_ref (page_setup);
1013         gtk_page_setup_to_key_file (page_setup, key_file, EV_PAGE_SETUP_GROUP);
1014 }