scroll-child

The scroll-child signal is emitted when the child widget is being scrolled by a keyboard action. The default key bindings with resulting scrolltype and horizontal arguments are:

Table 2.

Control+Left ArrowGtk::SCROLL_STEP_BACKWARD (horizontal)
Control+Right ArrowGtk::SCROLL_STEP_FORWARD (horizontal)
Control+Up ArrowGtk::SCROLL_STEP_BACKWARD (vertical)
Control+Down ArrowGtk::SCROLL_STEP_FORWARD (vertical)
Control+Page UpGtk::SCROLL_PAGE_BACKWARD (horizontal)
Control+Page DownGtk::SCROLL_PAGE_FORWARD (horizontal)
Page UpGtk::SCROLL_PAGE_BACKWARD (vertical)
Page DownGtk::SCROLL_PAGE_FORWARD (vertical)
Control+HomeGtk::SCROLL_START (horizontal)
Control+EndGtk::SCROLL_END (horizontal)
HomeGtk::SCROLL_START (vertical)
EndGtk::SCROLL_END (vertical)

Callback function

void callback(GtkScrolledWindow scrolledwindow, GtkScrollType scrolltype, bool horizontal);