* Re: master e37eb7f: Add support for pixel wheel deltas on NS [not found] ` <20211125030924.7258E2094B@vcs0.savannah.gnu.org> @ 2021-11-25 10:26 ` Robert Pluim 2021-11-25 10:34 ` Po Lu 2021-11-25 11:00 ` Eli Zaretskii 0 siblings, 2 replies; 47+ messages in thread From: Robert Pluim @ 2021-11-25 10:26 UTC (permalink / raw) To: emacs-devel; +Cc: Po Lu >>>>> On Wed, 24 Nov 2021 22:09:23 -0500 (EST), oldosfan@savannah.gnu.org (Po Lu) said: Po> branch: master Po> commit e37eb7f5c67f7da2c78688eda8968562fe75b767 Po> Author: Po Lu <luangruo@yahoo.com> Po> Commit: Po Lu <luangruo@yahoo.com> Po> Add support for pixel wheel deltas on NS Po> * src/xterm.c (x_coalesce_scroll_events): Update doc string. Po> * src/nsterm.c (- mouseDown): Report pixel scroll deltas. nsterm.m, not .c. I guess you didnʼt use C-x 4 a to write the log message. Po> + Po> + DEFVAR_BOOL ("x-coalesce-scroll-events", x_coalesce_scroll_events, Po> + doc: /* SKIP: real doc in xterm.c. */); Po> + x_coalesce_scroll_events = true; Po> + We now have 3 definitions of x-coalesce-scroll-events. Is there not somewhere more generic where you can put it? (and I suspect we can drop the x- bit). Robert -- ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-25 10:26 ` master e37eb7f: Add support for pixel wheel deltas on NS Robert Pluim @ 2021-11-25 10:34 ` Po Lu 2021-11-25 10:47 ` Robert Pluim 2021-11-25 11:02 ` Eli Zaretskii 2021-11-25 11:00 ` Eli Zaretskii 1 sibling, 2 replies; 47+ messages in thread From: Po Lu @ 2021-11-25 10:34 UTC (permalink / raw) To: Robert Pluim; +Cc: emacs-devel Robert Pluim <rpluim@gmail.com> writes: > Po> Add support for pixel wheel deltas on NS > > Po> * src/xterm.c (x_coalesce_scroll_events): Update doc string. > Po> * src/nsterm.c (- mouseDown): Report pixel scroll deltas. > nsterm.m, not .c. I guess you didnʼt use C-x 4 a to write the log > message. That's right. Good catch, sorry, but I couldn't get add-change-log-entry to fill entries satisfactorily for use with Git. > Po> + > Po> + DEFVAR_BOOL ("x-coalesce-scroll-events", x_coalesce_scroll_events, > Po> + doc: /* SKIP: real doc in xterm.c. */); > Po> + x_coalesce_scroll_events = true; > Po> + > We now have 3 definitions of x-coalesce-scroll-events. Is there not > somewhere more generic where you can put it? (and I suspect we can > drop the x- bit). Not until MS-Windows gains this support, I think. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-25 10:34 ` Po Lu @ 2021-11-25 10:47 ` Robert Pluim 2021-11-25 11:02 ` Eli Zaretskii 1 sibling, 0 replies; 47+ messages in thread From: Robert Pluim @ 2021-11-25 10:47 UTC (permalink / raw) To: Po Lu; +Cc: emacs-devel >>>>> On Thu, 25 Nov 2021 18:34:14 +0800, Po Lu <luangruo@yahoo.com> said: Po> Robert Pluim <rpluim@gmail.com> writes: Po> Add support for pixel wheel deltas on NS >> Po> * src/xterm.c (x_coalesce_scroll_events): Update doc string. Po> * src/nsterm.c (- mouseDown): Report pixel scroll deltas. >> nsterm.m, not .c. I guess you didnʼt use C-x 4 a to write the log >> message. Po> That's right. Good catch, sorry, but I couldn't get Po> add-change-log-entry to fill entries satisfactorily for use with Git. add-change-log-entry doesnʼt need to fill the entry. You can refill in the *vc-log* buffer when committing. Or recentish versions of magit have a 'magit-generate-changelog' command. (please donʼt tell me youʼre not using Emacs to commit changes :-) ) Po> + Po> + DEFVAR_BOOL ("x-coalesce-scroll-events", x_coalesce_scroll_events, Po> + doc: /* SKIP: real doc in xterm.c. */); Po> + x_coalesce_scroll_events = true; Po> + >> We now have 3 definitions of x-coalesce-scroll-events. Is there not >> somewhere more generic where you can put it? (and I suspect we can >> drop the x- bit). Po> Not until MS-Windows gains this support, I think. Iʼm sure we have similar variables already, but none spring to mind :-) Robert -- ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-25 10:34 ` Po Lu 2021-11-25 10:47 ` Robert Pluim @ 2021-11-25 11:02 ` Eli Zaretskii 2021-11-26 0:39 ` Po Lu 1 sibling, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-25 11:02 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: emacs-devel@gnu.org > Date: Thu, 25 Nov 2021 18:34:14 +0800 > > > We now have 3 definitions of x-coalesce-scroll-events. Is there not > > somewhere more generic where you can put it? (and I suspect we can > > drop the x- bit). > > Not until MS-Windows gains this support, I think. That's unrelated. The doc string can always say that this has effect only on this and that platform. (And I really don't see what needs to be done on Windows, since it seems already to report each wheel turn. Perhaps I'm missing something, in which case a test case to work with would be appreciated.) ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-25 11:02 ` Eli Zaretskii @ 2021-11-26 0:39 ` Po Lu 2021-11-26 6:35 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-26 0:39 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: > That's unrelated. The doc string can always say that this has effect > only on this and that platform. Hmm. I understand now, thanks. > (And I really don't see what needs to be done on Windows, since it > seems already to report each wheel turn. Perhaps I'm missing > something, in which case a test case to work with would be > appreciated.) Someone needs to make it report the precision scroll information, and optionally coalesce scroll events until at least a screen line has been scrolled. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 0:39 ` Po Lu @ 2021-11-26 6:35 ` Eli Zaretskii 2021-11-26 7:00 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-26 6:35 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Fri, 26 Nov 2021 08:39:21 +0800 > > > (And I really don't see what needs to be done on Windows, since it > > seems already to report each wheel turn. Perhaps I'm missing > > something, in which case a test case to work with would be > > appreciated.) > > Someone needs to make it report the precision scroll information, and > optionally coalesce scroll events until at least a screen line has been > scrolled. What is "precision scroll information", and how does it differ from the information we receive from the mouse wheel on MS-Windows today? AFAICT, we already get a window-system message for every movement of the mouse wheel, so what else is needed? ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 6:35 ` Eli Zaretskii @ 2021-11-26 7:00 ` Po Lu 2021-11-26 8:17 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-26 7:00 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> Someone needs to make it report the precision scroll information, and >> optionally coalesce scroll events until at least a screen line has been >> scrolled. > What is "precision scroll information", and how does it differ from > the information we receive from the mouse wheel on MS-Windows today? > AFAICT, we already get a window-system message for every movement of > the mouse wheel, so what else is needed? Basically, we need to expose not only whether or not the mouse wheel has been scrolled, but exactly how much it has been scrolled, each time a wheel event is sent. We expose it to Lisp as the amount of pixels the text should be scrolled in each axis, as that is the most common format used by modern window systems. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 7:00 ` Po Lu @ 2021-11-26 8:17 ` Eli Zaretskii 2021-11-26 9:37 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-26 8:17 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Fri, 26 Nov 2021 15:00:40 +0800 > > > What is "precision scroll information", and how does it differ from > > the information we receive from the mouse wheel on MS-Windows today? > > AFAICT, we already get a window-system message for every movement of > > the mouse wheel, so what else is needed? > > Basically, we need to expose not only whether or not the mouse wheel has > been scrolled, but exactly how much it has been scrolled, each time a > wheel event is sent. > > We expose it to Lisp as the amount of pixels the text should be scrolled > in each axis, as that is the most common format used by modern window > systems. How to compute the amount of pixels for a given amount of wheel delta? The wheel delta on MS-Windows is reported in abstract units, not directly related to any pixels, AFAICT. I don't see the logic of the conversion to pixels documented anywhere in the X or NS code, and the comments, such as they are, make no sense at all to someone who knows nothing about X mouse-wheel handling. In xterm.c, it seems like some kind of query of the device "valuators" (whatever that is) is being used? And on NS, it seems like the delta is already reported in pixels? So I'm still in the dark here. (We really need to document our algorithms better, unless we assume only GUI experts will read and maintain them.) ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 8:17 ` Eli Zaretskii @ 2021-11-26 9:37 ` Po Lu 2021-11-26 11:32 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-26 9:37 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: > How to compute the amount of pixels for a given amount of wheel delta? I don't know, but I will try to ask some people I know who know something about this. > The wheel delta on MS-Windows is reported in abstract units, not > directly related to any pixels, AFAICT. I don't see the logic of the > conversion to pixels documented anywhere in the X or NS code, and the > comments, such as they are, make no sense at all to someone who knows > nothing about X mouse-wheel handling. In xterm.c, it seems like some > kind of query of the device "valuators" (whatever that is) is being > used? On X, the states of the mouse wheels in each axis are stored as absolute values inside "valuators" attached to each mouse device. To obtain the delta of the scroll wheel from a motion event (which is used to report that some valuator has changed), it is necessary to iterate over every valuator that changed, and compare its previous value to the current value of the valuator. Each individual valuator also has an "interval", which is the amount you must divide that delta by in order to obtain a delta in the terms of scroll units. This delta however is still intermediate, to make driver implementations easier. The XInput developers recommend the following algorithm to convert from scroll unit deltas to pixel deltas: pixels_scrolled = pow (window_height, 2.0 / 3.0) * delta; > And on NS, it seems like the delta is already reported in pixels? Yes. The PGTK port can do something similar if it gains support for this, as GTK also reports it in pixels directly. > So I'm still in the dark here. (We really need to document our > algorithms better, unless we assume only GUI experts will read and > maintain them.) Perhaps I should place my explanation of XInput 2 scroll handling in a comment somewhere. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 9:37 ` Po Lu @ 2021-11-26 11:32 ` Eli Zaretskii 2021-11-26 11:44 ` Po Lu 2021-11-26 11:48 ` Eli Zaretskii 0 siblings, 2 replies; 47+ messages in thread From: Eli Zaretskii @ 2021-11-26 11:32 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Fri, 26 Nov 2021 17:37:22 +0800 > > Eli Zaretskii <eliz@gnu.org> writes: > > > How to compute the amount of pixels for a given amount of wheel delta? > > I don't know, but I will try to ask some people I know who know > something about this. Thanks. But if this conversion is arbitrary (see below), I think I know how to implement the MS-Windows version of "arbitrary". > > The wheel delta on MS-Windows is reported in abstract units, not > > directly related to any pixels, AFAICT. I don't see the logic of the > > conversion to pixels documented anywhere in the X or NS code, and the > > comments, such as they are, make no sense at all to someone who knows > > nothing about X mouse-wheel handling. In xterm.c, it seems like some > > kind of query of the device "valuators" (whatever that is) is being > > used? > > On X, the states of the mouse wheels in each axis are stored as absolute > values inside "valuators" attached to each mouse device. To obtain the > delta of the scroll wheel from a motion event (which is used to report > that some valuator has changed), it is necessary to iterate over every > valuator that changed, and compare its previous value to the current > value of the valuator. > > Each individual valuator also has an "interval", which is the amount you > must divide that delta by in order to obtain a delta in the terms of > scroll units. > > This delta however is still intermediate, to make driver implementations > easier. The XInput developers recommend the following algorithm to > convert from scroll unit deltas to pixel deltas: > > pixels_scrolled = pow (window_height, 2.0 / 3.0) * delta; All of this should be in comments in xterm.c. Btw, the code calculates pixels_scrolled when it is not yet clear that the value will be used, which is a waste of cycles, AFAICT. How about moving this closer to where the value is actually used? In any case, are you saying that the conversion to pixels is somewhat arbitrary? And that users of X based systems have no control on this conversion, i.e. users cannot determine the pixel equivalent of each "delta"? > > And on NS, it seems like the delta is already reported in pixels? > > Yes. The PGTK port can do something similar if it gains support for > this, as GTK also reports it in pixels directly. Same question here: do users have any system-wide control on the conversion to pixels under these environments? ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 11:32 ` Eli Zaretskii @ 2021-11-26 11:44 ` Po Lu 2021-11-26 16:55 ` Eli Zaretskii 2021-11-26 11:48 ` Eli Zaretskii 1 sibling, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-26 11:44 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: > Thanks. But if this conversion is arbitrary (see below), I think I > know how to implement the MS-Windows version of "arbitrary". Thanks! I really appreciate it. >> On X, the states of the mouse wheels in each axis are stored as absolute >> values inside "valuators" attached to each mouse device. To obtain the >> delta of the scroll wheel from a motion event (which is used to report >> that some valuator has changed), it is necessary to iterate over every >> valuator that changed, and compare its previous value to the current >> value of the valuator. >> >> Each individual valuator also has an "interval", which is the amount you >> must divide that delta by in order to obtain a delta in the terms of >> scroll units. >> >> This delta however is still intermediate, to make driver implementations >> easier. The XInput developers recommend the following algorithm to >> convert from scroll unit deltas to pixel deltas: >> >> pixels_scrolled = pow (window_height, 2.0 / 3.0) * delta; > > All of this should be in comments in xterm.c. > > Btw, the code calculates pixels_scrolled when it is not yet clear that > the value will be used, which is a waste of cycles, AFAICT. How about > moving this closer to where the value is actually used? I'll do that, thanks. > In any case, are you saying that the conversion to pixels is somewhat > arbitrary? And that users of X based systems have no control on this > conversion, i.e. users cannot determine the pixel equivalent of each > "delta"? Yes, I'm using the method recommended by the XInput 2 developers, and on X-based systems there's no option to control that arbitrary behaviour that I know of. It seems to be that every X-Windows program I checked (which includes non-GTK programs such as Mozilla Firefox and Qt) also computes the pixel information the same way. >> Yes. The PGTK port can do something similar if it gains support for >> this, as GTK also reports it in pixels directly. > Same question here: do users have any system-wide control on the > conversion to pixels under these environments? I don't know about NS, but there's no such option in GTK based systems. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 11:44 ` Po Lu @ 2021-11-26 16:55 ` Eli Zaretskii 2021-11-27 0:02 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-26 16:55 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Fri, 26 Nov 2021 19:44:59 +0800 > > Eli Zaretskii <eliz@gnu.org> writes: > > > Thanks. But if this conversion is arbitrary (see below), I think I > > know how to implement the MS-Windows version of "arbitrary". > > Thanks! I really appreciate it. What pixel-delta values are typically reported on X for a single click of the mouse wheel? ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 16:55 ` Eli Zaretskii @ 2021-11-27 0:02 ` Po Lu 2021-11-27 6:09 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-27 0:02 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> Thanks! I really appreciate it. > What pixel-delta values are typically reported on X for a single click > of the mouse wheel? A click (i.e. a movement where precise information is unavailable)? Typically 1 scroll unit is reported, which would be: 1.0 * pow (FRAME_PIXEL_HEIGHT (f), 2.0 / 3.0) Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 0:02 ` Po Lu @ 2021-11-27 6:09 ` Eli Zaretskii 2021-11-27 6:41 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-27 6:09 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Sat, 27 Nov 2021 08:02:45 +0800 > > Eli Zaretskii <eliz@gnu.org> writes: > > >> Thanks! I really appreciate it. > > > What pixel-delta values are typically reported on X for a single click > > of the mouse wheel? > > A click (i.e. a movement where precise information is unavailable)? Why are you saying "click" when we are talking about mouse wheel. The wheel is not clicked when the user wants to scroll, the wheel is turned. > Typically 1 scroll unit is reported, which would be: > > 1.0 * pow (FRAME_PIXEL_HEIGHT (f), 2.0 / 3.0) ??? That's about 100 pixels on a reasonably-sized frame. How can such large values support "precision pixelwise scrolling"? Are we talking about the same thing? I was asking about the smallest values of the deltas reported in the mouse wheel-up and wheel-down events when the user turns the wheel the smallest amount possible. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 6:09 ` Eli Zaretskii @ 2021-11-27 6:41 ` Po Lu 2021-11-27 7:05 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-27 6:41 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> > What pixel-delta values are typically reported on X for a single >> > click of the mouse wheel? ^^^^^ >> A click (i.e. a movement where precise information is unavailable)? > Why are you saying "click" when we are talking about mouse wheel. The > wheel is not clicked when the user wants to scroll, the wheel is > turned. That is what you said, right? >> Typically 1 scroll unit is reported, which would be: >> >> 1.0 * pow (FRAME_PIXEL_HEIGHT (f), 2.0 / 3.0) > ??? That's about 100 pixels on a reasonably-sized frame. How can such > large values support "precision pixelwise scrolling"? > Are we talking about the same thing? I was asking about the smallest > values of the deltas reported in the mouse wheel-up and wheel-down > events when the user turns the wheel the smallest amount possible. Ahh, I understand what you're asking now. The smallest value reported is usually to 0.01 or so, after conversion into scroll units. On a reasonably sized frame that would be 1 to 2 pixels. I thought you were asking about the value reported before X sends a legacy ButtonPress event for button 4/5/6/7. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 6:41 ` Po Lu @ 2021-11-27 7:05 ` Eli Zaretskii 2021-11-27 7:14 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-27 7:05 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Sat, 27 Nov 2021 14:41:50 +0800 > > > Are we talking about the same thing? I was asking about the smallest > > values of the deltas reported in the mouse wheel-up and wheel-down > > events when the user turns the wheel the smallest amount possible. > > Ahh, I understand what you're asking now. The smallest value reported > is usually to 0.01 or so, after conversion into scroll units. > > On a reasonably sized frame that would be 1 to 2 pixels. Is this with a mouse wheel or with a touchpad? I was asking about the mouse wheel. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 7:05 ` Eli Zaretskii @ 2021-11-27 7:14 ` Po Lu 2021-11-27 10:47 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-27 7:14 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> From: Po Lu <luangruo@yahoo.com> >> Cc: rpluim@gmail.com, emacs-devel@gnu.org >> Date: Sat, 27 Nov 2021 14:41:50 +0800 >> >> > Are we talking about the same thing? I was asking about the smallest >> > values of the deltas reported in the mouse wheel-up and wheel-down >> > events when the user turns the wheel the smallest amount possible. >> >> Ahh, I understand what you're asking now. The smallest value reported >> is usually to 0.01 or so, after conversion into scroll units. >> >> On a reasonably sized frame that would be 1 to 2 pixels. > Is this with a mouse wheel or with a touchpad? I was asking about the > mouse wheel. This is with a mouse wheel that supports pixel values, i.e., a mouse wheel that has no fixed "steps". (A mouse wheel with fixed steps would however report a value of 1.0: every XInput 2 program I tried will scroll the close-to-100 pixels that implies on each turn of such a wheel.) Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 7:14 ` Po Lu @ 2021-11-27 10:47 ` Eli Zaretskii 2021-11-27 10:54 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-27 10:47 UTC (permalink / raw) To: Po Lu; +Cc: emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Sat, 27 Nov 2021 15:14:13 +0800 > > >> On a reasonably sized frame that would be 1 to 2 pixels. > > > Is this with a mouse wheel or with a touchpad? I was asking about the > > mouse wheel. > > This is with a mouse wheel that supports pixel values, i.e., a mouse > wheel that has no fixed "steps". (A mouse wheel with fixed steps would > however report a value of 1.0: every XInput 2 program I tried will > scroll the close-to-100 pixels that implies on each turn of such a > wheel.) OK, thanks. Btw, I'm confused by the documentation of the enhanced mouse-wheel events. The manual says @item (wheel-up @var{position}) @itemx (wheel-down @var{position}) [...] The event may have additional arguments after @var{position}. The third argument after @var{position}, if present, is a pair of the form @w{@code{(@var{x} . @var{y})}}, where @var{x} and @var{y} are the number of pixels to scroll by in each axis. It mentions the 3rd argument (starting from 1, I presume, given the format of the event shown in @item). But the code in pixel-scroll.el does: (let ((delta (round (cdr (nth 4 event))))) So it takes the 4th element (zero-based), which is a 2-element discrepancy. What is the real form of the enhanced wheel events, and what are the 5 elements in them? Or what am I missing here? ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 10:47 ` Eli Zaretskii @ 2021-11-27 10:54 ` Po Lu 2021-11-27 11:03 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-27 10:54 UTC (permalink / raw) To: Eli Zaretskii; +Cc: emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> From: Po Lu <luangruo@yahoo.com> >> Cc: rpluim@gmail.com, emacs-devel@gnu.org >> Date: Sat, 27 Nov 2021 15:14:13 +0800 >> >> >> On a reasonably sized frame that would be 1 to 2 pixels. >> >> > Is this with a mouse wheel or with a touchpad? I was asking about the >> > mouse wheel. >> >> This is with a mouse wheel that supports pixel values, i.e., a mouse >> wheel that has no fixed "steps". (A mouse wheel with fixed steps would >> however report a value of 1.0: every XInput 2 program I tried will >> scroll the close-to-100 pixels that implies on each turn of such a >> wheel.) > > OK, thanks. > > Btw, I'm confused by the documentation of the enhanced mouse-wheel > events. The manual says > > @item (wheel-up @var{position}) > @itemx (wheel-down @var{position}) > [...] > The event may have additional arguments after > @var{position}. The third argument after @var{position}, if present, > is a pair of the form @w{@code{(@var{x} . @var{y})}}, where @var{x} > and @var{y} are the number of pixels to scroll by in each axis. > It mentions the 3rd argument (starting from 1, I presume, given the > format of the event shown in @item). But the code in pixel-scroll.el > does: It says "the third argument after @var{position}", which is the fifth element (1-based) in the lispy event, as position is the second element (again, one-based) of the event. But I agree that the wording is confusing and can probably be improved to just mention that the fifth element contains the pixel information. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 10:54 ` Po Lu @ 2021-11-27 11:03 ` Eli Zaretskii 2021-11-27 11:05 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-27 11:03 UTC (permalink / raw) To: Po Lu; +Cc: emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: emacs-devel@gnu.org > Date: Sat, 27 Nov 2021 18:54:42 +0800 > > Eli Zaretskii <eliz@gnu.org> writes: > > > The event may have additional arguments after > > @var{position}. The third argument after @var{position}, if present, > > is a pair of the form @w{@code{(@var{x} . @var{y})}}, where @var{x} > > and @var{y} are the number of pixels to scroll by in each axis. > > > It mentions the 3rd argument (starting from 1, I presume, given the > > format of the event shown in @item). But the code in pixel-scroll.el > > does: > > It says "the third argument after @var{position}", which is the fifth > element (1-based) in the lispy event, as position is the second element > (again, one-based) of the event. > > But I agree that the wording is confusing and can probably be improved > to just mention that the fifth element contains the pixel information. So what are the two arguments between POSITION and (X . Y), the 3rd and the 4th elements in the Lispy event? They should be documented in the general form of the event. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 11:03 ` Eli Zaretskii @ 2021-11-27 11:05 ` Po Lu 2021-11-27 11:13 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-27 11:05 UTC (permalink / raw) To: Eli Zaretskii; +Cc: emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> From: Po Lu <luangruo@yahoo.com> >> Cc: emacs-devel@gnu.org >> Date: Sat, 27 Nov 2021 18:54:42 +0800 >> >> Eli Zaretskii <eliz@gnu.org> writes: >> >> > The event may have additional arguments after >> > @var{position}. The third argument after @var{position}, if present, >> > is a pair of the form @w{@code{(@var{x} . @var{y})}}, where @var{x} >> > and @var{y} are the number of pixels to scroll by in each axis. >> >> > It mentions the 3rd argument (starting from 1, I presume, given the >> > format of the event shown in @item). But the code in pixel-scroll.el >> > does: >> >> It says "the third argument after @var{position}", which is the fifth >> element (1-based) in the lispy event, as position is the second element >> (again, one-based) of the event. >> >> But I agree that the wording is confusing and can probably be improved >> to just mention that the fifth element contains the pixel information. > So what are the two arguments between POSITION and (X . Y), the 3rd > and the 4th elements in the Lispy event? They should be documented in > the general form of the event. I have no idea what they are, and as such couldn't document them. (They are not related to the pixel scrolling support.) But I will try to find out. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 11:05 ` Po Lu @ 2021-11-27 11:13 ` Po Lu 2021-11-27 11:32 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-27 11:13 UTC (permalink / raw) To: Eli Zaretskii; +Cc: emacs-devel Po Lu <luangruo@yahoo.com> writes: > I have no idea what they are, and as such couldn't document them. (They > are not related to the pixel scrolling support.) > > But I will try to find out. I plan to change the mouse wheel section to the following text: @cindex @code{wheel-up} event @cindex @code{wheel-down} event @item (wheel-up @var{position} @var{clicks} @var{lines} @var{pixel-delta}) @itemx (wheel-down @var{position}) These kinds of event are generated by moving a mouse wheel. The @var{position} element is a mouse position list (@pxref{Click Events}), specifying the position of the mouse cursor when the event occurred. @var{clicks}, if present, is the number of times in quick succession the wheel has been moved. @xref{Repeat Events}. @var{lines}, if present, is the number of screen lines that should be scrolled. @var{pixel-delta}, if present, is a pair of the form @w{@code{(@var{x} . @var{y})}}, where @var{x} and @var{y} are the number of pixels to scroll by in each axis. WDYT? Also, it seems that `lines' is only generated by the NS port, so it should perhaps be worthwhile to mention that as well? Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 11:13 ` Po Lu @ 2021-11-27 11:32 ` Eli Zaretskii 2021-11-27 11:34 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-27 11:32 UTC (permalink / raw) To: Po Lu; +Cc: emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: emacs-devel@gnu.org > Date: Sat, 27 Nov 2021 19:13:44 +0800 > > @cindex @code{wheel-up} event > @cindex @code{wheel-down} event > @item (wheel-up @var{position} @var{clicks} @var{lines} @var{pixel-delta}) > @itemx (wheel-down @var{position}) > These kinds of event are generated by moving a mouse wheel. The > @var{position} element is a mouse position list (@pxref{Click > Events}), specifying the position of the mouse cursor when the event > occurred. > > @var{clicks}, if present, is the number of times in quick succession > the wheel has been moved. By "if present", do you mean it can be absent, or do you mean it can be nil? If the latter, then "present" is not the right word. Also, can this CLICKS member really be anything but 1 when the wheel is used? > @var{lines}, if present, is the number of screen lines that should > be scrolled. @var{pixel-delta}, if present, is a pair of the form > @w{@code{(@var{x} . @var{y})}}, where @var{x} and @var{y} are the > number of pixels to scroll by in each axis. > > WDYT? Also, it seems that `lines' is only generated by the NS port, so > it should perhaps be worthwhile to mention that as well? Doesn't "if present" already handle that? (Assuming you meant it can be nil.) Otherwise LGTM, thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 11:32 ` Eli Zaretskii @ 2021-11-27 11:34 ` Po Lu 2021-11-27 11:40 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-27 11:34 UTC (permalink / raw) To: Eli Zaretskii; +Cc: emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> From: Po Lu <luangruo@yahoo.com> >> Cc: emacs-devel@gnu.org >> Date: Sat, 27 Nov 2021 19:13:44 +0800 >> >> @cindex @code{wheel-up} event >> @cindex @code{wheel-down} event >> @item (wheel-up @var{position} @var{clicks} @var{lines} @var{pixel-delta}) >> @itemx (wheel-down @var{position}) >> These kinds of event are generated by moving a mouse wheel. The >> @var{position} element is a mouse position list (@pxref{Click >> Events}), specifying the position of the mouse cursor when the event >> occurred. >> >> @var{clicks}, if present, is the number of times in quick succession >> the wheel has been moved. > By "if present", do you mean it can be absent, or do you mean it can > be nil? If the latter, then "present" is not the right word. It can be absent, not nil. Thanks. > Also, can this CLICKS member really be anything but 1 when the wheel > is used? Yes, when the wheel is turned quickly it can be 2 or 3. It can probably go higher, but I can't turn my mouse wheel that fast. >> @var{lines}, if present, is the number of screen lines that should >> be scrolled. @var{pixel-delta}, if present, is a pair of the form >> @w{@code{(@var{x} . @var{y})}}, where @var{x} and @var{y} are the >> number of pixels to scroll by in each axis. >> >> WDYT? Also, it seems that `lines' is only generated by the NS port, so >> it should perhaps be worthwhile to mention that as well? > Doesn't "if present" already handle that? Yes, makes sense now, thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 11:34 ` Po Lu @ 2021-11-27 11:40 ` Eli Zaretskii 2021-11-27 11:44 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-27 11:40 UTC (permalink / raw) To: Po Lu; +Cc: emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: emacs-devel@gnu.org > Date: Sat, 27 Nov 2021 19:34:19 +0800 > > >> @var{clicks}, if present, is the number of times in quick succession > >> the wheel has been moved. > > > By "if present", do you mean it can be absent, or do you mean it can > > be nil? If the latter, then "present" is not the right word. > > It can be absent, not nil. Thanks. Hmm... now I'm confused. Isn't this produced by this code in keyboard.c: if (CONSP (event->arg)) return list5 (head, position, make_fixnum (double_click_count), XCAR (event->arg), Fcons (XCAR (XCDR (event->arg)), XCAR (XCDR (XCDR (event->arg))))); ? If so, this always produces a 5-element list, and CLICKS is always included. Right? ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 11:40 ` Eli Zaretskii @ 2021-11-27 11:44 ` Po Lu 2021-11-27 12:02 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-27 11:44 UTC (permalink / raw) To: Eli Zaretskii; +Cc: emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> From: Po Lu <luangruo@yahoo.com> >> Cc: emacs-devel@gnu.org >> Date: Sat, 27 Nov 2021 19:34:19 +0800 >> >> >> @var{clicks}, if present, is the number of times in quick succession >> >> the wheel has been moved. >> >> > By "if present", do you mean it can be absent, or do you mean it can >> > be nil? If the latter, then "present" is not the right word. >> >> It can be absent, not nil. Thanks. > > Hmm... now I'm confused. Isn't this produced by this code in > keyboard.c: > > if (CONSP (event->arg)) > return list5 (head, position, make_fixnum (double_click_count), > XCAR (event->arg), Fcons (XCAR (XCDR (event->arg)), > XCAR (XCDR (XCDR (event->arg))))); > > ? If so, this always produces a 5-element list, and CLICKS is always > included. Right? Yes, but event->arg might not always be a cons. On X, it is only a cons in XInput 2 events that have precise scrolling information. When handling legacy events, it is nil. AFAIU (and this may not be a very accurate understanding), if event->arg is a cons, it means it might have line scroll information, and has pixel scroll information. Otherwise, if it is a number, it has only line information. Otherwise, if the wheel event is double or triple, `double_click_count' will be included. And otherwise, only the event name and position will be included. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 11:44 ` Po Lu @ 2021-11-27 12:02 ` Eli Zaretskii 2021-11-27 12:11 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-27 12:02 UTC (permalink / raw) To: Po Lu; +Cc: emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: emacs-devel@gnu.org > Date: Sat, 27 Nov 2021 19:44:15 +0800 > > > if (CONSP (event->arg)) > > return list5 (head, position, make_fixnum (double_click_count), > > XCAR (event->arg), Fcons (XCAR (XCDR (event->arg)), > > XCAR (XCDR (XCDR (event->arg))))); > > > > ? If so, this always produces a 5-element list, and CLICKS is always > > included. Right? > > Yes, but event->arg might not always be a cons. On X, it is only a cons > in XInput 2 events that have precise scrolling information. When > handling legacy events, it is nil. I did mean what happens when the precise scrolling information is there. > AFAIU (and this may not be a very accurate understanding), if event->arg > is a cons, it means it might have line scroll information, and has pixel > scroll information. > > Otherwise, if it is a number, it has only line information. > > Otherwise, if the wheel event is double or triple, `double_click_count' > will be included. > > And otherwise, only the event name and position will be included. So I think the manual should describe these possibilities, i.e. that every member past POSITION can be present or absent, and if it's present, the next one could be present or absent, etc. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 12:02 ` Eli Zaretskii @ 2021-11-27 12:11 ` Po Lu 2021-11-27 12:36 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-27 12:11 UTC (permalink / raw) To: Eli Zaretskii; +Cc: emacs-devel Eli Zaretskii <eliz@gnu.org> writes: > I did mean what happens when the precise scrolling information is > there. Thanks, then in that case a 5-element list is always produced. >> AFAIU (and this may not be a very accurate understanding), if event->arg >> is a cons, it means it might have line scroll information, and has pixel >> scroll information. >> >> Otherwise, if it is a number, it has only line information. >> >> Otherwise, if the wheel event is double or triple, `double_click_count' >> will be included. >> >> And otherwise, only the event name and position will be included. > > So I think the manual should describe these possibilities, i.e. that > every member past POSITION can be present or absent, and if it's > present, the next one could be present or absent, etc. Does this look OK to you? Thanks. @item (wheel-up @var{position} @var{clicks} @var{lines} @var{pixel-delta}) @itemx (wheel-down @var{position} @var{clicks} @var{lines} @var{pixel-delta}) These kinds of event are generated by moving a mouse wheel. The @var{position} element is a mouse position list (@pxref{Click Events}), specifying the position of the mouse cursor when the event occurred. @var{clicks}, if present, is the number of times in quick succession the wheel has been moved. @xref{Repeat Events}. @var{lines}, if present and not @code{nil}, is the number of screen lines that should be scrolled. @var{pixel-delta}, if present, is a pair of the form @w{@code{(@var{x} . @var{y})}}, where @var{x} and @var{y} are the number of pixels to scroll by in each axis. Each parameters after @var{position} may be absent. Additionally, @var{lines} may be @code{nil}. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 12:11 ` Po Lu @ 2021-11-27 12:36 ` Eli Zaretskii 2021-11-27 12:48 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-27 12:36 UTC (permalink / raw) To: Po Lu; +Cc: emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: emacs-devel@gnu.org > Date: Sat, 27 Nov 2021 20:11:45 +0800 > > @item (wheel-up @var{position} @var{clicks} @var{lines} @var{pixel-delta}) > @itemx (wheel-down @var{position} @var{clicks} @var{lines} @var{pixel-delta}) > These kinds of event are generated by moving a mouse wheel. The > @var{position} element is a mouse position list (@pxref{Click > Events}), specifying the position of the mouse cursor when the event > occurred. > > @var{clicks}, if present, is the number of times in quick succession > the wheel has been moved. @xref{Repeat Events}. @var{lines}, if > present and not @code{nil}, is the number of screen lines that should > be scrolled. @var{pixel-delta}, if present, is a pair of the form > @w{@code{(@var{x} . @var{y})}}, where @var{x} and @var{y} are the > number of pixels to scroll by in each axis. > > Each parameters after @var{position} may be absent. Additionally, > @var{lines} may be @code{nil}. LGTM, but the last sentence is redundant, I think. You already say that above. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-27 12:36 ` Eli Zaretskii @ 2021-11-27 12:48 ` Po Lu 0 siblings, 0 replies; 47+ messages in thread From: Po Lu @ 2021-11-27 12:48 UTC (permalink / raw) To: Eli Zaretskii; +Cc: emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> From: Po Lu <luangruo@yahoo.com> >> Cc: emacs-devel@gnu.org >> Date: Sat, 27 Nov 2021 20:11:45 +0800 >> >> @item (wheel-up @var{position} @var{clicks} @var{lines} @var{pixel-delta}) >> @itemx (wheel-down @var{position} @var{clicks} @var{lines} @var{pixel-delta}) >> These kinds of event are generated by moving a mouse wheel. The >> @var{position} element is a mouse position list (@pxref{Click >> Events}), specifying the position of the mouse cursor when the event >> occurred. >> >> @var{clicks}, if present, is the number of times in quick succession >> the wheel has been moved. @xref{Repeat Events}. @var{lines}, if >> present and not @code{nil}, is the number of screen lines that should >> be scrolled. @var{pixel-delta}, if present, is a pair of the form >> @w{@code{(@var{x} . @var{y})}}, where @var{x} and @var{y} are the >> number of pixels to scroll by in each axis. >> >> Each parameters after @var{position} may be absent. Additionally, >> @var{lines} may be @code{nil}. > > LGTM, but the last sentence is redundant, I think. You already say > that above. Okay, installed with the last sentence removed. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 11:32 ` Eli Zaretskii 2021-11-26 11:44 ` Po Lu @ 2021-11-26 11:48 ` Eli Zaretskii 2021-11-26 12:05 ` Po Lu 1 sibling, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-26 11:48 UTC (permalink / raw) To: luangruo; +Cc: rpluim, emacs-devel Btw, I have a general question regarding this "pixel-resolution" scrolling support: With mwheel.el, Emacs users can configure the meaning of each scroll event in terms of text lines, via the mouse-wheel-scroll-amount variable. But with this new mode, there's no such user control: the conversion of the scroll amount reported by the wheel event to pixels is either hard-coded in our code, or (on NS) determined by the OS. Does it strike someone as "un-Emacsy"? Also, if we detect that the mouse wheel is capable of reporting fine-resolution scrolls, we use that unconditionally, and users have no say about that. So if a user sets x-coalesce-scroll-events to nil manually, but doesn't enable this new mode, they suddenly get much faster scrolling because mwheel.el disregards the pixel-wise deltas. Right? So maybe we should make x-coalesce-scroll-events and internal variable, and say so in its doc string, because it should only be set by this mode and its ilk, which do pay attention to the pixel deltas? ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 11:48 ` Eli Zaretskii @ 2021-11-26 12:05 ` Po Lu 2021-11-26 12:23 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-26 12:05 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: > Btw, I have a general question regarding this "pixel-resolution" > scrolling support: > With mwheel.el, Emacs users can configure the meaning of each scroll > event in terms of text lines, via the mouse-wheel-scroll-amount > variable. But with this new mode, there's no such user control: the > conversion of the scroll amount reported by the wheel event to pixels > is either hard-coded in our code, or (on NS) determined by the OS. > Does it strike someone as "un-Emacsy"? It seems OK to me, but we could perhaps have customizations for that. The problem is that I don't see how such a customization could be implemented on platforms such as NS, or in the future, the PGTK port. > Also, if we detect that the mouse wheel is capable of reporting > fine-resolution scrolls, we use that unconditionally, and users have > no say about that. So if a user sets x-coalesce-scroll-events to nil > manually, but doesn't enable this new mode, they suddenly get much > faster scrolling because mwheel.el disregards the pixel-wise deltas. > Right? Yes, that's correct. > So maybe we should make x-coalesce-scroll-events and internal > variable, and say so in its doc string, because it should only be set > by this mode and its ilk, which do pay attention to the pixel deltas? I could imagine some user customizations making use of it, but I have no objection to making it an internal variable. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 12:05 ` Po Lu @ 2021-11-26 12:23 ` Eli Zaretskii 2021-11-26 12:37 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-26 12:23 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Fri, 26 Nov 2021 20:05:00 +0800 > > Eli Zaretskii <eliz@gnu.org> writes: > > > Btw, I have a general question regarding this "pixel-resolution" > > scrolling support: > > > With mwheel.el, Emacs users can configure the meaning of each scroll > > event in terms of text lines, via the mouse-wheel-scroll-amount > > variable. But with this new mode, there's no such user control: the > > conversion of the scroll amount reported by the wheel event to pixels > > is either hard-coded in our code, or (on NS) determined by the OS. > > Does it strike someone as "un-Emacsy"? > > It seems OK to me, but we could perhaps have customizations for that. > > The problem is that I don't see how such a customization could be > implemented on platforms such as NS, or in the future, the PGTK port. It's simple: we could provide a variable to scale the pixels calculated by the *term code. > > So maybe we should make x-coalesce-scroll-events and internal > > variable, and say so in its doc string, because it should only be set > > by this mode and its ilk, which do pay attention to the pixel deltas? > > I could imagine some user customizations making use of it, but I have no > objection to making it an internal variable. I'd be interested to hear opinions of Lars and others about this. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 12:23 ` Eli Zaretskii @ 2021-11-26 12:37 ` Po Lu 2021-11-26 19:39 ` Alan Third 2021-11-28 2:54 ` Po Lu 0 siblings, 2 replies; 47+ messages in thread From: Po Lu @ 2021-11-26 12:37 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: > It's simple: we could provide a variable to scale the pixels > calculated by the *term code. Alternatively, how about putting such an option in the code that makes use of such events, something like `pixel-scroll-precision-scale'. >> I could imagine some user customizations making use of it, but I have no >> objection to making it an internal variable. > I'd be interested to hear opinions of Lars and others about this. Yes, I think that would be a good idea. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 12:37 ` Po Lu @ 2021-11-26 19:39 ` Alan Third 2021-11-26 19:45 ` Eli Zaretskii 2021-11-28 2:54 ` Po Lu 1 sibling, 1 reply; 47+ messages in thread From: Alan Third @ 2021-11-26 19:39 UTC (permalink / raw) To: Po Lu; +Cc: Eli Zaretskii, rpluim, emacs-devel On Fri, Nov 26, 2021 at 08:37:08PM +0800, Po Lu wrote: > Eli Zaretskii <eliz@gnu.org> writes: > > > It's simple: we could provide a variable to scale the pixels > > calculated by the *term code. > > Alternatively, how about putting such an option in the code that makes > use of such events, something like `pixel-scroll-precision-scale'. Why not move the delta to pixel conversion to lisp? On NS it defaults to a 1:1 relationship, on X it defaults to the XInput2 devs recommendation. The function could then be customised as desired by an end user. -- Alan Third ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 19:39 ` Alan Third @ 2021-11-26 19:45 ` Eli Zaretskii 2021-11-26 19:54 ` Alan Third 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-26 19:45 UTC (permalink / raw) To: Alan Third; +Cc: luangruo, rpluim, emacs-devel > Date: Fri, 26 Nov 2021 19:39:39 +0000 > From: Alan Third <alan@idiocy.org> > Cc: Eli Zaretskii <eliz@gnu.org>, rpluim@gmail.com, emacs-devel@gnu.org > > On Fri, Nov 26, 2021 at 08:37:08PM +0800, Po Lu wrote: > > Eli Zaretskii <eliz@gnu.org> writes: > > > > > It's simple: we could provide a variable to scale the pixels > > > calculated by the *term code. > > > > Alternatively, how about putting such an option in the code that makes > > use of such events, something like `pixel-scroll-precision-scale'. > > Why not move the delta to pixel conversion to lisp? Move it how? Having each wheel event call into Lisp is not something I'd like to do. What kind of conversion do we need that is not a simple multiplication by a user-customizable fixed value? If this is all we need, the conversion could be performed by the calling application. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 19:45 ` Eli Zaretskii @ 2021-11-26 19:54 ` Alan Third 0 siblings, 0 replies; 47+ messages in thread From: Alan Third @ 2021-11-26 19:54 UTC (permalink / raw) To: Eli Zaretskii; +Cc: luangruo, rpluim, emacs-devel On Fri, Nov 26, 2021 at 09:45:43PM +0200, Eli Zaretskii wrote: > > Date: Fri, 26 Nov 2021 19:39:39 +0000 > > From: Alan Third <alan@idiocy.org> > > Cc: Eli Zaretskii <eliz@gnu.org>, rpluim@gmail.com, emacs-devel@gnu.org > > > > On Fri, Nov 26, 2021 at 08:37:08PM +0800, Po Lu wrote: > > > Eli Zaretskii <eliz@gnu.org> writes: > > > > > > > It's simple: we could provide a variable to scale the pixels > > > > calculated by the *term code. > > > > > > Alternatively, how about putting such an option in the code that makes > > > use of such events, something like `pixel-scroll-precision-scale'. > > > > Why not move the delta to pixel conversion to lisp? > > Move it how? Having each wheel event call into Lisp is not something > I'd like to do. Hmm, I guess I'm mixing this up with the smooth scrolling work, which is calling into lisp every time anyway. Never mind. -- Alan Third ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-26 12:37 ` Po Lu 2021-11-26 19:39 ` Alan Third @ 2021-11-28 2:54 ` Po Lu 2021-11-28 7:53 ` Eli Zaretskii 1 sibling, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-28 2:54 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Po Lu <luangruo@yahoo.com> writes: > Eli Zaretskii <eliz@gnu.org> writes: > >> It's simple: we could provide a variable to scale the pixels >> calculated by the *term code. > > Alternatively, how about putting such an option in the code that makes > use of such events, something like `pixel-scroll-precision-scale'. diff --git a/lisp/pixel-scroll.el b/lisp/pixel-scroll.el index 888320cf1a..a14c211207 100644 --- a/lisp/pixel-scroll.el +++ b/lisp/pixel-scroll.el @@ -100,6 +100,11 @@ pixel-scroll-precision-mode-map map) "The key map used by `pixel-scroll-precision-mode'.") +(defcustom pixel-scroll-precision-scale 1.0 + "Value by which to multiply pixel deltas used in `pixel-scroll-precision-mode'." + :type 'float + :group 'mouse) + (defun pixel-scroll-in-rush-p () "Return non-nil if next scroll should be non-smooth. When scrolling request is delivered soon after the previous one, @@ -476,7 +481,8 @@ pixel-scroll-precision (let ((window (mwheel-event-window event))) (if (and (nth 4 event) (zerop (window-hscroll window))) - (let ((delta (round (cdr (nth 4 event))))) + (let ((delta (round (* pixel-scroll-precision-scale + (cdr (nth 4 event)))))) (if (> (abs delta) (window-text-height window t)) (mwheel-scroll event nil) (with-selected-window window -- 2.33.1 WDYT about this? Thanks. ^ permalink raw reply related [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-28 2:54 ` Po Lu @ 2021-11-28 7:53 ` Eli Zaretskii 2021-11-28 7:58 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-28 7:53 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Sun, 28 Nov 2021 10:54:26 +0800 > > Po Lu <luangruo@yahoo.com> writes: > > > Eli Zaretskii <eliz@gnu.org> writes: > > > >> It's simple: we could provide a variable to scale the pixels > >> calculated by the *term code. > > > > Alternatively, how about putting such an option in the code that makes > > use of such events, something like `pixel-scroll-precision-scale'. > > diff --git a/lisp/pixel-scroll.el b/lisp/pixel-scroll.el > index 888320cf1a..a14c211207 100644 > --- a/lisp/pixel-scroll.el > +++ b/lisp/pixel-scroll.el > @@ -100,6 +100,11 @@ pixel-scroll-precision-mode-map > map) > "The key map used by `pixel-scroll-precision-mode'.") > > +(defcustom pixel-scroll-precision-scale 1.0 > + "Value by which to multiply pixel deltas used in `pixel-scroll-precision-mode'." > + :type 'float > + :group 'mouse) > + I think this factor should not be specific to pixel-scroll.el, it should be applied by keyboard.c where it constructs the event, or maybe by the *term.[cm] terminal-specific backends. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-28 7:53 ` Eli Zaretskii @ 2021-11-28 7:58 ` Po Lu 2021-11-28 8:28 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-28 7:58 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: > I think this factor should not be specific to pixel-scroll.el, it > should be applied by keyboard.c where it constructs the event, or > maybe by the *term.[cm] terminal-specific backends. I think it makes more sense to put it in *term, as different terminals use different methods to obtain the pixel deltas. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-28 7:58 ` Po Lu @ 2021-11-28 8:28 ` Eli Zaretskii 2021-11-29 7:39 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-28 8:28 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Sun, 28 Nov 2021 15:58:52 +0800 > > Eli Zaretskii <eliz@gnu.org> writes: > > > I think this factor should not be specific to pixel-scroll.el, it > > should be applied by keyboard.c where it constructs the event, or > > maybe by the *term.[cm] terminal-specific backends. > > I think it makes more sense to put it in *term, as different terminals > use different methods to obtain the pixel deltas. Fine with me. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-28 8:28 ` Eli Zaretskii @ 2021-11-29 7:39 ` Po Lu 2021-11-29 12:50 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Po Lu @ 2021-11-29 7:39 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> From: Po Lu <luangruo@yahoo.com> >> Cc: rpluim@gmail.com, emacs-devel@gnu.org >> Date: Sun, 28 Nov 2021 15:58:52 +0800 >> >> Eli Zaretskii <eliz@gnu.org> writes: >> >> > I think this factor should not be specific to pixel-scroll.el, it >> > should be applied by keyboard.c where it constructs the event, or >> > maybe by the *term.[cm] terminal-specific backends. >> >> I think it makes more sense to put it in *term, as different terminals >> use different methods to obtain the pixel deltas. > > Fine with me. I added such an option to the X port. I will add a similar option to the NS port once I get the virtual machine running macOS working again. Thanks. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-29 7:39 ` Po Lu @ 2021-11-29 12:50 ` Eli Zaretskii 2021-11-29 13:19 ` Po Lu 0 siblings, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-29 12:50 UTC (permalink / raw) To: Po Lu; +Cc: rpluim, emacs-devel > From: Po Lu <luangruo@yahoo.com> > Cc: rpluim@gmail.com, emacs-devel@gnu.org > Date: Mon, 29 Nov 2021 15:39:44 +0800 > > >> I think it makes more sense to put it in *term, as different terminals > >> use different methods to obtain the pixel deltas. > > > > Fine with me. > > I added such an option to the X port. I will add a similar option to > the NS port once I get the virtual machine running macOS working again. Thanks, but why do you allow only float values? There's nothing wrong with allowing integer values as well, is there? You can use NUMBERP and XFLOATINT instead of FLOATP and XFLOAT_DATA. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-29 12:50 ` Eli Zaretskii @ 2021-11-29 13:19 ` Po Lu 0 siblings, 0 replies; 47+ messages in thread From: Po Lu @ 2021-11-29 13:19 UTC (permalink / raw) To: Eli Zaretskii; +Cc: rpluim, emacs-devel Eli Zaretskii <eliz@gnu.org> writes: >> From: Po Lu <luangruo@yahoo.com> >> Cc: rpluim@gmail.com, emacs-devel@gnu.org >> Date: Mon, 29 Nov 2021 15:39:44 +0800 >> >> >> I think it makes more sense to put it in *term, as different terminals >> >> use different methods to obtain the pixel deltas. >> > >> > Fine with me. >> >> I added such an option to the X port. I will add a similar option to >> the NS port once I get the virtual machine running macOS working again. > > Thanks, but why do you allow only float values? There's nothing wrong > with allowing integer values as well, is there? You can use NUMBERP > and XFLOATINT instead of FLOATP and XFLOAT_DATA. Thanks, I will fix that tomorrow. ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-25 10:26 ` master e37eb7f: Add support for pixel wheel deltas on NS Robert Pluim 2021-11-25 10:34 ` Po Lu @ 2021-11-25 11:00 ` Eli Zaretskii 2021-11-25 18:46 ` Stefan Monnier 1 sibling, 1 reply; 47+ messages in thread From: Eli Zaretskii @ 2021-11-25 11:00 UTC (permalink / raw) To: Robert Pluim; +Cc: luangruo, emacs-devel > From: Robert Pluim <rpluim@gmail.com> > Date: Thu, 25 Nov 2021 11:26:17 +0100 > Cc: Po Lu <luangruo@yahoo.com> > > Po> + > Po> + DEFVAR_BOOL ("x-coalesce-scroll-events", x_coalesce_scroll_events, > Po> + doc: /* SKIP: real doc in xterm.c. */); > Po> + x_coalesce_scroll_events = true; > Po> + > > We now have 3 definitions of x-coalesce-scroll-events. Is there not > somewhere more generic where you can put it? (and I suspect we can > drop the x- bit). keyboard.c, perhaps? ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-25 11:00 ` Eli Zaretskii @ 2021-11-25 18:46 ` Stefan Monnier 2021-11-25 18:58 ` Eli Zaretskii 0 siblings, 1 reply; 47+ messages in thread From: Stefan Monnier @ 2021-11-25 18:46 UTC (permalink / raw) To: Eli Zaretskii; +Cc: Robert Pluim, luangruo, emacs-devel >> Po> + >> Po> + DEFVAR_BOOL ("x-coalesce-scroll-events", x_coalesce_scroll_events, >> Po> + doc: /* SKIP: real doc in xterm.c. */); >> Po> + x_coalesce_scroll_events = true; >> Po> + >> >> We now have 3 definitions of x-coalesce-scroll-events. Is there not >> somewhere more generic where you can put it? (and I suspect we can >> drop the x- bit). > > keyboard.c, perhaps? Maybe a new `gui.c` where can put some of the code shared between the various GUI-specific files? Stefan ^ permalink raw reply [flat|nested] 47+ messages in thread
* Re: master e37eb7f: Add support for pixel wheel deltas on NS 2021-11-25 18:46 ` Stefan Monnier @ 2021-11-25 18:58 ` Eli Zaretskii 0 siblings, 0 replies; 47+ messages in thread From: Eli Zaretskii @ 2021-11-25 18:58 UTC (permalink / raw) To: Stefan Monnier; +Cc: luangruo, rpluim, emacs-devel > From: Stefan Monnier <monnier@iro.umontreal.ca> > Cc: Robert Pluim <rpluim@gmail.com>, luangruo@yahoo.com, emacs-devel@gnu.org > Date: Thu, 25 Nov 2021 13:46:21 -0500 > > >> Po> + > >> Po> + DEFVAR_BOOL ("x-coalesce-scroll-events", x_coalesce_scroll_events, > >> Po> + doc: /* SKIP: real doc in xterm.c. */); > >> Po> + x_coalesce_scroll_events = true; > >> Po> + > >> > >> We now have 3 definitions of x-coalesce-scroll-events. Is there not > >> somewhere more generic where you can put it? (and I suspect we can > >> drop the x- bit). > > > > keyboard.c, perhaps? > > Maybe a new `gui.c` where can put some of the code shared between the > various GUI-specific files? We already have that: xdisp.c. But this is not GUI, this is about input events. ^ permalink raw reply [flat|nested] 47+ messages in thread
end of thread, other threads:[~2021-11-29 13:19 UTC | newest] Thread overview: 47+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <20211125030922.2353.1129@vcs0.savannah.gnu.org> [not found] ` <20211125030924.7258E2094B@vcs0.savannah.gnu.org> 2021-11-25 10:26 ` master e37eb7f: Add support for pixel wheel deltas on NS Robert Pluim 2021-11-25 10:34 ` Po Lu 2021-11-25 10:47 ` Robert Pluim 2021-11-25 11:02 ` Eli Zaretskii 2021-11-26 0:39 ` Po Lu 2021-11-26 6:35 ` Eli Zaretskii 2021-11-26 7:00 ` Po Lu 2021-11-26 8:17 ` Eli Zaretskii 2021-11-26 9:37 ` Po Lu 2021-11-26 11:32 ` Eli Zaretskii 2021-11-26 11:44 ` Po Lu 2021-11-26 16:55 ` Eli Zaretskii 2021-11-27 0:02 ` Po Lu 2021-11-27 6:09 ` Eli Zaretskii 2021-11-27 6:41 ` Po Lu 2021-11-27 7:05 ` Eli Zaretskii 2021-11-27 7:14 ` Po Lu 2021-11-27 10:47 ` Eli Zaretskii 2021-11-27 10:54 ` Po Lu 2021-11-27 11:03 ` Eli Zaretskii 2021-11-27 11:05 ` Po Lu 2021-11-27 11:13 ` Po Lu 2021-11-27 11:32 ` Eli Zaretskii 2021-11-27 11:34 ` Po Lu 2021-11-27 11:40 ` Eli Zaretskii 2021-11-27 11:44 ` Po Lu 2021-11-27 12:02 ` Eli Zaretskii 2021-11-27 12:11 ` Po Lu 2021-11-27 12:36 ` Eli Zaretskii 2021-11-27 12:48 ` Po Lu 2021-11-26 11:48 ` Eli Zaretskii 2021-11-26 12:05 ` Po Lu 2021-11-26 12:23 ` Eli Zaretskii 2021-11-26 12:37 ` Po Lu 2021-11-26 19:39 ` Alan Third 2021-11-26 19:45 ` Eli Zaretskii 2021-11-26 19:54 ` Alan Third 2021-11-28 2:54 ` Po Lu 2021-11-28 7:53 ` Eli Zaretskii 2021-11-28 7:58 ` Po Lu 2021-11-28 8:28 ` Eli Zaretskii 2021-11-29 7:39 ` Po Lu 2021-11-29 12:50 ` Eli Zaretskii 2021-11-29 13:19 ` Po Lu 2021-11-25 11:00 ` Eli Zaretskii 2021-11-25 18:46 ` Stefan Monnier 2021-11-25 18:58 ` Eli Zaretskii
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/emacs.git https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.