From 4dbd42ed5001401cb79917b6f49be0af81ccc28d Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Thu, 11 Feb 2010 13:30:10 +0100 Subject: Bug #604522 - Mouse wheel scroll doesn't work above inline images --- plugins/image-inline/image-inline.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'plugins') diff --git a/plugins/image-inline/image-inline.c b/plugins/image-inline/image-inline.c index fdff39a921..12568eecca 100644 --- a/plugins/image-inline/image-inline.c +++ b/plugins/image-inline/image-inline.c @@ -258,6 +258,24 @@ size_allocate_cb (GtkHTMLEmbedded *embedded, image_object->widget, widget_width, widget_height); } +static void +mouse_wheel_scroll_cb (GtkWidget *img_view, GdkScrollDirection direction, ImageInlinePObject *image_object) +{ + GtkHTML *html; + gint steps = 2; + + g_return_if_fail (image_object != NULL); + g_return_if_fail (image_object->object.format != NULL); + g_return_if_fail (image_object->object.format->html != NULL); + + html = image_object->object.format->html; + + while (steps > 0) { + g_signal_emit_by_name (html, "scroll", (direction == GDK_SCROLL_DOWN || direction == GDK_SCROLL_UP) ? GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL, (direction == GDK_SCROLL_DOWN || direction == GDK_SCROLL_RIGHT) ? GTK_SCROLL_STEP_FORWARD : GTK_SCROLL_STEP_BACKWARD, 2.0, NULL); + steps--; + } +} + static void org_gnome_image_inline_pobject_free (EMFormatHTMLPObject *object) { @@ -284,6 +302,9 @@ org_gnome_image_inline_pobject_free (EMFormatHTMLPObject *object) g_signal_handlers_disconnect_by_func ( image_object->widget, drag_data_get_cb, image_object); + g_signal_handlers_disconnect_by_func ( + image_object->widget, + mouse_wheel_scroll_cb, image_object); parent = gtk_widget_get_parent (image_object->widget); if (parent != NULL) @@ -388,6 +409,10 @@ org_gnome_image_inline_embed (EMFormatHTML *format, embedded, "size-allocate", G_CALLBACK (size_allocate_cb), image_object); + g_signal_connect ( + image_view, "mouse-wheel-scroll", + G_CALLBACK (mouse_wheel_scroll_cb), image_object); + return TRUE; } -- cgit v1.2.3