.\" This is a wxWidgets manpage page generated from the XML docs .TH wxVScrolledWindow 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxVScrolledWindow \- As wxScrolledWindow but supports lines of variable height .SH DESCRIPTION In the name of this class, "V" may stand for "variable" because it can be used for scrolling lines of variable heights; "virtual" because it is not necessary to know the heights of all lines in advance -- only those which are shown on the screen need to be measured; or, even, "vertical" because this class only supports scrolling in one direction currently (this could and probably will change in the future however). In any case, this is a generalization of the wxScrolledWindow class which can be only used when all lines have the same height. It lacks some other wxScrolledWindow features however, notably there is currently no support for horizontal scrolling; it can't scroll another window nor only a rectangle of the window and not its entire client area. To use this class, you need to derive from it and implement OnGetLineHeight() pure virtual method. You also must call SetLineCount to let the base class know how many lines it should display but from that moment on the scrolling is handled entirely by wxVScrolledWindow, you only need to draw the visible part of contents in your OnPaint() method as usual. You should use GetFirstVisibleLine() and GetLastVisibleLine() to select the lines to display. Note that the device context origin is not shifted so the first visible line always appears at the point (0, 0) in physical as well as logical coordinates. .SH "PARENTS" wxPanel .SH "INCLUDE FILES" wx/vscroll.h .SH MEMBERS .SS wxVScrolledWindow (wxWindow* parentwxWindowID id = wxID_ANYconst wxPoint& pos = wxDefaultPositionconst wxSize& size = wxDefaultSizelong style = 0const wxString& name = wxPanelNameStr) This is the normal constructor, no need to call Create() after using this one. Note that wxVSCROLL is always automatically added to our style, there is no need to specify it explicitly. .SS wxVScrolledWindow () Default constructor, you must call Create() later. .SS bool Create (wxWindow* parentwxWindowID id = wxID_ANYconst wxPoint& pos = wxDefaultPositionconst wxSize& size = wxDefaultSizelong style = 0const wxString& name = wxPanelNameStr) Same as the non default ctor but returns status code: true if ok, false if the window couldn't have been created. Just as with the ctor above, wxVSCROLL style is always used, there is no need to specify it explicitly. .SS virtual wxCoord EstimateTotalHeight () This protected function is used internally by wxVScrolledWindow to estimate the total height of the window when SetLineCount is called. The default implementation uses the brute force approach if the number of the items in the control is small enough. Otherwise, it tries to find the average line height using some lines in the beginning, middle and the end. If it is undesirable to access all these lines (some of which might be never shown) just for the total height calculation, you may override the function and provide your own guess better and/or faster. Note that although returning a totally wrong value would still work, it risks to result in very strange scrollbar behaviour so this function should really try to make the best guess possible. .SS size_t GetFirstVisibleLine () Returns the index of the first currently visible line. This is same as GetVisibleBegin and exists only for symmetry with GetLastVisibleLine . .SS size_t GetLastVisibleLine () Returns the index of the last currently visible line. Note that this method returns (size_t)-1 (i.e. a huge positive number) if the control is empty so if this is possible you should use GetVisibleEnd instead. .SS size_t GetLineCount () Get the number of lines this window contains (previously set by SetLineCount() ) .SS size_t GetVisibleBegin () Returns the index of the first currently visible line. .SS size_t GetVisibleEnd () Returns the index of the first line after the currently visible one. If the return value is 0 it means that no lines are currently shown (which only happens if the control is empty). Note that the index returned by this method is not always a valid index as it may be equal to GetLineCount . .SS int HitTest (wxCoord xwxCoord y) .SS int HitTest (const wxPoint& pt) Return the item at the specified (in physical coordinates) position or wxNOT_FOUND if none, i.e. if it is below the last item. .SS bool IsVisible (size_t line) Returns true if the given line is (at least partially) visible or false otherwise. .SS wxCoord OnGetLineHeight (size_t n) This protected virtual function must be overridden in the derived class and it should return the height of the given line in pixels. .SS void OnGetLinesHint (size_t lineMinsize_t lineMax) This function doesn't have to be overridden but it may be useful to do it if calculating the lines heights is a relatively expensive operation as it gives the user code a possibility to calculate several of them at once. OnGetLinesHint() is normally called just before OnGetLineHeight() but you shouldn't rely on the latter being called for all lines in the interval specified here. It is also possible that OnGetLineHeight() will be called for the lines outside of this interval, so this is really just a hint, not a promise. Finally note that lineMin is inclusive, while lineMax is exclusive, as usual. .SS void RefreshLine (size_t line) Refreshes the specified line -- it will be redrawn during the next main loop iteration. .SS void RefreshLines (size_t fromsize_t to) Refreshes all lines between from and to , inclusive. from should be less than or equal to to . .SS void RefreshAll () This function completely refreshes the control, recalculating the number of items shown on screen and repainting them. It should be called when the values returned by OnGetLineHeight change for some reason and the window must be updated to reflect this. .SS bool ScrollLines (int lines) .SS bool ScrollPages (int pages) .SS bool ScrollToLine (size_t line) Scroll to the specified line: it will become the first visible line in the window. Return true if we scrolled the window, false if nothing was done. .SS void SetLineCount (size_t count) Set the number of lines the window contains: the derived class must provide the heights for all lines with indices up to the one given here in its OnGetLineHeight() . .SH "SEE ALSO" wxPanel .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.