summaryrefslogtreecommitdiffstats
path: root/Project/Element.h
diff options
context:
space:
mode:
authorThales1330 <thaleslima.ufu@gmail.com>2017-01-02 19:31:11 -0200
committerThales1330 <thaleslima.ufu@gmail.com>2017-01-02 19:31:11 -0200
commit2c0b51586b3b2243ae0fdcd653139818e4b4e23e (patch)
tree89c1435aac9213230f04b06d4183c94f6ea36663 /Project/Element.h
parent7aed88dbcf9d37a1f40c8cad115f055c4d69e7a9 (diff)
downloadPSP.git-2c0b51586b3b2243ae0fdcd653139818e4b4e23e.tar.gz
PSP.git-2c0b51586b3b2243ae0fdcd653139818e4b4e23e.tar.xz
PSP.git-2c0b51586b3b2243ae0fdcd653139818e4b4e23e.zip
Fast data visualization implemented
Diffstat (limited to 'Project/Element.h')
-rw-r--r--Project/Element.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Project/Element.h b/Project/Element.h
index c5aa030..996d066 100644
--- a/Project/Element.h
+++ b/Project/Element.h
@@ -135,7 +135,8 @@ public:
virtual void AddChild(Element* child);
virtual void RemoveChild(Element* child);
virtual void ReplaceChild(Element* oldChild, Element* newChild);
- virtual void Draw(wxPoint2DDouble translation, double scale) const {};
+ virtual wxString GetTipText() const { return wxEmptyString; }
+ virtual void Draw(wxPoint2DDouble translation, double scale) const {}
virtual void Rotate(bool clockwise = true) {}
virtual bool GetContextMenu(wxMenu& menu) { return false; }
virtual void AddPoint(wxPoint2DDouble point) {}