diff options
Diffstat (limited to 'native/include/android')
-rw-r--r-- | native/include/android/input.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/native/include/android/input.h b/native/include/android/input.h index 953ee10..f1738c6 100644 --- a/native/include/android/input.h +++ b/native/include/android/input.h @@ -297,6 +297,14 @@ enum { * may not be the window currently touched. */ AMOTION_EVENT_ACTION_SCROLL = 8, + + /* The pointer is not down but has entered the boundaries of a window or view. + */ + AMOTION_EVENT_ACTION_HOVER_ENTER = 9, + + /* The pointer is not down but has exited the boundaries of a window or view. + */ + AMOTION_EVENT_ACTION_HOVER_EXIT = 10, }; /* |