]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/cmdproc.tex
say that EVT_TEXT_ENTER requires wxTE_PROCESS_ENTER to be set (closes bug 659948)
[wxWidgets.git] / docs / latex / wx / cmdproc.tex
index c4f7b4acceede1ff39c9149af31c5c1412c4707a..3dbce8610023fa3aca07a9aad21d44e92cab0996 100644 (file)
@@ -10,7 +10,7 @@ if you want different behaviour.
 
 \wxheading{Include files}
 
 
 \wxheading{Include files}
 
-<wx/docview.h>
+<wx/cmdproc.h>
 
 \wxheading{See also}
 
 
 \wxheading{See also}
 
@@ -20,13 +20,13 @@ if you want different behaviour.
 
 \membersection{wxCommandProcessor::wxCommandProcessor}
 
 
 \membersection{wxCommandProcessor::wxCommandProcessor}
 
-\func{}{wxCommandProcessor}{\param{int}{ maxCommands = 100}}
+\func{}{wxCommandProcessor}{\param{int}{ maxCommands = $-1$}}
 
 Constructor.
 
 
 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.
+{\it maxCommands} may be set to a positive integer to limit the number of
+commands stored to it, otherwise (and by default) the list of commands can grow
+arbitrarily.
 
 \membersection{wxCommandProcessor::\destruct{wxCommandProcessor}}
 
 
 \membersection{wxCommandProcessor::\destruct{wxCommandProcessor}}
 
@@ -46,9 +46,9 @@ Returns TRUE if the currently-active command can be undone, FALSE otherwise.
 
 Deletes all the commands in the list and sets the current command pointer to NULL.
 
 
 Deletes all the commands in the list and sets the current command pointer to NULL.
 
-\membersection{wxCommandProcessor::Do}
+\membersection{wxCommandProcessor::Redo}
 
 
-\func{virtual bool}{Do}{\void}
+\func{virtual bool}{Redo}{\void}
 
 Executes (redoes) the current command (the command that has just been undone if any).
 
 
 Executes (redoes) the current command (the command that has just been undone if any).
 
@@ -70,6 +70,30 @@ Returns the maximum number of commands that the command processor stores.
 
 Returns the edit menu associated with the command processor.
 
 
 Returns the edit menu associated with the command processor.
 
+\membersection{wxCommandProcessor::GetRedoAccelerator}\label{wxcommandprocessorgetredoaccelerator}
+
+\constfunc{const wxString\&}{GetRedoAccelerator}{\void}
+
+Returns the string that will be appended to the Redo menu item.
+
+\membersection{wxCommandProcessor::GetRedoMenuLabel}\label{wxcommandprocessorgetredomenulabel}
+
+\constfunc{wxString}{GetRedoMenuLabel}{\void}
+
+Returns the string that will be shown for the redo menu item.
+
+\membersection{wxCommandProcessor::GetUndoAccelerator}\label{wxcommandprocessorgetundoaccelerator}
+
+\constfunc{const wxString\&}{GetUndoAccelerator}{\void}
+
+Returns the string that will be appended to the Undo menu item.
+
+\membersection{wxCommandProcessor::GetUndoMenuLabel}\label{wxcommandprocessorgetundomenulabel}
+
+\constfunc{wxString}{GetUndoMenuLabel}{\void}
+
+Returns the string that will be shown for the undo menu item.
+
 \membersection{wxCommandProcessor::Initialize}
 
 \func{virtual void}{Initialize}{\void}
 \membersection{wxCommandProcessor::Initialize}
 
 \func{virtual void}{Initialize}{\void}
@@ -87,6 +111,25 @@ 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.
 
 destroyed and command operations may still be performed, or the command
 processor may try to access an invalid pointer.
 
+\membersection{wxCommandProcessor::SetMenuStrings}
+
+\func{void}{SetMenuStrings}{\void}
+
+Sets the menu labels according to the currently set menu and the current
+command state.
+
+\membersection{wxCommandProcessor::SetRedoAccelerator}\label{wxcommandprocessorsetredoaccelerator}
+
+\func{void}{SetRedoAccelerator}{\param{const wxString\&}{accel}}
+
+Sets the string that will be appended to the Redo menu item.
+
+\membersection{wxCommandProcessor::SetUndoAccelerator}\label{wxcommandprocessorsetundoaccelerator}
+
+\func{void}{SetUndoAccelerator}{\param{const wxString\&}{accel}}
+
+Sets the string that will be appended to the Undo menu item.
+
 \membersection{wxCommandProcessor::Submit}
 
 \func{virtual bool}{Submit}{\param{wxCommand *}{command}, \param{bool}{ storeIt = TRUE}}
 \membersection{wxCommandProcessor::Submit}
 
 \func{virtual bool}{Submit}{\param{wxCommand *}{command}, \param{bool}{ storeIt = TRUE}}