Clarify that there is only a single TAB traversal implementation.

Don't imply that wxPanel can use either native or generic TAB traversal
implementation because this is not true.

Closes #16020.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-02-24 20:54:44 +00:00
parent 0996e5474d
commit b8c3d094aa

View File

@@ -10,9 +10,8 @@
A panel is a window on which controls are placed. It is usually placed within A panel is a window on which controls are placed. It is usually placed within
a frame. Its main feature over its parent class wxWindow is code for handling a frame. Its main feature over its parent class wxWindow is code for handling
child windows and TAB traversal. Since wxWidgets 2.9, there is support both child windows and TAB traversal, which is implemented natively if possible
for TAB traversal implemented by wxWidgets itself as well as native TAB (e.g. in wxGTK) or by wxWidgets itself otherwise.
traversal (such as for GTK 2.0).
@note Tab traversal is implemented through an otherwise undocumented @note Tab traversal is implemented through an otherwise undocumented
intermediate wxControlContainer class from which any class can derive intermediate wxControlContainer class from which any class can derive