C++ API Reference
|
Base class for context creation commands. More...
#include <MPxContextCommand.h>
Public Member Functions | |
MPxContextCommand () | |
Class constructor. | |
virtual | ~MPxContextCommand () |
Class destructor. | |
virtual MStatus | doEditFlags () |
This method is called when the command is called in edit mode. More... | |
virtual MStatus | doQueryFlags () |
This method is called when the command is called in query mode. More... | |
virtual MPxContext * | makeObj () |
This function is used to instantiate a proxy context. More... | |
virtual MStatus | appendSyntax () |
This method should be overridden to append syntax to the context command. More... | |
MStatus | setResult (bool result) |
This method should be called when the result of the context command is a boolean. More... | |
MStatus | setResult (int result) |
This method should be called when the result of the context command is an integer. More... | |
MStatus | setResult (double result) |
This method should be called when the result of the context command is a double. More... | |
MStatus | setResult (const MString &result) |
This method should be called when the result of the context command a string. More... | |
Static Public Member Functions | |
static const char * | className () |
Returns the name of this class. More... | |
Protected Member Functions | |
MSyntax | syntax (MStatus *ReturnStatus=NULL) const |
USE _syntax() IN SCRIPT. More... | |
MArgParser | parser (MStatus *ReturnStatus=NULL) const |
USE _parser() IN SCRIPT. More... | |
Base class for context creation commands.
This is the base class for context creation commands.
The purpose of this command class is to create instances of user contexts derived from MPxContext, and to allow the MEL programmer to edit and query various properties of the context related to this command.
The user will derive off of this class and override the makeObj method which will be called when this command is invoked in Maya.
The context command is registered in Maya using MFnPlugin::registerContextCommand
|
virtual |
This method is called when the command is called in edit mode.
This method should be overridden by context commands to determine which edit flags are set in conjunction with the argument parser for this command. The argument parser for this command can be obtained by calling the parser method. If the command is called with both the edit flag and the query flag, then the query flag will be ignored.
|
virtual |
This method is called when the command is called in query mode.
This method should be overridden by context commands to determine which query flags are set in conjunction with the argument parser for this command. The argument parser for this command can be obtained by calling the parser method. If the command is called with both the edit flag and the query flag, then the query flag will be ignored.
|
virtual |
This function is used to instantiate a proxy context.
In your derived class, declare this function:
where userContextClass is derived from MPxContext.
Reimplemented in MTemplateContextCommand< ContextCommandName, ContextCommandClass, ContextClass >.
|
virtual |
This method should be overridden to append syntax to the context command.
The syntax object can be obtained by calling the syntax method. The following flags cannot be used as user-defined flags as they are reserved for edit and query: "-e", "-edit", "-q", "-query".
MStatus setResult | ( | bool | result | ) |
This method should be called when the result of the context command is a boolean.
[in] | result | the boolean result |
MStatus setResult | ( | int | result | ) |
This method should be called when the result of the context command is an integer.
[in] | result | the integer result |
MStatus setResult | ( | double | result | ) |
This method should be called when the result of the context command is a double.
[in] | result | the double result |
This method should be called when the result of the context command a string.
[in] | result | the string result |
|
static |
Returns the name of this class.
USE _syntax() IN SCRIPT.
This method returns the syntax object of this context command.
From an overridden version of the appendSyntax method you may append to the syntax object.
[out] | ReturnStatus | return status |
|
protected |
USE _parser() IN SCRIPT.
This method returns the argument parser of this context command.
The argument parser can be used in the overridden versions of doEditFlags and doQueryFlags to determine which flags are set.
[out] | ReturnStatus | return status |