LibreCAD
|
#include <documentoperation.h>
Public Member Functions | |
DocumentOperation (Document_SPtr document, const std::string &description) | |
Document_SPtr | document () const |
virtual void | execute () |
execute this operation More... | |
virtual | ~DocumentOperation () |
![]() | |
Undoable (const std::string &text) | |
Name of this operartion. More... | |
virtual | ~Undoable () |
virtual void | undo () const =0 |
Undo a given operation. More... | |
virtual void | redo () const =0 |
Redo a given operation. More... | |
virtual std::string | text () |
Name of the operation. More... | |
Protected Member Functions | |
virtual void | processInternal ()=0 |
Private Member Functions | |
void | process () |
virtual void | start () const |
virtual void | finnish () const |
Private Attributes | |
Document_SPtr | _document |
Friends | |
class | lc::Document |
class | Builder |
An operation is a grouped set of 'things' we can do on a document Only one operation can run at a time because the document needs to get locked during an operation.
document |
Definition at line 23 of file documentoperation.h.
DocumentOperation::DocumentOperation | ( | Document_SPtr | document, |
const std::string & | description | ||
) |
Definition at line 7 of file documentoperation.cpp.
|
inlinevirtual |
Definition at line 36 of file documentoperation.h.
std::shared_ptr< Document > DocumentOperation::document | ( | ) | const |
Definition at line 12 of file documentoperation.cpp.
|
virtual |
execute this operation
Definition at line 20 of file documentoperation.cpp.
|
inlineprivatevirtual |
This function will get called when the process of this operation is finished
Definition at line 53 of file documentoperation.h.
|
private |
This function gets called when an operation starts and when the document is locked for you so you can do your work
Definition at line 16 of file documentoperation.cpp.
|
protectedpure virtual |
This function gets called when an operation starts and when the document is locked for you so you can do your work
Implemented in lc::operation::ReplaceLinePattern, lc::operation::ReplaceLayer, lc::operation::EntityBuilder, lc::operation::ReplaceBlock, lc::operation::RemoveLinePattern, lc::operation::RemoveLayer, lc::operation::RemoveBlock, lc::operation::Builder, lc::operation::AddLinePattern, lc::operation::AddLayer, and lc::operation::AddBlock.
|
inlineprivatevirtual |
This function will get called when the process of this operation starts
Definition at line 48 of file documentoperation.h.
|
friend |
Definition at line 25 of file documentoperation.h.
|
friend |
Definition at line 24 of file documentoperation.h.
|
private |
Definition at line 53 of file documentoperation.h.