]> Shamusworld >> Repos - architektonas/blobdiff - src/base/actioninterface.h
In the middle of removing Snapper class/fixing snapper rendering...
[architektonas] / src / base / actioninterface.h
index a88ee89fa1855d7a7ec6043f0404ac0475b7115b..5ae1d6be36505b00c7bb7faaf7b89f1dc2d6ba97 100644 (file)
@@ -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;
 };