]> Shamusworld >> Repos - architektonas/blob - src/global.cpp
Added Parallel tool + command processing.
[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 bool Global::toolSuppressCrosshair = false;
29 double Global::parallelDist = 1.0;
30 int Global::parallelNum = 1;
31 int Global::parallelBU = BUInch;
32
33 double Global::gridSpacing;
34 Point Global::snapPoint;
35 bool Global::snapPointIsValid = false;
36 uint32_t Global::objectID = 1;
37
38 Vector Global::origin(-10.0, -10.0);
39 double Global::zoom = 1.0;
40 Vector Global::screenSize(200.0, 200.0);
41
42 float Global::scale = 0.5;
43
44 float Global::penWidth = 1.0;
45 int Global::penStyle = 1;
46 uint32_t Global::penColor = 0x000000;
47 bool Global::penStamp = false;
48 bool Global::penDropper = false;
49
50 Point Global::intersectPoint[16]; // Overkill, yes
51 double Global::intersectParam[16]; // Ditto
52 int Global::numIntersectPoints = 0;
53 int Global::numIntersectParams = 0;
54
55 int Global::activeLayer = 0;
56 int Global::numLayers = 1;
57 BVector Global::layerHidden;
58 BVector Global::layerLocked;
59 SVector Global::layerName;