diff options
Diffstat (limited to 'src/menu/drawable_control.cpp')
-rw-r--r-- | src/menu/drawable_control.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
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<int>& p) + { + } + + void DrawableControl::mouse_down(uint8_t button, const Point<int>& p) + { + } + + void DrawableControl::mouse_up(uint8_t button, const Point<int>& p) + { + } + + void DrawableControl::mouse_enter(void) + { + } + + void DrawableControl::mouse_leave(void) + { + } + + void DrawableControl::mouse_click(uint8_t button, const Point<int>& p) + { + } + + void DrawableControl::mouse_dbl_click(uint8_t button, const Point<int>& p) + { + } }; |