diff options
Diffstat (limited to 'src/emu/uiinput.h')
-rw-r--r-- | src/emu/uiinput.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/uiinput.h b/src/emu/uiinput.h index fecc61c0c1a..2bd715e01aa 100644 --- a/src/emu/uiinput.h +++ b/src/emu/uiinput.h @@ -32,6 +32,8 @@ enum ui_event_type UI_EVENT_MOUSE_LEAVE, UI_EVENT_MOUSE_DOWN, UI_EVENT_MOUSE_UP, + UI_EVENT_MOUSE_RDOWN, + UI_EVENT_MOUSE_RUP, UI_EVENT_MOUSE_DOUBLE_CLICK, UI_EVENT_MOUSE_WHEEL, UI_EVENT_CHAR @@ -86,6 +88,8 @@ public: void push_mouse_leave_event(render_target* target); void push_mouse_down_event(render_target* target, INT32 x, INT32 y); void push_mouse_up_event(render_target* target, INT32 x, INT32 y); + void push_mouse_rdown_event(render_target* target, INT32 x, INT32 y); + void push_mouse_rup_event(render_target* target, INT32 x, INT32 y); void push_mouse_double_click_event(render_target* target, INT32 x, INT32 y); void push_char_event(render_target* target, unicode_char ch); void push_mouse_wheel_event(render_target *target, INT32 x, INT32 y, short delta, int ucNumLines); |