diff options
author | Po Lu <luangruo@yahoo.com> | 2021-11-21 11:04:29 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2021-11-21 11:06:02 +0800 |
commit | 39f3604e229ff349742dab0d6a5c7b4500530c07 (patch) | |
tree | 25e7c72fb0116975d1bf18fb82df2976587131d9 /src/xwidget.h | |
parent | f16bb8693f0122cea447edc243885428a4b8d370 (diff) | |
download | emacs-39f3604e229ff349742dab0d6a5c7b4500530c07.tar.gz emacs-39f3604e229ff349742dab0d6a5c7b4500530c07.tar.bz2 emacs-39f3604e229ff349742dab0d6a5c7b4500530c07.zip |
Allow handling smooth scroll events in xwidgets
* src/xterm.c (handle_one_xevent): Pass through XI2 motion
events to xwidgets.
* src/xterm.c (xwidget_button): Don't handle legacy scroll
events on XInput 2.
(xwidget_motion_notify, xwidget_scroll): New functions.
Diffstat (limited to 'src/xwidget.h')
-rw-r--r-- | src/xwidget.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xwidget.h b/src/xwidget.h index 78fe865dd84..f2d497c0920 100644 --- a/src/xwidget.h +++ b/src/xwidget.h @@ -195,6 +195,12 @@ extern void xwidget_button (struct xwidget_view *, bool, int, int, int, int, Time); extern void xwidget_motion_or_crossing (struct xwidget_view *, const XEvent *); +#ifdef HAVE_XINPUT2 +extern void xwidget_motion_notify (struct xwidget_view *, double, + double, uint, Time); +extern void xwidget_scroll (struct xwidget_view *, double, double, + double, double, uint, Time); +#endif #endif #else INLINE_HEADER_BEGIN |