diff options
Diffstat (limited to 'Project/Line.h')
-rw-r--r-- | Project/Line.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Project/Line.h b/Project/Line.h new file mode 100644 index 0000000..08a2b36 --- /dev/null +++ b/Project/Line.h @@ -0,0 +1,36 @@ +#ifndef LINE_H +#define LINE_H + +#include <wx/msgdlg.h> + +#include "Element.h" + +class Line : public Element +{ + public: + Line(); + ~Line(); + virtual bool Contains(wxPoint2DDouble position) const; + virtual void Draw(wxPoint2DDouble translation, double scale) const; + virtual void Move(wxPoint2DDouble position) {} + virtual void StartMove(wxPoint2DDouble position); + virtual void MoveNode(Element* parent, wxPoint2DDouble position); + virtual wxCursor GetBestPickboxCursor() const; + virtual bool AddParent(Element* parent, wxPoint2DDouble position); + virtual bool Intersects(wxRect2DDouble rect) const; + virtual void MovePickbox(wxPoint2DDouble position); + virtual bool PickboxContains(wxPoint2DDouble position); + virtual void Rotate() {} + virtual void RotateNode(Element* parent); + virtual void AddPoint(wxPoint2DDouble point); + virtual bool GetContextMenu(wxMenu& menu); + +protected: + void UpdateSwitchesPosition(); + double PointToLineDistance(wxPoint2DDouble point) const; + std::vector<wxPoint2DDouble> m_pointList; + bool m_inserted = false; + std::vector<wxPoint2DDouble> m_movePts; +}; + +#endif // LINE_H |