Phoenix Logo

phoenix_title wx.lib.eventStack.AppEventHandlerMixin

The purpose of the AppEventHandlerMixin is to provide a centralized location to manage menu and toolbar events. In an IDE which may have any number of file editors and services open that may want to respond to certain menu and toolbar events (e.g. copy, paste, select all), we need this to efficiently make sure that the right handler is handling the event.

To work with this system, views must call:

AddHandlerForID(ID, handlerFunc)

or:

AddUIHandlerForID(ID, handlerFunc)

in their EVT_SET_FOCUS handler, and call Remove(UI)HandlerForID(ID) in their EVT_KILL_FOCUS handler.


class_hierarchy Class Hierarchy

Inheritance diagram for class AppEventHandlerMixin:

api Class API



class AppEventHandlerMixin

The purpose of the AppEventHandlerMixin is to provide a centralized location to manage menu and toolbar events. In an IDE which may have any number of file editors and services open that may want to respond to certain menu and toolbar events (e.g. copy, paste, select all), we need this to efficiently make sure that the right handler is handling the event.

To work with this system, views must call:

AddHandlerForID(ID, handlerFunc)

or:

AddUIHandlerForID(ID, handlerFunc)

in their EVT_SET_FOCUS handler, and call Remove(UI)HandlerForID(ID) in their EVT_KILL_FOCUS handler.


Methods



__init__(self)


AddHandlerForID(self, eventID, handlerFunc)


AddHandlerForIDs(self, eventID_list, handlerFunc)


AddUIHandlerForID(self, eventID, handlerFunc)


HandleEvent(self, event)


HandleUpdateUIEvent(self, event)


RemoveHandlerForID(self, eventID)


RemoveHandlerForIDs(self, eventID_list)


RemoveUIHandlerForID(self, eventID)