2021-03-21 17:04:32 +01:00
|
|
|
;;; wid-browse.el --- functions for browsing widgets -*- lexical-binding: t -*-
|
|
|
|
|
2022-07-21 21:00:41 +02:00
|
|
|
;; Copyright (C) 1997-2022 Free Software Foundation, Inc.
|
2021-03-21 17:04:32 +01:00
|
|
|
|
1997-04-07 13:42:59 +00:00
|
|
|
;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
|
|
|
|
;; Keywords: extensions
|
2010-08-29 12:17:13 -04:00
|
|
|
;; Package: emacs
|
1997-04-07 13:42:59 +00:00
|
|
|
|
1997-05-14 17:31:13 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1997-05-14 17:31:13 +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.
|
1997-05-14 17:31:13 +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.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1997-05-14 17:31:13 +00:00
|
|
|
|
1997-04-07 13:42:59 +00:00
|
|
|
;;; Commentary:
|
2021-03-21 17:04:32 +01:00
|
|
|
|
1997-04-07 13:42:59 +00:00
|
|
|
;; Widget browser. See `widget.el'.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'wid-edit)
|
|
|
|
|
|
|
|
(defgroup widget-browse nil
|
|
|
|
"Customization support for browsing widgets."
|
|
|
|
:group 'widgets)
|
|
|
|
|
|
|
|
;;; The Mode.
|
|
|
|
|
2022-09-13 15:05:28 +02:00
|
|
|
(defvar-keymap widget-browse-mode-map
|
|
|
|
:doc "Keymap for `widget-browse-mode'."
|
|
|
|
:parent widget-keymap
|
|
|
|
"q" #'bury-buffer)
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
|
|
(easy-menu-define widget-browse-mode-customize-menu
|
1997-04-12 17:51:31 +00:00
|
|
|
widget-browse-mode-map
|
|
|
|
"Menu used in widget browser buffers."
|
|
|
|
(customize-menu-create 'widgets))
|
1997-04-07 13:42:59 +00:00
|
|
|
|
2003-02-04 12:29:42 +00:00
|
|
|
(easy-menu-define widget-browse-mode-menu
|
1997-04-07 13:42:59 +00:00
|
|
|
widget-browse-mode-map
|
|
|
|
"Menu used in widget browser buffers."
|
|
|
|
'("Widget"
|
|
|
|
["Browse" widget-browse t]
|
|
|
|
["Browse At" widget-browse-at t]))
|
|
|
|
|
|
|
|
(defcustom widget-browse-mode-hook nil
|
2021-02-11 20:21:16 +01:00
|
|
|
"Hook run after entering `widget-browse-mode'."
|
|
|
|
:type 'hook)
|
1997-04-07 13:42:59 +00:00
|
|
|
|
2021-02-11 20:21:16 +01:00
|
|
|
(define-derived-mode widget-browse-mode special-mode "Widget Browse"
|
1997-04-07 13:42:59 +00:00
|
|
|
"Major mode for widget browser buffers.
|
|
|
|
|
|
|
|
The following commands are available:
|
|
|
|
|
|
|
|
\\[widget-forward] Move to next button or editable field.
|
|
|
|
\\[widget-backward] Move to previous button or editable field.
|
|
|
|
\\[widget-button-click] Activate button under the mouse pointer.
|
2021-02-11 20:21:16 +01:00
|
|
|
\\[widget-button-press] Activate button under point.")
|
1997-04-07 13:42:59 +00:00
|
|
|
|
2000-10-26 09:39:10 +00:00
|
|
|
(put 'widget-browse-mode 'mode-class 'special)
|
|
|
|
|
1997-04-07 13:42:59 +00:00
|
|
|
;;; Commands.
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun widget-browse-at (pos)
|
|
|
|
"Browse the widget under point."
|
|
|
|
(interactive "d")
|
2019-09-15 15:21:08 +02:00
|
|
|
(let* ((field (or
|
|
|
|
;; See comments in `widget-specify-field' to know why we
|
|
|
|
;; need this.
|
|
|
|
(get-char-property pos 'real-field)
|
|
|
|
(get-char-property pos 'field)))
|
1997-06-01 18:03:25 +00:00
|
|
|
(button (get-char-property pos 'button))
|
|
|
|
(doc (get-char-property pos 'widget-doc))
|
1997-04-07 13:42:59 +00:00
|
|
|
(text (cond (field "This is an editable text area.")
|
|
|
|
(button "This is an active area.")
|
|
|
|
(doc "This is documentation text.")
|
|
|
|
(t "This is unidentified text.")))
|
|
|
|
(widget (or field button doc)))
|
|
|
|
(when widget
|
|
|
|
(widget-browse widget))
|
|
|
|
(message text)))
|
|
|
|
|
|
|
|
(defvar widget-browse-history nil)
|
|
|
|
|
1997-04-12 17:51:31 +00:00
|
|
|
;;;###autoload
|
1997-04-07 13:42:59 +00:00
|
|
|
(defun widget-browse (widget)
|
|
|
|
"Create a widget browser for WIDGET."
|
2003-02-04 12:29:42 +00:00
|
|
|
(interactive (list (completing-read "Widget: "
|
1997-04-07 13:42:59 +00:00
|
|
|
obarray
|
|
|
|
(lambda (symbol)
|
|
|
|
(get symbol 'widget-type))
|
|
|
|
t nil 'widget-browse-history)))
|
|
|
|
(if (stringp widget)
|
|
|
|
(setq widget (intern widget)))
|
|
|
|
(unless (if (symbolp widget)
|
|
|
|
(get widget 'widget-type)
|
|
|
|
(and (consp widget)
|
|
|
|
(get (widget-type widget) 'widget-type)))
|
2001-07-16 12:23:00 +00:00
|
|
|
(error "Not a widget"))
|
1997-04-07 13:42:59 +00:00
|
|
|
;; Create the buffer.
|
|
|
|
(if (symbolp widget)
|
|
|
|
(let ((buffer (format "*Browse %s Widget*" widget)))
|
|
|
|
(kill-buffer (get-buffer-create buffer))
|
|
|
|
(switch-to-buffer (get-buffer-create buffer)))
|
|
|
|
(kill-buffer (get-buffer-create "*Browse Widget*"))
|
|
|
|
(switch-to-buffer (get-buffer-create "*Browse Widget*")))
|
|
|
|
(widget-browse-mode)
|
2003-02-04 12:29:42 +00:00
|
|
|
|
1997-04-07 13:42:59 +00:00
|
|
|
;; Top text indicating whether it is a class or object browser.
|
|
|
|
(if (listp widget)
|
|
|
|
(widget-insert "Widget object browser.\n\nClass: ")
|
|
|
|
(widget-insert "Widget class browser.\n\n")
|
|
|
|
(widget-create 'widget-browse
|
|
|
|
:format "%[%v%]\n%d"
|
|
|
|
:doc (get widget 'widget-documentation)
|
|
|
|
widget)
|
|
|
|
(unless (eq (preceding-char) ?\n)
|
|
|
|
(widget-insert "\n"))
|
|
|
|
(widget-insert "\nSuper: ")
|
|
|
|
(setq widget (get widget 'widget-type)))
|
|
|
|
|
|
|
|
;; Now show the attributes.
|
|
|
|
(let ((name (car widget))
|
|
|
|
(items (cdr widget))
|
|
|
|
key value printer)
|
|
|
|
(widget-create 'widget-browse
|
|
|
|
:format "%[%v%]"
|
|
|
|
name)
|
|
|
|
(widget-insert "\n")
|
|
|
|
(while items
|
|
|
|
(setq key (nth 0 items)
|
|
|
|
value (nth 1 items)
|
|
|
|
printer (or (get key 'widget-keyword-printer)
|
|
|
|
'widget-browse-sexp)
|
|
|
|
items (cdr (cdr items)))
|
|
|
|
(widget-insert "\n" (symbol-name key) "\n\t")
|
|
|
|
(funcall printer widget key value)
|
|
|
|
(widget-insert "\n")))
|
|
|
|
(widget-setup)
|
|
|
|
(goto-char (point-min)))
|
|
|
|
|
1997-04-12 17:51:31 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun widget-browse-other-window (&optional widget)
|
|
|
|
"Show widget browser for WIDGET in other window."
|
|
|
|
(interactive)
|
|
|
|
(let ((window (selected-window)))
|
|
|
|
(switch-to-buffer-other-window "*Browse Widget*")
|
|
|
|
(if widget
|
|
|
|
(widget-browse widget)
|
|
|
|
(call-interactively 'widget-browse))
|
|
|
|
(select-window window)))
|
|
|
|
|
|
|
|
|
1997-04-07 13:42:59 +00:00
|
|
|
;;; The `widget-browse' Widget.
|
|
|
|
|
|
|
|
(define-widget 'widget-browse 'push-button
|
|
|
|
"Button for creating a widget browser.
|
2020-09-21 13:29:10 +02:00
|
|
|
The :value of the widget should be the widget to be browsed."
|
1997-04-07 13:42:59 +00:00
|
|
|
:format "%[[%v]%]"
|
|
|
|
:value-create 'widget-browse-value-create
|
|
|
|
:action 'widget-browse-action)
|
|
|
|
|
2011-04-19 15:44:55 +02:00
|
|
|
(defun widget-browse-action (widget &optional _event)
|
2021-02-11 20:21:16 +01:00
|
|
|
"Create widget browser for :value of WIDGET."
|
1997-04-07 13:42:59 +00:00
|
|
|
(widget-browse (widget-get widget :value)))
|
|
|
|
|
|
|
|
(defun widget-browse-value-create (widget)
|
2021-02-11 20:21:16 +01:00
|
|
|
"Insert type name for WIDGET."
|
1997-04-07 13:42:59 +00:00
|
|
|
(let ((value (widget-get widget :value)))
|
|
|
|
(cond ((symbolp value)
|
|
|
|
(insert (symbol-name value)))
|
|
|
|
((consp value)
|
|
|
|
(insert (symbol-name (widget-type value))))
|
|
|
|
(t
|
|
|
|
(insert "strange")))))
|
|
|
|
|
|
|
|
;;; Keyword Printer Functions.
|
|
|
|
|
2011-04-19 15:44:55 +02:00
|
|
|
(defun widget-browse-widget (_widget _key value)
|
1997-04-07 13:42:59 +00:00
|
|
|
"Insert description of WIDGET's KEY VALUE.
|
|
|
|
VALUE is assumed to be a widget."
|
|
|
|
(widget-create 'widget-browse value))
|
|
|
|
|
2011-04-19 15:44:55 +02:00
|
|
|
(defun widget-browse-widgets (_widget _key value)
|
1997-04-07 13:42:59 +00:00
|
|
|
"Insert description of WIDGET's KEY VALUE.
|
|
|
|
VALUE is assumed to be a list of widgets."
|
|
|
|
(while value
|
|
|
|
(widget-create 'widget-browse
|
|
|
|
(car value))
|
|
|
|
(setq value (cdr value))
|
|
|
|
(when value
|
|
|
|
(widget-insert " "))))
|
|
|
|
|
2011-04-19 15:44:55 +02:00
|
|
|
(defun widget-browse-sexp (_widget _key value)
|
1997-04-07 13:42:59 +00:00
|
|
|
"Insert description of WIDGET's KEY VALUE.
|
|
|
|
Nothing is assumed about value."
|
|
|
|
(let ((pp (condition-case signal
|
|
|
|
(pp-to-string value)
|
|
|
|
(error (prin1-to-string signal)))))
|
|
|
|
(when (string-match "\n\\'" pp)
|
|
|
|
(setq pp (substring pp 0 (1- (length pp)))))
|
Use string-search instead of string-match[-p]
`string-search` is easier to understand, less error-prone, much
faster, does not pollute the regexp cache, and does not mutate global
state. Use it where applicable and obviously safe (erring on the
conservative side).
* admin/authors.el (authors-canonical-file-name)
(authors-scan-change-log):
* lisp/apropos.el (apropos-command)
(apropos-documentation-property, apropos-symbols-internal):
* lisp/arc-mode.el (archive-arc-summarize)
(archive-zoo-summarize):
* lisp/calc/calc-aent.el (math-read-factor):
* lisp/calc/calc-ext.el (math-read-big-expr)
(math-format-nice-expr, math-format-number-fancy):
* lisp/calc/calc-forms.el (math-read-angle-brackets):
* lisp/calc/calc-graph.el (calc-graph-set-range):
* lisp/calc/calc-keypd.el (calc-keypad-press):
* lisp/calc/calc-lang.el (tex, latex, math-read-big-rec):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-user-define-permanent, math-define-exp):
* lisp/calc/calc.el (calc-record, calcDigit-key)
(calc-count-lines):
* lisp/calc/calcalg2.el (calc-solve-for, calc-poly-roots)
(math-do-integral):
* lisp/calc/calcalg3.el (calc-find-root, calc-find-minimum)
(calc-get-fit-variables):
* lisp/cedet/ede/speedbar.el (ede-tag-expand):
* lisp/cedet/semantic/java.el (semantic-java-expand-tag):
* lisp/cedet/semantic/sb.el (semantic-sb-show-extra)
(semantic-sb-expand-group):
* lisp/cedet/semantic/wisent/python.el
(semantic-python-instance-variable-p):
* lisp/cus-edit.el (get):
* lisp/descr-text.el (describe-text-sexp):
* lisp/dired-aux.el (dired-compress-file):
* lisp/dired-x.el (dired-make-relative-symlink):
* lisp/dired.el (dired-glob-regexp):
* lisp/dos-fns.el (dos-convert-standard-filename, dos-8+3-filename):
* lisp/edmacro.el (edmacro-format-keys):
* lisp/emacs-lisp/eieio-opt.el (eieio-sb-expand):
* lisp/emacs-lisp/eieio-speedbar.el (eieio-speedbar-object-expand):
* lisp/emacs-lisp/lisp-mnt.el (lm-keywords-list):
* lisp/emacs-lisp/warnings.el (display-warning):
* lisp/emulation/viper-ex.el (viper-ex-read-file-name)
(ex-print-display-lines):
* lisp/env.el (read-envvar-name, setenv):
* lisp/epa-mail.el (epa-mail-encrypt):
* lisp/epg.el (epg--start):
* lisp/erc/erc-backend.el (erc-parse-server-response):
* lisp/erc/erc-dcc.el (erc-dcc-member):
* lisp/erc/erc-speedbar.el (erc-speedbar-expand-server)
(erc-speedbar-expand-channel, erc-speedbar-expand-user):
* lisp/erc/erc.el (erc-send-input):
* lisp/eshell/em-glob.el (eshell-glob-entries):
* lisp/eshell/esh-proc.el (eshell-needs-pipe-p):
* lisp/eshell/esh-util.el (eshell-convert):
* lisp/eshell/esh-var.el (eshell-envvar-names):
* lisp/faces.el (x-resolve-font-name):
* lisp/ffap.el (ffap-file-at-point):
* lisp/files.el (wildcard-to-regexp, shell-quote-wildcard-pattern):
* lisp/forms.el (forms--update):
* lisp/frameset.el (frameset-filter-unshelve-param):
* lisp/gnus/gnus-art.el (article-decode-charset):
* lisp/gnus/gnus-kill.el (gnus-kill-parse-rn-kill-file):
* lisp/gnus/gnus-mlspl.el (gnus-group-split-fancy):
* lisp/gnus/gnus-msg.el (gnus-summary-resend-message-insert-gcc)
(gnus-inews-insert-gcc):
* lisp/gnus/gnus-rfc1843.el (rfc1843-decode-article-body):
* lisp/gnus/gnus-search.el (gnus-search-indexed-parse-output)
(gnus-search--complete-key-data):
* lisp/gnus/gnus-spec.el (gnus-parse-simple-format):
* lisp/gnus/gnus-sum.el (gnus-summary-refer-article):
* lisp/gnus/gnus-util.el (gnus-extract-address-components)
(gnus-newsgroup-directory-form):
* lisp/gnus/gnus-uu.el (gnus-uu-grab-view):
* lisp/gnus/gnus.el (gnus-group-native-p, gnus-short-group-name):
* lisp/gnus/message.el (message-check-news-header-syntax)
(message-make-message-id, message-user-mail-address)
(message-make-fqdn, message-get-reply-headers, message-followup):
* lisp/gnus/mm-decode.el (mm-dissect-buffer):
* lisp/gnus/nnheader.el (nnheader-insert):
* lisp/gnus/nnimap.el (nnimap-process-quirk)
(nnimap-imap-ranges-to-gnus-ranges):
* lisp/gnus/nnmaildir.el (nnmaildir--ensure-suffix):
* lisp/gnus/nnmairix.el (nnmairix-determine-original-group-from-path):
* lisp/gnus/nnrss.el (nnrss-match-macro):
* lisp/gnus/nntp.el (nntp-find-group-and-number):
* lisp/help-fns.el (help--symbol-completion-table-affixation):
* lisp/help.el (help-function-arglist):
* lisp/hippie-exp.el (he-concat-directory-file-name):
* lisp/htmlfontify.el (hfy-relstub):
* lisp/ido.el (ido-make-prompt, ido-complete, ido-copy-current-word)
(ido-exhibit):
* lisp/image/image-converter.el (image-convert-p):
* lisp/info-xref.el (info-xref-docstrings):
* lisp/info.el (Info-toc-build, Info-follow-reference)
(Info-backward-node, Info-finder-find-node)
(Info-speedbar-expand-node):
* lisp/international/mule-diag.el (print-fontset-element):
* lisp/language/korea-util.el (default-korean-keyboard):
* lisp/linum.el (linum-after-change):
* lisp/mail/ietf-drums.el (ietf-drums-parse-address):
* lisp/mail/mail-utils.el (mail-dont-reply-to):
* lisp/mail/rfc2047.el (rfc2047-encode-1, rfc2047-decode-string):
* lisp/mail/rfc2231.el (rfc2231-parse-string):
* lisp/mail/rmailkwd.el (rmail-set-label):
* lisp/mail/rmailsum.el (rmail-header-summary):
* lisp/mail/smtpmail.el (smtpmail-maybe-append-domain)
(smtpmail-user-mail-address):
* lisp/mail/uce.el (uce-reply-to-uce):
* lisp/man.el (Man-default-man-entry):
* lisp/mh-e/mh-alias.el (mh-alias-gecos-name)
(mh-alias-minibuffer-confirm-address):
* lisp/mh-e/mh-comp.el (mh-forwarded-letter-subject):
* lisp/mh-e/mh-speed.el (mh-speed-parse-flists-output):
* lisp/mh-e/mh-utils.el (mh-collect-folder-names-filter)
(mh-folder-completion-function):
* lisp/minibuffer.el (completion--make-envvar-table)
(completion-file-name-table, completion-flex-try-completion)
(completion-flex-all-completions):
* lisp/mpc.el (mpc--proc-quote-string, mpc-cmd-special-tag-p)
(mpc-constraints-tag-lookup):
* lisp/net/ange-ftp.el (ange-ftp-send-cmd)
(ange-ftp-allow-child-lookup):
* lisp/net/mailcap.el (mailcap-mime-types):
* lisp/net/mairix.el (mairix-search-thread-this-article):
* lisp/net/pop3.el (pop3-open-server):
* lisp/net/soap-client.el (soap-decode-xs-complex-type):
* lisp/net/socks.el (socks-filter):
* lisp/nxml/nxml-outln.el (nxml-highlighted-qname):
* lisp/nxml/rng-cmpct.el (rng-c-expand-name, rng-c-expand-datatype):
* lisp/nxml/rng-uri.el (rng-uri-file-name-1):
* lisp/obsolete/complete.el (partial-completion-mode)
(PC-do-completion):
* lisp/obsolete/longlines.el (longlines-encode-string):
* lisp/obsolete/nnir.el (nnir-compose-result):
* lisp/obsolete/terminal.el (te-quote-arg-for-sh):
* lisp/obsolete/tpu-edt.el (tpu-check-search-case):
* lisp/obsolete/url-ns.el (isPlainHostName):
* lisp/pcmpl-unix.el (pcomplete/scp):
* lisp/play/dunnet.el (dun-listify-string2, dun-get-path)
(dun-unix-parse, dun-doassign, dun-cat, dun-batch-unix-interface):
* lisp/progmodes/ebnf2ps.el: (ebnf-eps-header-footer-comment):
* lisp/progmodes/gdb-mi.el (gdb-var-delete)
(gdb-speedbar-expand-node, gdbmi-bnf-incomplete-record-result):
* lisp/progmodes/gud.el (gud-find-expr):
* lisp/progmodes/idlw-help.el (idlwave-do-context-help1):
* lisp/progmodes/idlw-shell.el (idlwave-shell-mode)
(idlwave-shell-filter-hidden-output, idlwave-shell-filter):
* lisp/progmodes/idlwave.el (idlwave-skip-label-or-case)
(idlwave-routine-info):
* lisp/progmodes/octave.el (inferior-octave-completion-at-point):
* lisp/progmodes/sh-script.el (sh-add-completer):
* lisp/progmodes/sql.el (defun):
* lisp/progmodes/xscheme.el (xscheme-process-filter):
* lisp/replace.el (query-replace-compile-replacement)
(map-query-replace-regexp):
* lisp/shell.el (shell--command-completion-data)
(shell-environment-variable-completion):
* lisp/simple.el (display-message-or-buffer):
* lisp/speedbar.el (speedbar-dired, speedbar-tag-file)
(speedbar-tag-expand):
* lisp/subr.el (split-string-and-unquote):
* lisp/tar-mode.el (tar-extract):
* lisp/term.el (term-command-hook, serial-read-name):
* lisp/textmodes/bibtex.el (bibtex-print-help-message):
* lisp/textmodes/ispell.el (ispell-lookup-words, ispell-filter)
(ispell-parse-output, ispell-buffer-local-parsing):
* lisp/textmodes/reftex-cite.el (reftex-do-citation):
* lisp/textmodes/reftex-parse.el (reftex-notice-new):
* lisp/textmodes/reftex-ref.el (reftex-show-entry):
* lisp/textmodes/reftex.el (reftex-compile-variables):
* lisp/textmodes/tex-mode.el (tex-send-command)
(tex-start-tex, tex-append):
* lisp/thingatpt.el (thing-at-point-url-at-point):
* lisp/tmm.el (tmm-add-one-shortcut):
* lisp/transient.el (transient-format-key):
* lisp/url/url-auth.el (url-basic-auth)
(url-digest-auth-directory-id-assoc):
* lisp/url/url-news.el (url-news):
* lisp/url/url-util.el (url-parse-query-string):
* lisp/vc/vc-cvs.el (vc-cvs-parse-entry):
* lisp/wid-browse.el (widget-browse-sexp):
* lisp/woman.el (woman-parse-colon-path, woman-mini-help)
(WoMan-getpage-in-background, woman-negative-vertical-space):
* lisp/xml.el:
* test/lisp/emacs-lisp/check-declare-tests.el
(check-declare-tests-warn):
* test/lisp/files-tests.el
(files-tests-file-name-non-special-dired-compress-handler):
* test/lisp/net/network-stream-tests.el (server-process-filter):
* test/src/coding-tests.el (ert-test-unibyte-buffer-dos-eol-decode):
Use `string-search` instead of `string-match` and `string-match-p`.
2021-08-09 11:20:00 +02:00
|
|
|
(if (cond ((string-search "\n" pp)
|
1997-04-07 13:42:59 +00:00
|
|
|
nil)
|
|
|
|
((> (length pp) (- (window-width) (current-column)))
|
|
|
|
nil)
|
|
|
|
(t t))
|
|
|
|
(widget-insert pp)
|
|
|
|
(widget-create 'push-button
|
|
|
|
:tag "show"
|
2011-04-19 15:44:55 +02:00
|
|
|
:action (lambda (widget &optional _event)
|
1997-04-07 13:42:59 +00:00
|
|
|
(with-output-to-temp-buffer
|
|
|
|
"*Pp Eval Output*"
|
|
|
|
(princ (widget-get widget :value))))
|
|
|
|
pp))))
|
|
|
|
|
|
|
|
(defun widget-browse-sexps (widget key value)
|
|
|
|
"Insert description of WIDGET's KEY VALUE.
|
|
|
|
VALUE is assumed to be a list of widgets."
|
|
|
|
(let ((target (current-column)))
|
|
|
|
(while value
|
|
|
|
(widget-browse-sexp widget key (car value))
|
|
|
|
(setq value (cdr value))
|
|
|
|
(when value
|
|
|
|
(widget-insert "\n" (make-string target ?\ ))))))
|
|
|
|
|
|
|
|
;;; Keyword Printers.
|
|
|
|
|
|
|
|
(put :parent 'widget-keyword-printer 'widget-browse-widget)
|
|
|
|
(put :children 'widget-keyword-printer 'widget-browse-widgets)
|
|
|
|
(put :buttons 'widget-keyword-printer 'widget-browse-widgets)
|
|
|
|
(put :button 'widget-keyword-printer 'widget-browse-widget)
|
|
|
|
(put :args 'widget-keyword-printer 'widget-browse-sexps)
|
|
|
|
|
1997-04-24 16:53:55 +00:00
|
|
|
;;; Widget Minor Mode.
|
|
|
|
|
2022-09-13 15:05:28 +02:00
|
|
|
(defvar-keymap widget-minor-mode-map
|
|
|
|
:doc "Keymap used in Widget Minor Mode."
|
|
|
|
:parent widget-keymap)
|
1997-04-24 16:53:55 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
2007-09-10 03:26:58 +00:00
|
|
|
(define-minor-mode widget-minor-mode
|
2018-07-01 23:34:53 -04:00
|
|
|
"Minor mode for traversing widgets."
|
2007-09-10 03:26:58 +00:00
|
|
|
:lighter " Widget")
|
1997-04-24 16:53:55 +00:00
|
|
|
|
1997-04-07 13:42:59 +00:00
|
|
|
(provide 'wid-browse)
|
|
|
|
|
2001-07-16 12:23:00 +00:00
|
|
|
;;; wid-browse.el ends here
|