]> git.eshelyaron.com Git - emacs.git/commit
Support precision mouse scrolling on MS-Windows
authorEli Zaretskii <eliz@gnu.org>
Wed, 1 Dec 2021 13:36:55 +0000 (15:36 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 1 Dec 2021 13:36:55 +0000 (15:36 +0200)
commitbab29694047d060bb58ff88e1a4d2cc7ef05df2a
tree25dffd70f392ccace1007b53b491707ad44dda1a
parentc13b49a110ffd23975e98c053746054492a3908a
Support precision mouse scrolling on MS-Windows

* src/w32fns.c (w32_wnd_proc): Pass the WM_SETTINGCHANGE message
to the Lisp thread.
* src/w32term.c (w32_construct_mouse_wheel): Support mice with
precision scrolling wheel.
(w32_get_mouse_wheel_vertical_delta): New function.
(w32_read_socket): When the WM_SETTINGCHANGE is received, call
'w32_get_mouse_wheel_vertical_delta'.
(w32_initialize): Call 'w32_get_mouse_wheel_vertical_delta' at
startup.
* src/nsterm.m (syms_of_nsterm):
* src/haikuterm.c (syms_of_haikuterm):
* src/xterm.c (syms_of_xterm): Remove window-system specific
variables for coalescing mwheel events.
* src/keyboard.c (syms_of_keyboard)
<mwheel-coalesce-scroll-events>: New variable, to replace the
above platform-specific ones.

* doc/lispref/commands.texi (Misc Events): Improve wording of the
description of mouse-wheel events.
doc/lispref/commands.texi
src/haikuterm.c
src/keyboard.c
src/nsterm.m
src/w32fns.c
src/w32term.c
src/xterm.c