2.8.4 ScrolledWindow Object
ScrolledWindow objects are ControlsWindow objects with the following extra methods:
-
Create (or destroy) horizontal and vertical scrollbars. The arguments
specify which you want (default: both). The scrollbars always have
minimum
0
and maximum32767
.
-
You must supply this method. It should return a tuple
(x, y)
giving the current position of the scrollbars (between0
and32767
). You can returnNone
for either to indicate the whole document is visible in that direction.
- Call this method when the document has changed. It will call getscrollbarvalues() and update the scrollbars.
-
Supplied by you and called after user interaction. which will
be
'x'
or'y'
, what will be'-'
,'--'
,'set'
,'++'
or'+'
. For'set'
, value will contain the new scrollbar position.
-
Auxiliary method to help you calculate values to return from
getscrollbarvalues(). You pass document minimum and maximum value
and topmost (leftmost) and bottommost (rightmost) visible values and
it returns the correct number or
None
.
- Takes care of dimming/highlighting scrollbars when a window becomes frontmost. If you override this method, call this one at the end of your method.
- Moves scrollbars to the correct position. Call this method initially if you override it.
- Handles scrollbar interaction. If you override it call this method first, a nonzero return value indicates the hit was in the scrollbars and has been handled.
See About this document... for information on suggesting changes.