![]() |
Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members
|
#include <FXUndoList.h>
Public Member Functions | |
| virtual void | undo ()=0 |
| virtual void | redo ()=0 |
| virtual FXuint | size () const |
| virtual FXString | undoName () const |
| virtual FXString | redoName () const |
| virtual bool | canMerge () const |
| virtual bool | mergeWith (FXCommand *command) |
| virtual | ~FXCommand () |
Public Member Functions inherited from FX::FXObject | |
| virtual long | onDefault (FXObject *, FXSelector, void *) |
| const FXchar * | getClassName () const |
| bool | isMemberOf (const FXMetaClass *metaclass) const |
| virtual long | tryHandle (FXObject *sender, FXSelector sel, void *ptr) |
| virtual void | save (FXStream &store) const |
| virtual void | load (FXStream &store) |
| virtual | ~FXObject () |
Friends | |
| class | FXUndoList |
| class | FXCommandGroup |
Base class for undoable commands.
Each undo records all the information necessary to undo as well as redo a given operation. Since commands are derived from FXObject, subclassed commands can both send and receive messages (like ID_GETINTVALUE, for example).
|
inlinevirtual |
Delete undo command.
|
pure virtual |
Undo this command; this should save the information for a subsequent redo.
Implemented in FX::FXUndoList, and FX::FXCommandGroup.
|
pure virtual |
Redo this command; this should save the information for a subsequent undo.
Implemented in FX::FXUndoList, and FX::FXCommandGroup.
|
virtual |
Return the size of the information in the undo record.
The undo list may be trimmed to limit memory usage to a certain limit. The value returned should include the size of the command record itself as well as any data linked from it.
Reimplemented in FX::FXUndoList, and FX::FXCommandGroup.
|
virtual |
Name of the undo command to be shown on a button; for example, "Undo Delete".
Reimplemented in FX::FXUndoList.
|
virtual |
Name of the redo command to be shown on a button; for example, "Redo Delete".
Reimplemented in FX::FXUndoList.
|
virtual |
Return TRUE if this command can be merged with previous undo commands.
This is useful to combine e.g. multiple consecutive single-character text changes into a single block change. The default implementation returns FALSE.
|
virtual |
Called by the undo system to try and merge the new incoming command with this command; should return TRUE if merging was possible.
The default implementation returns FALSE.
|
friend |
|
friend |
|
|