]> Shamusworld >> Repos - architektonas/blob - src/global.cpp
52569532521599d9ed4250039431e05619286b62
[architektonas] / src / global.cpp
1 //
2 // This page intentionally left (mostly) blank
3 //
4
5 #include <QFont>
6 #include "global.h"
7
8 // Initialize static variables
9
10 bool Global::fixedAngle = false;
11 bool Global::fixedLength = false;
12 QFont * Global::font = 0;
13 int Global::viewportHeight = 0;
14 bool Global::deleteActive = false;
15 bool Global::dimensionActive = false;
16 bool Global::snapToGrid = true;
17 //snapToPoints all well here?
18 bool Global::ignoreClicks = false;
19 bool Global::dontMove = false;
20 bool Global::selectionInProgress = false;
21 QRectF Global::selection;
22 double Global::gridSpacing;
23 int Global::currentLayer = 0;
24 Point Global::snapPoint;
25 bool Global::snapPointIsValid = false;