GtkGis *gtkgis;
GtkGisScale *scale;
+ GtkAllocation allocation;
+
+ gdouble canvas_x;
+ gdouble canvas_y;
+
+ gdouble new_canvas_x;
+ gdouble new_canvas_y;
+
g_return_val_if_fail (IS_GTK_GIS (widget), FALSE);
g_return_val_if_fail (event != NULL, FALSE);
gtkgis = GTK_GIS (widget);
priv = GTK_GIS_GET_PRIVATE (gtkgis);
+ allocation = priv->canvas->allocation;
+
+ canvas_x = (0 - allocation.x) + event->x;
+ canvas_y = (0 - allocation.y) + event->y;
+
+ new_canvas_x = canvas_x;
+ new_canvas_y = canvas_y;
+
+ goo_canvas_convert_from_pixels (GOO_CANVAS (priv->canvas), &new_canvas_x, &new_canvas_y);
+
scale = gtk_gis_get_scale (gtkgis);
if (event->direction == GDK_SCROLL_UP)
gtk_gis_set_scale (gtkgis, scale);
+ /* returns to the mouse */
+ goo_canvas_convert_to_pixels (GOO_CANVAS (priv->canvas), &new_canvas_x, &new_canvas_y);
+
+ gtk_layout_move (GTK_LAYOUT (priv->scroll_win), priv->canvas,
+ allocation.x - (new_canvas_x - canvas_x),
+ allocation.y - (new_canvas_y - canvas_y));
+
return TRUE;
}