2002-11-28 23:03:30 +00:00
|
|
|
;;; mwheel.el --- Wheel mouse support
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2018-01-01 00:21:42 -08:00
|
|
|
;; Copyright (C) 1998, 2000-2018 Free Software Foundation, Inc.
|
1999-11-10 21:54:54 +00:00
|
|
|
;; Maintainer: William M. Perry <wmperry@gnu.org>
|
|
|
|
;; Keywords: mouse
|
2010-08-29 12:17:13 -04:00
|
|
|
;; Package: emacs
|
1999-11-10 21:54:54 +00:00
|
|
|
|
1999-11-11 14:01:46 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1999-11-11 14:01:46 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
1999-11-11 14:01:46 +00:00
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; This code will enable the use of the infamous 'wheel' on the new
|
|
|
|
;; crop of mice. Under XFree86 and the XSuSE X Servers, the wheel
|
|
|
|
;; events are sent as button4/button5 events.
|
|
|
|
|
|
|
|
;; I for one would prefer some way of converting the button4/button5
|
|
|
|
;; events into different event types, like 'mwheel-up' or
|
|
|
|
;; 'mwheel-down', but I cannot find a way to do this very easily (or
|
|
|
|
;; portably), so for now I just live with it.
|
|
|
|
|
|
|
|
;; To enable this code, simply put this at the top of your .emacs
|
|
|
|
;; file:
|
|
|
|
;;
|
2003-05-27 23:09:40 +00:00
|
|
|
;; (mouse-wheel-mode 1)
|
1999-11-10 21:54:54 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'custom)
|
2002-11-28 23:03:30 +00:00
|
|
|
(require 'timer)
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2009-09-12 19:03:49 +00:00
|
|
|
(defvar mouse-wheel-mode)
|
2009-09-12 09:40:15 +00:00
|
|
|
|
2001-07-27 08:41:35 +00:00
|
|
|
;; Setter function for mouse-button user-options. Switch Mouse Wheel
|
|
|
|
;; mode off and on again so that the old button is unbound and
|
|
|
|
;; new button is bound to mwheel-scroll.
|
|
|
|
|
|
|
|
(defun mouse-wheel-change-button (var button)
|
2009-09-12 04:38:03 +00:00
|
|
|
(set-default var button)
|
|
|
|
;; Sync the bindings.
|
2009-09-12 19:03:49 +00:00
|
|
|
(when (bound-and-true-p mouse-wheel-mode) (mouse-wheel-mode 1)))
|
2001-07-27 08:41:35 +00:00
|
|
|
|
2003-02-05 23:12:01 +00:00
|
|
|
(defvar mouse-wheel-down-button 4)
|
|
|
|
(make-obsolete-variable 'mouse-wheel-down-button
|
2008-04-18 10:30:38 +00:00
|
|
|
'mouse-wheel-down-event
|
|
|
|
"22.1")
|
2002-06-27 21:46:45 +00:00
|
|
|
(defcustom mouse-wheel-down-event
|
2009-08-16 05:49:26 +00:00
|
|
|
(if (or (featurep 'w32-win) (featurep 'ns-win))
|
2003-06-01 22:14:30 +00:00
|
|
|
'wheel-up
|
2009-08-16 05:49:26 +00:00
|
|
|
(intern (format "mouse-%s" mouse-wheel-down-button)))
|
2002-06-27 21:46:45 +00:00
|
|
|
"Event used for scrolling down."
|
2001-07-27 08:41:35 +00:00
|
|
|
:group 'mouse
|
2002-06-27 21:46:45 +00:00
|
|
|
:type 'symbol
|
2001-07-27 08:41:35 +00:00
|
|
|
:set 'mouse-wheel-change-button)
|
|
|
|
|
2003-02-05 23:12:01 +00:00
|
|
|
(defvar mouse-wheel-up-button 5)
|
|
|
|
(make-obsolete-variable 'mouse-wheel-up-button
|
2008-04-18 10:30:38 +00:00
|
|
|
'mouse-wheel-up-event
|
|
|
|
"22.1")
|
2002-06-27 21:46:45 +00:00
|
|
|
(defcustom mouse-wheel-up-event
|
2009-08-16 05:49:26 +00:00
|
|
|
(if (or (featurep 'w32-win) (featurep 'ns-win))
|
2003-06-01 22:14:30 +00:00
|
|
|
'wheel-down
|
2009-08-16 05:49:26 +00:00
|
|
|
(intern (format "mouse-%s" mouse-wheel-up-button)))
|
2006-02-11 11:32:31 +00:00
|
|
|
"Event used for scrolling up."
|
2001-07-27 08:41:35 +00:00
|
|
|
:group 'mouse
|
2002-06-27 21:46:45 +00:00
|
|
|
:type 'symbol
|
2001-07-27 08:41:35 +00:00
|
|
|
:set 'mouse-wheel-change-button)
|
|
|
|
|
2003-02-05 23:12:01 +00:00
|
|
|
(defvar mouse-wheel-click-button 2)
|
|
|
|
(make-obsolete-variable 'mouse-wheel-click-button
|
2008-04-18 10:30:38 +00:00
|
|
|
'mouse-wheel-click-event
|
|
|
|
"22.1")
|
2002-11-28 23:03:30 +00:00
|
|
|
(defcustom mouse-wheel-click-event
|
2009-08-16 05:49:26 +00:00
|
|
|
(intern (format "mouse-%s" mouse-wheel-click-button))
|
2002-11-28 23:03:30 +00:00
|
|
|
"Event that should be temporarily inhibited after mouse scrolling.
|
|
|
|
The mouse wheel is typically on the mouse-2 button, so it may easily
|
2006-02-14 11:35:48 +00:00
|
|
|
happen that text is accidentally yanked into the buffer when
|
2002-11-28 23:03:30 +00:00
|
|
|
scrolling with the mouse wheel. To prevent that, this variable can be
|
|
|
|
set to the event sent when clicking on the mouse wheel button."
|
|
|
|
:group 'mouse
|
|
|
|
:type 'symbol
|
|
|
|
:set 'mouse-wheel-change-button)
|
|
|
|
|
|
|
|
(defcustom mouse-wheel-inhibit-click-time 0.35
|
|
|
|
"Time in seconds to inhibit clicking on mouse wheel button after scroll."
|
|
|
|
:group 'mouse
|
2002-11-29 18:02:52 +00:00
|
|
|
:type 'number)
|
2002-11-28 23:03:30 +00:00
|
|
|
|
2002-06-24 15:50:38 +00:00
|
|
|
(defcustom mouse-wheel-scroll-amount '(5 ((shift) . 1) ((control) . nil))
|
1999-11-10 21:54:54 +00:00
|
|
|
"Amount to scroll windows by when spinning the mouse wheel.
|
2002-06-24 23:59:22 +00:00
|
|
|
This is an alist mapping the modifier key to the amount to scroll when
|
|
|
|
the wheel is moved with the modifier key depressed.
|
|
|
|
Elements of the list have the form (MODIFIERS . AMOUNT) or just AMOUNT if
|
|
|
|
MODIFIERS is nil.
|
|
|
|
|
2003-05-06 17:54:12 +00:00
|
|
|
AMOUNT should be the number of lines to scroll, or nil for near full
|
2002-06-24 23:59:22 +00:00
|
|
|
screen. It can also be a floating point number, specifying the fraction of
|
|
|
|
a full screen to scroll. A near full screen is `next-screen-context-lines'
|
|
|
|
less than a full screen."
|
1999-11-10 21:54:54 +00:00
|
|
|
:group 'mouse
|
2002-06-24 15:50:38 +00:00
|
|
|
:type '(cons
|
|
|
|
(choice :tag "Normal"
|
1999-11-10 21:54:54 +00:00
|
|
|
(const :tag "Full screen" :value nil)
|
2002-06-24 15:50:38 +00:00
|
|
|
(integer :tag "Specific # of lines")
|
2002-12-09 19:43:54 +00:00
|
|
|
(float :tag "Fraction of window")
|
2002-06-24 23:59:22 +00:00
|
|
|
(cons
|
|
|
|
(repeat (choice :tag "modifier"
|
|
|
|
(const alt) (const control) (const hyper)
|
|
|
|
(const meta) (const shift) (const super)))
|
|
|
|
(choice :tag "scroll amount"
|
|
|
|
(const :tag "Full screen" :value nil)
|
|
|
|
(integer :tag "Specific # of lines")
|
2002-12-09 19:43:54 +00:00
|
|
|
(float :tag "Fraction of window"))))
|
2002-06-24 15:50:38 +00:00
|
|
|
(repeat
|
|
|
|
(cons
|
2002-06-24 23:59:22 +00:00
|
|
|
(repeat (choice :tag "modifier"
|
|
|
|
(const alt) (const control) (const hyper)
|
2002-06-24 15:50:38 +00:00
|
|
|
(const meta) (const shift) (const super)))
|
|
|
|
(choice :tag "scroll amount"
|
|
|
|
(const :tag "Full screen" :value nil)
|
|
|
|
(integer :tag "Specific # of lines")
|
2009-09-12 19:03:49 +00:00
|
|
|
(float :tag "Fraction of window")))))
|
|
|
|
:set 'mouse-wheel-change-button)
|
2002-06-24 15:50:38 +00:00
|
|
|
|
2004-11-11 23:51:40 +00:00
|
|
|
(defcustom mouse-wheel-progressive-speed t
|
2002-06-24 15:50:38 +00:00
|
|
|
"If non-nil, the faster the user moves the wheel, the faster the scrolling.
|
|
|
|
Note that this has no effect when `mouse-wheel-scroll-amount' specifies
|
2002-06-24 23:59:22 +00:00
|
|
|
a \"near full screen\" scroll or when the mouse wheel sends key instead
|
|
|
|
of button events."
|
2002-06-24 15:50:38 +00:00
|
|
|
:group 'mouse
|
|
|
|
:type 'boolean)
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2002-06-27 21:46:45 +00:00
|
|
|
(defcustom mouse-wheel-follow-mouse t
|
1999-11-10 21:54:54 +00:00
|
|
|
"Whether the mouse wheel should scroll the window that the mouse is over.
|
2002-06-24 23:59:22 +00:00
|
|
|
This can be slightly disconcerting, but some people prefer it."
|
1999-11-10 21:54:54 +00:00
|
|
|
:group 'mouse
|
|
|
|
:type 'boolean)
|
|
|
|
|
2018-02-26 17:05:04 -05:00
|
|
|
;;; For tilt-scroll
|
|
|
|
;;;
|
|
|
|
(defcustom mwheel-tilt-scroll-p nil
|
|
|
|
"Enable scroll using tilting mouse wheel."
|
|
|
|
:group 'mouse
|
|
|
|
:type 'boolean
|
|
|
|
:version "26.1")
|
|
|
|
|
|
|
|
(defcustom mwheel-flip-direction nil
|
|
|
|
"Swap direction of 'wheel-right and 'wheel-left."
|
|
|
|
:group 'mouse
|
|
|
|
:type 'boolean
|
|
|
|
:version "26.1")
|
|
|
|
|
|
|
|
(defcustom mwheel-scroll-left-function 'scroll-left
|
|
|
|
"Function that does the job of scrolling left."
|
|
|
|
:group 'mouse
|
|
|
|
:type 'function
|
|
|
|
:version "26.1")
|
|
|
|
|
|
|
|
(defcustom mwheel-scroll-right-function 'scroll-right
|
|
|
|
"Function that does the job of scrolling right."
|
|
|
|
:group 'mouse
|
|
|
|
:type 'function
|
|
|
|
:version "26.1")
|
|
|
|
|
2008-06-12 03:50:31 +00:00
|
|
|
(eval-and-compile
|
|
|
|
(if (fboundp 'event-button)
|
|
|
|
(fset 'mwheel-event-button 'event-button)
|
2002-06-24 15:50:38 +00:00
|
|
|
(defun mwheel-event-button (event)
|
2002-06-27 21:46:45 +00:00
|
|
|
(let ((x (event-basic-type event)))
|
2002-06-24 15:50:38 +00:00
|
|
|
;; Map mouse-wheel events to appropriate buttons
|
2002-06-27 21:46:45 +00:00
|
|
|
(if (eq 'mouse-wheel x)
|
2002-06-24 15:50:38 +00:00
|
|
|
(let ((amount (car (cdr (cdr (cdr event))))))
|
|
|
|
(if (< amount 0)
|
2002-06-27 21:46:45 +00:00
|
|
|
mouse-wheel-up-event
|
|
|
|
mouse-wheel-down-event))
|
2008-06-12 03:50:31 +00:00
|
|
|
x))))
|
2002-06-24 15:50:38 +00:00
|
|
|
|
2008-06-12 03:50:31 +00:00
|
|
|
(if (fboundp 'event-window)
|
|
|
|
(fset 'mwheel-event-window 'event-window)
|
2002-06-24 15:50:38 +00:00
|
|
|
(defun mwheel-event-window (event)
|
2008-06-12 03:50:31 +00:00
|
|
|
(posn-window (event-start event)))))
|
2002-06-24 15:50:38 +00:00
|
|
|
|
2002-11-28 23:03:30 +00:00
|
|
|
(defvar mwheel-inhibit-click-event-timer nil
|
|
|
|
"Timer running while mouse wheel click event is inhibited.")
|
|
|
|
|
|
|
|
(defun mwheel-inhibit-click-timeout ()
|
|
|
|
"Handler for `mwheel-inhibit-click-event-timer'."
|
|
|
|
(setq mwheel-inhibit-click-event-timer nil)
|
|
|
|
(remove-hook 'pre-command-hook 'mwheel-filter-click-events))
|
|
|
|
|
|
|
|
(defun mwheel-filter-click-events ()
|
|
|
|
"Discard `mouse-wheel-click-event' while scrolling the mouse."
|
|
|
|
(if (eq (event-basic-type last-input-event) mouse-wheel-click-event)
|
|
|
|
(setq this-command 'ignore)))
|
|
|
|
|
2009-11-25 17:18:26 +00:00
|
|
|
(defvar mwheel-scroll-up-function 'scroll-up
|
|
|
|
"Function that does the job of scrolling upward.")
|
|
|
|
|
|
|
|
(defvar mwheel-scroll-down-function 'scroll-down
|
|
|
|
"Function that does the job of scrolling downward.")
|
|
|
|
|
2018-02-26 17:05:04 -05:00
|
|
|
(defvar mouse-wheel-left-event
|
|
|
|
(if (or (featurep 'w32-win) (featurep 'ns-win))
|
|
|
|
'wheel-left
|
|
|
|
(intern "mouse-6"))
|
|
|
|
"Event used for scrolling left.")
|
|
|
|
|
|
|
|
(defvar mouse-wheel-right-event
|
|
|
|
(if (or (featurep 'w32-win) (featurep 'ns-win))
|
|
|
|
'wheel-right
|
|
|
|
(intern "mouse-7"))
|
|
|
|
"Event used for scrolling right.")
|
|
|
|
|
2002-06-24 15:50:38 +00:00
|
|
|
(defun mwheel-scroll (event)
|
|
|
|
"Scroll up or down according to the EVENT.
|
2017-04-12 16:29:35 +03:00
|
|
|
This should be bound only to mouse buttons 4, 5, 6, and 7 on
|
|
|
|
non-Windows systems."
|
2002-06-27 21:46:45 +00:00
|
|
|
(interactive (list last-input-event))
|
Add new frame parameters and associated functions
Add new frame parameters `undecorated', `override-redirect',
`parent-frame', `skip-taskbar', `no-focus-on-map',
`no-accept-focus', `z-group', `delete-before', `no-other-frame',
`mouse-wheel-frame', `min-width', `min-height'. Add new
functions `frame-restack' and `frame-list-z-order'.
* lisp/cus-start.el (focus-follows-mouse): Adapt customization
type.
* lisp/frame.el (handle-delete-frame): Handle child and
`delete-before' frames.
(other-frame): Stop looking for other frame after one round.
(frame-list-z-order, frame-restack): New functions.
(delete-other-frames): Handle child frames.
* lisp/frameset.el (frameset-persistent-filter-alist)
(frameset--record-relationships): Handle `delete-before',
`parent-frame' and `mouse-wheel-frame' parameters. Rename
latter from `frameset--record-minibuffer-relationships'.
(frameset--restore-frame): Handle ‘parent-frame’ parameter
specially.
(frameset-restore): Handle `delete-before', `parent-frame' and
`mouse-wheel-frame' parameters.
* lisp/mwheel.el (mwheel-scroll): Handle `mouse-wheel-frame'
parameter.
* lisp/window.el (window--min-size-ignore-p): Fix doc-string.
(mouse-autoselect-window-select, handle-select-window): Major
rewrite. Try to not ignore errors. Handle auto-selection of
child frames and different values of `focus-follows-mouse'.
* src/frame.c (frame_windows_min_size): Handle new `min-width'
and `min-height' frame parameters.
(make_frame): Initialize new frame structure members.
(do_switch_frame): Don't reset internal_last_event_frame for
descendant frames.
(Fframe_parent, frame_ancestor_p, Fframe_ancestor_p): New
functions.
(candidate_frame): Don't return `no-other-frame' frame.
(other_frames): New function replacing other_visible_frames.
(delete_frame): Rewrite. Handle child and `delete-before' frames.
(Fmake_frame_invisible): Call other_frames.
(store_frame_param): Check `delete-before' and `parent-frame'
parameters for circular dependencies.
(frame_parms, syms_of_frame): Add entries for and define new
frame parameters.
(focus_follows_mouse): New meaningful value `auto-raise'.
* src/frame.h (z_group): New enumeration type.
(frame): New slots parent_frame, undecorated, override_redirect,
skip_taskbar, no_focus_on_map, no_accept_focus, z_group.
(fset_parent_frame): New inlined function.
(FRAME_UNDECORATED, FRAME_OVERRIDE_REDIRECT)
(FRAME_PARENT_FRAME, FRAME_SKIP_TASKBAR, FRAME_NO_FOCUS_ON_MAP)
(FRAME_NO_ACCEPT_FOCUS, FRAME_Z_GROUP, FRAME_Z_GROUP_NONE)
(FRAME_Z_GROUP_ABOVE, FRAME_Z_GROUP_ABOVE_SUSPENDED)
(FRAME_Z_GROUP_BELOW): New macros.
(frame_ancestor_p): Add declaration.
* src/gtkutil.c (xg_create_frame_widgets): Handle
`undecorated' and `override-redirect' frame parameters.
(x_wm_set_size_hint): None for child frames.
(xg_set_undecorated, xg_frame_restack, xg_set_skip_taskbar)
(xg_set_no_focus_on_map, xg_set_no_accept_focus)
(xg_set_override_redirect): New functions.
(xg_update_scrollbar_pos, xg_update_horizontal_scrollbar_pos):
Don't let scrollbars obscure child frames.
* src/gtkutil.h: (xg_set_undecorated, xg_frame_restack)
(xg_set_skip_taskbar, xg_set_no_focus_on_map)
(xg_set_no_accept_focus, xg_set_override_redirect): Add extern
declarations.
* src/nsfns.m (ns_frame_parm_handlers): Add entries for new
frame parameters.
(Fx_create_frame): Install `min-width' and `min-height' frame
parameters.
* src/nsterm.m (mouseMoved:): Handle focus_follows_mouse change.
* src/w32fns.c (WS_EX_NOACTIVATE): Define if necessary.
(x_real_positions): Handle child frames.
(x_set_menu_bar_lines): Don't for child frames.
(x_set_undecorated, x_set_parent_frame, x_set_skip_taskbar)
(x_set_no_focus_on_map, x_set_no_accept_focus)
(x_set_z_group): New functions.
(w32_createvscrollbar, w32_createhscrollbar): Don't draw
scroll bars over child frames.
(w32_createwindow): Handle new frame parameters and child frames.
(w32_wnd_proc): Let mouse clicks into a child frame activate
the frame. Try to handle the `no-accept-focus' parameter. Do
SetFocus when our window is brought to top or becomes the
foreground window.
(w32_window): Don't initialize menu bar for child frames.
(Fx_create_frame): Handle new frame parameters.
(x_create_tip_frame): Set explicit_parent slot.
(w32_dialog_in_progress): New function.
(Fx_file_dialog): Handle `z-group-above' frames.
(w32_frame_list_z_order, Fw32_frame_list_z_order)
(w32_frame_restack, Fw32_frame_restack): New functions.
(w32_frame_parm_handlers): Add entries for new frame
parameters.
* src/w32font.c (Fx_select_font): Handle `z-group-above'
frames during font selection dialogue.
* src/w32term.c (construct_mouse_wheel): Construct mouse wheel
event from F's w32 window.
(w32_mouse_position): Handle child frames.
(w32_set_vertical_scroll_bar, w32_set_horizontal_scroll_bar):
Don't draw scroll bars over child frames.
(w32_read_socket): Always erase background of child frames.
When generating SELECT_WINDOW_EVENTs handle new value of
`focus-follows-mouse' and handle `no-accept-focus' parameter.
Handle `mouse-wheel-frame' parameter.
(x_calc_absolute_position, x_set_offset, x_set_window_size):
Handle child frames.
(x_make_frame_visible): Handle child frames specially. Handle
`no-focus-on-map' parameter.
* src/w32term.h (w32_dialog_in_progress): Add external
declaration.
* src/xdisp.c (x_consider_frame_title, prepare_menu_bars): Not
for child frames.
* src/xfns.c (Xm/MwmUtil.h): Include for WM hints.
(PropMotifWmHints, PROP_MOTIF_WM_HINTS_ELEMENTS): Define for
non-Motif, non-GTK case.
(x_real_pos_and_offsets): Handle child frames.
(x_set_undecorated, x_set_parent_frame)
(x_set_no_focus_on_map, x_set_no_accept_focus)
(x_set_override_redirect): New functions.
(x_set_menu_bar_lines): Not for child frames.
(x_window): Handle `undecorated' and `override_redirect' cases.
(Fx_create_frame): Handle new frame parameters.
(frame_geometry): Handle child frames and outer border.
(x_frame_list_z_order, Fx_frame_list_z_order)
(x_frame_restack, Fx_frame_restack): New functions.
(Fx_file_dialog, Fx_select_font): Set x_menu_set_in_use.
(x_frame_parm_handlers): Add entries for new frame parameters.
* src/xmenu.c (x_menu_set_in_use): Handle `z-group-above'
frames.
* src/xterm.c (x_set_frame_alpha): Don't set alpha of parent
for child frames.
(XTmouse_position): Handle child frames.
(x_scroll_bar_create, x_scroll_bar_expose): Don't let scroll
bars obscure child frames.
(handle_one_xevent): Handle child frame positions. If necessary
set `skip-taskbar' and reassign proper `z-group' when we are
mapped. When generating SELECT_WINDOW_EVENTs handle new value
of `focus-follows-mouse'. Handle `mouse-wheel-frame' parameter.
Let mouse clicks into a child frame activate the frame.
(x_calc_absolute_position, x_set_offset): Handle child frames
specially.
(x_set_skip_taskbar, x_set_z_group): New functions.
(x_make_frame_visible): Handle child frames.
(ATOM_REFS_INIT): Add entries for
Xatom_net_wm_state_skip_taskbar, Xatom_net_wm_state_above,
Xatom_net_wm_state_below.
* src/xterm.h (top-level): Declare Xatom_net_wm_state_above,
Xatom_net_wm_state_below and Xatom_net_wm_state_skip_taskbar.
(x_set_skip_taskbar, x_set_z_group): Add extern declarations.
2017-04-12 10:38:25 +02:00
|
|
|
(let* ((selected-window (selected-window))
|
|
|
|
(scroll-window
|
|
|
|
(or (catch 'found
|
|
|
|
(let* ((window (if mouse-wheel-follow-mouse
|
|
|
|
(mwheel-event-window event)
|
|
|
|
(selected-window)))
|
|
|
|
(frame (when (window-live-p window)
|
|
|
|
(frame-parameter
|
|
|
|
(window-frame window) 'mouse-wheel-frame))))
|
|
|
|
(when (frame-live-p frame)
|
|
|
|
(let* ((pos (mouse-absolute-pixel-position))
|
|
|
|
(pos-x (car pos))
|
|
|
|
(pos-y (cdr pos)))
|
|
|
|
(walk-window-tree
|
|
|
|
(lambda (window-1)
|
|
|
|
(let ((edges (window-edges window-1 nil t t)))
|
|
|
|
(when (and (<= (nth 0 edges) pos-x)
|
|
|
|
(<= pos-x (nth 2 edges))
|
|
|
|
(<= (nth 1 edges) pos-y)
|
|
|
|
(<= pos-y (nth 3 edges)))
|
|
|
|
(throw 'found window-1))))
|
|
|
|
frame nil t)))))
|
|
|
|
(mwheel-event-window event)))
|
|
|
|
(old-point
|
|
|
|
(and (eq scroll-window selected-window)
|
|
|
|
(eq (car-safe transient-mark-mode) 'only)
|
|
|
|
(window-point)))
|
2002-06-24 15:50:38 +00:00
|
|
|
(mods
|
|
|
|
(delq 'click (delq 'double (delq 'triple (event-modifiers event)))))
|
2002-06-24 23:59:22 +00:00
|
|
|
(amt (assoc mods mouse-wheel-scroll-amount)))
|
2017-04-12 18:22:44 +02:00
|
|
|
(unless (eq scroll-window selected-window)
|
|
|
|
;; Mark window to be scrolled for redisplay.
|
|
|
|
(select-window scroll-window 'mark-for-redisplay))
|
2002-06-24 23:59:22 +00:00
|
|
|
;; Extract the actual amount or find the element that has no modifiers.
|
|
|
|
(if amt (setq amt (cdr amt))
|
|
|
|
(let ((list-elt mouse-wheel-scroll-amount))
|
|
|
|
(while (consp (setq amt (pop list-elt))))))
|
2002-06-24 15:50:38 +00:00
|
|
|
(if (floatp amt) (setq amt (1+ (truncate (* amt (window-height))))))
|
2004-11-11 23:51:40 +00:00
|
|
|
(when (and mouse-wheel-progressive-speed (numberp amt))
|
2002-06-24 15:50:38 +00:00
|
|
|
;; When the double-mouse-N comes in, a mouse-N has been executed already,
|
2002-06-27 21:46:45 +00:00
|
|
|
;; So by adding things up we get a squaring up (1, 3, 6, 10, 15, ...).
|
2002-06-24 15:50:38 +00:00
|
|
|
(setq amt (* amt (event-click-count event))))
|
2017-09-08 19:26:47 +01:00
|
|
|
(when (numberp amt) (setq amt (* amt (event-line-count event))))
|
1999-11-10 21:54:54 +00:00
|
|
|
(unwind-protect
|
2002-06-24 15:50:38 +00:00
|
|
|
(let ((button (mwheel-event-button event)))
|
2006-05-08 15:14:26 +00:00
|
|
|
(cond ((eq button mouse-wheel-down-event)
|
2009-11-25 17:18:26 +00:00
|
|
|
(condition-case nil (funcall mwheel-scroll-down-function amt)
|
2006-05-08 15:14:26 +00:00
|
|
|
;; Make sure we do indeed scroll to the beginning of
|
|
|
|
;; the buffer.
|
|
|
|
(beginning-of-buffer
|
|
|
|
(unwind-protect
|
2009-11-25 17:18:26 +00:00
|
|
|
(funcall mwheel-scroll-down-function)
|
2006-05-08 15:14:26 +00:00
|
|
|
;; If the first scroll succeeded, then some scrolling
|
|
|
|
;; is possible: keep scrolling til the beginning but
|
|
|
|
;; do not signal an error. For some reason, we have
|
2008-06-27 02:14:52 +00:00
|
|
|
;; to do it even if the first scroll signaled an
|
2006-05-08 15:14:26 +00:00
|
|
|
;; error, because otherwise the window is recentered
|
|
|
|
;; for a reason that escapes me. This problem seems
|
|
|
|
;; to only affect scroll-down. --Stef
|
|
|
|
(set-window-start (selected-window) (point-min))))))
|
|
|
|
((eq button mouse-wheel-up-event)
|
2009-11-25 17:18:26 +00:00
|
|
|
(condition-case nil (funcall mwheel-scroll-up-function amt)
|
2006-05-08 15:14:26 +00:00
|
|
|
;; Make sure we do indeed scroll to the end of the buffer.
|
2009-11-25 17:18:26 +00:00
|
|
|
(end-of-buffer (while t (funcall mwheel-scroll-up-function)))))
|
2017-04-12 16:29:35 +03:00
|
|
|
((eq button mouse-wheel-left-event) ; for tilt scroll
|
|
|
|
(when mwheel-tilt-scroll-p
|
|
|
|
(funcall (if mwheel-flip-direction
|
|
|
|
mwheel-scroll-right-function
|
|
|
|
mwheel-scroll-left-function) amt)))
|
|
|
|
((eq button mouse-wheel-right-event) ; for tilt scroll
|
|
|
|
(when mwheel-tilt-scroll-p
|
|
|
|
(funcall (if mwheel-flip-direction
|
|
|
|
mwheel-scroll-left-function
|
|
|
|
mwheel-scroll-right-function) amt)))
|
2002-06-24 15:50:38 +00:00
|
|
|
(t (error "Bad binding in mwheel-scroll"))))
|
Add new frame parameters and associated functions
Add new frame parameters `undecorated', `override-redirect',
`parent-frame', `skip-taskbar', `no-focus-on-map',
`no-accept-focus', `z-group', `delete-before', `no-other-frame',
`mouse-wheel-frame', `min-width', `min-height'. Add new
functions `frame-restack' and `frame-list-z-order'.
* lisp/cus-start.el (focus-follows-mouse): Adapt customization
type.
* lisp/frame.el (handle-delete-frame): Handle child and
`delete-before' frames.
(other-frame): Stop looking for other frame after one round.
(frame-list-z-order, frame-restack): New functions.
(delete-other-frames): Handle child frames.
* lisp/frameset.el (frameset-persistent-filter-alist)
(frameset--record-relationships): Handle `delete-before',
`parent-frame' and `mouse-wheel-frame' parameters. Rename
latter from `frameset--record-minibuffer-relationships'.
(frameset--restore-frame): Handle ‘parent-frame’ parameter
specially.
(frameset-restore): Handle `delete-before', `parent-frame' and
`mouse-wheel-frame' parameters.
* lisp/mwheel.el (mwheel-scroll): Handle `mouse-wheel-frame'
parameter.
* lisp/window.el (window--min-size-ignore-p): Fix doc-string.
(mouse-autoselect-window-select, handle-select-window): Major
rewrite. Try to not ignore errors. Handle auto-selection of
child frames and different values of `focus-follows-mouse'.
* src/frame.c (frame_windows_min_size): Handle new `min-width'
and `min-height' frame parameters.
(make_frame): Initialize new frame structure members.
(do_switch_frame): Don't reset internal_last_event_frame for
descendant frames.
(Fframe_parent, frame_ancestor_p, Fframe_ancestor_p): New
functions.
(candidate_frame): Don't return `no-other-frame' frame.
(other_frames): New function replacing other_visible_frames.
(delete_frame): Rewrite. Handle child and `delete-before' frames.
(Fmake_frame_invisible): Call other_frames.
(store_frame_param): Check `delete-before' and `parent-frame'
parameters for circular dependencies.
(frame_parms, syms_of_frame): Add entries for and define new
frame parameters.
(focus_follows_mouse): New meaningful value `auto-raise'.
* src/frame.h (z_group): New enumeration type.
(frame): New slots parent_frame, undecorated, override_redirect,
skip_taskbar, no_focus_on_map, no_accept_focus, z_group.
(fset_parent_frame): New inlined function.
(FRAME_UNDECORATED, FRAME_OVERRIDE_REDIRECT)
(FRAME_PARENT_FRAME, FRAME_SKIP_TASKBAR, FRAME_NO_FOCUS_ON_MAP)
(FRAME_NO_ACCEPT_FOCUS, FRAME_Z_GROUP, FRAME_Z_GROUP_NONE)
(FRAME_Z_GROUP_ABOVE, FRAME_Z_GROUP_ABOVE_SUSPENDED)
(FRAME_Z_GROUP_BELOW): New macros.
(frame_ancestor_p): Add declaration.
* src/gtkutil.c (xg_create_frame_widgets): Handle
`undecorated' and `override-redirect' frame parameters.
(x_wm_set_size_hint): None for child frames.
(xg_set_undecorated, xg_frame_restack, xg_set_skip_taskbar)
(xg_set_no_focus_on_map, xg_set_no_accept_focus)
(xg_set_override_redirect): New functions.
(xg_update_scrollbar_pos, xg_update_horizontal_scrollbar_pos):
Don't let scrollbars obscure child frames.
* src/gtkutil.h: (xg_set_undecorated, xg_frame_restack)
(xg_set_skip_taskbar, xg_set_no_focus_on_map)
(xg_set_no_accept_focus, xg_set_override_redirect): Add extern
declarations.
* src/nsfns.m (ns_frame_parm_handlers): Add entries for new
frame parameters.
(Fx_create_frame): Install `min-width' and `min-height' frame
parameters.
* src/nsterm.m (mouseMoved:): Handle focus_follows_mouse change.
* src/w32fns.c (WS_EX_NOACTIVATE): Define if necessary.
(x_real_positions): Handle child frames.
(x_set_menu_bar_lines): Don't for child frames.
(x_set_undecorated, x_set_parent_frame, x_set_skip_taskbar)
(x_set_no_focus_on_map, x_set_no_accept_focus)
(x_set_z_group): New functions.
(w32_createvscrollbar, w32_createhscrollbar): Don't draw
scroll bars over child frames.
(w32_createwindow): Handle new frame parameters and child frames.
(w32_wnd_proc): Let mouse clicks into a child frame activate
the frame. Try to handle the `no-accept-focus' parameter. Do
SetFocus when our window is brought to top or becomes the
foreground window.
(w32_window): Don't initialize menu bar for child frames.
(Fx_create_frame): Handle new frame parameters.
(x_create_tip_frame): Set explicit_parent slot.
(w32_dialog_in_progress): New function.
(Fx_file_dialog): Handle `z-group-above' frames.
(w32_frame_list_z_order, Fw32_frame_list_z_order)
(w32_frame_restack, Fw32_frame_restack): New functions.
(w32_frame_parm_handlers): Add entries for new frame
parameters.
* src/w32font.c (Fx_select_font): Handle `z-group-above'
frames during font selection dialogue.
* src/w32term.c (construct_mouse_wheel): Construct mouse wheel
event from F's w32 window.
(w32_mouse_position): Handle child frames.
(w32_set_vertical_scroll_bar, w32_set_horizontal_scroll_bar):
Don't draw scroll bars over child frames.
(w32_read_socket): Always erase background of child frames.
When generating SELECT_WINDOW_EVENTs handle new value of
`focus-follows-mouse' and handle `no-accept-focus' parameter.
Handle `mouse-wheel-frame' parameter.
(x_calc_absolute_position, x_set_offset, x_set_window_size):
Handle child frames.
(x_make_frame_visible): Handle child frames specially. Handle
`no-focus-on-map' parameter.
* src/w32term.h (w32_dialog_in_progress): Add external
declaration.
* src/xdisp.c (x_consider_frame_title, prepare_menu_bars): Not
for child frames.
* src/xfns.c (Xm/MwmUtil.h): Include for WM hints.
(PropMotifWmHints, PROP_MOTIF_WM_HINTS_ELEMENTS): Define for
non-Motif, non-GTK case.
(x_real_pos_and_offsets): Handle child frames.
(x_set_undecorated, x_set_parent_frame)
(x_set_no_focus_on_map, x_set_no_accept_focus)
(x_set_override_redirect): New functions.
(x_set_menu_bar_lines): Not for child frames.
(x_window): Handle `undecorated' and `override_redirect' cases.
(Fx_create_frame): Handle new frame parameters.
(frame_geometry): Handle child frames and outer border.
(x_frame_list_z_order, Fx_frame_list_z_order)
(x_frame_restack, Fx_frame_restack): New functions.
(Fx_file_dialog, Fx_select_font): Set x_menu_set_in_use.
(x_frame_parm_handlers): Add entries for new frame parameters.
* src/xmenu.c (x_menu_set_in_use): Handle `z-group-above'
frames.
* src/xterm.c (x_set_frame_alpha): Don't set alpha of parent
for child frames.
(XTmouse_position): Handle child frames.
(x_scroll_bar_create, x_scroll_bar_expose): Don't let scroll
bars obscure child frames.
(handle_one_xevent): Handle child frame positions. If necessary
set `skip-taskbar' and reassign proper `z-group' when we are
mapped. When generating SELECT_WINDOW_EVENTs handle new value
of `focus-follows-mouse'. Handle `mouse-wheel-frame' parameter.
Let mouse clicks into a child frame activate the frame.
(x_calc_absolute_position, x_set_offset): Handle child frames
specially.
(x_set_skip_taskbar, x_set_z_group): New functions.
(x_make_frame_visible): Handle child frames.
(ATOM_REFS_INIT): Add entries for
Xatom_net_wm_state_skip_taskbar, Xatom_net_wm_state_above,
Xatom_net_wm_state_below.
* src/xterm.h (top-level): Declare Xatom_net_wm_state_above,
Xatom_net_wm_state_below and Xatom_net_wm_state_skip_taskbar.
(x_set_skip_taskbar, x_set_z_group): Add extern declarations.
2017-04-12 10:38:25 +02:00
|
|
|
(if (eq scroll-window selected-window)
|
|
|
|
;; If there is a temporarily active region, deactivate it if
|
|
|
|
;; scrolling moved point.
|
|
|
|
(when (and old-point (/= old-point (window-point)))
|
|
|
|
;; Call `deactivate-mark' at the original position, so that
|
|
|
|
;; the original region is saved to the X selection.
|
|
|
|
(let ((new-point (window-point)))
|
|
|
|
(goto-char old-point)
|
|
|
|
(deactivate-mark)
|
|
|
|
(goto-char new-point)))
|
|
|
|
(select-window selected-window t))))
|
|
|
|
|
2002-11-28 23:03:30 +00:00
|
|
|
(when (and mouse-wheel-click-event mouse-wheel-inhibit-click-time)
|
|
|
|
(if mwheel-inhibit-click-event-timer
|
|
|
|
(cancel-timer mwheel-inhibit-click-event-timer)
|
|
|
|
(add-hook 'pre-command-hook 'mwheel-filter-click-events))
|
2003-02-04 12:29:42 +00:00
|
|
|
(setq mwheel-inhibit-click-event-timer
|
2002-11-28 23:03:30 +00:00
|
|
|
(run-with-timer mouse-wheel-inhibit-click-time nil
|
|
|
|
'mwheel-inhibit-click-timeout))))
|
2000-10-25 11:39:51 +00:00
|
|
|
|
2010-04-16 02:51:12 +03:00
|
|
|
(put 'mwheel-scroll 'scroll-command t)
|
2010-04-14 03:11:21 +03:00
|
|
|
|
2009-09-12 04:38:03 +00:00
|
|
|
(defvar mwheel-installed-bindings nil)
|
|
|
|
|
2000-10-25 11:39:51 +00:00
|
|
|
(define-minor-mode mouse-wheel-mode
|
Fix minor mode docstrings for the new meaning of a nil ARG.
* abbrev.el (abbrev-mode):
* allout.el (allout-mode):
* autoinsert.el (auto-insert-mode):
* autoarg.el (autoarg-mode, autoarg-kp-mode):
* autorevert.el (auto-revert-mode, auto-revert-tail-mode)
(global-auto-revert-mode):
* battery.el (display-battery-mode):
* composite.el (global-auto-composition-mode)
(auto-composition-mode):
* delsel.el (delete-selection-mode):
* desktop.el (desktop-save-mode):
* dired-x.el (dired-omit-mode):
* dirtrack.el (dirtrack-mode):
* doc-view.el (doc-view-minor-mode):
* double.el (double-mode):
* electric.el (electric-indent-mode, electric-pair-mode):
* emacs-lock.el (emacs-lock-mode):
* epa-hook.el (auto-encryption-mode):
* follow.el (follow-mode):
* font-core.el (font-lock-mode):
* frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
* help.el (temp-buffer-resize-mode):
* hilit-chg.el (highlight-changes-mode)
(highlight-changes-visible-mode):
* hi-lock.el (hi-lock-mode):
* hl-line.el (hl-line-mode, global-hl-line-mode):
* icomplete.el (icomplete-mode):
* ido.el (ido-everywhere):
* image-file.el (auto-image-file-mode):
* image-mode.el (image-minor-mode):
* iswitchb.el (iswitchb-mode):
* jka-cmpr-hook.el (auto-compression-mode):
* linum.el (linum-mode):
* longlines.el (longlines-mode):
* master.el (master-mode):
* mb-depth.el (minibuffer-depth-indicate-mode):
* menu-bar.el (menu-bar-mode):
* minibuf-eldef.el (minibuffer-electric-default-mode):
* mouse-sel.el (mouse-sel-mode):
* msb.el (msb-mode):
* mwheel.el (mouse-wheel-mode):
* outline.el (outline-minor-mode):
* paren.el (show-paren-mode):
* recentf.el (recentf-mode):
* reveal.el (reveal-mode, global-reveal-mode):
* rfn-eshadow.el (file-name-shadow-mode):
* ruler-mode.el (ruler-mode):
* savehist.el (savehist-mode):
* scroll-all.el (scroll-all-mode):
* scroll-bar.el (scroll-bar-mode):
* server.el (server-mode):
* shell.el (shell-dirtrack-mode):
* simple.el (auto-fill-mode, transient-mark-mode)
(visual-line-mode, overwrite-mode, binary-overwrite-mode)
(line-number-mode, column-number-mode, size-indication-mode)
(auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
* strokes.el (strokes-mode):
* time.el (display-time-mode):
* t-mouse.el (gpm-mouse-mode):
* tool-bar.el (tool-bar-mode):
* tooltip.el (tooltip-mode):
* type-break.el (type-break-mode-line-message-mode)
(type-break-query-mode):
* view.el (view-mode):
* whitespace.el (whitespace-mode, whitespace-newline-mode)
(global-whitespace-mode, global-whitespace-newline-mode):
* xt-mouse.el (xterm-mouse-mode): Doc fix.
* emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Fix
autogenerated docstring.
2011-10-19 08:54:24 -04:00
|
|
|
"Toggle mouse wheel support (Mouse Wheel mode).
|
|
|
|
With a prefix argument ARG, enable Mouse Wheel mode if ARG is
|
|
|
|
positive, and disable it otherwise. If called from Lisp, enable
|
|
|
|
the mode if ARG is omitted or nil."
|
2009-09-12 04:38:03 +00:00
|
|
|
:init-value t
|
|
|
|
;; We'd like to use custom-initialize-set here so the setup is done
|
|
|
|
;; before dumping, but at the point where the defcustom is evaluated,
|
|
|
|
;; the corresponding function isn't defined yet, so
|
|
|
|
;; custom-initialize-set signals an error.
|
|
|
|
:initialize 'custom-initialize-delay
|
2000-10-25 11:39:51 +00:00
|
|
|
:global t
|
|
|
|
:group 'mouse
|
2009-09-12 04:38:03 +00:00
|
|
|
;; Remove previous bindings, if any.
|
|
|
|
(while mwheel-installed-bindings
|
|
|
|
(let ((key (pop mwheel-installed-bindings)))
|
|
|
|
(when (eq (lookup-key (current-global-map) key) 'mwheel-scroll)
|
|
|
|
(global-unset-key key))))
|
|
|
|
;; Setup bindings as needed.
|
|
|
|
(when mouse-wheel-mode
|
2017-04-12 16:29:35 +03:00
|
|
|
(dolist (event (list mouse-wheel-down-event mouse-wheel-up-event mouse-wheel-right-event mouse-wheel-left-event))
|
2009-09-12 04:38:03 +00:00
|
|
|
(dolist (key (mapcar (lambda (amt) `[(,@(if (consp amt) (car amt)) ,event)])
|
|
|
|
mouse-wheel-scroll-amount))
|
|
|
|
(global-set-key key 'mwheel-scroll)
|
|
|
|
(push key mwheel-installed-bindings)))))
|
2000-10-25 11:39:51 +00:00
|
|
|
|
|
|
|
;;; Compatibility entry point
|
2009-09-12 19:03:49 +00:00
|
|
|
;; preloaded ;;;###autoload
|
2000-10-25 11:39:51 +00:00
|
|
|
(defun mwheel-install (&optional uninstall)
|
|
|
|
"Enable mouse wheel support."
|
2002-06-27 21:46:45 +00:00
|
|
|
(mouse-wheel-mode (if uninstall -1 1)))
|
2000-10-25 11:39:51 +00:00
|
|
|
|
1999-11-10 21:54:54 +00:00
|
|
|
(provide 'mwheel)
|
|
|
|
|
|
|
|
;;; mwheel.el ends here
|