- myfixed->xoffset += dx;
- myfixed->yoffset += dy;
-
- if (!GTK_WIDGET_MAPPED (myfixed))
- {
- gtk_myfixed_position_children (myfixed);
- return;
- }
-
- gtk_myfixed_adjust_allocations (myfixed, -dx, -dy);
-
- if (myfixed->shadow_type == GTK_MYSHADOW_NONE)
- border = 0;
- else
- if (myfixed->shadow_type == GTK_MYSHADOW_THIN)
- border = 1;
- else
- border = 2;
-
- x = 0;
- y = 0;
- w = widget->allocation.width - 2*border;
- h = widget->allocation.height - 2*border;
-
- if (dx > 0)
- {
- if (gravity_works)
- {
- gdk_window_resize (myfixed->bin_window,
- w + dx,
- h);
- gdk_window_move (myfixed->bin_window, x-dx, y);
- gdk_window_move_resize (myfixed->bin_window, x, y, w, h );
- }
- else
- {
- /* FIXME */
- }
-
- gtk_myfixed_expose_area (myfixed,
- MAX ((gint)w - dx, 0),
- 0,
- MIN (dx, w),
- h);
- }
- else if (dx < 0)
- {
- if (gravity_works)
- {
- gdk_window_move_resize (myfixed->bin_window,
- x + dx,
- y,
- w - dx,
- h);
- gdk_window_move (myfixed->bin_window, x, y);
- gdk_window_resize (myfixed->bin_window, w, h );
- }
- else
- {
- /* FIXME */
- }
-
- gtk_myfixed_expose_area (myfixed,
- 0,
- 0,
- MIN (-dx, w),
- h);
- }
-
- if (dy > 0)
- {
- if (gravity_works)
- {
- gdk_window_resize (myfixed->bin_window, w, h + dy);
- gdk_window_move (myfixed->bin_window, x, y-dy);
- gdk_window_move_resize (myfixed->bin_window,
- x, y, w, h );
- }
- else
- {
- /* FIXME */
- }
-
- gtk_myfixed_expose_area (myfixed,
- 0,
- MAX ((gint)h - dy, 0),
- w,
- MIN (dy, h));
- }
- else if (dy < 0)
- {
- if (gravity_works)
- {
- gdk_window_move_resize (myfixed->bin_window,
- x, y+dy, w, h - dy );
- gdk_window_move (myfixed->bin_window, x, y);
- gdk_window_resize (myfixed->bin_window, w, h );
- }
- else
- {
- /* FIXME */
- }
- gtk_myfixed_expose_area (myfixed,
- 0,
- 0,
- w,
- MIN (-dy, (gint)h));
- }
-
- gtk_myfixed_position_children (myfixed);
-
- /* We have to make sure that all exposes from this scroll get
- * processed before we scroll again, or the expose events will
- * have invalid coordinates.
- *
- * We also do expose events for other windows, since otherwise
- * their updating will fall behind the scrolling
- *
- * This also avoids a problem in pre-1.0 GTK where filters don't
- * have access to configure events that were compressed.
- */
-
- gdk_flush();
- while (XCheckIfEvent(GDK_WINDOW_XDISPLAY (myfixed->bin_window),
- &xevent,
- gtk_myfixed_expose_predicate,
- (XPointer)&GDK_WINDOW_XWINDOW (myfixed->bin_window)))