/////////////////////////////////////////////////////////////////////////////
/**
@page overview_scrolling Scrolled Windows
/////////////////////////////////////////////////////////////////////////////
/**
@page overview_scrolling Scrolled Windows
Scrollbars come in various guises in wxWidgets. All windows have the potential
to show a vertical scrollbar and/or a horizontal scrollbar: it is a basic
Scrollbars come in various guises in wxWidgets. All windows have the potential
to show a vertical scrollbar and/or a horizontal scrollbar: it is a basic
the scrollbars, nothing at all would happen. This is deliberate, because the
@e interpretation of scroll events varies from one window class to another.
the scrollbars, nothing at all would happen. This is deliberate, because the
@e interpretation of scroll events varies from one window class to another.
functionality to make scrolling really work. It assumes that scrolling happens
in consistent units, not different-sized jumps, and that page size is
represented by the visible portion of the window. It is suited to drawing
functionality to make scrolling really work. It assumes that scrolling happens
in consistent units, not different-sized jumps, and that page size is
represented by the visible portion of the window. It is suited to drawing
is an example of a class that implements its own scrolling, largely because
columns and rows can vary in size.
is an example of a class that implements its own scrolling, largely because
columns and rows can vary in size.