diff options
Diffstat (limited to 'src/render/RenderView.h')
| -rw-r--r-- | src/render/RenderView.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/render/RenderView.h b/src/render/RenderView.h index c084916..695a342 100644 --- a/src/render/RenderView.h +++ b/src/render/RenderView.h @@ -24,6 +24,8 @@ class RenderView: public ui::Window { std::vector<ui::Checkbox*> renderModes; std::vector<ui::Checkbox*> displayModes; std::vector<ui::Checkbox*> colourModes; + std::string toolTip; + int toolTipPresence; public: class RenderModeAction; class DisplayModeAction; @@ -36,6 +38,8 @@ public: void AttachController(RenderController * c_) { c = c_; } void OnMouseDown(int x, int y, unsigned button); virtual void OnDraw(); + virtual void OnTick(float dt); + virtual void ToolTip(ui::Component * sender, ui::Point mousePosition, std::string toolTip); virtual ~RenderView(); }; |
