1 ;;; wid-browse.el --- Functions for browsing widgets.
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6 ;; Keywords: extensions
8 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
29 ;; Widget browser. See `widget.el'.
36 (eval-when-compile (require 'cl
))
38 (defgroup widget-browse nil
39 "Customization support for browsing widgets."
44 (defvar widget-browse-mode-map nil
45 "Keymap for `widget-browse-mode'.")
47 (unless widget-browse-mode-map
48 (setq widget-browse-mode-map
(make-sparse-keymap))
49 (set-keymap-parent widget-browse-mode-map widget-keymap
)
50 (define-key widget-browse-mode-map
"q" 'bury-buffer
))
52 (easy-menu-define widget-browse-mode-customize-menu
53 widget-browse-mode-map
54 "Menu used in widget browser buffers."
55 (customize-menu-create 'widgets
))
57 (easy-menu-define widget-browse-mode-menu
58 widget-browse-mode-map
59 "Menu used in widget browser buffers."
61 ["Browse" widget-browse t
]
62 ["Browse At" widget-browse-at t
]))
64 (defcustom widget-browse-mode-hook nil
65 "Hook called when entering widget-browse-mode."
67 :group
'widget-browse
)
69 (defun widget-browse-mode ()
70 "Major mode for widget browser buffers.
72 The following commands are available:
74 \\[widget-forward] Move to next button or editable field.
75 \\[widget-backward] Move to previous button or editable field.
76 \\[widget-button-click] Activate button under the mouse pointer.
77 \\[widget-button-press] Activate button under point.
79 Entry to this mode calls the value of `widget-browse-mode-hook'
80 if that value is non-nil."
81 (kill-all-local-variables)
82 (setq major-mode
'widget-browse-mode
84 (use-local-map widget-browse-mode-map
)
85 (easy-menu-add widget-browse-mode-customize-menu
)
86 (easy-menu-add widget-browse-mode-menu
)
87 (run-hooks 'widget-browse-mode-hook
))
89 (put 'widget-browse-mode
'mode-class
'special
)
94 (defun widget-browse-at (pos)
95 "Browse the widget under point."
97 (let* ((field (get-char-property pos
'field
))
98 (button (get-char-property pos
'button
))
99 (doc (get-char-property pos
'widget-doc
))
100 (text (cond (field "This is an editable text area.")
101 (button "This is an active area.")
102 (doc "This is documentation text.")
103 (t "This is unidentified text.")))
104 (widget (or field button doc
)))
106 (widget-browse widget
))
109 (defvar widget-browse-history nil
)
112 (defun widget-browse (widget)
113 "Create a widget browser for WIDGET."
114 (interactive (list (completing-read "Widget: "
117 (get symbol
'widget-type
))
118 t nil
'widget-browse-history
)))
120 (setq widget
(intern widget
)))
121 (unless (if (symbolp widget
)
122 (get widget
'widget-type
)
124 (get (widget-type widget
) 'widget-type
)))
125 (error "Not a widget."))
126 ;; Create the buffer.
128 (let ((buffer (format "*Browse %s Widget*" widget
)))
129 (kill-buffer (get-buffer-create buffer
))
130 (switch-to-buffer (get-buffer-create buffer
)))
131 (kill-buffer (get-buffer-create "*Browse Widget*"))
132 (switch-to-buffer (get-buffer-create "*Browse Widget*")))
135 ;; Quick way to get out.
136 ;; (widget-create 'push-button
137 ;; :action (lambda (widget &optional event)
140 ;; (widget-insert "\n")
142 ;; Top text indicating whether it is a class or object browser.
144 (widget-insert "Widget object browser.\n\nClass: ")
145 (widget-insert "Widget class browser.\n\n")
146 (widget-create 'widget-browse
148 :doc
(get widget
'widget-documentation
)
150 (unless (eq (preceding-char) ?
\n)
151 (widget-insert "\n"))
152 (widget-insert "\nSuper: ")
153 (setq widget
(get widget
'widget-type
)))
155 ;; Now show the attributes.
156 (let ((name (car widget
))
159 (widget-create 'widget-browse
164 (setq key
(nth 0 items
)
166 printer
(or (get key
'widget-keyword-printer
)
168 items
(cdr (cdr items
)))
169 (widget-insert "\n" (symbol-name key
) "\n\t")
170 (funcall printer widget key value
)
171 (widget-insert "\n")))
173 (goto-char (point-min)))
176 (defun widget-browse-other-window (&optional widget
)
177 "Show widget browser for WIDGET in other window."
179 (let ((window (selected-window)))
180 (switch-to-buffer-other-window "*Browse Widget*")
182 (widget-browse widget
)
183 (call-interactively 'widget-browse
))
184 (select-window window
)))
187 ;;; The `widget-browse' Widget.
189 (define-widget 'widget-browse
'push-button
190 "Button for creating a widget browser.
191 The :value of the widget shuld be the widget to be browsed."
193 :value-create
'widget-browse-value-create
194 :action
'widget-browse-action
)
196 (defun widget-browse-action (widget &optional event
)
197 ;; Create widget browser for WIDGET's :value.
198 (widget-browse (widget-get widget
:value
)))
200 (defun widget-browse-value-create (widget)
202 (let ((value (widget-get widget
:value
)))
203 (cond ((symbolp value
)
204 (insert (symbol-name value
)))
206 (insert (symbol-name (widget-type value
))))
208 (insert "strange")))))
210 ;;; Keyword Printer Functions.
212 (defun widget-browse-widget (widget key value
)
213 "Insert description of WIDGET's KEY VALUE.
214 VALUE is assumed to be a widget."
215 (widget-create 'widget-browse value
))
217 (defun widget-browse-widgets (widget key value
)
218 "Insert description of WIDGET's KEY VALUE.
219 VALUE is assumed to be a list of widgets."
221 (widget-create 'widget-browse
223 (setq value
(cdr value
))
225 (widget-insert " "))))
227 (defun widget-browse-sexp (widget key value
)
228 "Insert description of WIDGET's KEY VALUE.
229 Nothing is assumed about value."
230 (let ((pp (condition-case signal
232 (error (prin1-to-string signal
)))))
233 (when (string-match "\n\\'" pp
)
234 (setq pp
(substring pp
0 (1- (length pp
)))))
235 (if (cond ((string-match "\n" pp
)
237 ((> (length pp
) (- (window-width) (current-column)))
241 (widget-create 'push-button
243 :action
(lambda (widget &optional event
)
244 (with-output-to-temp-buffer
246 (princ (widget-get widget
:value
))))
249 (defun widget-browse-sexps (widget key value
)
250 "Insert description of WIDGET's KEY VALUE.
251 VALUE is assumed to be a list of widgets."
252 (let ((target (current-column)))
254 (widget-browse-sexp widget key
(car value
))
255 (setq value
(cdr value
))
257 (widget-insert "\n" (make-string target ?\
))))))
259 ;;; Keyword Printers.
261 (put :parent
'widget-keyword-printer
'widget-browse-widget
)
262 (put :children
'widget-keyword-printer
'widget-browse-widgets
)
263 (put :buttons
'widget-keyword-printer
'widget-browse-widgets
)
264 (put :button
'widget-keyword-printer
'widget-browse-widget
)
265 (put :args
'widget-keyword-printer
'widget-browse-sexps
)
267 ;;; Widget Minor Mode.
269 (defvar widget-minor-mode nil
270 "I non-nil, we are in Widget Minor Mode.")
271 (make-variable-buffer-local 'widget-minor-mode
)
273 (defvar widget-minor-mode-map nil
274 "Keymap used in Widget Minor Mode.")
276 (unless widget-minor-mode-map
277 (setq widget-minor-mode-map
(make-sparse-keymap))
278 (set-keymap-parent widget-minor-mode-map widget-keymap
))
281 (defun widget-minor-mode (&optional arg
)
282 "Togle minor mode for traversing widgets.
283 With arg, turn widget mode on if and only if arg is positive."
286 (setq widget-minor-mode
(not widget-minor-mode
)))
288 (setq widget-minor-mode nil
))
290 (setq widget-minor-mode t
)))
291 (force-mode-line-update))
293 (add-to-list 'minor-mode-alist
'(widget-minor-mode " Widget"))
295 (add-to-list 'minor-mode-map-alist
296 (cons 'widget-minor-mode widget-minor-mode-map
))
300 (provide 'wid-browse
)
302 ;; wid-browse.el ends here