This event class contains information about navigation events, generated by navigation keys such as tab and page down.
This event is mainly used by wxWidgets implementations. A wx.NavigationKeyEvent handler is automatically provided by wxWidgets when you enable keyboard navigation inside a window by inheriting it from NavigationEnabled<>.
Handlers bound for the following event types will receive a wx.NavigationKeyEvent parameter.
EVT_NAVIGATION_KEY: Process a navigation key event.
See also
Returns the child that has the focus, or |
|
Returns |
|
Returns |
|
Returns |
|
Sets the current focus window member. |
|
Sets the direction to forward if direction is |
|
Sets the flags for this event. |
|
Marks the navigation event as from a tab key. |
|
Marks the event as a window change event. |
See |
|
See |
Possible constructors:
NavigationKeyEvent() -> None
NavigationKeyEvent(event : NavigationKeyEvent) -> None
This event class contains information about navigation events, generated by navigation keys such as tab and page down.
__init__ (self)
None
__init__ (self, event : NavigationKeyEvent)
event (wx.NavigationKeyEvent)
None
Returns True
if the navigation was in the forward direction.
bool
Returns True
if the navigation event was from a tab key.
This is required for proper navigation over radio buttons.
bool
Returns True
if the navigation event represents a window change (for example, from Ctrl-Page Down in a notebook).
bool
Sets the current focus window member.
currentFocus (wx.Window)
None
Sets the direction to forward if direction is True
, or backward if False
.
direction (bool)
None
Sets the flags for this event.
The flags can be a combination of the NavigationKeyEvent.__init__
values.
flags (long)
None
Marks the navigation event as from a tab key.
fromTab (bool)
None
Marks the event as a window change event.
windowChange (bool)
None
See GetCurrentFocus
and SetCurrentFocus
See GetDirection
and SetDirection