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:
@@ -120,11 +120,12 @@ All:
|
||||
|
||||
All (GUI):
|
||||
|
||||
- added wxWindow::MoveBefore/AfterInTabOrder() to change tab navigation order
|
||||
- added wxTaskBarIcon::CreatePopupMenu which is now recommended way
|
||||
of showing popup menu; calling wxTaskBarIcon::PopupMenu directly
|
||||
is discouraged
|
||||
- Added ..._CMD_...(id) variants for wxGrid event table entry macros
|
||||
- Added wxWindow::Navigate for programmatic navigation to the next control.
|
||||
- added ..._CMD_...(id) variants for wxGrid event table entry macros
|
||||
- added wxWindow::Navigate for programmatic navigation to the next control.
|
||||
- wxTextCtrl::OnChar now inserts a tab character if wxTE_PROCESS_TAB is set
|
||||
- added wxKeyEvent::GetUnicodeKey()
|
||||
- added wxKeyEvent::CmdDown() and wxMouseEvent::CmdDown()
|
||||
|
@@ -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}}
|
||||
|
Reference in New Issue
Block a user