1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxVScrolledWindow documentation
4 %% Author: Vadim Zeitlin
8 %% Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxVScrolledWindow
}}\label{wxvscrolledwindow
}
14 In the name of this class, "V" may stand for "variable" because it can be
15 used for scrolling lines of variable heights; "virtual" because it is not
16 necessary to know the heights of all lines in advance -- only those which
17 are shown on the screen need to be measured; or, even, "vertical" because
18 this class only supports scrolling in one direction currently (this could
19 and probably will change in the future however).
21 In any case, this is a generalization of the
22 \helpref{wxScrolledWindow
}{wxscrolledwindow
} class which can be only used when
23 all lines have the same height. It lacks some other wxScrolledWindow features
24 however, notably there is currently no support for horizontal scrolling; it
25 can't scroll another window nor only a rectangle of the window and not its
28 To use this class, you need to derive from it and implement
29 \helpref{OnGetLineHeight()
}{wxvscrolledwindowongetlineheight
} pure virtual
30 method. You also must call
\helpref{SetLineCount
}{wxvscrolledwindowsetlinecount
}
31 to let the base class know how many lines it should display but from that
32 moment on the scrolling is handled entirely by wxVScrolledWindow, you only
33 need to draw the visible part of contents in your
{\tt OnPaint()
} method as
34 usual. You should use
\helpref{GetFirstVisibleLine()
}{wxvscrolledwindowgetfirstvisibleline
}
35 and
\helpref{GetLastVisibleLine()
}{wxvscrolledwindowgetlastvisibleline
} to
36 select the lines to display. ote that the device context origin is not shifted
37 so the first visible line always appears at the point $(
0,
0)$ in physical as
38 well as logical coordinates.
40 \wxheading{Derived from
}
42 \helpref{wxPanel
}{wxpanel
}
44 \wxheading{Include files
}
49 \latexignore{\rtfignore{\wxheading{Members
}}}
52 \membersection{wxVScrolledWindow::wxVScrolledWindow
}\label{wxvscrolledwindowctor
}
54 \func{}{wxVScrolledWindow
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id = wxID
\_ANY},
\param{const wxPoint\&
}{pos = wxDefaultPosition
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\param{long
}{style =
0},
\param{const wxString\&
}{name = wxPanelNameStr
}}
56 This is the normal constructor, no need to call Create() after using this one.
58 Note that
{\tt wxVSCROLL
} is always automatically added to our style, there is
59 no need to specify it explicitly.
61 \func{}{wxVScrolledWindow
}{\void}
63 Default constructor, you must call
\helpref{Create()
}{wxvscrolledwindowcreate
}
66 \wxheading{Parameters
}
68 \docparam{parent
}{The parent window, must not be
{\tt NULL
}}
70 \docparam{id
}{The identifier of this window,
{\tt wxID
\_ANY} by default
}
72 \docparam{pos
}{The initial window position
}
74 \docparam{size
}{The initial window size
}
76 \docparam{style
}{The window style. There are no special style bits defined for
79 \docparam{name
}{The name for this window; usually not used
}
82 \membersection{wxVScrolledWindow::Create
}\label{wxvscrolledwindowcreate
}
84 \func{bool
}{Create
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id = wxID
\_ANY},
\param{const wxPoint\&
}{pos = wxDefaultPosition
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\param{long
}{style =
0},
\param{const wxString\&
}{name = wxPanelNameStr
}}
86 Same as the
\helpref{non default ctor
}{wxvscrolledwindowctor
} but returns
87 status code:
{\tt true
} if ok,
{\tt false
} if the window couldn't have been created.
89 Just as with the ctor above,
{\tt wxVSCROLL
} style is always used, there is no
90 need to specify it explicitly.
93 \membersection{wxVScrolledWindow::GetFirstVisibleLine
}\label{wxvscrolledwindowgetfirstvisibleline
}
95 \constfunc{size
\_t}{GetFirstVisibleLine
}{\void}
97 Returns the index of the first currently visible line.
100 \membersection{wxVScrolledWindow::GetLastVisibleLine
}\label{wxvscrolledwindowgetlastvisibleline
}
102 \constfunc{size
\_t}{GetLastVisibleLine
}{\void}
104 Returns the index of the last currently visible line.
107 \membersection{wxVScrolledWindow::GetLineCount
}\label{wxvscrolledwindowgetlinecount
}
109 \constfunc{size
\_t}{GetLineCount
}{\void}
111 Get the number of lines this window contains (previously set by
112 \helpref{SetLineCount()
}{wxvscrolledwindowsetlinecount
})
115 \membersection{wxVScrolledWindow::OnGetLineHeight
}\label{wxvscrolledwindowongetlineheight
}
117 \constfunc{wxCoord
}{OnGetLineHeight
}{\param{size
\_t }{n
}}
119 This protected virtual function must be overridden in the derived class and it
120 should return the height of the given line in pixels.
124 \helpref{OnGetLinesHint
}{wxvscrolledwindowongetlineshint
}
127 \membersection{wxVScrolledWindow::OnGetLinesHint
}\label{wxvscrolledwindowongetlineshint
}
129 \constfunc{void
}{OnGetLinesHint
}{\param{size
\_t }{lineMin
},
\param{size
\_t }{lineMax
}}
131 This function doesn't have to be overridden but it may be useful to do
132 it if calculating the lines heights is a relatively expensive operation
133 as it gives the user code a possibility to calculate several of them at
136 {\tt OnGetLinesHint()
} is normally called just before
137 \helpref{OnGetLineHeight()
}{wxvscrolledwindowongetlineheight
} but you
138 shouldn't rely on the latter being called for all lines in the interval
139 specified here. It is also possible that OnGetLineHeight() will be
140 called for the lines outside of this interval, so this is really just a
143 Finally note that
{\it lineMin
} is inclusive, while
{\it lineMax
} is exclusive,
147 \membersection{wxVScrolledWindow::RefreshAll
}\label{wxvscrolledwindowrefreshall
}
149 \func{void
}{RefreshAll
}{\void}
151 This function completely refreshes the control, recalculating the number of
152 items shown on screen and repaining them. It should be called when the values
153 returned by
\helpref{OnGetLineHeight
}{wxvscrolledwindowongetlineheight
} change
154 for some reason and the window must be updated to reflect this.
157 \membersection{wxVScrolledWindow::ScrollLines
}\label{wxvscrolledwindowscrolllines
}
159 \func{bool
}{ScrollLines
}{\param{int
}{lines
}}
161 Scroll by the specified number of lines which may be positive (to scroll down)
162 or negative (to scroll up).
164 Returns
{\tt true
} if the window was scrolled,
{\tt false
} otherwise (for
165 example if we're trying to scroll down but we are already showing the last
170 \helpref{LineUp
}{wxwindowlineup
},
\helpref{LineDown
}{wxwindowlinedown
}
173 \membersection{wxVScrolledWindow::ScrollPages
}\label{wxvscrolledwindowscrollpages
}
175 \func{bool
}{ScrollPages
}{\param{int
}{pages
}}
177 Scroll by the specified number of pages which may be positive (to scroll down)
178 or negative (to scroll up).
182 \helpref{ScrollLines
}{wxvscrolledwindowscrolllines
},\\
183 \helpref{PageUp
}{wxwindowpageup
},
\helpref{PageDown
}{wxwindowpagedown
}
186 \membersection{wxVScrolledWindow::ScrollToLine
}\label{wxvscrolledwindowscrolltoline
}
188 \func{bool
}{ScrollToLine
}{\param{size
\_t }{line
}}
190 Scroll to the specified line: it will become the first visible line in
193 Return
{\tt true
} if we scrolled the window,
{\tt false
} if nothing was done.
196 \membersection{wxVScrolledWindow::SetLineCount
}\label{wxvscrolledwindowsetlinecount
}
198 \func{void
}{SetLineCount
}{\param{size
\_t }{count
}}
200 Set the number of lines the window contains: the derived class must
201 provide the heights for all lines with indices up to the one given here
202 in its
\helpref{OnGetLineHeight()
}{wxvscrolledwindowongetlineheight
}.