2020-09-02 21:11:27 +00:00
|
|
|
;;; mwheel.el --- Mouse wheel support -*- lexical-binding:t -*-
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2021-01-01 09:13:56 +00:00
|
|
|
;; Copyright (C) 1998, 2000-2021 Free Software Foundation, Inc.
|
1999-11-10 21:54:54 +00:00
|
|
|
;; Keywords: mouse
|
2010-08-29 16:17:13 +00: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 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2019-07-08 15:59:51 +00:00
|
|
|
;; This enables the use of the mouse wheel (or scroll wheel) in Emacs.
|
|
|
|
;; Under X11/X.Org, the wheel events are sent as button4/button5
|
|
|
|
;; events.
|
1999-11-10 21:54:54 +00:00
|
|
|
|
2020-08-28 14:10:09 +00:00
|
|
|
;; Mouse wheel support is already enabled by default on most graphical
|
|
|
|
;; displays. You can toggle it using `M-x mouse-wheel-mode'.
|
2019-07-08 15:59:51 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
;; Implementation note:
|
|
|
|
;;
|
1999-11-10 21:54:54 +00:00
|
|
|
;; 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.
|
|
|
|
|
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)
|
2021-08-01 22:13:41 +00:00
|
|
|
(defvar mouse-wheel--installed-bindings-alist nil
|
|
|
|
"Alist of all installed mouse wheel key bindings.")
|
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)
|
2021-08-01 22:13:41 +00:00
|
|
|
;; Sync the bindings if they're already setup.
|
|
|
|
(when (and mouse-wheel--installed-bindings-alist
|
|
|
|
(bound-and-true-p mouse-wheel-mode))
|
|
|
|
(mouse-wheel-mode 1)))
|
2001-07-27 08:41:35 +00:00
|
|
|
|
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
|
Remove many items obsolete since Emacs 22.1
Emacs 22.1 was five major releases and over decade ago.
In bug reporting statistics, it's been absent for around 5 years.
Ref: https://debbugs.gnu.org/stats/emacs.html
This list can be reviewed before to the next release, but for
now hopefully this motivates any needed external updates.
* lisp/arc-mode.el (archive-mouse-extract):
* lisp/bookmark.el (bookmark-exit-hooks):
* lisp/comint.el (comint-use-prompt-regexp-instead-of-fields):
* lisp/cus-edit.el (custom-face-save-command):
* lisp/descr-text.el (describe-char-after):
* lisp/desktop.el (desktop-enable, desktop-basefilename)
(desktop-buffer-modes-to-save, desktop-buffer-misc-functions)
(desktop-buffer-handlers, desktop-load-default):
* lisp/dired-x.el (dired-omit-files-p):
* lisp/frame.el (new-frame, set-default-font, delete-frame-hook)
(blink-cursor):
* lisp/generic-x.el (generic-define-mswindows-modes)
(generic-define-unix-modes):
* lisp/help.el (describe-project, view-todo):
* lisp/hilit-chg.el (highlight-changes-colours):
* lisp/ibuffer.el (ibuffer-elide-long-columns, ibuffer-hooks)
(ibuffer-mode-hooks):
* lisp/imenu.el (imenu-always-use-completion-buffer-p):
* lisp/isearch.el (isearch-lazy-highlight-cleanup)
(isearch-lazy-highlight-initial-delay)
(isearch-lazy-highlight-interval)
(isearch-lazy-highlight-max-at-a-time)
(isearch-lazy-highlight-cleanup):
* lisp/mwheel.el (mouse-wheel-down-button)
(mouse-wheel-up-button, mouse-wheel-click-button):
* lisp/novice.el (disabled-command-hook):
* lisp/recentf.el (recentf-menu-append-commands-p):
* lisp/savehist.el (savehist-load):
* lisp/speedbar.el (speedbar-ignored-path-expressions)
(speedbar-ignored-path-regexp, speedbar-add-ignored-path-regexp)
(speedbar-line-path, speedbar-buffers-line-path, speedbar-path-line):
* lisp/subr.el (assoc-ignore-case, assoc-ignore-representation)
(x-lost-selection-hooks, x-sent-selection-hooks)
(process-kill-without-query):
* lisp/calendar/icalendar.el (icalendar-convert-diary-to-ical)
(icalendar-extract-ical-from-buffer):
* lisp/emacs-lisp/autoload.el (update-autoloads-from-directories):
* lisp/emacs-lisp/derived.el (derived-mode-class):
* lisp/emacs-lisp/generic.el (generic-font-lock-defaults):
* lisp/emacs-lisp/timer.el (timer-set-time-with-usecs):
* lisp/gnus/spam.el (spam-list-of-processors):
* lisp/international/latin1-disp.el (latin1-char-displayable-p):
* lisp/mail/rmail.el (rmail-pop-password, rmail-pop-password-required):
* lisp/net/goto-addr.el (goto-address-at-mouse):
* lisp/net/net-utils.el (ipconfig-program, ipconfig-program-options):
* lisp/obsolete/iswitchb.el (iswitchb-use-fonts):
* lisp/play/dunnet.el (dungeon-mode-map):
* lisp/progmodes/compile.el (compilation-finish-function)
* lisp/progmodes/cperl-mode.el (cperl-vc-header-alist)
* lisp/progmodes/gud.el (tooltip-gud-modes, tooltip-gud-display)
(tooltip-gud-toggle-dereference):
* lisp/progmodes/pascal.el (pascal-outline):
* lisp/progmodes/perl-mode.el (electric-perl-terminator):
* lisp/textmodes/nroff-mode.el (count-text-lines)
(forward-text-line, backward-text-line, electric-nroff-newline)
(electric-nroff-mode):
* lisp/vc/log-edit.el (vc-comment-ring, vc-comment-ring-index)
(vc-previous-comment, vc-next-comment)
(vc-comment-search-reverse, vc-comment-search-forward)
(vc-comment-to-change-log):
* lisp/vc/pcvs-info.el (cvs-display-full-path)
(cvs-fileinfo->full-path):
* lisp/vc/vc.el (vc-diff-switches-list):
Remove items, obsolete since Emacs 22.1.
* lisp/ibuffer.el (ibuffer-cached-elide-long-columns):
Remove internal variable.
(ibuffer-compile-make-eliding-form, ibuffer-check-formats):
(ibuffer-mode): Remove support for ibuffer-elide-long-columns.
* lisp/cedet/semantic/sb.el (semantic-sb-token-jump):
Remove support for speedbar-line-path.
* lisp/emacs-lisp/unsafep.el (assoc-ignore-case):
Stop marking as side-effect-free.
* lisp/gnus/spam.el (spam-group-processor-p):
Remove support for spam-list-of-processors.
* lisp/progmodes/compile.el (define-compilation-mode)
(compilation-handle-exit):
Remove support for compilation-finish-function.
* lisp/progmodes/cperl-mode.el (cperl-mode):
Remove support for cperl-vc-header-alist.
; * lisp/files.el: Comments.
; * etc/NEWS: List removed items.
2018-03-11 03:15:56 +00:00
|
|
|
'mouse-4)
|
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)
|
|
|
|
|
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
|
Remove many items obsolete since Emacs 22.1
Emacs 22.1 was five major releases and over decade ago.
In bug reporting statistics, it's been absent for around 5 years.
Ref: https://debbugs.gnu.org/stats/emacs.html
This list can be reviewed before to the next release, but for
now hopefully this motivates any needed external updates.
* lisp/arc-mode.el (archive-mouse-extract):
* lisp/bookmark.el (bookmark-exit-hooks):
* lisp/comint.el (comint-use-prompt-regexp-instead-of-fields):
* lisp/cus-edit.el (custom-face-save-command):
* lisp/descr-text.el (describe-char-after):
* lisp/desktop.el (desktop-enable, desktop-basefilename)
(desktop-buffer-modes-to-save, desktop-buffer-misc-functions)
(desktop-buffer-handlers, desktop-load-default):
* lisp/dired-x.el (dired-omit-files-p):
* lisp/frame.el (new-frame, set-default-font, delete-frame-hook)
(blink-cursor):
* lisp/generic-x.el (generic-define-mswindows-modes)
(generic-define-unix-modes):
* lisp/help.el (describe-project, view-todo):
* lisp/hilit-chg.el (highlight-changes-colours):
* lisp/ibuffer.el (ibuffer-elide-long-columns, ibuffer-hooks)
(ibuffer-mode-hooks):
* lisp/imenu.el (imenu-always-use-completion-buffer-p):
* lisp/isearch.el (isearch-lazy-highlight-cleanup)
(isearch-lazy-highlight-initial-delay)
(isearch-lazy-highlight-interval)
(isearch-lazy-highlight-max-at-a-time)
(isearch-lazy-highlight-cleanup):
* lisp/mwheel.el (mouse-wheel-down-button)
(mouse-wheel-up-button, mouse-wheel-click-button):
* lisp/novice.el (disabled-command-hook):
* lisp/recentf.el (recentf-menu-append-commands-p):
* lisp/savehist.el (savehist-load):
* lisp/speedbar.el (speedbar-ignored-path-expressions)
(speedbar-ignored-path-regexp, speedbar-add-ignored-path-regexp)
(speedbar-line-path, speedbar-buffers-line-path, speedbar-path-line):
* lisp/subr.el (assoc-ignore-case, assoc-ignore-representation)
(x-lost-selection-hooks, x-sent-selection-hooks)
(process-kill-without-query):
* lisp/calendar/icalendar.el (icalendar-convert-diary-to-ical)
(icalendar-extract-ical-from-buffer):
* lisp/emacs-lisp/autoload.el (update-autoloads-from-directories):
* lisp/emacs-lisp/derived.el (derived-mode-class):
* lisp/emacs-lisp/generic.el (generic-font-lock-defaults):
* lisp/emacs-lisp/timer.el (timer-set-time-with-usecs):
* lisp/gnus/spam.el (spam-list-of-processors):
* lisp/international/latin1-disp.el (latin1-char-displayable-p):
* lisp/mail/rmail.el (rmail-pop-password, rmail-pop-password-required):
* lisp/net/goto-addr.el (goto-address-at-mouse):
* lisp/net/net-utils.el (ipconfig-program, ipconfig-program-options):
* lisp/obsolete/iswitchb.el (iswitchb-use-fonts):
* lisp/play/dunnet.el (dungeon-mode-map):
* lisp/progmodes/compile.el (compilation-finish-function)
* lisp/progmodes/cperl-mode.el (cperl-vc-header-alist)
* lisp/progmodes/gud.el (tooltip-gud-modes, tooltip-gud-display)
(tooltip-gud-toggle-dereference):
* lisp/progmodes/pascal.el (pascal-outline):
* lisp/progmodes/perl-mode.el (electric-perl-terminator):
* lisp/textmodes/nroff-mode.el (count-text-lines)
(forward-text-line, backward-text-line, electric-nroff-newline)
(electric-nroff-mode):
* lisp/vc/log-edit.el (vc-comment-ring, vc-comment-ring-index)
(vc-previous-comment, vc-next-comment)
(vc-comment-search-reverse, vc-comment-search-forward)
(vc-comment-to-change-log):
* lisp/vc/pcvs-info.el (cvs-display-full-path)
(cvs-fileinfo->full-path):
* lisp/vc/vc.el (vc-diff-switches-list):
Remove items, obsolete since Emacs 22.1.
* lisp/ibuffer.el (ibuffer-cached-elide-long-columns):
Remove internal variable.
(ibuffer-compile-make-eliding-form, ibuffer-check-formats):
(ibuffer-mode): Remove support for ibuffer-elide-long-columns.
* lisp/cedet/semantic/sb.el (semantic-sb-token-jump):
Remove support for speedbar-line-path.
* lisp/emacs-lisp/unsafep.el (assoc-ignore-case):
Stop marking as side-effect-free.
* lisp/gnus/spam.el (spam-group-processor-p):
Remove support for spam-list-of-processors.
* lisp/progmodes/compile.el (define-compilation-mode)
(compilation-handle-exit):
Remove support for compilation-finish-function.
* lisp/progmodes/cperl-mode.el (cperl-mode):
Remove support for cperl-vc-header-alist.
; * lisp/files.el: Comments.
; * etc/NEWS: List removed items.
2018-03-11 03:15:56 +00:00
|
|
|
'mouse-5)
|
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)
|
|
|
|
|
Remove many items obsolete since Emacs 22.1
Emacs 22.1 was five major releases and over decade ago.
In bug reporting statistics, it's been absent for around 5 years.
Ref: https://debbugs.gnu.org/stats/emacs.html
This list can be reviewed before to the next release, but for
now hopefully this motivates any needed external updates.
* lisp/arc-mode.el (archive-mouse-extract):
* lisp/bookmark.el (bookmark-exit-hooks):
* lisp/comint.el (comint-use-prompt-regexp-instead-of-fields):
* lisp/cus-edit.el (custom-face-save-command):
* lisp/descr-text.el (describe-char-after):
* lisp/desktop.el (desktop-enable, desktop-basefilename)
(desktop-buffer-modes-to-save, desktop-buffer-misc-functions)
(desktop-buffer-handlers, desktop-load-default):
* lisp/dired-x.el (dired-omit-files-p):
* lisp/frame.el (new-frame, set-default-font, delete-frame-hook)
(blink-cursor):
* lisp/generic-x.el (generic-define-mswindows-modes)
(generic-define-unix-modes):
* lisp/help.el (describe-project, view-todo):
* lisp/hilit-chg.el (highlight-changes-colours):
* lisp/ibuffer.el (ibuffer-elide-long-columns, ibuffer-hooks)
(ibuffer-mode-hooks):
* lisp/imenu.el (imenu-always-use-completion-buffer-p):
* lisp/isearch.el (isearch-lazy-highlight-cleanup)
(isearch-lazy-highlight-initial-delay)
(isearch-lazy-highlight-interval)
(isearch-lazy-highlight-max-at-a-time)
(isearch-lazy-highlight-cleanup):
* lisp/mwheel.el (mouse-wheel-down-button)
(mouse-wheel-up-button, mouse-wheel-click-button):
* lisp/novice.el (disabled-command-hook):
* lisp/recentf.el (recentf-menu-append-commands-p):
* lisp/savehist.el (savehist-load):
* lisp/speedbar.el (speedbar-ignored-path-expressions)
(speedbar-ignored-path-regexp, speedbar-add-ignored-path-regexp)
(speedbar-line-path, speedbar-buffers-line-path, speedbar-path-line):
* lisp/subr.el (assoc-ignore-case, assoc-ignore-representation)
(x-lost-selection-hooks, x-sent-selection-hooks)
(process-kill-without-query):
* lisp/calendar/icalendar.el (icalendar-convert-diary-to-ical)
(icalendar-extract-ical-from-buffer):
* lisp/emacs-lisp/autoload.el (update-autoloads-from-directories):
* lisp/emacs-lisp/derived.el (derived-mode-class):
* lisp/emacs-lisp/generic.el (generic-font-lock-defaults):
* lisp/emacs-lisp/timer.el (timer-set-time-with-usecs):
* lisp/gnus/spam.el (spam-list-of-processors):
* lisp/international/latin1-disp.el (latin1-char-displayable-p):
* lisp/mail/rmail.el (rmail-pop-password, rmail-pop-password-required):
* lisp/net/goto-addr.el (goto-address-at-mouse):
* lisp/net/net-utils.el (ipconfig-program, ipconfig-program-options):
* lisp/obsolete/iswitchb.el (iswitchb-use-fonts):
* lisp/play/dunnet.el (dungeon-mode-map):
* lisp/progmodes/compile.el (compilation-finish-function)
* lisp/progmodes/cperl-mode.el (cperl-vc-header-alist)
* lisp/progmodes/gud.el (tooltip-gud-modes, tooltip-gud-display)
(tooltip-gud-toggle-dereference):
* lisp/progmodes/pascal.el (pascal-outline):
* lisp/progmodes/perl-mode.el (electric-perl-terminator):
* lisp/textmodes/nroff-mode.el (count-text-lines)
(forward-text-line, backward-text-line, electric-nroff-newline)
(electric-nroff-mode):
* lisp/vc/log-edit.el (vc-comment-ring, vc-comment-ring-index)
(vc-previous-comment, vc-next-comment)
(vc-comment-search-reverse, vc-comment-search-forward)
(vc-comment-to-change-log):
* lisp/vc/pcvs-info.el (cvs-display-full-path)
(cvs-fileinfo->full-path):
* lisp/vc/vc.el (vc-diff-switches-list):
Remove items, obsolete since Emacs 22.1.
* lisp/ibuffer.el (ibuffer-cached-elide-long-columns):
Remove internal variable.
(ibuffer-compile-make-eliding-form, ibuffer-check-formats):
(ibuffer-mode): Remove support for ibuffer-elide-long-columns.
* lisp/cedet/semantic/sb.el (semantic-sb-token-jump):
Remove support for speedbar-line-path.
* lisp/emacs-lisp/unsafep.el (assoc-ignore-case):
Stop marking as side-effect-free.
* lisp/gnus/spam.el (spam-group-processor-p):
Remove support for spam-list-of-processors.
* lisp/progmodes/compile.el (define-compilation-mode)
(compilation-handle-exit):
Remove support for compilation-finish-function.
* lisp/progmodes/cperl-mode.el (cperl-mode):
Remove support for cperl-vc-header-alist.
; * lisp/files.el: Comments.
; * etc/NEWS: List removed items.
2018-03-11 03:15:56 +00:00
|
|
|
(defcustom mouse-wheel-click-event 'mouse-2
|
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
|
|
|
|
2019-08-21 01:38:49 +00:00
|
|
|
(defcustom mouse-wheel-scroll-amount
|
2020-09-24 19:25:03 +00:00
|
|
|
'(1 ((shift) . hscroll) ((meta) . nil) ((control) . text-scale))
|
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.
|
2019-08-21 01:38:49 +00:00
|
|
|
Elements of the list have the form (MODIFIER . AMOUNT) or just AMOUNT if
|
|
|
|
MODIFIER is nil.
|
2002-06-24 23:59:22 +00:00
|
|
|
|
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'
|
2019-08-21 01:38:49 +00:00
|
|
|
less than a full screen.
|
|
|
|
|
2020-09-24 19:25:03 +00:00
|
|
|
If AMOUNT is the symbol 'hscroll', this means that with MODIFIER,
|
|
|
|
the mouse wheel will scroll horizontally instead of vertically.
|
|
|
|
|
2019-08-21 01:38:49 +00:00
|
|
|
If AMOUNT is the symbol text-scale, this means that with
|
|
|
|
MODIFIER, the mouse wheel will change the face height instead of
|
|
|
|
scrolling."
|
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)))
|
2019-08-21 01:38:49 +00:00
|
|
|
(choice :tag "action"
|
|
|
|
(const :tag "Scroll full screen" :value nil)
|
|
|
|
(integer :tag "Scroll specific # of lines")
|
|
|
|
(float :tag "Scroll 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)))
|
2019-08-21 01:38:49 +00:00
|
|
|
(choice :tag "action"
|
|
|
|
(const :tag "Scroll full screen" :value nil)
|
|
|
|
(integer :tag "Scroll specific # of lines")
|
|
|
|
(float :tag "Scroll fraction of window")
|
2020-09-24 19:25:03 +00:00
|
|
|
(const :tag "Scroll horizontally" :value hscroll)
|
2019-08-21 01:38:49 +00:00
|
|
|
(const :tag "Change face size" :value text-scale)))))
|
|
|
|
:set 'mouse-wheel-change-button
|
2020-09-24 18:59:30 +00:00
|
|
|
:version "28.1")
|
2002-06-24 15:50:38 +00:00
|
|
|
|
2004-11-11 23:51:40 +00:00
|
|
|
(defcustom mouse-wheel-progressive-speed t
|
2021-05-16 15:59:54 +00:00
|
|
|
"If nil, scrolling speed is proportional to the wheel speed.
|
|
|
|
If non-nil, moving the wheel faster will make scrolling
|
|
|
|
progressively faster.
|
|
|
|
|
2002-06-24 15:50:38 +00:00
|
|
|
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.
|
2019-10-11 00:15:24 +00:00
|
|
|
This affects both the commands for scrolling and changing the
|
|
|
|
face height."
|
1999-11-10 21:54:54 +00:00
|
|
|
:group 'mouse
|
|
|
|
:type 'boolean)
|
|
|
|
|
2020-11-03 19:06:11 +00:00
|
|
|
(defcustom mouse-wheel-scroll-amount-horizontal 1
|
|
|
|
"Amount to scroll windows horizontally.
|
|
|
|
Its value can be changed dynamically by using a numeric prefix argument
|
|
|
|
before starting horizontal scrolling.
|
|
|
|
It has effect when `mouse-wheel-scroll-amount' binds the value `hscroll'
|
|
|
|
to one of modifiers (`Shift' by default)."
|
|
|
|
:group 'mouse
|
|
|
|
:type 'number
|
|
|
|
:version "28.1")
|
|
|
|
|
2018-02-26 22:05:04 +00:00
|
|
|
;;; For tilt-scroll
|
|
|
|
;;;
|
2018-03-02 19:59:46 +00:00
|
|
|
(defcustom mouse-wheel-tilt-scroll nil
|
2020-03-13 10:24:25 +00:00
|
|
|
"Enable horizontal scrolling by tilting mouse wheel or via touchpad.
|
2020-03-07 21:15:01 +00:00
|
|
|
Also see `mouse-wheel-flip-direction'."
|
2018-02-26 22:05:04 +00:00
|
|
|
:group 'mouse
|
|
|
|
:type 'boolean
|
|
|
|
:version "26.1")
|
|
|
|
|
2018-03-02 19:59:46 +00:00
|
|
|
(defcustom mouse-wheel-flip-direction nil
|
2020-03-07 21:15:01 +00:00
|
|
|
"Swap direction of `wheel-right' and `wheel-left'.
|
2020-03-13 10:24:25 +00:00
|
|
|
By default, `wheel-right' scrolls the text to the right,
|
|
|
|
and `wheel-left' scrolls in the other direction.
|
|
|
|
If this variable is non-nil, it inverts the direction of
|
|
|
|
horizontal scrolling by tilting the mouse wheel.
|
|
|
|
Also see `mouse-wheel-tilt-scroll'."
|
2018-02-26 22:05:04 +00:00
|
|
|
:group 'mouse
|
|
|
|
:type 'boolean
|
|
|
|
:version "26.1")
|
|
|
|
|
2020-08-14 17:29:24 +00:00
|
|
|
(defun mwheel-event-button (event)
|
|
|
|
(let ((x (event-basic-type event)))
|
|
|
|
;; Map mouse-wheel events to appropriate buttons
|
|
|
|
(if (eq 'mouse-wheel x)
|
|
|
|
(let ((amount (car (cdr (cdr (cdr event))))))
|
|
|
|
(if (< amount 0)
|
|
|
|
mouse-wheel-up-event
|
|
|
|
mouse-wheel-down-event))
|
|
|
|
x)))
|
|
|
|
|
|
|
|
(defun mwheel-event-window (event)
|
|
|
|
(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-03-02 19:53:06 +00:00
|
|
|
(defvar mwheel-scroll-left-function 'scroll-left
|
|
|
|
"Function that does the job of scrolling left.")
|
|
|
|
|
|
|
|
(defvar mwheel-scroll-right-function 'scroll-right
|
|
|
|
"Function that does the job of scrolling right.")
|
|
|
|
|
2018-02-26 22:05:04 +00:00
|
|
|
(defvar mouse-wheel-left-event
|
|
|
|
(if (or (featurep 'w32-win) (featurep 'ns-win))
|
|
|
|
'wheel-left
|
2020-09-17 08:54:09 +00:00
|
|
|
'mouse-6)
|
2018-02-26 22:05:04 +00:00
|
|
|
"Event used for scrolling left.")
|
|
|
|
|
|
|
|
(defvar mouse-wheel-right-event
|
|
|
|
(if (or (featurep 'w32-win) (featurep 'ns-win))
|
|
|
|
'wheel-right
|
2020-09-17 08:54:09 +00:00
|
|
|
'mouse-7)
|
2018-02-26 22:05:04 +00:00
|
|
|
"Event used for scrolling right.")
|
|
|
|
|
2019-10-11 00:15:24 +00:00
|
|
|
(defun mouse-wheel--get-scroll-window (event)
|
|
|
|
"Return window for mouse wheel event EVENT.
|
|
|
|
If `mouse-wheel-follow-mouse' is non-nil, return the window that
|
|
|
|
the mouse pointer is over. Otherwise, return the currently
|
|
|
|
active 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)))
|
|
|
|
|
2020-11-03 19:06:11 +00:00
|
|
|
(defun mwheel-scroll (event &optional arg)
|
2002-06-24 15:50:38 +00:00
|
|
|
"Scroll up or down according to the EVENT.
|
2017-04-12 13:29:35 +00:00
|
|
|
This should be bound only to mouse buttons 4, 5, 6, and 7 on
|
2020-11-03 19:06:11 +00:00
|
|
|
non-Windows systems.
|
|
|
|
|
2020-11-03 19:48:23 +00:00
|
|
|
Optional argument ARG (interactively, prefix numeric argument) controls
|
|
|
|
the step of horizontal scrolling.
|
|
|
|
|
|
|
|
The variable `mouse-wheel-scroll-amount-horizontal' records the last
|
|
|
|
value of ARG, and the command uses it in subsequent scrolls."
|
2020-11-03 19:06:11 +00:00
|
|
|
(interactive (list last-input-event current-prefix-arg))
|
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 08:38:25 +00:00
|
|
|
(let* ((selected-window (selected-window))
|
2019-10-11 00:15:24 +00:00
|
|
|
(scroll-window (mouse-wheel--get-scroll-window 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 08:38:25 +00:00
|
|
|
(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)))))
|
2019-08-09 07:39:16 +00:00
|
|
|
(amt (assoc mods mouse-wheel-scroll-amount))
|
|
|
|
saw-error)
|
2017-04-12 16:22:44 +00: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 18:26:47 +00:00
|
|
|
(when (numberp amt) (setq amt (* amt (event-line-count event))))
|
2019-08-09 07:39:16 +00:00
|
|
|
(condition-case nil
|
|
|
|
(unwind-protect
|
|
|
|
(let ((button (mwheel-event-button event)))
|
2020-09-24 19:25:03 +00:00
|
|
|
(cond ((and (eq amt 'hscroll) (eq button mouse-wheel-down-event))
|
2020-11-03 19:06:11 +00:00
|
|
|
(when (and (natnump arg) (> arg 0))
|
|
|
|
(setq mouse-wheel-scroll-amount-horizontal arg))
|
2020-09-24 19:25:03 +00:00
|
|
|
(funcall (if mouse-wheel-flip-direction
|
|
|
|
mwheel-scroll-left-function
|
2020-11-03 19:06:11 +00:00
|
|
|
mwheel-scroll-right-function)
|
|
|
|
mouse-wheel-scroll-amount-horizontal))
|
2020-09-24 19:25:03 +00:00
|
|
|
((eq button mouse-wheel-down-event)
|
2019-08-09 07:39:16 +00:00
|
|
|
(condition-case nil (funcall mwheel-scroll-down-function amt)
|
|
|
|
;; Make sure we do indeed scroll to the beginning of
|
|
|
|
;; the buffer.
|
|
|
|
(beginning-of-buffer
|
|
|
|
(unwind-protect
|
|
|
|
(funcall mwheel-scroll-down-function)
|
|
|
|
;; 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
|
|
|
|
;; to do it even if the first scroll signaled an
|
|
|
|
;; 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))))))
|
2020-09-24 19:25:03 +00:00
|
|
|
((and (eq amt 'hscroll) (eq button mouse-wheel-up-event))
|
2020-11-03 19:06:11 +00:00
|
|
|
(when (and (natnump arg) (> arg 0))
|
|
|
|
(setq mouse-wheel-scroll-amount-horizontal arg))
|
2020-09-24 19:25:03 +00:00
|
|
|
(funcall (if mouse-wheel-flip-direction
|
|
|
|
mwheel-scroll-right-function
|
2020-11-03 19:06:11 +00:00
|
|
|
mwheel-scroll-left-function)
|
|
|
|
mouse-wheel-scroll-amount-horizontal))
|
2020-09-24 19:25:03 +00:00
|
|
|
((eq button mouse-wheel-up-event)
|
2019-08-09 07:39:16 +00:00
|
|
|
(condition-case nil (funcall mwheel-scroll-up-function amt)
|
|
|
|
;; Make sure we do indeed scroll to the end of the buffer.
|
|
|
|
(end-of-buffer (while t (funcall mwheel-scroll-up-function)))))
|
|
|
|
((eq button mouse-wheel-left-event) ; for tilt scroll
|
|
|
|
(when mouse-wheel-tilt-scroll
|
|
|
|
(funcall (if mouse-wheel-flip-direction
|
|
|
|
mwheel-scroll-right-function
|
|
|
|
mwheel-scroll-left-function) amt)))
|
|
|
|
((eq button mouse-wheel-right-event) ; for tilt scroll
|
|
|
|
(when mouse-wheel-tilt-scroll
|
|
|
|
(funcall (if mouse-wheel-flip-direction
|
|
|
|
mwheel-scroll-left-function
|
|
|
|
mwheel-scroll-right-function) amt)))
|
|
|
|
(t (error "Bad binding in mwheel-scroll"))))
|
|
|
|
(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)))
|
|
|
|
;; Do not ding at buffer limits. Show a message instead.
|
|
|
|
(beginning-of-buffer
|
|
|
|
(message (error-message-string '(beginning-of-buffer)))
|
|
|
|
(setq saw-error t))
|
|
|
|
(end-of-buffer
|
|
|
|
(message (error-message-string '(end-of-buffer)))
|
|
|
|
(setq saw-error t)))
|
|
|
|
|
|
|
|
(when (and (not saw-error)
|
|
|
|
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))
|
|
|
|
(setq mwheel-inhibit-click-event-timer
|
|
|
|
(run-with-timer mouse-wheel-inhibit-click-time nil
|
|
|
|
'mwheel-inhibit-click-timeout)))))
|
2000-10-25 11:39:51 +00:00
|
|
|
|
2010-04-15 23:51:12 +00:00
|
|
|
(put 'mwheel-scroll 'scroll-command t)
|
2010-04-14 00:11:21 +00:00
|
|
|
|
2019-10-11 00:15:24 +00:00
|
|
|
(defun mouse-wheel-text-scale (event)
|
|
|
|
"Increase or decrease the height of the default face according to the EVENT."
|
|
|
|
(interactive (list last-input-event))
|
|
|
|
(let ((selected-window (selected-window))
|
|
|
|
(scroll-window (mouse-wheel--get-scroll-window event))
|
|
|
|
(button (mwheel-event-button event)))
|
|
|
|
(select-window scroll-window 'mark-for-redisplay)
|
|
|
|
(unwind-protect
|
|
|
|
(cond ((eq button mouse-wheel-down-event)
|
|
|
|
(text-scale-increase 1))
|
|
|
|
((eq button mouse-wheel-up-event)
|
|
|
|
(text-scale-decrease 1)))
|
|
|
|
(select-window selected-window))))
|
|
|
|
|
2020-09-02 21:10:27 +00:00
|
|
|
(defun mouse-wheel--add-binding (key fun)
|
|
|
|
"Bind mouse wheel button KEY to function FUN.
|
|
|
|
Save it for later removal by `mouse-wheel--remove-bindings'."
|
|
|
|
(global-set-key key fun)
|
|
|
|
(push (cons key fun) mouse-wheel--installed-bindings-alist))
|
|
|
|
|
|
|
|
(defun mouse-wheel--remove-bindings ()
|
|
|
|
"Remove all mouse wheel key bindings.
|
2019-08-21 01:38:49 +00:00
|
|
|
This is a helper function for `mouse-wheel-mode'."
|
2020-09-02 21:10:27 +00:00
|
|
|
(dolist (binding mouse-wheel--installed-bindings-alist)
|
|
|
|
(let ((key (car binding))
|
|
|
|
(fun (cdr binding)))
|
|
|
|
(when (eq (lookup-key (current-global-map) key) fun)
|
|
|
|
(global-unset-key key))))
|
|
|
|
(setq mouse-wheel--installed-bindings-alist nil))
|
2009-09-12 04:38:03 +00:00
|
|
|
|
2020-08-22 11:21:13 +00:00
|
|
|
(defun mouse-wheel--create-scroll-keys (binding event)
|
|
|
|
"Return list of key vectors for BINDING and EVENT.
|
|
|
|
BINDING is an element in `mouse-wheel-scroll-amount'. EVENT is
|
|
|
|
an event used for scrolling, such as `mouse-wheel-down-event'."
|
|
|
|
(let ((prefixes (list 'left-margin 'right-margin
|
|
|
|
'left-fringe 'right-fringe
|
|
|
|
'vertical-scroll-bar 'horizontal-scroll-bar
|
|
|
|
'mode-line 'header-line)))
|
2020-09-02 20:54:47 +00:00
|
|
|
(if (consp binding)
|
|
|
|
;; With modifiers, bind only the buffer area (no prefix).
|
|
|
|
(list `[(,@(car binding) ,event)])
|
|
|
|
;; No modifier: bind also some non-buffer areas of the screen.
|
|
|
|
(cons (vector event)
|
2020-08-22 11:21:13 +00:00
|
|
|
(mapcar (lambda (prefix) (vector prefix event)) prefixes)))))
|
|
|
|
|
2021-03-18 05:21:44 +00:00
|
|
|
;;;###autoload
|
2000-10-25 11:39:51 +00:00
|
|
|
(define-minor-mode mouse-wheel-mode
|
2018-07-02 03:34:53 +00:00
|
|
|
"Toggle mouse wheel support (Mouse Wheel mode)."
|
2009-09-12 04:38:03 +00:00
|
|
|
:init-value t
|
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.
|
2020-09-02 21:10:27 +00:00
|
|
|
(mouse-wheel--remove-bindings)
|
2009-09-12 04:38:03 +00:00
|
|
|
;; Setup bindings as needed.
|
|
|
|
(when mouse-wheel-mode
|
2021-08-01 22:13:41 +00:00
|
|
|
(mouse-wheel--setup-bindings)))
|
|
|
|
|
|
|
|
(defun mouse-wheel--setup-bindings ()
|
|
|
|
(dolist (binding mouse-wheel-scroll-amount)
|
|
|
|
(cond
|
|
|
|
;; Bindings for changing font size.
|
|
|
|
((and (consp binding) (eq (cdr binding) 'text-scale))
|
|
|
|
(dolist (event (list mouse-wheel-down-event mouse-wheel-up-event))
|
|
|
|
(mouse-wheel--add-binding `[,(list (caar binding) event)]
|
|
|
|
'mouse-wheel-text-scale)))
|
|
|
|
;; Bindings for scrolling.
|
|
|
|
(t
|
|
|
|
(dolist (event (list mouse-wheel-down-event mouse-wheel-up-event
|
|
|
|
mouse-wheel-left-event mouse-wheel-right-event))
|
|
|
|
(dolist (key (mouse-wheel--create-scroll-keys binding event))
|
|
|
|
(mouse-wheel--add-binding key 'mwheel-scroll)))))))
|
|
|
|
|
|
|
|
(when mouse-wheel-mode
|
|
|
|
(mouse-wheel--setup-bindings))
|
2020-09-02 21:10:27 +00:00
|
|
|
|
|
|
|
;;; Obsolete.
|
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."
|
2019-07-08 15:59:51 +00:00
|
|
|
(declare (obsolete mouse-wheel-mode "27.1"))
|
2002-06-27 21:46:45 +00:00
|
|
|
(mouse-wheel-mode (if uninstall -1 1)))
|
2000-10-25 11:39:51 +00:00
|
|
|
|
2020-09-02 21:10:27 +00:00
|
|
|
(defvar mwheel-installed-bindings nil)
|
|
|
|
(make-obsolete-variable 'mwheel-installed-bindings nil "28.1")
|
|
|
|
|
|
|
|
(defvar mwheel-installed-text-scale-bindings nil)
|
|
|
|
(make-obsolete-variable 'mwheel-installed-text-scale-bindings nil "28.1")
|
|
|
|
|
1999-11-10 21:54:54 +00:00
|
|
|
(provide 'mwheel)
|
|
|
|
|
|
|
|
;;; mwheel.el ends here
|