git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2007-04-26 10:50:54 +00:00
parent 82008f15b7
commit 1c6c52fdef
6 changed files with 30 additions and 38 deletions

View File

@@ -102,15 +102,15 @@ Returns the index of the last visible column and row based on the scroll
position. This includes any partially visible columns or rows.
\membersection{wxVarHVScrollHelper::HitTest}\label{wxvarhvscrollhelperhittest}
\membersection{wxVarHVScrollHelper::VirtualHitTest}\label{wxvarhvscrollhelpervirtualhittest}
\constfunc{virtual wxPosition}{HitTest}{\param{wxCoord }{x}, \param{wxCoord }{y}}
\constfunc{wxPosition}{VirtualHitTest}{\param{wxCoord }{x}, \param{wxCoord }{y}}
\constfunc{virtual wxPosition}{HitTest}{\param{const wxPoint\& }{pos}}
\constfunc{wxPosition}{VirtualHitTest}{\param{const wxPoint\& }{pos}}
Returns the scroll unit under the device unit given accounting for scroll
position or {\tt wxNOT\_FOUND} (for the row, column, or possibly both values)
if none.
Returns the virtual scroll unit under the device unit given accounting for
scroll position or {\tt wxNOT\_FOUND} (for the row, column, or possibly both
values) if none.
\membersection{wxVarHVScrollHelper::IsVisible}\label{wxvarhvscrollhelperisvisible}

View File

@@ -172,12 +172,13 @@ Returns the index of the last visible unit based on the scroll position. This
includes the last unit even if it is only partially visible.
\membersection{wxVarScrollHelperBase::HitTest}\label{wxvarscrollhelperbasehittest}
\membersection{wxVarScrollHelperBase::VirtualHitTest}\label{wxvarscrollhelperbasevirtualhittest}
\constfunc{virtual int}{HitTest}{\param{wxCoord }{coord}}
\constfunc{int}{VirtualHitTest}{\param{wxCoord }{coord}}
Returns the scroll unit under the device unit given accounting for scroll
position or {\tt wxNOT\_FOUND} if none (i.e. if it is below the last item).
Returns the virtual scroll unit under the device unit given accounting for
scroll position or {\tt wxNOT\_FOUND} if none (i.e. if it is below the last
item).
\membersection{wxVarScrollHelperBase::IsVisible}\label{wxvarscrollhelperbaseisvisible}

View File

@@ -94,6 +94,11 @@ position was 0 and the first line wasn't completely visible.
Deprecated for \helpref{GetRowCount()}{wxvarvscrollhelpergetrowcount}.
\constfunc{int}{HitTest}{\param{wxCoord }{x}, \param{wxCoord }{y}}
\constfunc{int}{HitTest}{\param{const wxPoint\& }{pt}}
Deprecated for \helpref{VirtualHitTest()}{wxvarscrollhelperbasevirtualhittest}.
\constfunc{virtual wxCoord}{OnGetLineHeight}{\param{size\_t }{line}}
Deprecated for \helpref{OnGetRowHeight()}{wxvarvscrollhelperongetrowheight}.