]> www.fi.muni.cz Git - evince.git/blobdiff - shell/ev-application.c
Enable print to a PDF. Fixes bug #332121.
[evince.git] / shell / ev-application.c
index 381b4e36c8a7788da53e4e4d1264598a97eca08f..388c8d276d5dea5ac9d4af345b80f0ff34fbafa7 100644 (file)
@@ -174,13 +174,109 @@ init_session (EvApplication *application)
                          G_CALLBACK (removed_from_session), application);
 }
 
+static GdkDisplay *
+ev_display_open_if_needed (const gchar *name)
+{
+       GSList     *displays;
+       GSList     *l;
+       GdkDisplay *display = NULL;
+
+       displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
+
+       for (l = displays; l != NULL; l = l->next) {
+               const gchar *display_name = gdk_display_get_name ((GdkDisplay *) l->data);
+
+               if (g_ascii_strcasecmp (display_name, name) == 0) {
+                       display = l->data;
+                       break;
+               }
+       }
+
+       g_slist_free (displays);
+
+       return display != NULL ? display : gdk_display_open (name);
+}
+
+static GdkScreen *
+get_screen_from_args (GHashTable *args)
+{
+       GValue     *value = NULL;
+       GdkDisplay *display = NULL;
+       GdkScreen  *screen = NULL;
+
+       g_assert (args != NULL);
+       
+       value = g_hash_table_lookup (args, "display");
+       if (value) {
+               const gchar *display_name;
+               
+               display_name = g_value_get_string (value);
+               display = ev_display_open_if_needed (display_name);
+       }
+       
+       value = g_hash_table_lookup (args, "screen");
+       if (value) {
+               gint screen_number;
+               
+               screen_number = g_value_get_int (value);
+               screen = gdk_display_get_screen (display, screen_number);
+       }
+
+       return screen;
+}
+
+static EvWindowRunMode
+get_window_run_mode_from_args (GHashTable *args)
+{
+       EvWindowRunMode  mode = EV_WINDOW_MODE_NORMAL;
+       GValue          *value = NULL;
+
+       g_assert (args != NULL);
+
+       value = g_hash_table_lookup (args, "mode");
+       if (value) {
+               mode = g_value_get_uint (value);
+       }
+
+       return mode;
+}
+
+static EvLinkDest *
+get_destination_from_args (GHashTable *args)
+{
+       EvLinkDest *dest = NULL;
+       GValue     *value = NULL;
+       
+       g_assert (args != NULL);
+       
+       value = g_hash_table_lookup (args, "page-label");
+       if (value) {
+               const gchar *page_label;
+
+               page_label = g_value_get_string (value);
+               dest = ev_link_dest_new_page_label (page_label);
+       }
+
+       return dest;
+}
+
 gboolean
 ev_application_open_window (EvApplication  *application,
+                           GHashTable     *args,
                            guint32         timestamp,
                            GError        **error)
 {
        GtkWidget *new_window = ev_window_new ();
+       GdkScreen *screen = NULL;
 
+       if (args) {
+               screen = get_screen_from_args (args);
+       }
+       
+       if (screen) {
+               gtk_window_set_screen (GTK_WINDOW (new_window), screen);
+       }
+       
        gtk_widget_show (new_window);
        
        gtk_window_present_with_time (GTK_WINDOW (new_window),
@@ -189,7 +285,8 @@ ev_application_open_window (EvApplication  *application,
 }
 
 static EvWindow *
-ev_application_get_empty_window (EvApplication *application)
+ev_application_get_empty_window (EvApplication *application,
+                                GdkScreen     *screen)
 {
        EvWindow *empty_window = NULL;
        GList *windows = ev_application_get_windows (application);
@@ -198,7 +295,8 @@ ev_application_get_empty_window (EvApplication *application)
        for (l = windows; l != NULL; l = l->next) {
                EvWindow *window = EV_WINDOW (l->data);
 
-               if (ev_window_is_empty (window)) {
+               if (ev_window_is_empty (window) &&
+                   gtk_window_get_screen (GTK_WINDOW (window)) == screen) {
                        empty_window = window;
                        break;
                }
@@ -238,7 +336,9 @@ ev_application_get_uri_window (EvApplication *application, const char *uri)
 void
 ev_application_open_uri_at_dest (EvApplication  *application,
                                 const char     *uri,
+                                GdkScreen      *screen,
                                 EvLinkDest     *dest,
+                                EvWindowRunMode mode,
                                 guint           timestamp)
 {
        EvWindow *new_window;
@@ -246,24 +346,21 @@ ev_application_open_uri_at_dest (EvApplication  *application,
        g_return_if_fail (uri != NULL);
 
        new_window = ev_application_get_uri_window (application, uri);
-       if (new_window != NULL) {
-               gtk_window_present_with_time (GTK_WINDOW (new_window),
-                                             timestamp);
-               if (dest)
-                       ev_window_goto_dest (new_window, dest);
-
-               return;
+       
+       if (new_window == NULL) {
+               new_window = ev_application_get_empty_window (application, screen);
        }
 
-       new_window = ev_application_get_empty_window (application);
-
        if (new_window == NULL) {
                new_window = EV_WINDOW (ev_window_new ());
        }
 
+       if (screen)
+               gtk_window_set_screen (GTK_WINDOW (new_window), screen);
+
        /* We need to load uri before showing the window, so
           we can restore window size without flickering */     
-       ev_window_open_uri (new_window, uri, dest);
+       ev_window_open_uri (new_window, uri, dest, mode);
 
        gtk_widget_show (GTK_WIDGET (new_window));
 
@@ -274,21 +371,25 @@ ev_application_open_uri_at_dest (EvApplication  *application,
 gboolean
 ev_application_open_uri (EvApplication  *application,
                         const char     *uri,
-                        const char     *page_label,
+                        GHashTable     *args,
                         guint           timestamp,
                         GError        **error)
 {
+       EvLinkDest      *dest = NULL;
+       EvWindowRunMode  mode = EV_WINDOW_MODE_NORMAL;
+       GdkScreen       *screen = NULL;
+
+       if (args) {
+               screen = get_screen_from_args (args);
+               dest = get_destination_from_args (args);
+               mode = get_window_run_mode_from_args (args);
+       }
        
-       if (page_label && strcmp (page_label, "") != 0) {
-               EvLinkDest *dest;
-               
-               dest = ev_link_dest_new_page_label (page_label);
+       ev_application_open_uri_at_dest (application, uri, screen,
+                                        dest, mode, timestamp);
 
-               ev_application_open_uri_at_dest (application, uri, dest, timestamp);
+       if (dest)
                g_object_unref (dest);
-       } else {
-               ev_application_open_uri_at_dest (application, uri, NULL, timestamp);
-       }
 
        return TRUE;
 }
@@ -296,13 +397,14 @@ ev_application_open_uri (EvApplication  *application,
 void
 ev_application_open_uri_list (EvApplication *application,
                              GSList        *uri_list,
+                             GdkScreen     *screen,
                              guint          timestamp)
 {
        GSList *l;
 
        for (l = uri_list; l != NULL; l = l->next) {
-               ev_application_open_uri (application, (char *)l->data,
-                                        NULL, timestamp, NULL);
+               ev_application_open_uri_at_dest (application, (char *)l->data,
+                                                screen, NULL, 0, timestamp);
        }
 }
 
@@ -316,10 +418,12 @@ ev_application_shutdown (EvApplication *application)
                application->toolbars_file = NULL;
        }
 
+#ifndef HAVE_GTK_RECENT
        if (application->recent_model) {
                g_object_unref (application->recent_model);
                application->recent_model = NULL;
        }
+#endif
        
        g_free (application->last_chooser_uri);
        g_object_unref (application);
@@ -346,14 +450,15 @@ ev_application_init (EvApplication *ev_application)
                                       DATADIR "/evince-toolbar.xml");
 
        if (!egg_toolbars_model_load_toolbars (ev_application->toolbars_model,
-                                     ev_application->toolbars_file)) {
+                                              ev_application->toolbars_file)) {
                egg_toolbars_model_load_toolbars (ev_application->toolbars_model,
-                                        DATADIR"/evince-toolbar.xml");
+                                                 DATADIR"/evince-toolbar.xml");
        }
 
        egg_toolbars_model_set_flags (ev_application->toolbars_model, 0,
                                      EGG_TB_MODEL_NOT_REMOVABLE); 
-                                     
+
+#ifndef HAVE_GTK_RECENT
        ev_application->recent_model = egg_recent_model_new (EGG_RECENT_MODEL_SORT_MRU);
        /* FIXME we should add a mime type filter but current eggrecent
            has only a varargs style api which does not work well when
@@ -361,6 +466,7 @@ ev_application_init (EvApplication *ev_application)
        egg_recent_model_set_limit (ev_application->recent_model, 5);   
        egg_recent_model_set_filter_groups (ev_application->recent_model,
                                            "Evince", NULL);
+#endif /* HAVE_GTK_RECENT */
 }
 
 GList *
@@ -387,10 +493,12 @@ EggToolbarsModel *ev_application_get_toolbars_model (EvApplication *application)
        return application->toolbars_model;
 }
 
+#ifndef HAVE_GTK_RECENT
 EggRecentModel *ev_application_get_recent_model (EvApplication *application)
 {
        return application->recent_model;
 }
+#endif
 
 void ev_application_save_toolbars_model (EvApplication *application)
 {