X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fglobal.h;h=d66f93badd104b65bdc02cba8a1967e479665769;hb=ea7712f342020baf61cf33ba98b12140da6aecf7;hp=a98b9ac815436b270ed668fad87d3b4d7b5f581e;hpb=84afe881653a02a16b19d4da37435b8701b1a826;p=architektonas diff --git a/src/global.h b/src/global.h index a98b9ac..d66f93b 100644 --- a/src/global.h +++ b/src/global.h @@ -10,6 +10,9 @@ class QFont; +enum LineStyle { LSNone, LSSolid, LSDash, LSDot, LSDashDot, LSDashDotDot }; + + class Global { public: @@ -31,11 +34,17 @@ class Global static bool ignoreClicks; static bool dontMove; static uint32_t objectID; + static int tool; + static int toolState; - // Coming soon... static Point origin; static double zoom; static Vector screenSize; + + static float scale; + + static int activeLayer; + static bool layerIsLocked; }; #endif // __GLOBALS_H__