]> www.fi.muni.cz Git - evince.git/blob - shell/ev-application.c
ffa58ee72ee00274cc7f05cead9f7855cd89e5ec
[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 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include "ev-application.h"
28 #include "ev-utils.h"
29 #include "ev-file-helpers.h"
30 #include "ev-document-factory.h"
31
32 #include <glib.h>
33 #include <glib/gi18n.h>
34 #include <glib-object.h>
35 #include <gtk/gtkfilechooserdialog.h>
36 #include <gtk/gtkstock.h>
37 #include <gtk/gtkwidget.h>
38 #include <gtk/gtkmain.h>
39 #include <libgnomeui/gnome-client.h>
40 #include <string.h>
41
42 #ifdef ENABLE_DBUS
43 #include "ev-application-service.h"
44 #include <dbus/dbus-glib-bindings.h>
45 #endif
46
47 G_DEFINE_TYPE (EvApplication, ev_application, G_TYPE_OBJECT);
48
49 #define APPLICATION_SERVICE_NAME "org.gnome.evince.ApplicationService"
50
51 #ifdef ENABLE_DBUS
52 gboolean
53 ev_application_register_service (EvApplication *application)
54 {
55         static DBusGConnection *connection = NULL;
56         DBusGProxy *driver_proxy;
57         GError *err = NULL;
58         guint request_name_result;
59
60         if (connection) {
61                 g_warning ("Service already registered.");
62                 return FALSE;
63         }
64         
65         connection = dbus_g_bus_get (DBUS_BUS_STARTER, &err);
66         if (connection == NULL) {
67                 g_warning ("Service registration failed.");
68                 g_error_free (err);
69
70                 return FALSE;
71         }
72
73         driver_proxy = dbus_g_proxy_new_for_name (connection,
74                                                   DBUS_SERVICE_DBUS,
75                                                   DBUS_PATH_DBUS,
76                                                   DBUS_INTERFACE_DBUS);
77
78 #if DBUS_VERSION >= 60  
79         if (!org_freedesktop_DBus_request_name (driver_proxy,
80                                                 APPLICATION_SERVICE_NAME,
81                                                 DBUS_NAME_FLAG_DO_NOT_QUEUE,
82                                                 &request_name_result, &err)) {
83                 g_warning ("Service registration failed.");
84                 g_clear_error (&err);
85         }
86 #else
87         if (!org_freedesktop_DBus_request_name (driver_proxy,
88                                                 APPLICATION_SERVICE_NAME,
89                                                 0, &request_name_result, &err)) {
90                 g_warning ("Service registration failed.");
91                 g_clear_error (&err);
92         }
93 #endif  
94
95         g_object_unref (driver_proxy);
96         
97         if (request_name_result == DBUS_REQUEST_NAME_REPLY_EXISTS) {
98                 return FALSE;
99         }
100
101 #if DBUS_VERSION == 33
102         dbus_g_object_class_install_info (G_OBJECT_GET_CLASS (application),
103                                           &dbus_glib_ev_application_object_info);
104 #else
105         dbus_g_object_type_install_info (EV_TYPE_APPLICATION,
106                                          &dbus_glib_ev_application_object_info);
107 #endif
108
109         dbus_g_connection_register_g_object (connection,
110                                              "/org/gnome/evince/Evince",
111                                              G_OBJECT (application));
112
113         return TRUE;
114 }
115 #endif /* ENABLE_DBUS */
116
117 EvApplication *
118 ev_application_get_instance (void)
119 {
120         static EvApplication *instance;
121
122         if (!instance) {
123                 instance = EV_APPLICATION (g_object_new (EV_TYPE_APPLICATION, NULL));
124         }
125
126         return instance;
127 }
128
129 static void
130 removed_from_session (GnomeClient *client, EvApplication *application)
131 {
132         ev_application_shutdown (application);
133 }
134
135 static gint
136 save_session (GnomeClient *client, gint phase, GnomeSaveStyle save_style, gint shutdown,
137               GnomeInteractStyle interact_style, gint fast, EvApplication *application)
138 {
139         GList *windows, *l;
140         char **restart_argv;
141         int argc = 0, k;
142
143         windows = ev_application_get_windows (application);
144         restart_argv = g_new (char *, g_list_length (windows) + 1);
145         restart_argv[argc++] = g_strdup ("evince");
146
147         for (l = windows; l != NULL; l = l->next) {
148                 EvWindow *window = EV_WINDOW (l->data);
149                 restart_argv[argc++] = g_strdup (ev_window_get_uri (window));
150         }
151
152         gnome_client_set_restart_command (client, argc, restart_argv);
153
154         for (k = 0; k < argc; k++) {
155                 g_free (restart_argv[k]);
156         }
157
158         g_list_free (windows);
159         g_free (restart_argv);
160         
161         return TRUE;
162 }
163
164 static void
165 init_session (EvApplication *application)
166 {
167         GnomeClient *client;
168
169         client = gnome_master_client ();
170
171         g_signal_connect (client, "save_yourself",
172                           G_CALLBACK (save_session), application);      
173         g_signal_connect (client, "die",
174                           G_CALLBACK (removed_from_session), application);
175 }
176
177 gboolean
178 ev_application_open_window (EvApplication  *application,
179                             guint32         timestamp,
180                             GError        **error)
181 {
182         GtkWidget *new_window = ev_window_new ();
183
184         gtk_widget_show (new_window);
185         
186 #ifdef HAVE_GTK_WINDOW_PRESENT_WITH_TIME
187         gtk_window_present_with_time (GTK_WINDOW (new_window),
188                                       timestamp);
189 #else
190         gtk_window_present (GTK_WINDOW (new_window));
191 #endif
192         return TRUE;
193 }
194
195 static EvWindow *
196 ev_application_get_empty_window (EvApplication *application)
197 {
198         EvWindow *empty_window = NULL;
199         GList *windows = ev_application_get_windows (application);
200         GList *l;
201
202         for (l = windows; l != NULL; l = l->next) {
203                 EvWindow *window = EV_WINDOW (l->data);
204
205                 if (ev_window_is_empty (window)) {
206                         empty_window = window;
207                         break;
208                 }
209         }
210
211         g_list_free (windows);
212         
213         return empty_window;
214 }
215
216 static EvWindow *
217 ev_application_get_uri_window (EvApplication *application, const char *uri)
218 {
219         EvWindow *uri_window = NULL;
220         GList *windows = gtk_window_list_toplevels ();
221         GList *l;
222
223         g_return_val_if_fail (uri != NULL, NULL);
224
225         for (l = windows; l != NULL; l = l->next) {
226                 if (EV_IS_WINDOW (l->data)) {
227                         EvWindow *window = EV_WINDOW (l->data);
228                         const char *window_uri = ev_window_get_uri (window);
229
230                         if (window_uri && strcmp (window_uri, uri) == 0 && !ev_window_is_empty (window)) {
231                                 uri_window = window;
232                                 break;
233                         }
234                 }
235         }
236
237         g_list_free (windows);
238         
239         return uri_window;
240 }
241
242 void
243 ev_application_open_uri_at_dest (EvApplication  *application,
244                                  const char     *uri,
245                                  EvLinkDest     *dest,
246                                  guint           timestamp)
247 {
248         EvWindow *new_window;
249
250         g_return_if_fail (uri != NULL);
251
252         new_window = ev_application_get_uri_window (application, uri);
253         if (new_window != NULL) {
254 #ifdef HAVE_GTK_WINDOW_PRESENT_WITH_TIME
255                 gtk_window_present_with_time (GTK_WINDOW (new_window),
256                                               timestamp);
257 #else
258                 gtk_window_present (GTK_WINDOW (new_window));
259 #endif
260                 if (dest)
261                         ev_window_goto_dest (new_window, dest);
262
263                 return;
264         }
265
266         new_window = ev_application_get_empty_window (application);
267
268         if (new_window == NULL) {
269                 new_window = EV_WINDOW (ev_window_new ());
270         }
271
272         /* We need to load uri before showing the window, so
273            we can restore window size without flickering */     
274         ev_window_open_uri (new_window, uri, dest);
275
276         gtk_widget_show (GTK_WIDGET (new_window));
277
278 #ifdef HAVE_GTK_WINDOW_PRESENT_WITH_TIME
279         gtk_window_present_with_time (GTK_WINDOW (new_window),
280                                       timestamp);
281 #else
282         gtk_window_present (GTK_WINDOW (new_window));
283 #endif
284 }
285
286 gboolean
287 ev_application_open_uri (EvApplication  *application,
288                          const char     *uri,
289                          const char     *page_label,
290                          guint           timestamp,
291                          GError        **error)
292 {
293         ev_application_open_uri_at_dest (application, uri, NULL, timestamp);
294         
295         if (page_label && strcmp (page_label, "") != 0) {
296                 EvWindow *window;
297
298                 window = ev_application_get_uri_window (application, uri);
299                 ev_window_open_page_label (window, page_label);
300         }
301
302         return TRUE;
303 }
304
305 void
306 ev_application_open_uri_list (EvApplication *application,
307                               GSList        *uri_list,
308                               guint          timestamp)
309 {
310         GSList *l;
311
312         for (l = uri_list; l != NULL; l = l->next) {
313                 ev_application_open_uri (application, (char *)l->data,
314                                          NULL, timestamp, NULL);
315         }
316 }
317
318 void
319 ev_application_shutdown (EvApplication *application)
320 {
321         if (application->toolbars_model) {
322                 g_object_unref (application->toolbars_model);
323                 g_free (application->toolbars_file);
324                 application->toolbars_model = NULL;
325                 application->toolbars_file = NULL;
326         }
327
328         if (application->recent_model) {
329                 g_object_unref (application->recent_model);
330                 application->recent_model = NULL;
331         }
332         
333         g_free (application->last_chooser_uri);
334         g_object_unref (application);
335         
336         gtk_main_quit ();
337 }
338
339 static void
340 ev_application_class_init (EvApplicationClass *ev_application_class)
341 {
342 }
343
344 static void
345 ev_application_init (EvApplication *ev_application)
346 {
347         init_session (ev_application);
348
349         ev_application->toolbars_model = egg_toolbars_model_new ();
350
351         ev_application->toolbars_file = g_build_filename
352                         (ev_dot_dir (), "evince_toolbar.xml", NULL);
353
354         if (!egg_toolbars_model_load (ev_application->toolbars_model,
355                                       ev_application->toolbars_file)) {
356                 egg_toolbars_model_load (ev_application->toolbars_model,
357                                          DATADIR"/evince-toolbar.xml");
358         }
359
360         egg_toolbars_model_set_flags (ev_application->toolbars_model, 0,
361                                       EGG_TB_MODEL_NOT_REMOVABLE); 
362                                       
363         ev_application->recent_model = egg_recent_model_new (EGG_RECENT_MODEL_SORT_MRU);
364         /* FIXME we should add a mime type filter but current eggrecent
365            has only a varargs style api which does not work well when
366            the list of mime types is dynamic */
367         egg_recent_model_set_limit (ev_application->recent_model, 5);   
368         egg_recent_model_set_filter_groups (ev_application->recent_model,
369                                             "Evince", NULL);
370 }
371
372 GList *
373 ev_application_get_windows (EvApplication *application)
374 {
375         GList *l, *toplevels;
376         GList *windows = NULL;
377
378         toplevels = gtk_window_list_toplevels ();
379
380         for (l = toplevels; l != NULL; l = l->next) {
381                 if (EV_IS_WINDOW (l->data)) {
382                         windows = g_list_append (windows, l->data);
383                 }
384         }
385
386         g_list_free (toplevels);
387
388         return windows;
389 }
390
391 EggToolbarsModel *ev_application_get_toolbars_model (EvApplication *application)
392 {
393         return application->toolbars_model;
394 }
395
396 EggRecentModel *ev_application_get_recent_model (EvApplication *application)
397 {
398         return application->recent_model;
399 }
400
401 void ev_application_save_toolbars_model (EvApplication *application)
402 {
403         egg_toolbars_model_save (application->toolbars_model,
404                                  application->toolbars_file, "1.0");
405 }
406
407 void ev_application_set_chooser_uri (EvApplication *application, const gchar *uri)
408 {
409         g_free (application->last_chooser_uri);
410         application->last_chooser_uri = g_strdup (uri);
411 }
412
413 const gchar* ev_application_get_chooser_uri (EvApplication *application)
414 {
415         return application->last_chooser_uri;
416 }
417