954b8ae603
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1698 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
111 lines
3.2 KiB
TeX
111 lines
3.2 KiB
TeX
\section{\class{wxCommandProcessor}}\label{wxcommandprocessor}
|
|
|
|
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.
|
|
|
|
\wxheading{Derived from}
|
|
|
|
\helpref{wxObject}{wxobject}
|
|
|
|
\wxheading{Include files}
|
|
|
|
<wx/docview.h>
|
|
|
|
\wxheading{See also}
|
|
|
|
\helpref{wxCommandProcessor overview}{wxcommandprocessoroverview}, \helpref{wxCommand}{wxcommand}
|
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
\membersection{wxCommandProcessor::wxCommandProcessor}
|
|
|
|
\func{}{wxCommandProcessor}{\param{int}{ maxCommands = 100}}
|
|
|
|
Constructor.
|
|
|
|
{\it 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.
|
|
|
|
\membersection{wxCommandProcessor::\destruct{wxCommandProcessor}}
|
|
|
|
\func{}{\destruct{wxCommandProcessor}}{\void}
|
|
|
|
Destructor.
|
|
|
|
\membersection{wxCommandProcessor::CanUndo}
|
|
|
|
\func{virtual bool}{CanUndo}{\void}
|
|
|
|
Returns TRUE if the currently-active command can be undone, FALSE otherwise.
|
|
|
|
\membersection{wxCommandProcessor::ClearCommands}
|
|
|
|
\func{virtual void}{ClearCommands}{\void}
|
|
|
|
Deletes all the commands in the list and sets the current command pointer to NULL.
|
|
|
|
\membersection{wxCommandProcessor::Do}
|
|
|
|
\func{virtual bool}{Do}{\void}
|
|
|
|
Executes (redoes) the current command (the command that has just been undone if any).
|
|
|
|
\membersection{wxCommandProcessor::GetCommands}
|
|
|
|
\constfunc{wxList\&}{GetCommands}{\void}
|
|
|
|
Returns the list of commands.
|
|
|
|
\membersection{wxCommandProcessor::GetMaxCommands}
|
|
|
|
\constfunc{int}{GetMaxCommands}{\void}
|
|
|
|
Returns the maximum number of commands that the command processor stores.
|
|
|
|
\membersection{wxCommandProcessor::GetEditMenu}
|
|
|
|
\constfunc{wxMenu*}{GetEditMenu}{\void}
|
|
|
|
Returns the edit menu associated with the command processor.
|
|
|
|
\membersection{wxCommandProcessor::Initialize}
|
|
|
|
\func{virtual void}{Initialize}{\void}
|
|
|
|
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).
|
|
|
|
\membersection{wxCommandProcessor::SetEditMenu}
|
|
|
|
\func{void}{SetEditMenu}{\param{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.
|
|
|
|
\membersection{wxCommandProcessor::Submit}
|
|
|
|
\func{virtual bool}{Submit}{\param{wxCommand *}{command}, \param{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.
|
|
|
|
{\it storeIt} indicates whether the successful command should be stored
|
|
in the history list.
|
|
|
|
\membersection{wxCommandProcessor::Undo}
|
|
|
|
\func{virtual bool}{Undo}{\void}
|
|
|
|
Undoes the command just executed.
|
|
|
|
|