wxCommandProcessor is a class that maintains a history of wxCommands, with undo/redo functionality built-in. Derive a new class from this if you want different behaviour.
Derived from
Include files
<wx/docview.h>
See also
wxCommandProcessor overview, wxCommand
Members
wxCommandProcessor::wxCommandProcessor
wxCommandProcessor::~wxCommandProcessor
wxCommandProcessor::CanUndo
wxCommandProcessor::ClearCommands
wxCommandProcessor::Do
wxCommandProcessor::GetCommands
wxCommandProcessor::GetMaxCommands
wxCommandProcessor::GetEditMenu
wxCommandProcessor::Initialize
wxCommandProcessor::SetEditMenu
wxCommandProcessor::Submit
wxCommandProcessor::Undo
wxCommandProcessor(int maxCommands = 100)
Constructor.
maxCommands defaults to a rather arbitrary 100, but can be set from 1 to any integer. If your wxCommand classes store a lot of data, you may wish the limit the number of commands stored to a smaller number.
~wxCommandProcessor()
Destructor.
virtual bool CanUndo()
Returns TRUE if the currently-active command can be undone, FALSE otherwise.
virtual void ClearCommands()
Deletes all the commands in the list and sets the current command pointer to NULL.
virtual bool Do()
Executes (redoes) the current command (the command that has just been undone if any).
wxList& GetCommands() const
Returns the list of commands.
int GetMaxCommands() const
Returns the maximum number of commands that the command processor stores.
wxMenu* GetEditMenu() const
Returns the edit menu associated with the command processor.
virtual void Initialize()
Initializes the command processor, setting the current command to the last in the list (if any), and updating the edit menu (if one has been specified).
void SetEditMenu(wxMenu* menu)
Tells the command processor to update the Undo and Redo items on this menu as appropriate. Set this to NULL if the menu is about to be destroyed and command operations may still be performed, or the command processor may try to access an invalid pointer.
virtual bool Submit(wxCommand *command, bool storeIt = TRUE)
Submits a new command to the command processor. The command processor calls wxCommand::Do to execute the command; if it succeeds, the command is stored in the history list, and the associated edit menu (if any) updated appropriately. If it fails, the command is deleted immediately. Once Submit has been called, the passed command should not be deleted directly by the application.
storeIt indicates whether the successful command should be stored in the history list.
virtual bool Undo()
Undoes the command just executed.