added and documented wxWindow::MoveBefore/AfterInTabOrder()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28132 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-07-01 11:44:37 +00:00
parent eeb9e3d08f
commit a24de76b33
4 changed files with 72 additions and 4 deletions

View File

@@ -1461,6 +1461,34 @@ implements the following methods:\par
\end{twocollist}}
}
\membersection{wxWindow::MoveAfterInTabOrder}\label{wxwindowmoveafterintaborder}
\func{void}{MoveAfterInTabOrder}{\param{wxWindow *}{win}}
Moves this window in the tab navigation order after the specified \arg{win}.
This means that when the user presses \texttt{TAB} key on that other window,
the focus switches to this window.
Default tab order is the same as creation order, this function and
\helpref{MoveBeforeInTabOrder()}{wxwindowmovebeforeintaborder} allow to change
it after creating all the windows.
\wxheading{Parameters}
\docparam{win}{A sibling of this window which should precede it in tab order,
must not be NULL}
\membersection{wxWindow::MoveBeforeInTabOrder}\label{wxwindowmovebeforeintaborder}
\func{void}{MoveBeforeInTabOrder}{\param{wxWindow *}{win}}
Same as \helpref{MoveAfterInTabOrder}{wxwindowmoveafterintaborder} except that
it inserts this window just before \arg{win} instead of putting it right after
it.
\membersection{wxWindow::Navigate}\label{wxwindownavigate}
\func{bool}{Navigate}{\param{int}{ flags = wxNavigationKeyEvent::IsForward}}