A data class for creating new commands. Use RegisterCommandPlugin() to register the plugin.
See also
Py-CVRss and Py-MemoryViewer plugin examples.
Override - Called when the plugin is selected by the user.
Parameters: | doc (BaseDocument) – The currently active document when the command was selected. |
---|---|
Return type: | bool |
Returns: | Return True if the command was executed successfully, otherwise False. |
Override - Called by CINEMA 4D when loading a layout and restoring async dialogs. If this function isn’t implemented CINEMA will create an empty ”???” dialog.
Parameters: | secret (PyCObject.) – An internal hook. Pass it to GeDialog.Restore() |
---|---|
Return type: | bool |
Returns: | True if the dialog was restored, otherwise False. |
Override - Called for messages.
Parameters: | id (int) – Message type |
---|---|
Return type: | bool |
Returns: | Return True if the message was processed. |
Override - Create dynamic subcontainer entries for a menu. The menu entries on the top level will all be placed at the point where the command plugin was placed. To create a submenu, place the entries as subcontainers in the returned container with ID 0. In the subcontainer, place a string with ID 1 to name it:
bc = BaseContainer()
bc.SetString(1, "Submenu Test")
bc.SetString(1000, "First Entry")
submenu.InsData(0, bc)
Parameters: |
|
---|---|
Return type: |
bool |
Returns: |
True if you put anything in the container, otherwise False. |
Override - Return the script name of the command data. If this function is implemented, the command is stored by name rather than by ID in layouts, shortcuts and menus.
Return type: | str |
---|---|
Returns: | Script name. |
Override - Execute the command plugin with the subid that was given by GetSubContainer().
Parameters: |
|
---|---|
Return type: |
bool |
Returns: |
True if the message was processed. |
New in version R13.029.
Override - Execute the command plugin when the user calls it through its options dialog.
Note
Plugins must be registered with PLUGINFLAG_COMMAND_OPTION_DIALOG set.
Parameters: |
|
---|---|
Return type: | |
Returns: |
Return True if the command was executed successfully, otherwise False. |
New in version R13.029.
Override - Called to get the state of the command. This affects how it’s displayed in menus or toolbars.
Parameters: | doc (BaseDocument) – The document that is currently active in the editor. | ||||
---|---|---|---|---|---|
Return type: | int | ||||
Returns: |
A combination of the state flags:
|