X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Factioninterface.h;h=5ae1d6be36505b00c7bb7faaf7b89f1dc2d6ba97;hb=bfd926cd5fd98e95b8b172fabd5340c9b1957e01;hp=a88ee89fa1855d7a7ec6043f0404ac0475b7115b;hpb=16354e0421b316a62c6b9f7b0b4f3b8cf6f06284;p=architektonas diff --git a/src/base/actioninterface.h b/src/base/actioninterface.h index a88ee89..5ae1d6b 100644 --- a/src/base/actioninterface.h +++ b/src/base/actioninterface.h @@ -81,31 +81,30 @@ class ActionInterface: public QObject * corner (status 0), and selecting the second corner (status 1). */ int status; + bool snapperVisibility; + bool previewVisibility; + int suspendCount; protected: /** Action name. Used internally for debugging */ QString name; - /** * This flag is set when the action has terminated and can be deleted. */ bool finished; - /** * Pointer to the graphic is this container is a graphic. NULL otherwise */ Drawing * graphic; - /** * Pointer to the document (graphic or block) or NULL. */ Document * document; - /** * Predecessor of this action or NULL. */ ActionInterface * predecessor; - + // hm. GraphicView * graphicView; EntityContainer * container; };