wx.PyEventBinder¶
Instances of this class are used to bind specific events to event handlers.
Class Hierarchy¶
Methods Summary¶
Bind this set of event types to target using its Connect() method. |
|
Remove an event binding. |
|
For backwards compatibility with the old |
|
Make it easy to get to the default EventType typeID for this |
Properties Summary¶
See |
Class API¶
- class wx.PyEventBinder(object)¶
Instances of this class are used to bind specific events to event handlers.
Methods¶
- __init__(self, evtType, expectedIDs=0)¶
- Bind(self, target, id1, id2, function)¶
Bind this set of event types to target using its Connect() method.
- Unbind(self, target, id1, id2, handler=None)¶
Remove an event binding.
- __call__(self, *args)¶
For backwards compatibility with the old
EVT_*
functions. Should be called with either (window, func), (window, ID, func) or (window, ID1, ID2, func) parameters depending on the type of the event.
- _getEvtType(self)¶
Make it easy to get to the default wxEventType typeID for this event binder.
Properties¶
- typeId¶
See
_getEvtType