X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fstructs.h;h=cdd11ecac46540b778ac61659d62a20c981d4aa9;hb=0e8f4edf80206248f0ad87a966d69d9ec9da3d2f;hp=bc68adf76801316d1b790aa3d72695b879b0a3c8;hpb=e78daf62eb771ee29a59035d16cf63c1e6ebe144;p=architektonas diff --git a/src/structs.h b/src/structs.h index bc68adf..cdd11ec 100644 --- a/src/structs.h +++ b/src/structs.h @@ -5,11 +5,12 @@ #include #include #include "global.h" +#include "rect.h" #include "vector.h" enum ObjectType { OTNone = 0, OTLine, OTCircle, OTEllipse, OTArc, OTPolygon, OTDimension, OTSpline, OTText, OTContainer, OTCount }; -enum DimensionType { DTLinear, DTLinearVert, DTLinearHorz, DTRadial, DTDiametric, DTCircumferential, DTAngular, DTLeader }; +enum DimensionType { DTLinear = 0, DTLinearVert, DTLinearHorz, DTRadial, DTDiametric, DTCircumferential, DTAngular, DTLeader, DTCount }; enum ToolType { TTNone, TTLine, TTCircle, TTEllipse, TTArc, TTDimension, TTText, TTPolygon, TTSpline, TTRotate, TTMirror, TTTrim, TTTriangulate, TTDelete }; @@ -24,12 +25,16 @@ enum ToolState { TSNone, TSPoint1, TSPoint2, TSPoint3, TSPoint4, TSDone }; int style; \ bool selected; \ bool hovered; \ - bool hitPoint[4]; \ + bool hitPoint[5]; \ bool hitObject; \ - Point p[4]; \ + Point p[5]; \ double angle[2]; \ double radius[2]; +struct Object { + OBJECT_COMMON; +}; + struct Line { OBJECT_COMMON; @@ -73,21 +78,27 @@ struct Dimension { OBJECT_COMMON; int subtype; double offset; + Point lp[2]; // Line point, the actual dimension line + Object * obj[2]; // Pointer to attached objects (circle, lines for angle) Dimension(): type(OTDimension), id(Global::objectID++) {} Dimension(Vector pt1, Vector pt2, DimensionType dt = DTLinear, float th = 1.0, uint32_t c = 0x0000FF, int l = LSSolid): - type(OTDimension), id(Global::objectID++), layer(0), color(c), thickness(th), - style(l), selected(false), hovered(false), hitObject(false), subtype(dt) { p[0] = pt1; p[1] = pt2; } + type(OTDimension), id(Global::objectID++), layer(0), color(c), + thickness(th), style(l), selected(false), hovered(false), + hitObject(false), subtype(dt), offset(0) { p[0] = pt1; p[1] = pt2; } }; struct Text { OBJECT_COMMON; + Rect extents; + bool measured; std::string s; Text(): type(OTText), id(Global::objectID++) {} Text(Vector pt1, char * str, float th = 10.0, uint32_t c = 0): type(OTText), id(Global::objectID++), layer(0), color(c), thickness(th), - style(LSSolid), selected(false), hovered(false), hitObject(false), s(str) { p[0] = pt1; } + style(LSSolid), selected(false), hovered(false), hitObject(false), + measured(false), s(str) { p[0] = pt1; angle[0] = 0; } }; struct Polygon { @@ -126,9 +137,5 @@ struct Container { }*/ }; -struct Object { - OBJECT_COMMON; -}; - #endif // __STRUCTS_H__