X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdimension.h;h=d4c4c31bc7d9e052cdba199002e1ad344b1f2eea;hb=669a05b5a52bd759f0ea08772e0ed17222b015a0;hp=0cda92924fa9cd75aabe1e0e64a4a3d7452d5e8e;hpb=baf67656b97e3d61e9223e66ebe4f554e364cd4a;p=architektonas diff --git a/src/dimension.h b/src/dimension.h index 0cda929..d4c4c31 100644 --- a/src/dimension.h +++ b/src/dimension.h @@ -1,15 +1,16 @@ #ifndef __DIMENSION_H__ #define __DIMENSION_H__ +#include "connection.h" #include "object.h" -enum DimensionType { DTLinear, DTRadial, DTDiametric, DTCircumferential, DTLeader }; +enum DimensionType { DTLinear, DTLinearVert, DTLinearHorz, DTRadial, DTDiametric, DTCircumferential, DTAngular, DTLeader }; class Dimension: public Object { public: Dimension(Vector, Vector, DimensionType dt = DTLinear, Object * p = 0); - Dimension(Vector *, Vector *, DimensionType dt = DTLinear, Object * p = 0); + Dimension(Connection, Connection, DimensionType dt = DTLinear, Object * p = 0); ~Dimension(); virtual void Draw(Painter *); @@ -17,10 +18,13 @@ class Dimension: public Object virtual bool Collided(Vector); virtual void PointerMoved(Vector); virtual void PointerReleased(void); - void SetPoint1(Vector *); - void SetPoint2(Vector *); - Vector GetPoint1(void); - Vector GetPoint2(void); + virtual void Enumerate(FILE *); + virtual Object * Copy(void); + virtual Vector GetPointAtParameter(double parameter); + virtual void Connect(Object *, double); + virtual void Disconnect(Object *, double); + virtual void DisconnectAll(Object *); + virtual QRectF Extents(void); void FlipSides(void); protected: @@ -33,10 +37,15 @@ class Dimension: public Object bool draggingHandle2; bool objectWasDragged; double length; - DimensionType type; + DimensionType dimensionType; + public: + double size; // Size of arrows/text in base units - Vector * point1; // These couple to external points; if there - Vector * point2; // are none then fall back to endpoint/position + private: + // We use these in lieu of the built-in connected[] array; no reason to + // do it this way especially + Connection point1; + Connection point2; }; #endif // __DIMENSION_H__