My problem consists in that I have replaced a GtkImage for a GtkDrawingArea widget and it's not scrolling like it happens with the GtkImage.
This is how I place both my GtkImage and GtkDrawingArea (one at a time).
- GtkScrolledWindow
- GtkViewPort
- GtkImage / GtkDrawingArea
- GtkViewPort
I thought this would have been enough.
With the GtkImage: I scroll horizontally and vertically and the GtkImageViewport loads the part of the PixBuf that should be displayed, as you can see here:
With the GtkDrawingArea: the scroll bars occupy all the available area, so the image won't move, as you can see here:
If I resize the window, the portion of the image that is not visible and should be visible when scrolling appears:
NOTE1: I want to be able to draw on the image and work with the pixels coordinates, that's why I think using Gtk.DrawingArea and Cairo was a good idea.
NOTE2: I've tried both through Glade, and through code using scrolledwindow.add_with_viewport(drawing_area)
As Nico238 suggested out, I was not explicitly requesting the area for the DrawingArea. I set now the DrawingArea dimensions based on the image I'm drawing.