1 \section{\class{wxScrolledWindow
}}\label{wxscrolledwindow
}
3 The wxScrolledWindow class manages scrolling for its client area, transforming
4 the coordinates according to the scrollbar positions, and setting the
5 scroll positions, thumb sizes and ranges according to the area in view.
7 Starting from version
2.4 of wxWidgets, there are several ways to use a
8 wxScrolledWindow. In particular, there are now three ways to set the
9 size of the scrolling area:
11 One way is to set the scrollbars directly using a call to
12 \helpref{wxScrolledWindow::SetScrollbars
}{wxscrolledwindowsetscrollbars
}.
13 This is the way it used to be in any previous version of wxWidgets
14 and it will be kept for backwards compatibility.
16 An additional method of manual control, which requires a little less
17 computation of your own, is to set the total size of the scrolling area by
18 calling either
\helpref{wxWindow::SetVirtualSize
}{wxwindowsetvirtualsize
},
19 or
\helpref{wxWindow::FitInside
}{wxwindowfitinside
}, and setting the
20 scrolling increments for it by calling
21 \helpref{wxScrolledWindow::SetScrollRate
}{wxscrolledwindowsetscrollrate
}.
22 Scrolling in some orientation is enabled by setting a non-zero increment
25 The most automatic and newest way is to simply let sizers determine the
26 scrolling area. This is now the default when you set an interior sizer
27 into a wxScrolledWindow with
\helpref{wxWindow::SetSizer
}{wxwindowsetsizer
}.
28 The scrolling area will be set to the size requested by the sizer and
29 the scrollbars will be assigned for each orientation according to the need
30 for them and the scrolling increment set by
31 \helpref{wxScrolledWindow::SetScrollRate
}{wxscrolledwindowsetscrollrate
}.
32 As above, scrolling is only enabled in orientations with a non-zero
33 increment. You can influence the minimum size of the scrolled area
34 controlled by a sizer by calling
35 \helpref{wxWindow::SetVirtualSizeHints
}{wxwindowsetvirtualsizehints
}.
36 (calling
\helpref{wxScrolledWindow::SetScrollbars
}{wxscrolledwindowsetscrollbars
}
37 has analogous effects in wxWidgets
2.4 -- in later versions it may not continue
38 to override the sizer)
40 Note: if Maximum size hints are still supported by SetVirtualSizeHints, use
41 them at your own dire risk. They may or may not have been removed for
2.4,
42 but it really only makes sense to set minimum size hints here. We should
43 probably replace SetVirtualSizeHints with SetMinVirtualSize or similar
44 and remove it entirely in future.
46 As with all windows, an application can draw onto a wxScrolledWindow using
47 a
\helpref{device context
}{dcoverview
}.
49 You have the option of handling the OnPaint handler
50 or overriding the
\helpref{OnDraw
}{wxscrolledwindowondraw
} function, which is
51 passed a pre-scrolled device context (prepared by
52 \helpref{DoPrepareDC
}{wxscrolledwindowdopreparedc
}).
54 If you don't wish to calculate your own scrolling, you must call DoPrepareDC when not drawing from
55 within OnDraw, to set the device origin for the device context according to the current
58 A wxScrolledWindow will normally scroll itself and therefore its child windows as well. It
59 might however be desired to scroll a different window than itself: e.g. when designing a
60 spreadsheet, you will normally only have to scroll the (usually white) cell area, whereas the
61 (usually grey) label area will scroll very differently. For this special purpose, you can
62 call
\helpref{SetTargetWindow
}{wxscrolledwindowsettargetwindow
} which means that pressing
63 the scrollbars will scroll a different window.
65 Note that the underlying system knows nothing about scrolling coordinates, so that all system
66 functions (mouse events, expose events, refresh calls etc) as well as the position of subwindows
67 are relative to the "physical" origin of the scrolled window. If the user insert a child window at
68 position (
10,
10) and scrolls the window down
100 pixels (moving the child window out of the visible
69 area), the child window will
report a position of (
10,-
90).
72 \wxheading{Derived from
}
74 \helpref{wxPanel
}{wxpanel
}\\
75 \helpref{wxWindow
}{wxwindow
}\\
76 \helpref{wxEvtHandler
}{wxevthandler
}\\
77 \helpref{wxObject
}{wxobject
}
79 \wxheading{Include files
}
85 \helpref{wxCore
}{librarieslist
}
87 \wxheading{Window styles
}
90 \begin{twocollist
}\itemsep=
0pt
91 \twocolitem{\windowstyle{wxRETAINED
}}{Uses a backing pixmap to speed refreshes. Motif only.
}
94 See also
\helpref{window styles overview
}{windowstyles
}.
98 Use wxScrolledWindow for applications where the user scrolls by a fixed amount, and
99 where a `page' can be interpreted to be the current visible portion of the window. For
100 more sophisticated applications, use the wxScrolledWindow implementation as a guide
101 to build your own scroll behaviour.
105 \helpref{wxScrollBar
}{wxscrollbar
},
\helpref{wxClientDC
}{wxclientdc
},\\
106 \helpref{wxPaintDC
}{wxpaintdc
},
\helpref{wxVScrolledWindow
}{wxvscrolledwindow
}
108 \latexignore{\rtfignore{\wxheading{Members
}}}
111 \membersection{wxScrolledWindow::wxScrolledWindow
}\label{wxscrolledwindowctor
}
113 \func{}{wxScrolledWindow
}{\void}
117 \func{}{wxScrolledWindow
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{id = -
1},
\rtfsp
118 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
119 \param{long
}{ style = wxHSCROLL
\pipe wxVSCROLL
},
\param{const wxString\&
}{name = ``scrolledWindow"
}}
123 \wxheading{Parameters
}
125 \docparam{parent
}{Parent window.
}
127 \docparam{id
}{Window identifier. A value of -
1 indicates a default value.
}
129 \docparam{pos
}{Window position. If a position of (-
1, -
1) is specified then a default position
132 \docparam{size
}{Window size. If a size of (-
1, -
1) is specified then the window is sized
135 \docparam{style
}{Window style. See
\helpref{wxScrolledWindow
}{wxscrolledwindow
}.
}
137 \docparam{name
}{Window name.
}
141 The window is initially created without visible scrollbars.
142 Call
\helpref{wxScrolledWindow::SetScrollbars
}{wxscrolledwindowsetscrollbars
} to
143 specify how big the virtual window size should be.
146 \membersection{wxScrolledWindow::
\destruct{wxScrolledWindow
}}\label{wxscrolledwindowdtor
}
148 \func{}{\destruct{wxScrolledWindow
}}{\void}
153 \membersection{wxScrolledWindow::CalcScrolledPosition
}\label{wxscrolledwindowcalcscrolledposition
}
155 \constfunc{void
}{CalcScrolledPosition
}{
161 Translates the logical coordinates to the device ones. For example, if a window is
162 scrolled
10 pixels to the bottom, the device coordinates of the origin are (
0,
0)
163 (as always), but the logical coordinates are (
0,
10) and so the call to
164 CalcScrolledPosition(
0,
10, \&xx, \&yy) will return
0 in yy.
168 \helpref{CalcUnscrolledPosition
}{wxscrolledwindowcalcunscrolledposition
}
170 \pythonnote{The wxPython version of this methods accepts only two
171 parameters and returns xx and yy as a tuple of values.
}
173 \perlnote{In wxPerl this method takes two parameters and returns a
174 2-element list
{\tt ( xx, yy )
}.
}
177 \membersection{wxScrolledWindow::CalcUnscrolledPosition
}\label{wxscrolledwindowcalcunscrolledposition
}
179 \constfunc{void
}{CalcUnscrolledPosition
}{
185 Translates the device coordinates to the logical ones. For example, if a window is
186 scrolled
10 pixels to the bottom, the device coordinates of the origin are (
0,
0)
187 (as always), but the logical coordinates are (
0,
10) and so the call to
188 CalcUnscrolledPosition(
0,
0, \&xx, \&yy) will return
10 in yy.
192 \helpref{CalcScrolledPosition
}{wxscrolledwindowcalcscrolledposition
}
194 \pythonnote{The wxPython version of this methods accepts only two
195 parameters and returns xx and yy as a tuple of values.
}
197 \perlnote{In wxPerl this method takes two parameters and returns a
198 2-element list
{\tt ( xx, yy )
}.
}
201 \membersection{wxScrolledWindow::Create
}\label{wxscrolledwindowcreate
}
203 \func{bool
}{Create
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{id = -
1},
\rtfsp
204 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
205 \param{long
}{ style = wxHSCROLL
\pipe wxVSCROLL
},
\param{const wxString\&
}{name = ``scrolledWindow"
}}
207 Creates the window for two-step construction. Derived classes
208 should call or replace this function. See
\helpref{wxScrolledWindow::wxScrolledWindow
}{wxscrolledwindowctor
}\rtfsp
212 \membersection{wxScrolledWindow::EnableScrolling
}\label{wxscrolledwindowenablescrolling
}
214 \func{void
}{EnableScrolling
}{\param{bool
}{ xScrolling
},
\param{bool
}{ yScrolling
}}
216 Enable or disable physical scrolling in the given direction. Physical
217 scrolling is the physical transfer of bits up or down the
218 screen when a scroll event occurs. If the application scrolls by a
219 variable amount (e.g. if there are different font sizes) then physical
220 scrolling will not work, and you should switch it off. Note that you
221 will have to reposition child windows yourself, if physical scrolling
224 \wxheading{Parameters
}
226 \docparam{xScrolling
}{If true, enables physical scrolling in the x direction.
}
228 \docparam{yScrolling
}{If true, enables physical scrolling in the y direction.
}
232 Physical scrolling may not be available on all platforms. Where it is available, it is enabled
236 \membersection{wxScrolledWindow::GetScrollPixelsPerUnit
}\label{wxscrolledwindowgetscrollpixelsperunit
}
238 \constfunc{void
}{GetScrollPixelsPerUnit
}{\param{int*
}{xUnit
},
\param{int*
}{yUnit
}}
240 Get the number of pixels per scroll unit (line), in each direction, as set
241 by
\helpref{wxScrolledWindow::SetScrollbars
}{wxscrolledwindowsetscrollbars
}. A value of zero indicates no
242 scrolling in that direction.
244 \wxheading{Parameters
}
246 \docparam{xUnit
}{Receives the number of pixels per horizontal unit.
}
248 \docparam{yUnit
}{Receives the number of pixels per vertical unit.
}
252 \helpref{wxScrolledWindow::SetScrollbars
}{wxscrolledwindowsetscrollbars
},
\rtfsp
253 \helpref{wxScrolledWindow::GetVirtualSize
}{wxscrolledwindowgetvirtualsize
}
255 \pythonnote{The wxPython version of this methods accepts no
256 parameters and returns a tuple of values for xUnit and yUnit.
}
258 \perlnote{In wxPerl this method takes no parameters and returns a
259 2-element list
{\tt ( xUnit, yUnit )
}.
}
262 \membersection{wxScrolledWindow::GetViewStart
}\label{wxscrolledwindowgetviewstart
}
264 \constfunc{void
}{GetViewStart
}{\param{int*
}{x
},
\param{int*
}{ y
}}
266 Get the position at which the visible portion of the window starts.
268 \wxheading{Parameters
}
270 \docparam{x
}{Receives the first visible x position in scroll units.
}
272 \docparam{y
}{Receives the first visible y position in scroll units.
}
276 If either of the scrollbars is not at the home position,
{\it x
} and/or
277 \rtfsp{\it y
} will be greater than zero. Combined with
\helpref{wxWindow::GetClientSize
}{wxwindowgetclientsize
},
278 the application can use this function to efficiently redraw only the
279 visible portion of the window. The positions are in logical scroll
280 units, not pixels, so to convert to pixels you will have to multiply
281 by the number of pixels per scroll increment.
285 \helpref{wxScrolledWindow::SetScrollbars
}{wxscrolledwindowsetscrollbars
}
287 \pythonnote{The wxPython version of this methods accepts no
288 parameters and returns a tuple of values for x and y.
}
290 \perlnote{In wxPerl this method takes no parameters and returns a
291 2-element list
{\tt ( x, y )
}.
}
294 \membersection{wxScrolledWindow::GetVirtualSize
}\label{wxscrolledwindowgetvirtualsize
}
296 \constfunc{void
}{GetVirtualSize
}{\param{int*
}{x
},
\param{int*
}{y
}}
298 Gets the size in device units of the scrollable window area (as
299 opposed to the client size, which is the area of the window currently
302 \wxheading{Parameters
}
304 \docparam{x
}{Receives the length of the scrollable window, in pixels.
}
306 \docparam{y
}{Receives the height of the scrollable window, in pixels.
}
310 Use
\helpref{wxDC::DeviceToLogicalX
}{wxdcdevicetologicalx
} and
\helpref{wxDC::DeviceToLogicalY
}{wxdcdevicetologicaly
}\rtfsp
311 to translate these units to logical units.
315 \helpref{wxScrolledWindow::SetScrollbars
}{wxscrolledwindowsetscrollbars
},
\rtfsp
316 \helpref{wxScrolledWindow::GetScrollPixelsPerUnit
}{wxscrolledwindowgetscrollpixelsperunit
}
318 \pythonnote{The wxPython version of this methods accepts no
319 parameters and returns a tuple of values for x and y.
}
321 \perlnote{In wxPerl this method takes no parameters and returns a
322 2-element list
{\tt ( x, y )
}.
}
325 \membersection{wxScrolledWindow::IsRetained
}\label{wxscrolledwindowisretained
}
327 \constfunc{bool
}{IsRetained
}{\void}
329 Motif only: true if the window has a backing bitmap.
332 \membersection{wxScrolledWindow::DoPrepareDC
}\label{wxscrolledwindowdopreparedc
}
334 \func{void
}{DoPrepareDC
}{\param{wxDC\&
}{dc
}}
336 Call this function to prepare the device context for drawing a scrolled image. It
337 sets the device origin according to the current scroll position.
339 DoPrepareDC is called automatically within the default wxScrolledWindow::OnPaint event
340 handler, so your
\helpref{wxScrolledWindow::OnDraw
}{wxscrolledwindowondraw
} override
341 will be passed a 'pre-scrolled' device context. However, if you wish to draw from
342 outside of OnDraw (via OnPaint), or you wish to implement OnPaint yourself, you must
343 call this function yourself. For example:
346 void MyWindow::OnEvent(wxMouseEvent& event)
351 dc.SetPen
(*wxBLACK_PEN);
353 event.Position(&x, &y);
354 if (xpos > -1 && ypos > -1 && event.Dragging())
356 dc.DrawLine(xpos, ypos, x, y);
364 \membersection{wxScrolledWindow::OnDraw}\label{wxscrolledwindowondraw}
366 \func{virtual void}{OnDraw}{\param{wxDC\& }{dc}}
368 Called by the default paint event handler to allow the application to define
369 painting behaviour without having to worry about calling
370 \helpref{wxScrolledWindow::DoPrepareDC}{wxscrolledwindowdopreparedc}.
372 Instead of overriding this function you may also just process the paint event
373 in the derived class as usual, but then you will have to call DoPrepareDC()
377 \membersection{wxScrolledWindow::PrepareDC}\label{wxscrolledwindowpreparedc}
379 \func{void}{PrepareDC}{\param{wxDC\& }{dc}}
381 This function is for backwards compatibility only and simply calls
382 \helpref{DoPrepareDC}{wxscrolledwindowdopreparedc} now. Notice that it is
383 \emph{not} called by the default paint event handle (DoPrepareDC() is), so
384 overriding this method in your derived class is useless.
387 \membersection{wxScrolledWindow::Scroll}\label{wxscrolledwindowscroll}
389 \func{void}{Scroll}{\param{int}{ x}, \param{int}{ y}}
391 Scrolls a window so the view start is at the given point.
393 \wxheading{Parameters}
395 \docparam{x}{The x position to scroll to, in scroll units.}
397 \docparam{y}{The y position to scroll to, in scroll units.}
401 The positions are in scroll units, not pixels, so to convert to pixels you
402 will have to multiply by the number of pixels per scroll increment.
403 If either parameter is -1, that position will be ignored (no change in
408 \helpref{wxScrolledWindow::SetScrollbars}{wxscrolledwindowsetscrollbars},\rtfsp
409 \helpref{wxScrolledWindow::GetScrollPixelsPerUnit}{wxscrolledwindowgetscrollpixelsperunit}
412 \membersection{wxScrolledWindow::SetScrollbars}\label{wxscrolledwindowsetscrollbars}
414 \func{void}{SetScrollbars}{\param{int}{ pixelsPerUnitX}, \param{int}{ pixelsPerUnitY},\rtfsp
415 \param{int}{ noUnitsX}, \param{int}{ noUnitsY},\rtfsp
416 \param{int }{xPos = 0}, \param{int}{ yPos = 0},\rtfsp
417 \param{bool }{noRefresh = false}}
419 Sets up vertical and/or horizontal scrollbars.
421 \wxheading{Parameters}
423 \docparam{pixelsPerUnitX}{Pixels per scroll unit in the horizontal direction.}
425 \docparam{pixelsPerUnitY}{Pixels per scroll unit in the vertical direction.}
427 \docparam{noUnitsX}{Number of units in the horizontal direction.}
429 \docparam{noUnitsY}{Number of units in the vertical direction.}
431 \docparam{xPos}{Position to initialize the scrollbars in the horizontal direction, in scroll units.}
433 \docparam{yPos}{Position to initialize the scrollbars in the vertical direction, in scroll units.}
435 \docparam{noRefresh}{Will not refresh window if true.}
439 The first pair of parameters give the number of pixels per `scroll step', i.e. amount
440 moved when the up or down scroll arrows are pressed.
441 The second pair gives the length of scrollbar in scroll steps, which sets the size of the virtual
444 {\it xPos} and {\it yPos} optionally specify a position to scroll to immediately.
446 For example, the following gives a window horizontal and vertical
447 scrollbars with 20 pixels per scroll step, and a size of 50 steps (1000
448 pixels) in each direction.
451 window->SetScrollbars(20, 20, 50, 50);
454 wxScrolledWindow manages the page size itself,
455 using the current client window size as the page size.
457 Note that for more sophisticated scrolling applications, for example where
458 scroll steps may be variable according to the position in the document, it will be
459 necessary to derive a new class from wxWindow, overriding {\bf OnSize} and
460 adjusting the scrollbars appropriately.
464 \helpref{wxWindow::SetVirtualSize}{wxwindowsetvirtualsize}
467 \membersection{wxScrolledWindow::SetScrollRate}\label{wxscrolledwindowsetscrollrate}
469 \func{void}{SetScrollRate}{\param{int}{ xstep}, \param{int}{ ystep}}
471 Set the horizontal and vertical scrolling increment only. See the pixelsPerUnit
472 parameter in SetScrollbars.
475 \membersection{wxScrolledWindow::SetTargetWindow}\label{wxscrolledwindowsettargetwindow}
477 \func{void}{SetTargetWindow}{\param{wxWindow* }{window}}
479 Call this function to tell wxScrolledWindow to perform the actual scrolling on
480 a different window (and not on itself).