]> Shamusworld >> Repos - architektonas/blobdiff - src/text.h
Initial work on making Rotate tool work, plus removal of unneeded files.
[architektonas] / src / text.h
diff --git a/src/text.h b/src/text.h
deleted file mode 100644 (file)
index 4e0bbb1..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef __TEXT_H__
-#define __TEXT_H__
-
-#include "object.h"
-#include <QtWidgets>
-
-class Text: public Object
-{
-       public:
-               Text(Vector, QString, Object * p = 0);
-               ~Text();
-
-               virtual void Draw(Painter *);
-               virtual Vector Center(void);
-               virtual bool Collided(Vector);
-               virtual bool PointerMoved(Vector);
-               virtual void PointerReleased(void);
-               virtual bool HitTest(Point);
-               virtual void Enumerate(FILE *);
-//             virtual Object * Copy(void);
-               virtual Vector GetPointAtParameter(double parameter);
-
-       protected:
-               Vector oldPoint;                                        // Used for dragging
-
-       private:
-               bool dragging;
-               bool draggingHandle1;
-               bool draggingHandle2;
-               bool objectWasDragged;
-};
-
-#endif // __TEXT_H__