summaryrefslogtreecommitdiff
path: root/riscos/wimp_event.h
diff options
context:
space:
mode:
authorSteve Fryatt <stevef@netsurf-browser.org>2013-09-08 11:55:21 +0100
committerSteve Fryatt <stevef@netsurf-browser.org>2013-09-08 11:55:21 +0100
commita00e0f91c7ccb27108cc396ca8afa3207935de4c (patch)
treedfe47712132b8f26f46fe319f3222b44c5e2e060 /riscos/wimp_event.h
parente87596ad1f7755c50f7a00edc85e66908ad1ba10 (diff)
downloadnetsurf-a00e0f91c7ccb27108cc396ca8afa3207935de4c.tar.gz
netsurf-a00e0f91c7ccb27108cc396ca8afa3207935de4c.tar.bz2
Move all mouse tracking into ro_mouse module.
Add Pointer Entering Window events to wimp_event module and add handlers to all modules requiring mouse tracking. Updated: Treeview, URL Complete, History and GUI Window. Delete all handling for Pointer Entering/Leaving from ro_gui.
Diffstat (limited to 'riscos/wimp_event.h')
-rw-r--r--riscos/wimp_event.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/riscos/wimp_event.h b/riscos/wimp_event.h
index 650f35c91..0a54ab04d 100644
--- a/riscos/wimp_event.h
+++ b/riscos/wimp_event.h
@@ -61,6 +61,7 @@ bool ro_gui_wimp_event_open_window(wimp_open *open);
bool ro_gui_wimp_event_close_window(wimp_w w);
bool ro_gui_wimp_event_redraw_window(wimp_draw *redraw);
bool ro_gui_wimp_event_scroll_window(wimp_scroll *scroll);
+bool ro_gui_wimp_event_pointer_entering_window(wimp_entering *entering);
bool ro_gui_wimp_event_process_window_menu_click(wimp_pointer *pointer);
bool ro_gui_wimp_event_prepare_menu(wimp_w w, wimp_i i, wimp_menu *menu);
@@ -93,6 +94,8 @@ bool ro_gui_wimp_event_register_redraw_window(wimp_w w,
void (*callback)(wimp_draw *redraw));
bool ro_gui_wimp_event_register_scroll_window(wimp_w w,
void (*callback)(wimp_scroll *scroll));
+bool ro_gui_wimp_event_register_pointer_entering_window(wimp_w w,
+ void (*callback)(wimp_entering *entering));
bool ro_gui_wimp_event_register_menu_prepare(wimp_w w,
bool (*callback)(wimp_w w, wimp_i i, wimp_menu *m,
wimp_pointer *p));