]> Shamusworld >> Repos - architektonas/blob - src/global.cpp
e408a5deb2eb7ac53e9a469c3ee39fc0ee095535
[architektonas] / src / global.cpp
1 //
2 // This page intentionally left (mostly) blank
3 //
4
5 #include "global.h"
6 #include <QFont>
7 #include "structs.h"
8
9 // Initialize static variables
10
11 bool Global::fixedAngle = false;
12 bool Global::fixedLength = false;
13 QFont * Global::font = 0;
14 int Global::viewportHeight = 0;
15
16 bool Global::deleteActive = false;
17 bool Global::dimensionActive = false;
18 bool Global::snapToGrid = true;
19
20 //snapToPoints all well here?
21 bool Global::ignoreClicks = false;
22 bool Global::dontMove = false;
23 bool Global::selectionInProgress = false;
24 QRectF Global::selection;
25
26 int Global::tool = TTNone;
27 int Global::toolState = TSNone;
28
29 double Global::gridSpacing;
30 int Global::currentLayer = 0;
31 Point Global::snapPoint;
32 bool Global::snapPointIsValid = false;
33 uint32_t Global::objectID = 1;
34
35 Vector Global::origin(-10.0, -10.0);
36 double Global::zoom = 1.0;
37 Vector Global::screenSize(200.0, 200.0);
38
39 float Global::scale = 0.5;
40
41 float Global::penWidth = 1.0;
42 int Global::penStyle = 1;
43 uint32_t Global::penColor = 0x000000;
44 bool Global::penStamp = false;
45
46 Point Global::intersectPoint[16]; // Overkill, yes
47 double Global::intersectParam[16]; // Ditto
48 int Global::numIntersectPoints = 0;
49 int Global::numIntersectParams = 0;
50
51 int Global::activeLayer = 0;
52 int Global::numLayers = 1;
53 std::vector<bool> Global::layerHidden;
54 std::vector<bool> Global::layerLocked;
55