summaryrefslogtreecommitdiff
path: root/include/netsurf
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-05-28 22:07:33 +0100
committerVincent Sanders <vince@kyllikki.org>2017-05-28 22:07:33 +0100
commit6b997431d34d3711c62cf4bfe7f3456f45072273 (patch)
treeec809dd85c4178d08492d449429be73c5b98a958 /include/netsurf
parentf1fdd93ffda5181f325905c8509a2bea9d78eb41 (diff)
downloadnetsurf-6b997431d34d3711c62cf4bfe7f3456f45072273.tar.gz
netsurf-6b997431d34d3711c62cf4bfe7f3456f45072273.tar.bz2
update RISC OS frontend to use core window for local history
Diffstat (limited to 'include/netsurf')
-rw-r--r--include/netsurf/mouse.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/netsurf/mouse.h b/include/netsurf/mouse.h
index 1b16998a9..999f5a5b3 100644
--- a/include/netsurf/mouse.h
+++ b/include/netsurf/mouse.h
@@ -79,7 +79,10 @@ typedef enum browser_mouse_state {
/** 2nd modifier key pressed (eg. Ctrl) */
BROWSER_MOUSE_MOD_2 = (1 << 12),
/** 3rd modifier key pressed (eg. Alt) */
- BROWSER_MOUSE_MOD_3 = (1 << 13)
+ BROWSER_MOUSE_MOD_3 = (1 << 13),
+
+ /** pointer leaving window */
+ BROWSER_MOUSE_LEAVE = (1 << 14),
} browser_mouse_state;