Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-page-action.c
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>2007-12-20 22:31:05 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2007-12-20 22:31:05 (GMT)
commitbc1469dfae8b36ed73052b1cbcdaed3c2fcaf9a2 (patch)
tree2d8db142b81b192b9fbc9c6c2a8ff5c94fb6e800 /shell/ev-page-action.c
parentd24b16f917ca749e9ffebbec8eca0ee791e1b67a (diff)
Scroll pages in page entry with mouse wheel. Fixes bug #324122. Thanks to
2007-12-21 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * shell/ev-page-action.c: (page_scroll_cb), (create_tool_item): Scroll pages in page entry with mouse wheel. Fixes bug #324122. Thanks to David Turner <cillian64@googlemail.com>. svn path=/trunk/; revision=2776
Diffstat (limited to 'shell/ev-page-action.c')
-rw-r--r--shell/ev-page-action.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/shell/ev-page-action.c b/shell/ev-page-action.c
index 0571b6d..aab86ec 100644
--- a/shell/ev-page-action.c
+++ b/shell/ev-page-action.c
@@ -143,6 +143,21 @@ activate_cb (GtkWidget *entry, GtkAction *action)
g_free (page_label);
}
+static gboolean page_scroll_cb(GtkWidget *widget, GdkEventScroll *event, EvPageAction* action)
+{
+ gint pageno;
+
+ pageno = ev_page_cache_get_current_page (action->priv->page_cache);
+ if ((event->direction == GDK_SCROLL_DOWN) &&
+ (pageno < ev_page_cache_get_n_pages(action->priv->page_cache) - 1))
+ pageno++;
+ if ((event->direction == GDK_SCROLL_UP) && (pageno > 0))
+ pageno--;
+ ev_page_cache_set_current_page (action->priv->page_cache, pageno);
+
+ return TRUE;
+}
+
static GtkWidget *
create_tool_item (GtkAction *action)
{
@@ -157,6 +172,8 @@ create_tool_item (GtkAction *action)
gtk_box_set_spacing (GTK_BOX (hbox), 6);
proxy->entry = gtk_entry_new ();
+ g_signal_connect(proxy->entry, "scroll-event",G_CALLBACK(page_scroll_cb),action);
+ gtk_widget_add_events(GTK_WIDGET(proxy->entry),GDK_BUTTON_MOTION_MASK);
gtk_entry_set_width_chars (GTK_ENTRY (proxy->entry), 5);
gtk_box_pack_start (GTK_BOX (hbox), proxy->entry, FALSE, FALSE, 0);
gtk_widget_show (proxy->entry);