scheme interaction mode
[bpt/emacs.git] / lisp / tree-widget.el
CommitLineData
3212eb61
DP
1;;; tree-widget.el --- Tree widget
2
ba318903 3;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
3212eb61
DP
4
5;; Author: David Ponce <david@dponce.com>
6;; Maintainer: David Ponce <david@dponce.com>
7;; Created: 16 Feb 2001
8;; Keywords: extensions
9
10;; This file is part of GNU Emacs
11
eb3fa2cf
GM
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 3 of the License, or
15;; (at your option) any later version.
3212eb61 16
eb3fa2cf
GM
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.
3212eb61
DP
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
3212eb61
DP
24
25;;; Commentary:
26;;
27;; This library provide a tree widget useful to display data
28;; structures organized in a hierarchical order.
29;;
30;; The following properties are specific to the tree widget:
31;;
f2cb69d5
DP
32;; :open
33;; Set to non-nil to expand the tree. By default the tree is
34;; collapsed.
3212eb61 35;;
f2cb69d5
DP
36;; :node
37;; Specify the widget used to represent the value of a tree node.
38;; By default this is an `item' widget which displays the
39;; tree-widget :tag property value if defined, or a string
40;; representation of the tree-widget value.
3212eb61 41;;
f2cb69d5
DP
42;; :keep
43;; Specify a list of properties to keep when the tree is collapsed
44;; so they can be recovered when the tree is expanded. This
45;; property can be used in child widgets too.
3212eb61 46;;
f2cb69d5
DP
47;; :expander (obsoletes :dynargs)
48;; Specify a function to be called to dynamically provide the
49;; tree's children in response to an expand request. This function
50;; will be passed the tree widget and must return a list of child
f35262f9
DP
51;; widgets. Child widgets returned by the :expander function are
52;; stored in the :args property of the tree widget.
3212eb61 53;;
f35262f9
DP
54;; :expander-p
55;; Specify a predicate which must return non-nil to indicate that
56;; the :expander function above has to be called. By default, to
57;; speed up successive expand requests, the :expander-p predicate
58;; return non-nil when the :args value is nil. So, by default, to
59;; refresh child values, it is necessary to set the :args property
60;; to nil, then redraw the tree.
3212eb61 61;;
0cfce69f
DP
62;; :open-icon (default `tree-widget-open-icon')
63;; :close-icon (default `tree-widget-close-icon')
64;; :empty-icon (default `tree-widget-empty-icon')
65;; :leaf-icon (default `tree-widget-leaf-icon')
66;; Those properties define the icon widgets associated to tree
67;; nodes. Icon widgets must derive from the `tree-widget-icon'
68;; widget. The :tag and :glyph-name property values are
69;; respectively used when drawing the text and graphic
70;; representation of the tree. The :tag value must be a string
71;; that represent a node icon, like "[+]" for example. The
72;; :glyph-name value must the name of an image found in the current
73;; theme, like "close" for example (see also the variable
74;; `tree-widget-theme').
3212eb61 75;;
0cfce69f
DP
76;; :guide (default `tree-widget-guide')
77;; :end-guide (default `tree-widget-end-guide')
78;; :no-guide (default `tree-widget-no-guide')
79;; :handle (default `tree-widget-handle')
80;; :no-handle (default `tree-widget-no-handle')
81;; Those properties define `item'-like widgets used to draw the
82;; tree guide lines. The :tag property value is used when drawing
83;; the text representation of the tree. The graphic look and feel
84;; is given by the images named "guide", "no-guide", "end-guide",
85;; "handle", and "no-handle" found in the current theme (see also
86;; the variable `tree-widget-theme').
3212eb61 87;;
0cfce69f 88;; These are the default :tag values for icons, and guide lines:
3212eb61 89;;
0cfce69f
DP
90;; open-icon "[-]"
91;; close-icon "[+]"
92;; empty-icon "[X]"
93;; leaf-icon ""
94;; guide " |"
95;; no-guide " "
96;; end-guide " `"
97;; handle "-"
98;; no-handle " "
99;;
100;; The text representation of a tree looks like this:
101;;
102;; [-] 1 (open-icon :node)
103;; |-[+] 1.0 (guide+handle+close-icon :node)
104;; |-[X] 1.1 (guide+handle+empty-icon :node)
105;; `-[-] 1.2 (end-guide+handle+open-icon :node)
106;; |- 1.2.1 (no-guide+no-handle+guide+handle+leaf-icon leaf)
107;; `- 1.2.2 (no-guide+no-handle+end-guide+handle+leaf-icon leaf)
3212eb61 108;;
f2cb69d5
DP
109;; By default, images will be used instead of strings to draw a
110;; nice-looking tree. See the `tree-widget-image-enable',
111;; `tree-widget-themes-directory', and `tree-widget-theme' options for
112;; more details.
3212eb61
DP
113
114;;; History:
115;;
116
117;;; Code:
3212eb61
DP
118(require 'wid-edit)
119\f
120;;; Customization
121;;
122(defgroup tree-widget nil
f2cb69d5 123 "Customization support for the Tree Widget library."
bf247b6e 124 :version "22.1"
3212eb61
DP
125 :group 'widgets)
126
d811a2c4
GM
127(defcustom tree-widget-image-enable (if (fboundp 'display-images-p)
128 (display-images-p))
129 "Non-nil means that tree-widget will try to use images."
3212eb61
DP
130 :type 'boolean
131 :group 'tree-widget)
132
01c5577a
DP
133(defvar tree-widget-themes-load-path
134 '(load-path
135 (let ((dir (if (fboundp 'locate-data-directory)
136 (locate-data-directory "tree-widget") ;; XEmacs
137 data-directory)))
138 (and dir (list dir (expand-file-name "images" dir))))
139 )
37d2ef66
DP
140 "List of locations in which to search for the themes sub-directory.
141Each element is an expression that will be recursively evaluated until
142it returns a single directory or a list of directories.
01c5577a
DP
143The default is to search in the `load-path' first, then in the
144\"images\" sub directory in the data directory, then in the data
145directory.
146The data directory is the value of the variable `data-directory' on
147Emacs, and what `(locate-data-directory \"tree-widget\")' returns on
148XEmacs.")
149
3212eb61 150(defcustom tree-widget-themes-directory "tree-widget"
9201cc28 151 "Name of the directory in which to look for an image theme.
3212eb61 152When nil use the directory where the tree-widget library is located.
37d2ef66
DP
153When it is a relative name, search in all occurrences of that sub
154directory in the path specified by `tree-widget-themes-load-path'.
f2cb69d5 155The default is to use the \"tree-widget\" relative name."
3212eb61 156 :type '(choice (const :tag "Default" "tree-widget")
37d2ef66 157 (const :tag "Where is this library" nil)
3212eb61
DP
158 (directory :format "%{%t%}:\n%v"))
159 :group 'tree-widget)
160
161(defcustom tree-widget-theme nil
9201cc28 162 "Name of the theme in which to look for images.
37d2ef66
DP
163This is a sub directory of the themes directory specified by the
164`tree-widget-themes-directory' option.
165The default theme is \"default\". When an image is not found in a
166theme, it is searched in its parent theme.
0cfce69f
DP
167
168A complete theme must at least contain images with these file names
169with a supported extension (see also `tree-widget-image-formats'):
f2cb69d5 170
f2cb69d5
DP
171\"guide\"
172 A vertical guide line.
173\"no-guide\"
174 An invisible vertical guide line.
175\"end-guide\"
176 End of a vertical guide line.
177\"handle\"
0cfce69f 178 Horizontal guide line that joins the vertical guide line to an icon.
f2cb69d5 179\"no-handle\"
0cfce69f
DP
180 An invisible handle.
181
182Plus images whose name is given by the :glyph-name property of the
183icon widgets used to draw the tree. By default these images are used:
184
185\"open\"
186 Icon associated to an expanded tree.
187\"close\"
188 Icon associated to a collapsed tree.
189\"empty\"
190 Icon associated to an expanded tree with no child.
191\"leaf\"
192 Icon associated to a leaf node."
3212eb61
DP
193 :type '(choice (const :tag "Default" nil)
194 (string :tag "Name"))
195 :group 'tree-widget)
196
197(defcustom tree-widget-image-properties-emacs
198 '(:ascent center :mask (heuristic t))
9201cc28 199 "Default properties of Emacs images."
3212eb61
DP
200 :type 'plist
201 :group 'tree-widget)
202
203(defcustom tree-widget-image-properties-xemacs
204 nil
9201cc28 205 "Default properties of XEmacs images."
3212eb61
DP
206 :type 'plist
207 :group 'tree-widget)
0cfce69f
DP
208
209(defcustom tree-widget-space-width 0.5
210 "Amount of space between an icon image and a node widget.
211Must be a valid space :width display property."
212 :group 'tree-widget
213 :type 'sexp)
3212eb61
DP
214\f
215;;; Image support
216;;
f2cb69d5 217(eval-and-compile ;; Emacs/XEmacs compatibility stuff
3212eb61
DP
218 (cond
219 ;; XEmacs
220 ((featurep 'xemacs)
221 (defsubst tree-widget-use-image-p ()
222 "Return non-nil if image support is currently enabled."
223 (and tree-widget-image-enable
224 widget-glyph-enable
225 (console-on-window-system-p)))
226 (defsubst tree-widget-create-image (type file &optional props)
f2cb69d5
DP
227 "Create an image of type TYPE from FILE, and return it.
228Give the image the specified properties PROPS."
3212eb61
DP
229 (apply 'make-glyph `([,type :file ,file ,@props])))
230 (defsubst tree-widget-image-formats ()
f2cb69d5 231 "Return the alist of image formats/file name extensions.
3212eb61
DP
232See also the option `widget-image-file-name-suffixes'."
233 (delq nil
234 (mapcar
235 #'(lambda (fmt)
236 (and (valid-image-instantiator-format-p (car fmt)) fmt))
237 widget-image-file-name-suffixes)))
238 )
f2cb69d5 239 ;; Emacs
3212eb61
DP
240 (t
241 (defsubst tree-widget-use-image-p ()
242 "Return non-nil if image support is currently enabled."
243 (and tree-widget-image-enable
244 widget-image-enable
245 (display-images-p)))
246 (defsubst tree-widget-create-image (type file &optional props)
f2cb69d5
DP
247 "Create an image of type TYPE from FILE, and return it.
248Give the image the specified properties PROPS."
3212eb61
DP
249 (apply 'create-image `(,file ,type nil ,@props)))
250 (defsubst tree-widget-image-formats ()
f2cb69d5 251 "Return the alist of image formats/file name extensions.
01c5577a 252See also the option `widget-image-conversion'."
3212eb61
DP
253 (delq nil
254 (mapcar
255 #'(lambda (fmt)
256 (and (image-type-available-p (car fmt)) fmt))
257 widget-image-conversion)))
258 ))
259 )
260
261;; Buffer local cache of theme data.
262(defvar tree-widget--theme nil)
263
264(defsubst tree-widget-theme-name ()
265 "Return the current theme name, or nil if no theme is active."
f35262f9
DP
266 (and tree-widget--theme (car (aref tree-widget--theme 0))))
267
268(defsubst tree-widget-set-parent-theme (name)
269 "Set to NAME the parent theme of the current theme.
270The default parent theme is the \"default\" theme."
271 (unless (member name (aref tree-widget--theme 0))
272 (aset tree-widget--theme 0
273 (append (aref tree-widget--theme 0) (list name)))
a32703cb
DP
274 ;; Load the theme setup from the first directory where the theme
275 ;; is found.
276 (catch 'found
277 (dolist (dir (tree-widget-themes-path))
278 (setq dir (expand-file-name name dir))
279 (when (file-accessible-directory-p dir)
280 (throw 'found
281 (load (expand-file-name
282 "tree-widget-theme-setup" dir) t)))))))
f35262f9
DP
283
284(defun tree-widget-set-theme (&optional name)
3212eb61 285 "In the current buffer, set the theme to use for images.
f2cb69d5
DP
286The current buffer must be where the tree widget is drawn.
287Optional argument NAME is the name of the theme to use. It defaults
3212eb61 288to the value of the variable `tree-widget-theme'.
f35262f9
DP
289Does nothing if NAME is already the current theme.
290
291If there is a \"tree-widget-theme-setup\" library in the theme
292directory, load it to setup a parent theme or the images properties.
293Typically it should contain something like this:
294
295 (tree-widget-set-parent-theme \"my-parent-theme\")
296 (tree-widget-set-image-properties
297 (if (featurep 'xemacs)
298 '(:ascent center)
299 '(:ascent center :mask (heuristic t))
300 ))"
3212eb61 301 (or name (setq name (or tree-widget-theme "default")))
f2cb69d5 302 (unless (string-equal name (tree-widget-theme-name))
3212eb61
DP
303 (set (make-local-variable 'tree-widget--theme)
304 (make-vector 4 nil))
f35262f9
DP
305 (tree-widget-set-parent-theme name)
306 (tree-widget-set-parent-theme "default")))
3212eb61 307
a32703cb
DP
308(defun tree-widget--locate-sub-directory (name path &optional found)
309 "Locate all occurrences of the sub-directory NAME in PATH.
310Return a list of absolute directory names in reverse order, or nil if
311not found."
312 (condition-case err
313 (dolist (elt path)
314 (setq elt (eval elt))
315 (cond
316 ((stringp elt)
317 (and (file-accessible-directory-p
318 (setq elt (expand-file-name name elt)))
319 (push elt found)))
320 (elt
321 (setq found (tree-widget--locate-sub-directory
322 name (if (atom elt) (list elt) elt) found)))))
323 (error
324 (message "In tree-widget--locate-sub-directory: %s"
325 (error-message-string err))))
326 found)
327
328(defun tree-widget-themes-path ()
329 "Return the path where to search for a theme.
330It is specified in variable `tree-widget-themes-directory'.
331Return a list of absolute directory names, or nil when no directory
332has been found accessible."
333 (let ((path (aref tree-widget--theme 1)))
01c5577a 334 (cond
a32703cb
DP
335 ;; No directory was found.
336 ((eq path 'void) nil)
337 ;; The list of directories is available in the cache.
338 (path)
01c5577a
DP
339 ;; Use the directory where this library is located.
340 ((null tree-widget-themes-directory)
a32703cb
DP
341 (when (setq path (locate-library "tree-widget"))
342 (setq path (file-name-directory path))
343 (setq path (and (file-accessible-directory-p path)
344 (list path)))
345 ;; Store the result in the cache for later use.
346 (aset tree-widget--theme 1 (or path 'void))
347 path))
01c5577a
DP
348 ;; Check accessibility of absolute directory name.
349 ((file-name-absolute-p tree-widget-themes-directory)
a32703cb
DP
350 (setq path (expand-file-name tree-widget-themes-directory))
351 (setq path (and (file-accessible-directory-p path)
352 (list path)))
353 ;; Store the result in the cache for later use.
354 (aset tree-widget--theme 1 (or path 'void))
355 path)
01c5577a
DP
356 ;; Locate a sub-directory in `tree-widget-themes-load-path'.
357 (t
a32703cb
DP
358 (setq path (nreverse (tree-widget--locate-sub-directory
359 tree-widget-themes-directory
360 tree-widget-themes-load-path)))
361 ;; Store the result in the cache for later use.
362 (aset tree-widget--theme 1 (or path 'void))
363 path))))
3212eb61 364
f2cb69d5 365(defconst tree-widget--cursors
01c5577a
DP
366 ;; Pointer shapes when the mouse pointer is over inactive
367 ;; tree-widget images. This feature works since Emacs 22, and
368 ;; ignored on older versions, and XEmacs.
f2cb69d5 369 '(
f2cb69d5
DP
370 ("guide" . arrow)
371 ("no-guide" . arrow)
372 ("end-guide" . arrow)
373 ("handle" . arrow)
374 ("no-handle" . arrow)
375 ))
376
f35262f9
DP
377(defsubst tree-widget-set-image-properties (props)
378 "In current theme, set images properties to PROPS.
379Does nothing if images properties have already been set for that
380theme."
381 (or (aref tree-widget--theme 2)
382 (aset tree-widget--theme 2 props)))
383
384(defsubst tree-widget-image-properties (name)
385 "Return the properties of image NAME in current theme.
386Default global properties are provided for respectively Emacs and
387XEmacs in the variables `tree-widget-image-properties-emacs', and
388`tree-widget-image-properties-xemacs'."
389 ;; Add the pointer shape
390 (cons :pointer
391 (cons (or (cdr (assoc name tree-widget--cursors)) 'hand)
392 (tree-widget-set-image-properties
393 (if (featurep 'xemacs)
394 tree-widget-image-properties-xemacs
395 tree-widget-image-properties-emacs)))))
396
f2cb69d5
DP
397(defun tree-widget-lookup-image (name)
398 "Look up in current theme for an image with NAME.
f35262f9
DP
399Search first in current theme, then in parent themes (see also the
400function `tree-widget-set-parent-theme').
f2cb69d5
DP
401Return the first image found having a supported format, or nil if not
402found."
f3468eac
GM
403 (let (file)
404 (catch 'found
405 (dolist (default-directory (tree-widget-themes-path))
406 (dolist (dir (aref tree-widget--theme 0))
407 (dolist (fmt (tree-widget-image-formats))
408 (dolist (ext (cdr fmt))
409 (setq file (expand-file-name (concat name ext) dir))
410 (and (file-readable-p file)
411 (file-regular-p file)
412 (throw 'found
413 (tree-widget-create-image
414 (car fmt) file
415 (tree-widget-image-properties name))))))))
416 nil)))
3212eb61
DP
417
418(defun tree-widget-find-image (name)
419 "Find the image with NAME in current theme.
420NAME is an image file name sans extension.
f2cb69d5 421Return the image found, or nil if not found."
3212eb61
DP
422 (when (tree-widget-use-image-p)
423 ;; Ensure there is an active theme.
424 (tree-widget-set-theme (tree-widget-theme-name))
f2cb69d5
DP
425 (let ((image (assoc name (aref tree-widget--theme 3))))
426 ;; The image NAME is found in the cache.
427 (if image
428 (cdr image)
429 ;; Search the image in current, and default themes.
430 (prog1
431 (setq image (tree-widget-lookup-image name))
432 ;; Store image reference in the cache for later use.
433 (push (cons name image) (aref tree-widget--theme 3))))
434 )))
3212eb61
DP
435\f
436;;; Widgets
437;;
42fbd808
DP
438(defun tree-widget-button-click (event)
439 "Move to the position clicked on, and if it is a button, invoke it.
440EVENT is the mouse event received."
441 (interactive "e")
442 (mouse-set-point event)
443 (let ((pos (widget-event-point event)))
444 (if (get-char-property pos 'button)
445 (widget-button-click event))))
446
3212eb61 447(defvar tree-widget-button-keymap
f2cb69d5
DP
448 (let ((km (make-sparse-keymap)))
449 (if (boundp 'widget-button-keymap)
450 ;; XEmacs
451 (progn
452 (set-keymap-parent km widget-button-keymap)
42fbd808 453 (define-key km [button1] 'tree-widget-button-click))
f2cb69d5
DP
454 ;; Emacs
455 (set-keymap-parent km widget-keymap)
42fbd808 456 (define-key km [down-mouse-1] 'tree-widget-button-click))
f2cb69d5
DP
457 km)
458 "Keymap used inside node buttons.
459Handle mouse button 1 click on buttons.")
3212eb61 460
0cfce69f
DP
461(define-widget 'tree-widget-icon 'push-button
462 "Basic widget other tree-widget icons are derived from."
3212eb61
DP
463 :format "%[%t%]"
464 :button-keymap tree-widget-button-keymap ; XEmacs
465 :keymap tree-widget-button-keymap ; Emacs
0cfce69f
DP
466 :create 'tree-widget-icon-create
467 :action 'tree-widget-icon-action
468 :help-echo 'tree-widget-icon-help-echo
3212eb61
DP
469 )
470
0cfce69f
DP
471(define-widget 'tree-widget-open-icon 'tree-widget-icon
472 "Icon for an expanded tree-widget node."
473 :tag "[-]"
474 :glyph-name "open"
3212eb61
DP
475 )
476
0cfce69f
DP
477(define-widget 'tree-widget-empty-icon 'tree-widget-icon
478 "Icon for an expanded tree-widget node with no child."
479 :tag "[X]"
480 :glyph-name "empty"
3212eb61
DP
481 )
482
0cfce69f
DP
483(define-widget 'tree-widget-close-icon 'tree-widget-icon
484 "Icon for a collapsed tree-widget node."
485 :tag "[+]"
486 :glyph-name "close"
3212eb61
DP
487 )
488
0cfce69f
DP
489(define-widget 'tree-widget-leaf-icon 'tree-widget-icon
490 "Icon for a tree-widget leaf node."
491 :tag ""
492 :glyph-name "leaf"
493 :button-face 'default
3212eb61
DP
494 )
495
496(define-widget 'tree-widget-guide 'item
f2cb69d5 497 "Vertical guide line."
3212eb61
DP
498 :tag " |"
499 ;;:tag-glyph (tree-widget-find-image "guide")
500 :format "%t"
501 )
502
503(define-widget 'tree-widget-end-guide 'item
f2cb69d5 504 "End of a vertical guide line."
3212eb61
DP
505 :tag " `"
506 ;;:tag-glyph (tree-widget-find-image "end-guide")
507 :format "%t"
508 )
509
510(define-widget 'tree-widget-no-guide 'item
f2cb69d5 511 "Invisible vertical guide line."
3212eb61
DP
512 :tag " "
513 ;;:tag-glyph (tree-widget-find-image "no-guide")
514 :format "%t"
515 )
516
517(define-widget 'tree-widget-handle 'item
f2cb69d5 518 "Horizontal guide line that joins a vertical guide line to a node."
0cfce69f 519 :tag "-"
3212eb61
DP
520 ;;:tag-glyph (tree-widget-find-image "handle")
521 :format "%t"
522 )
523
524(define-widget 'tree-widget-no-handle 'item
f2cb69d5 525 "Invisible handle."
3212eb61
DP
526 :tag " "
527 ;;:tag-glyph (tree-widget-find-image "no-handle")
528 :format "%t"
529 )
530
531(define-widget 'tree-widget 'default
532 "Tree widget."
533 :format "%v"
f35262f9 534 :convert-widget 'tree-widget-convert-widget
3212eb61 535 :value-get 'widget-value-value-get
f2cb69d5 536 :value-delete 'widget-children-value-delete
3212eb61 537 :value-create 'tree-widget-value-create
0cfce69f
DP
538 :action 'tree-widget-action
539 :help-echo 'tree-widget-help-echo
f35262f9 540 :expander-p 'tree-widget-expander-p
0cfce69f
DP
541 :open-icon 'tree-widget-open-icon
542 :close-icon 'tree-widget-close-icon
543 :empty-icon 'tree-widget-empty-icon
544 :leaf-icon 'tree-widget-leaf-icon
f2cb69d5
DP
545 :guide 'tree-widget-guide
546 :end-guide 'tree-widget-end-guide
547 :no-guide 'tree-widget-no-guide
548 :handle 'tree-widget-handle
549 :no-handle 'tree-widget-no-handle
3212eb61
DP
550 )
551\f
552;;; Widget support functions
553;;
554(defun tree-widget-p (widget)
f2cb69d5 555 "Return non-nil if WIDGET is a tree-widget."
3212eb61
DP
556 (let ((type (widget-type widget)))
557 (while (and type (not (eq type 'tree-widget)))
558 (setq type (widget-type (get type 'widget-type))))
559 (eq type 'tree-widget)))
560
f2cb69d5
DP
561(defun tree-widget-node (widget)
562 "Return WIDGET's :node child widget.
563If not found, setup an `item' widget as default.
564Signal an error if the :node widget is a tree-widget.
565WIDGET is, or derives from, a tree-widget."
3212eb61 566 (let ((node (widget-get widget :node)))
f2cb69d5
DP
567 (if node
568 ;; Check that the :node widget is not a tree-widget.
569 (and (tree-widget-p node)
570 (error "Invalid tree-widget :node %S" node))
571 ;; Setup an item widget as default :node.
3212eb61
DP
572 (setq node `(item :tag ,(or (widget-get widget :tag)
573 (widget-princ-to-string
574 (widget-value widget)))))
575 (widget-put widget :node node))
576 node))
577
3212eb61 578(defun tree-widget-keep (arg widget)
f2cb69d5 579 "Save in ARG the WIDGET's properties specified by :keep."
3212eb61
DP
580 (dolist (prop (widget-get widget :keep))
581 (widget-put arg prop (widget-get widget prop))))
582
583(defun tree-widget-children-value-save (widget &optional args node)
584 "Save WIDGET children values.
f2cb69d5
DP
585WIDGET is, or derives from, a tree-widget.
586Children properties and values are saved in ARGS if non-nil, else in
587WIDGET's :args property value. Properties and values of the
588WIDGET's :node sub-widget are saved in NODE if non-nil, else in
589WIDGET's :node sub-widget."
590 (let ((args (cons (or node (widget-get widget :node))
591 (or args (widget-get widget :args))))
592 (children (widget-get widget :children))
3212eb61
DP
593 arg child)
594 (while (and args children)
595 (setq arg (car args)
596 args (cdr args)
597 child (car children)
598 children (cdr children))
599 (if (tree-widget-p child)
600;;;; The child is a tree node.
601 (progn
602 ;; Backtrack :args and :node properties.
603 (widget-put arg :args (widget-get child :args))
f2cb69d5 604 (widget-put arg :node (widget-get child :node))
3212eb61
DP
605 ;; Save :open property.
606 (widget-put arg :open (widget-get child :open))
607 ;; The node is open.
608 (when (widget-get child :open)
609 ;; Save the widget value.
610 (widget-put arg :value (widget-value child))
611 ;; Save properties specified in :keep.
612 (tree-widget-keep arg child)
613 ;; Save children.
614 (tree-widget-children-value-save
615 child (widget-get arg :args) (widget-get arg :node))))
616;;;; Another non tree node.
f2cb69d5 617 ;; Save the widget value.
3212eb61
DP
618 (widget-put arg :value (widget-value child))
619 ;; Save properties specified in :keep.
f2cb69d5 620 (tree-widget-keep arg child)))))
0cfce69f
DP
621\f
622;;; Widget creation
623;;
624(defvar tree-widget-before-create-icon-functions nil
625 "Hooks run before to create a tree-widget icon.
626Each function is passed the icon widget not yet created.
627The value of the icon widget :node property is a tree :node widget or
628a leaf node widget, not yet created.
629This hook can be used to dynamically change properties of the icon and
630associated node widgets. For example, to dynamically change the look
631and feel of the tree-widget by changing the values of the :tag
632and :glyph-name properties of the icon widget.
633This hook should be local in the buffer setup to display widgets.")
634
635(defun tree-widget-icon-create (icon)
636 "Create the ICON widget."
637 (run-hook-with-args 'tree-widget-before-create-icon-functions icon)
638 (widget-put icon :tag-glyph
639 (tree-widget-find-image (widget-get icon :glyph-name)))
640 ;; Ensure there is at least one char to display the image.
641 (and (widget-get icon :tag-glyph)
642 (equal "" (or (widget-get icon :tag) ""))
643 (widget-put icon :tag " "))
644 (widget-default-create icon)
645 ;; Insert space between the icon and the node widget.
646 (insert-char ? 1)
647 (put-text-property
648 (1- (point)) (point)
649 'display (list 'space :width tree-widget-space-width)))
3212eb61 650
f35262f9
DP
651(defun tree-widget-convert-widget (widget)
652 "Convert :args as widget types in WIDGET."
653 (let ((tree (widget-types-convert-widget widget)))
654 ;; Compatibility
655 (widget-put tree :expander (or (widget-get tree :expander)
656 (widget-get tree :dynargs)))
657 tree))
658
06b60517
JB
659(defvar widget-glyph-enable) ; XEmacs
660
3212eb61 661(defun tree-widget-value-create (tree)
f2cb69d5
DP
662 "Create the TREE tree-widget."
663 (let* ((node (tree-widget-node tree))
664 (flags (widget-get tree :tree-widget--guide-flags))
61194c8d 665 (indent (widget-get tree :indent))
f2cb69d5
DP
666 ;; Setup widget's image support. Looking up for images, and
667 ;; setting widgets' :tag-glyph is done here, to allow to
668 ;; dynamically change the image theme.
669 (widget-image-enable (tree-widget-use-image-p)) ; Emacs
670 (widget-glyph-enable widget-image-enable) ; XEmacs
3212eb61 671 children buttons)
66c20a82 672 (and indent (not (widget-get tree :parent))
61194c8d 673 (insert-char ?\ indent))
3212eb61 674 (if (widget-get tree :open)
f2cb69d5 675;;;; Expanded node.
3bcf793c 676 (let ((args (widget-get tree :args))
f2cb69d5
DP
677 (guide (widget-get tree :guide))
678 (noguide (widget-get tree :no-guide))
679 (endguide (widget-get tree :end-guide))
680 (handle (widget-get tree :handle))
681 (nohandle (widget-get tree :no-handle))
3bcf793c
DP
682 (guidi (tree-widget-find-image "guide"))
683 (noguidi (tree-widget-find-image "no-guide"))
684 (endguidi (tree-widget-find-image "end-guide"))
685 (handli (tree-widget-find-image "handle"))
0cfce69f 686 (nohandli (tree-widget-find-image "no-handle")))
f35262f9
DP
687 ;; Request children at run time, when requested.
688 (when (and (widget-get tree :expander)
689 (widget-apply tree :expander-p))
690 (setq args (mapcar 'widget-convert
691 (widget-apply tree :expander)))
f2cb69d5 692 (widget-put tree :args args))
4ff094a8
DP
693 ;; Defer the node widget creation after icon creation.
694 (widget-put tree :node (widget-convert node))
0cfce69f 695 ;; Create the icon widget for the expanded tree.
3212eb61 696 (push (widget-create-child-and-convert
38d0d987
DP
697 tree (widget-get tree (if args :open-icon :empty-icon))
698 ;; Pass the node widget to child.
699 :node (widget-get tree :node))
3212eb61 700 buttons)
0cfce69f 701 ;; Create the tree node widget.
4ff094a8
DP
702 (push (widget-create-child tree (widget-get tree :node))
703 children)
0cfce69f
DP
704 ;; Update the icon :node with the created node widget.
705 (widget-put (car buttons) :node (car children))
706 ;; Create the tree children.
3212eb61 707 (while args
0cfce69f
DP
708 (setq node (car args)
709 args (cdr args))
3bcf793c 710 (and indent (insert-char ?\ indent))
f2cb69d5 711 ;; Insert guide lines elements from previous levels.
3bcf793c 712 (dolist (f (reverse flags))
3212eb61
DP
713 (widget-create-child-and-convert
714 tree (if f guide noguide)
715 :tag-glyph (if f guidi noguidi))
716 (widget-create-child-and-convert
f2cb69d5
DP
717 tree nohandle :tag-glyph nohandli))
718 ;; Insert guide line element for this level.
3212eb61
DP
719 (widget-create-child-and-convert
720 tree (if args guide endguide)
721 :tag-glyph (if args guidi endguidi))
722 ;; Insert the node handle line
723 (widget-create-child-and-convert
724 tree handle :tag-glyph handli)
0cfce69f
DP
725 (if (tree-widget-p node)
726 ;; Create a sub-tree node.
727 (push (widget-create-child-and-convert
728 tree node :tree-widget--guide-flags
729 (cons (if args t) flags))
730 children)
731 ;; Create the icon widget for a leaf node.
3212eb61 732 (push (widget-create-child-and-convert
0cfce69f
DP
733 tree (widget-get tree :leaf-icon)
734 ;; At this point the node widget isn't yet created.
735 :node (setq node (widget-convert
736 node :tree-widget--guide-flags
737 (cons (if args t) flags)))
738 :tree-widget--leaf-flag t)
739 buttons)
740 ;; Create the leaf node widget.
741 (push (widget-create-child tree node) children)
742 ;; Update the icon :node with the created node widget.
743 (widget-put (car buttons) :node (car children)))))
f2cb69d5 744;;;; Collapsed node.
4ff094a8
DP
745 ;; Defer the node widget creation after icon creation.
746 (widget-put tree :node (widget-convert node))
0cfce69f 747 ;; Create the icon widget for the collapsed tree.
3212eb61 748 (push (widget-create-child-and-convert
38d0d987
DP
749 tree (widget-get tree :close-icon)
750 ;; Pass the node widget to child.
751 :node (widget-get tree :node))
3212eb61 752 buttons)
0cfce69f 753 ;; Create the tree node widget.
4ff094a8
DP
754 (push (widget-create-child tree (widget-get tree :node))
755 children)
0cfce69f
DP
756 ;; Update the icon :node with the created node widget.
757 (widget-put (car buttons) :node (car children)))
758 ;; Save widget children and buttons. The tree-widget :node child
759 ;; is the first element in :children.
3212eb61 760 (widget-put tree :children (nreverse children))
0cfce69f
DP
761 (widget-put tree :buttons buttons)))
762\f
763;;; Widget callbacks
764;;
765(defsubst tree-widget-leaf-node-icon-p (icon)
766 "Return non-nil if ICON is a leaf node icon.
767That is, if its :node property value is a leaf node widget."
768 (widget-get icon :tree-widget--leaf-flag))
769
770(defun tree-widget-icon-action (icon &optional event)
771 "Handle the ICON widget :action.
772If ICON :node is a leaf node it handles the :action. The tree-widget
773parent of ICON handles the :action otherwise.
774Pass the received EVENT to :action."
775 (let ((node (widget-get icon (if (tree-widget-leaf-node-icon-p icon)
776 :node :parent))))
777 (widget-apply node :action event)))
778
779(defun tree-widget-icon-help-echo (icon)
780 "Return the help-echo string of ICON.
781If ICON :node is a leaf node it handles the :help-echo. The tree-widget
782parent of ICON handles the :help-echo otherwise."
783 (let* ((node (widget-get icon (if (tree-widget-leaf-node-icon-p icon)
784 :node :parent)))
785 (help-echo (widget-get node :help-echo)))
786 (if (functionp help-echo)
787 (funcall help-echo node)
788 help-echo)))
789
790(defvar tree-widget-after-toggle-functions nil
791 "Hooks run after toggling a tree-widget expansion.
792Each function is passed a tree-widget. If the value of the :open
793property is non-nil the tree has been expanded, else collapsed.
794This hook should be local in the buffer setup to display widgets.")
795
06b60517 796(defun tree-widget-action (tree &optional _event)
0cfce69f
DP
797 "Handle the :action of the TREE tree-widget.
798That is, toggle expansion of the TREE tree-widget.
799Ignore the EVENT argument."
800 (let ((open (not (widget-get tree :open))))
801 (or open
802 ;; Before to collapse the node, save children values so next
803 ;; open can recover them.
804 (tree-widget-children-value-save tree))
805 (widget-put tree :open open)
806 (widget-value-set tree open)
807 (run-hook-with-args 'tree-widget-after-toggle-functions tree)))
808
809(defun tree-widget-help-echo (tree)
810 "Return the help-echo string of the TREE tree-widget."
811 (if (widget-get tree :open)
812 "Collapse node"
813 "Expand node"))
3212eb61 814
f35262f9
DP
815(defun tree-widget-expander-p (tree)
816 "Return non-nil if the TREE tree-widget :expander has to be called.
817That is, if TREE :args is nil."
818 (null (widget-get tree :args)))
819
3212eb61
DP
820(provide 'tree-widget)
821
822;;; tree-widget.el ends here