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