From 3de540a8a0c8cd9eca18472b9fe1114e5970ba4d Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Fri, 18 Jan 2013 19:47:19 +0100 Subject: menu: add mouse manager for handling mouse focus and clicks --- src/menu/drawable_control.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'src/menu/drawable_control.cpp') diff --git a/src/menu/drawable_control.cpp b/src/menu/drawable_control.cpp index 76749840..1dc36072 100644 --- a/src/menu/drawable_control.cpp +++ b/src/menu/drawable_control.cpp @@ -252,4 +252,32 @@ namespace usdx return NULL; } + + void DrawableControl::mouse_move(const Point& p) + { + } + + void DrawableControl::mouse_down(uint8_t button, const Point& p) + { + } + + void DrawableControl::mouse_up(uint8_t button, const Point& p) + { + } + + void DrawableControl::mouse_enter(void) + { + } + + void DrawableControl::mouse_leave(void) + { + } + + void DrawableControl::mouse_click(uint8_t button, const Point& p) + { + } + + void DrawableControl::mouse_dbl_click(uint8_t button, const Point& p) + { + } }; -- cgit v1.2.3