A focus event handler.
__init__ |
Default class constructor. |
OnKeyDown |
Handles the wx.EVT_KEY_DOWN event for FocusHandler . |
OnKillFocus |
Handles the wx.EVT_KILL_FOCUS event for FocusHandler . |
SetMenu |
Sets the listener menu. |
FocusHandler
(wx.EvtHandler)¶A focus event handler.
__init__
(self, menu)¶Default class constructor.
Parameters: | menu – an instance of FlatMenu for which we want to redirect
focus inputs. |
---|
OnKeyDown
(self, event)¶Handles the wx.EVT_KEY_DOWN
event for FocusHandler
.
Parameters: | event – a KeyEvent event to be processed. |
---|
OnKillFocus
(self, event)¶Handles the wx.EVT_KILL_FOCUS
event for FocusHandler
.
Parameters: | event – a FocusEvent event to be processed. |
---|