Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorcarlosgc <carlosgc@e12069bd-dc25-0410-a696-d39a8afcd844>2008-11-01 11:25:07 (GMT)
committer carlosgc <carlosgc@e12069bd-dc25-0410-a696-d39a8afcd844>2008-11-01 11:25:07 (GMT)
commitb42aa53bdd095eb371ab6e123211e97692429b84 (patch)
treeeb87f15178eaf2ca1290b669b4f395280bded2d2 /shell
parentf26e828977bef2531c93dba6b9005973000b3bd8 (diff)
2008-11-01 Carlos Garcia Campos <carlosgc@gnome.org>
* shell/ev-window.c: (ev_window_cmd_help_contents): Use gtk_show_uri() when availale to display help contents. git-svn-id: svn+ssh://svn.gnome.org/svn/evince/trunk@3243 e12069bd-dc25-0410-a696-d39a8afcd844
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 60ea87c..386a280 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -3318,6 +3318,24 @@ ev_window_cmd_view_autoscroll (GtkAction *action, EvWindow *ev_window)
ev_view_autoscroll_start (EV_VIEW (ev_window->priv->view));
}
+#if GTK_CHECK_VERSION (2, 14, 0)
+static void
+ev_window_cmd_help_contents (GtkAction *action, EvWindow *ev_window)
+{
+ GError *error = NULL;
+
+ gtk_show_uri (gtk_window_get_screen (GTK_WINDOW (ev_window)),
+ "ghelp:evince",
+ GDK_CURRENT_TIME,
+ &error);
+ if (error) {
+ ev_window_error_message (GTK_WINDOW (ev_window),
+ _("There was an error displaying help"),
+ error);
+ g_error_free (error);
+ }
+}
+#else /* !GTK_CHECK_VERSION (2, 14, 0) */
static void
ev_window_cmd_help_contents (GtkAction *action, EvWindow *ev_window)
{
@@ -3366,6 +3384,7 @@ ev_window_cmd_help_contents (GtkAction *action, EvWindow *ev_window)
}
g_free (command);
}
+#endif /* GTK_CHECK_VERSION (2, 14, 0) */
static void
ev_window_cmd_leave_fullscreen (GtkAction *action, EvWindow *window)