C++ API Reference
|
User defined Message Types. More...
#include <MUserEventMessage.h>
Static Public Member Functions | |
static MStatus | registerUserEvent (const MString &event) |
Adds a new event type with the given string identifier. More... | |
static bool | isUserEvent (const MString &event) |
Checks if an event type exists with the given event name. More... | |
static MStatus | deregisterUserEvent (const MString &event) |
Removes the event type with the given event name. More... | |
static MCallbackId | addUserEventCallback (const MString &event, MMessage::MBasicFunction func, void *clientData=NULL, MStatus *ReturnStatus=NULL) |
This method registers a callback for user-defined messages. More... | |
static MStatus | postUserEvent (const MString &event, void *clientData=NULL) |
Notifies all callbacks attached to the given event type of the occurence of the event. More... | |
static const char * | className () |
Returns the name of this class. More... | |
Additional Inherited Members | |
Callback result action codes. More... |
User defined Message Types.
This class is used to register user-defined event types, register callbacks with the user-defined event types, and to post user-defined messages.
The registerUserEvent and deregisterUserEvent methods allow user event types to be created and destroyed. User events are identified by a unique string identifier.
The addCallback method registers a function that will be executed whenever the specified message occurs. An id is returned and is used to remove the callback.
The postUserEvent notifies all registered callbacks of the occurence of the user-defined event.
To remove a callback use MMessage::removeCallback. All callbacks that are registered by a plug-in must be removed by that plug-in when it is unloaded. Failure to do so will result in a fatal error.
Adds a new event type with the given string identifier.
The string identifier can then be used in all other MUserEventMessage methods to operate on the new event type.
[in] | eventName | the name of the new event to register. Any non-empty string may be used as an event name. |
|
static |
Checks if an event type exists with the given event name.
[in] | eventName | the event name |
Removes the event type with the given event name.
If callbacks have been registered with this event type, they will become invalid after a successful call to this method.
[in] | eventName | the event name |
|
static |
This method registers a callback for user-defined messages.
The parameter clientData will be passed to callbacks registered for this event whenever the event is triggered. To override the data that is passed to the callback whenever the event is posted, you can supply a clientData pointer to postUserEvent().
[in] | eventName | the event name to register the callback for |
[in] | func | the callback function |
[in] | clientData | User defined data that will be passed to the callback function |
[out] | ReturnStatus | status code |
Notifies all callbacks attached to the given event type of the occurence of the event.
If clientData is specified, this data will be passed to all callbacks that receive the event. If clientData is NULL (the default), the clientData registered with addUserEventCallback will be passed to the callbacks.
[in] | eventName | the event name |
[in] | clientData | caller-defined data to be passed to the callback |
|
static |
Returns the name of this class.