|
|
The abstract base class for all Commands. Commands are used to store information needed for Undo/Redo functionality...
|
[protected: ]
Creates a command
Parameters:
name | the name of this command, translated, since it will appear in the menus. |
|
[virtual]
void |
[pure virtual]
The main method: execute this command. Implement here what this command is about, and remember to record any information that will be helpful for unexecute.
void |
[pure virtual]
Unexecute (undo) this command. Implement here the steps to take for undoing the command. If your application uses actions for everything (it should), and if you implement unexecute correctly, the application is in the same state after unexecute as it was before execute. This means, the next call to execute will do the same thing as it did the first time.
QString |
[const]
Returns: the name of this command
void |
Update the name of this command. Rarely necessary.
Generated by: marc@yogi on Tue Mar 27 13:07:09 2001, using kdoc 2.0a48. |