emacs/lisp/window-tool-bar.el

612 lines
25 KiB
EmacsLisp
Raw Permalink Normal View History

;;; window-tool-bar.el --- Add tool bars inside windows -*- lexical-binding: t -*-
;; Copyright (C) 2023-2025 Free Software Foundation, Inc.
;; Author: Jared Finder <jared@finder.org>
;; Created: Nov 21, 2023
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
;; Version: 0.3
;; Keywords: mouse
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
;; URL: http://github.com/chaosemer/window-tool-bar
;; Package-Requires: ((emacs "27.1") (compat "30"))
;; This is a GNU ELPA :core package. Avoid adding functionality that
;; is not available in the version of Emacs recorded above or any of
;; the package dependencies.
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; 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.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; This package puts a tool bar in each window. This allows you to see
;; multiple tool bars simultaneously directly next to the buffer it
;; acts on which feels much more intuitive. Emacs "browsing" modes
;; generally have sensible tool bars, for example: *info*, *help*, and
;; *eww* have them.
;;
;; It does this while being mindful of screen real estate. If
;; `tool-bar-map' is nil, then this package will not take up any space
;; for an empty tool bar. Most modes do not define a custom tool bar,
;; so calling (setq tool-bar-map nil) in your init file will make most
;; buffers not take up space for a tool bar.
;;
;; To get the default behavior, run (global-window-tool-bar-mode 1) or
;; enable via M-x customize-group RET window-tool-bar RET. This uses
;; the per-window tab line to show the tool bar.
;;
;; If you want to share space with an existing tab line, mode line, or
;; header line, add (:eval (window-tool-bar-string)) to
;; `tab-line-format', `mode-line-format', or `header-line-format'.
;;
;; For additional documentation, see info node `(emacs)Window Tool
;; Bar'
;;; Known issues:
;;
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
;; On GNU Emacs 29.1 and earlier, terminals dragging to resize windows
;; will error with message "<tab-line> <mouse-movement> is undefined".
;; This is a bug in GNU Emacs,
;; <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67457>.
;;
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
;; On GNU Emacs 29 and earlier, performance in terminals is lower than
;; on graphical frames. This is due to a workaround, see "Workaround
;; for https://debbugs.gnu.org/cgi/bugreport.cgi?bug=68334", below.
;;; Todo:
;;
;; Not all features planned are implemented yet. Eventually I would
;; like to also generally make tool bars better.
;;
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
;; Post 1.0 work:
;;
;; * Clean up Emacs tool bars
;; * Default: Remove default tool-bar entirely
;; * grep, vc: Remove default tool-bar inherited
;; * info: Remove Next / Prev / Up, which is already in the header
;; * smerge: Add tool bar for next/prev
;;; Code:
(require 'compat)
(require 'mwheel)
(require 'tab-line)
(require 'tool-bar)
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
(add-to-list 'customize-package-emacs-version-alist
'(window-tool-bar ("0.1" . "30.1")
("0.2" . "30.1")
("0.3" . "31.1")))
;;; Benchmarking code
;;
;; Refreshing the tool bar is computationally simple, but generates a
;; lot of garbage. So this benchmarking focuses on garbage
;; generation. Since it has to run after most commands, generating
;; significantly more garbage will cause noticeable performance
2024-06-04 22:13:47 -07:00
;; degradation.
;;
;; The refresh has two steps:
;;
;; Step 1: Look up the <tool-bar> map.
;; Step 2: Generate a Lisp string using text properties for the tool
;; bar string.
;;
;; Additionally, we keep track of the percentage of commands that
2024-06-04 22:13:47 -07:00
;; actually created a refresh.
(defvar window-tool-bar--memory-use-delta-step1 (make-list 7 0)
"Absolute delta of memory use counters during step 1.
This is a list in the same structure as `memory-use-counts'.")
(defvar window-tool-bar--memory-use-delta-step2 (make-list 7 0)
"Absolute delta of memory use counters during step 2.
This is a list in the same structure as `memory-use-counts'.")
(defvar window-tool-bar--refresh-done-count 0
"Number of tool bar string refreshes run.
The total number of requests is the sum of this and
`window-tool-bar--refresh-skipped-count'.")
(defvar window-tool-bar--refresh-skipped-count 0
"Number of tool bar string refreshes that were skipped.
The total number of requests is the sum of this and
`window-tool-bar--refresh-done-count'.")
(defun window-tool-bar--memory-use-avg-step1 ()
"Return average memory use delta during step 1."
(mapcar (lambda (elt) (/ (float elt) window-tool-bar--refresh-done-count))
window-tool-bar--memory-use-delta-step1))
(defun window-tool-bar--memory-use-avg-step2 ()
"Return average memory use delta during step 2."
(mapcar (lambda (elt) (/ (float elt) window-tool-bar--refresh-done-count))
window-tool-bar--memory-use-delta-step2))
(declare-function time-stamp-string "time-stamp")
(defun window-tool-bar-debug-show-memory-use ()
"Development-only command to show memory used by `window-tool-bar-string'."
(interactive)
(require 'time-stamp)
(save-selected-window
(pop-to-buffer "*WTB Memory Report*")
(unless (derived-mode-p 'special-mode)
(special-mode))
(goto-char (point-max))
(let ((inhibit-read-only t))
(insert (propertize (concat "Function: window-tool-bar-string "
(time-stamp-string))
'face 'underline 'font-lock-face 'underline)
"\n\n")
(window-tool-bar--insert-memory-use
"Step 1" (window-tool-bar--memory-use-avg-step1))
(window-tool-bar--insert-memory-use
"Step 2" (window-tool-bar--memory-use-avg-step2))
(insert (format "Refresh count %d\n" window-tool-bar--refresh-done-count)
(format "Refresh executed percent %.2f\n"
(/ (float window-tool-bar--refresh-done-count)
(+ window-tool-bar--refresh-done-count
window-tool-bar--refresh-skipped-count)))
"\n"))))
(defun window-tool-bar--insert-memory-use (label avg-memory-use)
"Insert memory use into current buffer.
LABEL is a prefix string to be in front of the data.
AVG-MEMORY-USE is a list of averages, with the same meaning as
`memory-use-counts'."
(let* ((label-len (length label))
(padding (make-string label-len ?\s)))
(cl-loop for usage in avg-memory-use
for usage-label in '("Conses" "Floats" "Vector cells" "Symbols"
"String chars" "Intervals" "Strings")
for idx from 0
do (insert (format "%s %8.2f %s\n"
(if (= idx 0) label padding)
usage
usage-label)))))
(defgroup window-tool-bar nil
"Tool bars per-window."
:group 'convenience
:prefix "window-tool-bar-")
(defvar-keymap window-tool-bar--button-keymap
:doc "Keymap used by `window-tool-bar--keymap-entry-to-string'."
"<follow-link>" 'mouse-face
;; Follow link on all clicks of mouse-1 and mouse-2 since the tool
;; bar is not a place the point can travel to.
"<tab-line> <mouse-1>" #'window-tool-bar--call-button
"<tab-line> <double-mouse-1>" #'window-tool-bar--call-button
"<tab-line> <triple-mouse-1>" #'window-tool-bar--call-button
"<tab-line> <mouse-2>" #'window-tool-bar--call-button
"<tab-line> <double-mouse-2>" #'window-tool-bar--call-button
"<tab-line> <triple-mouse-2>" #'window-tool-bar--call-button
;; Mouse down events do nothing. A binding is needed so isearch
;; does not exit when the tab bar is clicked.
"<tab-line> <down-mouse-1>" #'window-tool-bar--ignore
"<tab-line> <double-down-mouse-1>" #'window-tool-bar--ignore
"<tab-line> <triple-down-mouse-1>" #'window-tool-bar--ignore
"<tab-line> <down-mouse-2>" #'window-tool-bar--ignore
"<tab-line> <double-down-mouse-2>" #'window-tool-bar--ignore
"<tab-line> <triple-down-mouse-2>" #'window-tool-bar--ignore)
(fset 'window-tool-bar--button-keymap window-tool-bar--button-keymap) ; So it can be a keymap property
;; Register bindings that stay in isearch. Technically, these
;; commands don't pop up a menu but they act very similar in that they
;; are caused by mouse input and may call commands via
;; `call-interactively'.
(push 'window-tool-bar--call-button isearch-menu-bar-commands)
(push 'window-tool-bar--ignore isearch-menu-bar-commands)
(defvar-local window-tool-bar-string--cache nil
"Cache for previous result of `window-tool-bar-string'.")
;;;###autoload
(defun window-tool-bar-string ()
"Return a (propertized) string for the tool bar.
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
This is for when you want more customizations than the command
`window-tool-bar-mode' provides. Commonly added to the variable
`tab-line-format', `header-line-format', or `mode-line-format'"
(if (or (null window-tool-bar-string--cache)
(window-tool-bar--last-command-triggers-refresh-p))
(let* ((mem0 (memory-use-counts))
(toolbar-menu (window-tool-bar--get-keymap))
(mem1 (memory-use-counts))
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
(strs (mapcar #'window-tool-bar--keymap-entry-to-string
(cdr toolbar-menu))) ;Skip 'keymap
(result (mapconcat #'identity
(delete nil strs)
;; Without spaces between the text, hovering
;; highlights all adjacent buttons.
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
(if (eq 'text (window-tool-bar--style)) " "
(propertize " " 'invisible t))))
(mem2 (memory-use-counts)))
(cl-mapl (lambda (l-init l0 l1)
Prefer incf to cl-incf in remaining files * admin/syncdoc-type-hierarchy.el (syncdoc-make-type-table): * admin/unidata/unidata-gen.el (unidata-gen-table-word-list): * lisp/arc-mode.el (archive--summarize-descs): * lisp/auth-source.el (auth-source-forget+): * lisp/battery.el (battery-linux-proc-acpi, battery-linux-sysfs): * lisp/calendar/parse-time.el (parse-time-tokenize): * lisp/calendar/time-date.el (decoded-time-add) (decoded-time--alter-month, decoded-time--alter-day): * lisp/cedet/semantic/ede-grammar.el (project-compile-target): * lisp/dired.el (dired-insert-set-properties): * lisp/edmacro.el (edmacro-format-keys): * lisp/epa-file.el (epa-file--replace-text): * lisp/eshell/esh-cmd.el (eshell-for-iterate): * lisp/eshell/esh-io.el (eshell-create-handles) (eshell-duplicate-handles, eshell-protect-handles) (eshell-copy-output-handle, eshell-buffered-print): * lisp/font-lock.el (font-lock-fontify-keywords-region): * lisp/help-fns.el: * lisp/ibuf-ext.el (ibuffer-generate-filter-groups) (ibuffer-insert-filter-group-before): * lisp/ibuffer.el (ibuffer-confirm-operation-on, ibuffer-map-lines): * lisp/image/image-dired-external.el (image-dired-thumb-queue-run): * lisp/image/image-dired.el (image-dired-display-thumbs) (image-dired-line-up): * lisp/imenu.el (imenu--split): * lisp/info-xref.el (info-xref-check-node, info-xref-check-all-custom): * lisp/international/quail.el (quail-insert-decode-map): * lisp/international/rfc1843.el (rfc1843-decode): * lisp/mail/ietf-drums-date.el (ietf-drums-date--tokenize-string): * lisp/mail/ietf-drums.el (ietf-drums-token-to-list): * lisp/mail/rfc2047.el (rfc2047-qp-or-base64): * lisp/mail/rfc2231.el (rfc2231-encode-string): * lisp/mail/yenc.el (yenc-decode-region): * lisp/mh-e/mh-e.el (mh-xargs): * lisp/mh-e/mh-folder.el (mh-recenter): * lisp/mh-e/mh-mime.el (mh-mime-part-index): * lisp/mh-e/mh-search.el (mh-search): * lisp/mh-e/mh-thread.el (mh-thread-current-indentation-level): * lisp/mh-e/mh-utils.el (mh-sub-folders-parse): * lisp/minibuffer.el (minibuffer--sort-by-position) (completion-pcm--pattern-point-idx): * lisp/mpc.el (mpc-cmd-find, mpc-cmd-move, mpc-select-extend) (mpc-songs-refresh, mpc-songpointer-score) (mpc-songpointer-refresh-hairy): * lisp/msb.el (msb--mode-menu-cond, msb--most-recently-used-menu) (msb--split-menus-2, msb--make-keymap-menu): * lisp/net/pop3.el (pop3-send-streaming-command): * lisp/net/puny.el (puny-encode-complex, puny-decode-string-internal): * lisp/net/shr-color.el (shr-color-hue-to-rgb): * lisp/net/soap-client.el (soap-encode-xs-complex-type) (soap-decode-xs-complex-type, soap-resolve-references-for-operation) (soap-wsdl-resolve-references): * lisp/play/5x5.el (5x5-made-move, 5x5-down, 5x5-right): * lisp/play/decipher.el (key, decipher-mode-syntax-table) (decipher-add-undo, decipher-complete-alphabet, decipher--analyze) (decipher--digram-counts, decipher--digram-total): * lisp/play/hanoi.el (hanoi-move-ring): * lisp/play/snake.el (snake-reset-game, snake-update-game): * lisp/profiler.el (profiler-calltree-depth, profiler-calltree-build-1) (profiler-calltree-build-unified) (profiler-calltree-compute-percentages): * lisp/registry.el (registry-reindex): * lisp/simple.el (completion-list-candidate-at-point): * lisp/strokes.el (strokes-xpm-to-compressed-string): * lisp/term.el (term-emulate-terminal, term--handle-colors-list): * lisp/treesit.el (treesit-node-index, treesit-indent-region): * lisp/url/url-cookie.el (url-cookie-parse-file-netscape): * lisp/url/url-dav.el (url-dav-file-name-completion): * lisp/url/url-queue.el (url-queue-setup-runners) (url-queue-run-queue): * lisp/wdired.el (wdired-finish-edit): * lisp/wid-edit.el (widget-move): * lisp/window-tool-bar.el (window-tool-bar-string): * lisp/winner.el (winner-undo): * lisp/xwidget.el (xwidget-webkit-isearch-forward) (xwidget-webkit-isearch-backward): Prefer incf to cl-incf.
2025-02-23 02:55:14 +01:00
(incf (car l-init) (- (car l1) (car l0))))
window-tool-bar--memory-use-delta-step1 mem0 mem1)
(cl-mapl (lambda (l-init l1 l2)
Prefer incf to cl-incf in remaining files * admin/syncdoc-type-hierarchy.el (syncdoc-make-type-table): * admin/unidata/unidata-gen.el (unidata-gen-table-word-list): * lisp/arc-mode.el (archive--summarize-descs): * lisp/auth-source.el (auth-source-forget+): * lisp/battery.el (battery-linux-proc-acpi, battery-linux-sysfs): * lisp/calendar/parse-time.el (parse-time-tokenize): * lisp/calendar/time-date.el (decoded-time-add) (decoded-time--alter-month, decoded-time--alter-day): * lisp/cedet/semantic/ede-grammar.el (project-compile-target): * lisp/dired.el (dired-insert-set-properties): * lisp/edmacro.el (edmacro-format-keys): * lisp/epa-file.el (epa-file--replace-text): * lisp/eshell/esh-cmd.el (eshell-for-iterate): * lisp/eshell/esh-io.el (eshell-create-handles) (eshell-duplicate-handles, eshell-protect-handles) (eshell-copy-output-handle, eshell-buffered-print): * lisp/font-lock.el (font-lock-fontify-keywords-region): * lisp/help-fns.el: * lisp/ibuf-ext.el (ibuffer-generate-filter-groups) (ibuffer-insert-filter-group-before): * lisp/ibuffer.el (ibuffer-confirm-operation-on, ibuffer-map-lines): * lisp/image/image-dired-external.el (image-dired-thumb-queue-run): * lisp/image/image-dired.el (image-dired-display-thumbs) (image-dired-line-up): * lisp/imenu.el (imenu--split): * lisp/info-xref.el (info-xref-check-node, info-xref-check-all-custom): * lisp/international/quail.el (quail-insert-decode-map): * lisp/international/rfc1843.el (rfc1843-decode): * lisp/mail/ietf-drums-date.el (ietf-drums-date--tokenize-string): * lisp/mail/ietf-drums.el (ietf-drums-token-to-list): * lisp/mail/rfc2047.el (rfc2047-qp-or-base64): * lisp/mail/rfc2231.el (rfc2231-encode-string): * lisp/mail/yenc.el (yenc-decode-region): * lisp/mh-e/mh-e.el (mh-xargs): * lisp/mh-e/mh-folder.el (mh-recenter): * lisp/mh-e/mh-mime.el (mh-mime-part-index): * lisp/mh-e/mh-search.el (mh-search): * lisp/mh-e/mh-thread.el (mh-thread-current-indentation-level): * lisp/mh-e/mh-utils.el (mh-sub-folders-parse): * lisp/minibuffer.el (minibuffer--sort-by-position) (completion-pcm--pattern-point-idx): * lisp/mpc.el (mpc-cmd-find, mpc-cmd-move, mpc-select-extend) (mpc-songs-refresh, mpc-songpointer-score) (mpc-songpointer-refresh-hairy): * lisp/msb.el (msb--mode-menu-cond, msb--most-recently-used-menu) (msb--split-menus-2, msb--make-keymap-menu): * lisp/net/pop3.el (pop3-send-streaming-command): * lisp/net/puny.el (puny-encode-complex, puny-decode-string-internal): * lisp/net/shr-color.el (shr-color-hue-to-rgb): * lisp/net/soap-client.el (soap-encode-xs-complex-type) (soap-decode-xs-complex-type, soap-resolve-references-for-operation) (soap-wsdl-resolve-references): * lisp/play/5x5.el (5x5-made-move, 5x5-down, 5x5-right): * lisp/play/decipher.el (key, decipher-mode-syntax-table) (decipher-add-undo, decipher-complete-alphabet, decipher--analyze) (decipher--digram-counts, decipher--digram-total): * lisp/play/hanoi.el (hanoi-move-ring): * lisp/play/snake.el (snake-reset-game, snake-update-game): * lisp/profiler.el (profiler-calltree-depth, profiler-calltree-build-1) (profiler-calltree-build-unified) (profiler-calltree-compute-percentages): * lisp/registry.el (registry-reindex): * lisp/simple.el (completion-list-candidate-at-point): * lisp/strokes.el (strokes-xpm-to-compressed-string): * lisp/term.el (term-emulate-terminal, term--handle-colors-list): * lisp/treesit.el (treesit-node-index, treesit-indent-region): * lisp/url/url-cookie.el (url-cookie-parse-file-netscape): * lisp/url/url-dav.el (url-dav-file-name-completion): * lisp/url/url-queue.el (url-queue-setup-runners) (url-queue-run-queue): * lisp/wdired.el (wdired-finish-edit): * lisp/wid-edit.el (widget-move): * lisp/window-tool-bar.el (window-tool-bar-string): * lisp/winner.el (winner-undo): * lisp/xwidget.el (xwidget-webkit-isearch-forward) (xwidget-webkit-isearch-backward): Prefer incf to cl-incf.
2025-02-23 02:55:14 +01:00
(incf (car l-init) (- (car l2) (car l1))))
window-tool-bar--memory-use-delta-step2 mem1 mem2)
(setf window-tool-bar-string--cache
(concat
;; The tool bar face by default puts boxes around the
;; buttons. However, this box is not displayed if the
;; box starts at the leftmost pixel of the tab-line.
;; Add a single space in this case so the box displays
;; correctly.
(and (display-supports-face-attributes-p
'(:box (line-width 1)))
(propertize " " 'display '(space :width (1))))
result))
Prefer incf to cl-incf in remaining files * admin/syncdoc-type-hierarchy.el (syncdoc-make-type-table): * admin/unidata/unidata-gen.el (unidata-gen-table-word-list): * lisp/arc-mode.el (archive--summarize-descs): * lisp/auth-source.el (auth-source-forget+): * lisp/battery.el (battery-linux-proc-acpi, battery-linux-sysfs): * lisp/calendar/parse-time.el (parse-time-tokenize): * lisp/calendar/time-date.el (decoded-time-add) (decoded-time--alter-month, decoded-time--alter-day): * lisp/cedet/semantic/ede-grammar.el (project-compile-target): * lisp/dired.el (dired-insert-set-properties): * lisp/edmacro.el (edmacro-format-keys): * lisp/epa-file.el (epa-file--replace-text): * lisp/eshell/esh-cmd.el (eshell-for-iterate): * lisp/eshell/esh-io.el (eshell-create-handles) (eshell-duplicate-handles, eshell-protect-handles) (eshell-copy-output-handle, eshell-buffered-print): * lisp/font-lock.el (font-lock-fontify-keywords-region): * lisp/help-fns.el: * lisp/ibuf-ext.el (ibuffer-generate-filter-groups) (ibuffer-insert-filter-group-before): * lisp/ibuffer.el (ibuffer-confirm-operation-on, ibuffer-map-lines): * lisp/image/image-dired-external.el (image-dired-thumb-queue-run): * lisp/image/image-dired.el (image-dired-display-thumbs) (image-dired-line-up): * lisp/imenu.el (imenu--split): * lisp/info-xref.el (info-xref-check-node, info-xref-check-all-custom): * lisp/international/quail.el (quail-insert-decode-map): * lisp/international/rfc1843.el (rfc1843-decode): * lisp/mail/ietf-drums-date.el (ietf-drums-date--tokenize-string): * lisp/mail/ietf-drums.el (ietf-drums-token-to-list): * lisp/mail/rfc2047.el (rfc2047-qp-or-base64): * lisp/mail/rfc2231.el (rfc2231-encode-string): * lisp/mail/yenc.el (yenc-decode-region): * lisp/mh-e/mh-e.el (mh-xargs): * lisp/mh-e/mh-folder.el (mh-recenter): * lisp/mh-e/mh-mime.el (mh-mime-part-index): * lisp/mh-e/mh-search.el (mh-search): * lisp/mh-e/mh-thread.el (mh-thread-current-indentation-level): * lisp/mh-e/mh-utils.el (mh-sub-folders-parse): * lisp/minibuffer.el (minibuffer--sort-by-position) (completion-pcm--pattern-point-idx): * lisp/mpc.el (mpc-cmd-find, mpc-cmd-move, mpc-select-extend) (mpc-songs-refresh, mpc-songpointer-score) (mpc-songpointer-refresh-hairy): * lisp/msb.el (msb--mode-menu-cond, msb--most-recently-used-menu) (msb--split-menus-2, msb--make-keymap-menu): * lisp/net/pop3.el (pop3-send-streaming-command): * lisp/net/puny.el (puny-encode-complex, puny-decode-string-internal): * lisp/net/shr-color.el (shr-color-hue-to-rgb): * lisp/net/soap-client.el (soap-encode-xs-complex-type) (soap-decode-xs-complex-type, soap-resolve-references-for-operation) (soap-wsdl-resolve-references): * lisp/play/5x5.el (5x5-made-move, 5x5-down, 5x5-right): * lisp/play/decipher.el (key, decipher-mode-syntax-table) (decipher-add-undo, decipher-complete-alphabet, decipher--analyze) (decipher--digram-counts, decipher--digram-total): * lisp/play/hanoi.el (hanoi-move-ring): * lisp/play/snake.el (snake-reset-game, snake-update-game): * lisp/profiler.el (profiler-calltree-depth, profiler-calltree-build-1) (profiler-calltree-build-unified) (profiler-calltree-compute-percentages): * lisp/registry.el (registry-reindex): * lisp/simple.el (completion-list-candidate-at-point): * lisp/strokes.el (strokes-xpm-to-compressed-string): * lisp/term.el (term-emulate-terminal, term--handle-colors-list): * lisp/treesit.el (treesit-node-index, treesit-indent-region): * lisp/url/url-cookie.el (url-cookie-parse-file-netscape): * lisp/url/url-dav.el (url-dav-file-name-completion): * lisp/url/url-queue.el (url-queue-setup-runners) (url-queue-run-queue): * lisp/wdired.el (wdired-finish-edit): * lisp/wid-edit.el (widget-move): * lisp/window-tool-bar.el (window-tool-bar-string): * lisp/winner.el (winner-undo): * lisp/xwidget.el (xwidget-webkit-isearch-forward) (xwidget-webkit-isearch-backward): Prefer incf to cl-incf.
2025-02-23 02:55:14 +01:00
(incf window-tool-bar--refresh-done-count))
(incf window-tool-bar--refresh-skipped-count))
window-tool-bar-string--cache)
(defconst window-tool-bar--graphical-separator
(concat
(propertize " " 'display '(space :width (4)))
(propertize " " 'display '(space :width (1) face (:inverse-video t)))
(propertize " " 'display '(space :width (4)))))
(defun window-tool-bar--keymap-entry-to-string (menu-item)
"Convert MENU-ITEM into a (propertized) string representation.
MENU-ITEM is a menu item to convert. See info node `(elisp)Tool Bar'."
(pcase-exhaustive menu-item
;; Separators
((or `(,_ "--")
`(,_ menu-item ,(and (pred stringp)
(pred (string-prefix-p "--")))))
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
(if (eq 'text (window-tool-bar--style)) "|"
window-tool-bar--graphical-separator))
;; Menu item, turn into propertized string button
(`(,key menu-item ,name-expr ,binding . ,plist)
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
(let* ((visible-entry (plist-member plist :visible))
(visible (or (null visible-entry) ;Default is visible
(eval (cadr visible-entry))))
(wrap (plist-get plist :wrap))
(filter (plist-get plist :filter)))
(when filter
(setf binding
;; You would expect this to use `funcall', but existing
;; code in `parse_tool_bar_item' uses `eval'.
(eval `(,filter ',binding))))
(when (and binding
visible
(null wrap))
(let* ((name (eval name-expr))
(str (upcase-initials (or (plist-get plist :label)
(string-trim-right name "\\.+"))))
(len (length str))
(enable-form (plist-get plist :enable))
(enabled (or (not enable-form)
(eval enable-form)))
(button-spec (plist-get plist :button))
(button-selected (eval (cdr-safe button-spec)))
(vert-only (plist-get plist :vert-only))
image-start
image-end)
;; Depending on style, Images can be displayed to the
;; left, to the right, or in place of the text
(pcase-exhaustive (window-tool-bar--style)
('image
(setf image-start 0
image-end len))
('text
;; Images shouldn't be available
)
((or 'both 'both-horiz)
(if vert-only
(setf image-start 0 image-end len)
(setf str (concat " " str)
image-start 0
image-end 1
len (1+ len))))
('text-image-horiz
(if vert-only
(setf image-start 0 image-end len)
(setf str (concat str " ")
image-start len
image-end (1+ len)
len (1+ len)))))
(cond
((and enabled button-selected)
(add-text-properties 0 len
'(mouse-face
window-tool-bar-button-checked-hover
keymap window-tool-bar--button-keymap
face window-tool-bar-button-checked)
str))
(enabled
(add-text-properties 0 len
'(mouse-face window-tool-bar-button-hover
keymap window-tool-bar--button-keymap
face window-tool-bar-button)
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
str))
(t
(put-text-property 0 len
'face
'window-tool-bar-button-disabled
str)))
(when-let* ((spec (and image-start image-end
(plist-get menu-item :image))))
(put-text-property image-start image-end
'display
(append spec
(if enabled '(:margin 2 :ascent center)
'(:margin 2 :ascent center
:conversion disabled)))
str))
(let ((help-text (or (plist-get plist :help) name))
(keys (where-is-internal binding nil t)))
(put-text-property 0 len
'help-echo
(if keys
(concat help-text
" ("
(key-description keys)
")")
help-text)
str))
(put-text-property 0 len 'tool-bar-key key str)
str))))))
(defun window-tool-bar--call-button ()
"Call the button that was clicked on in the tab line."
(interactive)
(when (mouse-event-p last-command-event)
(let ((posn (event-start last-command-event)))
;; Commands need to execute with the right buffer and window
;; selected. The selection needs to be permanent for isearch.
(select-window (posn-window posn))
(let* ((str (posn-string posn))
(key (get-text-property (cdr str) 'tool-bar-key (car str)))
(cmd (lookup-key (window-tool-bar--get-keymap) (vector key))))
(call-interactively cmd)))))
(defun window-tool-bar--ignore ()
"Internal command so isearch does not exit on button-down events."
(interactive)
nil)
(defvar window-tool-bar--ignored-event-types
(let ((list (append
'(mouse-movement pinch
wheel-down wheel-up wheel-left wheel-right)
;; Prior to emacs 30, wheel events could also surface as
;; mouse-<NUM> buttons.
(static-if (< emacs-major-version 30)
(list
mouse-wheel-down-event mouse-wheel-up-event
mouse-wheel-left-event mouse-wheel-right-event
(bound-and-true-p mouse-wheel-down-alternate-event)
(bound-and-true-p mouse-wheel-up-alternate-event)
(bound-and-true-p mouse-wheel-left-alternate-event)
(bound-and-true-p mouse-wheel-right-alternate-event))
nil))))
(delete-dups (delete nil list)))
"Cache for `window-tool-bar--last-command-triggers-refresh-p'.")
(defun window-tool-bar--last-command-triggers-refresh-p ()
"Test if the recent command or event should trigger a tool bar refresh."
(let ((type (event-basic-type last-command-event)))
(and
;; Assume that key presses and button presses are the only user
;; interactions that can alter the tool bar. Specifically, this
;; excludes mouse movement, mouse wheel scroll, and pinch.
(not (member type window-tool-bar--ignored-event-types))
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
;; Assume that any command that triggers shift select cannot
;; alter the tool bar. This excludes pure navigation commands.
(not (window-tool-bar--command-triggers-shift-select-p last-command))
;; Assume that self-insert-command won't alter the tool bar.
;; This is the most commonly executed command.
(not (eq last-command 'self-insert-command)))))
(defun window-tool-bar--command-triggers-shift-select-p (command)
"Test if COMMAND would trigger shift select."
(let* ((form (interactive-form command))
(spec (car-safe (cdr-safe form))))
(and (eq (car-safe form) 'interactive)
(stringp spec)
(seq-position spec ?^))))
;;;###autoload
(define-minor-mode window-tool-bar-mode
"Toggle display of the tool bar in the tab line of the current buffer."
:global nil
(let ((should-display (and window-tool-bar-mode
tool-bar-map))
(default-value '(:eval (window-tool-bar-string))))
;; Preserve existing tab-line set outside of this mode
(if (or (null tab-line-format)
(equal tab-line-format default-value))
(if should-display
(setq tab-line-format default-value)
(setq tab-line-format nil))
(message
"tab-line-format set outside of window-tool-bar-mode, currently `%S'"
tab-line-format))))
;;;###autoload
(define-globalized-minor-mode global-window-tool-bar-mode
window-tool-bar-mode window-tool-bar--turn-on
:group 'window-tool-bar
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
:package-version '(window-tool-bar . "0.1")
(add-hook 'isearch-mode-hook #'window-tool-bar--turn-on)
(add-hook 'isearch-mode-end-hook #'window-tool-bar--turn-on))
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
(defun window-tool-bar--turn-on ()
"Internal function called by the command `global-window-tool-bar-mode'."
(when global-window-tool-bar-mode
(window-tool-bar-mode 1)))
;;; Display styling:
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
(defcustom window-tool-bar-style 'image
"Tool bar style to use for window tool bars.
The meaning is the same as for `tool-bar-style', which see. If
set to the symbol `tool-bar-style', then use the value of
`tool-bar-style' instead.
When images cannot be displayed (see `display-images-p'), the value set
here is ignored and the window tool bar displays text."
:type '(choice
(const :tag "Images" :value image)
(const :tag "Text" :value text)
;; This option would require multiple tool bar lines.
;;(const :tag "Both, text below image" :value both)
(const :tag "Both, text to right of image" :value both-horiz)
(const :tag "Both, text to left of image" :value text-image-horiz)
(const :tag "Inherit tool-bar-style" :value tool-bar-style)
(const :tag "System default" :value nil))
:group 'window-tool-bar
:package-version '(window-tool-bar . "0.3"))
(defun window-tool-bar--style ()
"Return the effective style based on `window-tool-bar-style'.
This also takes into account frame capabilities. If the current
frame cannot display images (see `display-images-p'), then this
will always return the symbol text."
(if (not (display-images-p))
'text
(let ((style window-tool-bar-style))
(when (eq style 'tool-bar-style)
(setf style tool-bar-style))
(unless (memq style '(image text both both-horiz text-image-horiz))
(setf style (if (fboundp 'tool-bar-get-system-style)
(tool-bar-get-system-style)
'image)))
style)))
(defface window-tool-bar-button
'((default
:inherit tab-line)
(((class color) (min-colors 88) (supports :box t))
:box (:line-width -1 :style released-button)
:background "grey85")
;; If the box is not supported, dim the button background a bit.
(((class color) (min-colors 88))
:background "grey70")
(t
:inverse-video t))
"Face used for buttons when the mouse is not hovering over the button."
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
:group 'window-tool-bar
:package-version '(window-tool-bar . "0.2"))
(defface window-tool-bar-button-hover
'((default
:inherit tab-line)
(((class color) (min-colors 88))
:box (:line-width -1 :style released-button)
:background "grey95")
(t
:inverse-video t))
"Face used for buttons when the mouse is hovering over the button."
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
:group 'window-tool-bar
:package-version '(window-tool-bar . "0.2"))
(defface window-tool-bar-button-disabled
'((default
:inherit tab-line)
(((class color) (min-colors 88))
:box (:line-width -1 :style released-button)
:background "grey50"
:foreground "grey70")
(t
:inverse-video t
:background "brightblack"))
"Face used for buttons when the button is disabled."
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
:group 'window-tool-bar
:package-version '(window-tool-bar . "0.2"))
(defface window-tool-bar-button-checked
'((default
:inherit tab-line)
(((supports :box t))
:box (:line-width -1 :style pressed-button)
:background "grey85")
(((class color))
:background "blue"
:foreground "white")
(t
:inverse-video t))
"Face used for buttons when they are toggled."
:group 'window-tool-bar
:package-version '(window-tool-bar . "0.3"))
(defface window-tool-bar-button-checked-hover
'((default
:inherit tab-line)
(((class color) (min-colors 88) (supports :box t))
:box (:line-width -1 :style pressed-button)
:background "grey95")
(((class color))
:background "brightblue"
:foreground "white")
(t
:inverse-video t))
"Face used for buttons when the mouse is hovering over the button."
:group 'window-tool-bar
:package-version '(window-tool-bar . "0.3"))
;;; Workaround for https://debbugs.gnu.org/cgi/bugreport.cgi?bug=68334.
;; This special variable is added in Emacs 30.1.
(defvar tool-bar-always-show-default)
(defun window-tool-bar--get-keymap ()
"Return the tool bar keymap."
(let ((tool-bar-always-show-default nil))
(if (and (version< emacs-version "30")
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
(eq 'text (window-tool-bar--style)))
;; This code path is a less efficient workaround.
(window-tool-bar--make-keymap-1)
(keymap-global-lookup "<tool-bar>"))))
(declare-function image-mask-p "image.c" (spec &optional frame))
(defun window-tool-bar--make-keymap-1 ()
"Patched copy of `tool-bar-make-keymap-1'."
(mapcar (lambda (bind)
(let (image-exp plist)
(when (and (eq (car-safe (cdr-safe bind)) 'menu-item)
;; For the format of menu-items, see node
;; `Extended Menu Items' in the Elisp manual.
(setq plist (nthcdr (if (consp (nth 4 bind)) 5 4)
bind))
(setq image-exp (plist-get plist :image))
(consp image-exp)
(not (eq (car image-exp) 'image))
(fboundp (car image-exp)))
(let ((image (and (display-images-p)
(eval image-exp))))
(unless (and image (image-mask-p image))
(setq image (append image '(:mask heuristic))))
(setq bind (copy-sequence bind)
plist (nthcdr (if (consp (nth 4 bind)) 5 4)
bind))
(plist-put plist :image image)))
bind))
tool-bar-map))
Update window-tool-bar Add support for the remaining tool bar item specs, new user option `window-tool-bar-style', and add support for older Emacs versions. * doc/emacs/windows.texi (Window Tool Bar): Add documentation for new user option `window-tool-bar-style'. * lisp/window-tool-bar.el (customize-package-emacs-version-alist): Add package-version to Emacs version mapping. (window-tool-bar-string): Do not show spacers after hidden buttons. (window-tool-bar--keymap-entry-to-string): Call new function `window-tool-bar--style'. Add handling for :visible, :filter, :button, :vert-only, and :help item specs. Show key bindings. (window-tool-bar--last-command-triggers-refresh-p): Use "cannot" in comment. (window-tool-bar--allow-images): Delete this, it is replaced by new user option `window-tool-bar-style'. (window-tool-bar--use-images): Delete this, it is replaced by new function `window-tool-bar--style'. (window-tool-bar--turn-on): Move earlier in file, no changes. (window-tool-bar-style): New user option supporting all values `tool-bar-style' supports as well as inheriting from tool-bar-style. (window-tool-bar--style): New function to calculate active tool bar style based on `window-tool-bar-style', `tool-bar-style', and frame capabilities. (global-window-tool-bar-mode, window-tool-bar-button) (window-tool-bar-button-hover, window-tool-bar-button-disabled): Retroactively add package-version. (window-tool-bar-button-checked) (window-tool-bar-button-checked-hover): New faces for :button item spec. (window-tool-bar--get-keymap): Call new function `window-tool-bar--style'. (Bug#75844)
2025-02-02 10:11:20 -08:00
(provide 'window-tool-bar)
;;; window-tool-bar.el ends here