X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fglobal.h;h=8143b8d0e10183ab5e735d94daf252ad27f7b3b8;hb=f507d97c1b1118834a70332f5f79d8479a6964c0;hp=33fcd7a44e87f99ea27fbbabb851d4a7af622c91;hpb=db0a3d91f37031e155cc8eac7cfdec9889f233ee;p=architektonas diff --git a/src/global.h b/src/global.h index 33fcd7a..8143b8d 100644 --- a/src/global.h +++ b/src/global.h @@ -4,11 +4,15 @@ // Global variable class. Note that all vars are class vars, so we don't have // to do any instantiation shite. +#include #include #include "vector.h" class QFont; +enum LineStyle { LSNone, LSSolid, LSDash, LSDot, LSDashDot, LSDashDotDot }; + + class Global { public: @@ -29,11 +33,13 @@ class Global static bool snapToGrid; static bool ignoreClicks; static bool dontMove; + static uint32_t objectID; - // Coming soon... static Point origin; static double zoom; static Vector screenSize; + + static float scale; }; #endif // __GLOBALS_H__