1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: undo/redo capable command processing framework
4 // Author: Julian Smart (extracted from docview.h by VZ)
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CMDPROC_H_
13 #define _WX_CMDPROC_H_
16 #pragma interface "cmdproc.h"
19 #include "wx/object.h"
22 // ----------------------------------------------------------------------------
23 // wxCommand: a single command capable of performing itself
24 // ----------------------------------------------------------------------------
26 class WXDLLEXPORT wxCommand
: public wxObject
29 wxCommand(bool canUndoIt
= FALSE
, const wxString
& name
= "");
32 // Override this to perform a command
33 virtual bool Do() = 0;
35 // Override this to undo a command
36 virtual bool Undo() = 0;
38 virtual bool CanUndo() const { return m_canUndo
; }
39 virtual wxString
GetName() const { return m_commandName
; }
43 wxString m_commandName
;
46 DECLARE_CLASS(wxCommand
)
49 // ----------------------------------------------------------------------------
50 // wxCommandProcessor: wxCommand manager
51 // ----------------------------------------------------------------------------
53 class WXDLLEXPORT wxCommandProcessor
: public wxObject
56 // if max number of commands is -1, it is unlimited
57 wxCommandProcessor(int maxCommands
= -1);
58 virtual ~wxCommandProcessor();
60 // Pass a command to the processor. The processor calls Do(); if
61 // successful, is appended to the command history unless storeIt is FALSE.
62 virtual bool Submit(wxCommand
*command
, bool storeIt
= TRUE
);
64 // just store the command without executing it
65 virtual void Store(wxCommand
*command
);
69 virtual bool CanUndo() const;
70 virtual bool CanRedo() const;
72 virtual void Initialize();
73 virtual void SetMenuStrings();
76 // Call this to manage an edit menu.
77 void SetEditMenu(wxMenu
*menu
) { m_commandEditMenu
= menu
; }
78 wxMenu
*GetEditMenu() const { return m_commandEditMenu
; }
81 // command list access
82 wxList
& GetCommands() const { return (wxList
&) m_commands
; }
83 wxCommand
*GetCurrentCommand() const
85 return (wxCommand
*)(m_currentCommand
? m_currentCommand
->Data() : NULL
);
87 int GetMaxCommands() const { return m_maxNoCommands
; }
88 virtual void ClearCommands();
90 // By default, the accelerators are "\tCtrl+Z" and "\tCtrl+Y"
91 const wxString
& GetUndoAccelerator() const { return m_undoAccelerator
; }
92 const wxString
& GetRedoAccelerator() const { return m_redoAccelerator
; }
94 void SetUndoAccelerator(const wxString
& accel
) { m_undoAccelerator
= accel
; }
95 void SetRedoAccelerator(const wxString
& accel
) { m_redoAccelerator
= accel
; }
98 // for further flexibility, command processor doesn't call wxCommand::Do()
99 // and Undo() directly but uses these functions which can be overridden in
101 virtual bool DoCommand(wxCommand
& cmd
);
102 virtual bool UndoCommand(wxCommand
& cmd
);
106 wxNode
* m_currentCommand
;
109 wxMenu
* m_commandEditMenu
;
110 #endif // wxUSE_MENUS
112 wxString m_undoAccelerator
;
113 wxString m_redoAccelerator
;
116 DECLARE_DYNAMIC_CLASS(wxCommandProcessor
)
119 #endif // _WX_CMDPROC_H_