From 009849e49967af659354a94a16c51cab5eb8b5a4 Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Tue, 7 Mar 2017 19:19:57 -0300 Subject: Sum implementation start --- Project/Sum.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Project/Sum.h (limited to 'Project/Sum.h') diff --git a/Project/Sum.h b/Project/Sum.h new file mode 100644 index 0000000..682effb --- /dev/null +++ b/Project/Sum.h @@ -0,0 +1,24 @@ +#ifndef SUM_H +#define SUM_H + +#include "ControlElement.h" + +class SumForm; + +class Sum : public ControlElement +{ +public: + enum Signal { SIGNAL_POSITIVE = 0, SIGNAL_NEGATIVE }; + Sum(); + ~Sum(); + + virtual void Draw(wxPoint2DDouble translation, double scale) const; + virtual bool Contains(wxPoint2DDouble position) const { return m_rect.Contains(position); } + virtual bool Intersects(wxRect2DDouble rect) const { return m_rect.Intersects(rect); } + virtual bool ShowForm(wxWindow* parent, Element* element); + +protected: + std::vector m_signalList; +}; + +#endif // SUM_H -- cgit