~ubuntu-branches/ubuntu/karmic/emacs-snapshot/karmic

« back to all changes in this revision

Viewing changes to lisp/tree-widget.el

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-04-05 09:14:30 UTC
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090405091430-nw07lynn2arotjbe
Tags: upstream-20090320
ImportĀ upstreamĀ versionĀ 20090320

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
;;; tree-widget.el --- Tree widget
2
2
 
3
 
;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 
3
;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4
4
 
5
5
;; Author: David Ponce <david@dponce.com>
6
6
;; Maintainer: David Ponce <david@dponce.com>
149
149
XEmacs.")
150
150
 
151
151
(defcustom tree-widget-themes-directory "tree-widget"
152
 
  "*Name of the directory in which to look for an image theme.
 
152
  "Name of the directory in which to look for an image theme.
153
153
When nil use the directory where the tree-widget library is located.
154
154
When it is a relative name, search in all occurrences of that sub
155
155
directory in the path specified by `tree-widget-themes-load-path'.
160
160
  :group 'tree-widget)
161
161
 
162
162
(defcustom tree-widget-theme nil
163
 
  "*Name of the theme in which to look for images.
 
163
  "Name of the theme in which to look for images.
164
164
This is a sub directory of the themes directory specified by the
165
165
`tree-widget-themes-directory' option.
166
166
The default theme is \"default\".  When an image is not found in a
197
197
 
198
198
(defcustom tree-widget-image-properties-emacs
199
199
  '(:ascent center :mask (heuristic t))
200
 
  "*Default properties of Emacs images."
 
200
  "Default properties of Emacs images."
201
201
  :type 'plist
202
202
  :group 'tree-widget)
203
203
 
204
204
(defcustom tree-widget-image-properties-xemacs
205
205
  nil
206
 
  "*Default properties of XEmacs images."
 
206
  "Default properties of XEmacs images."
207
207
  :type 'plist
208
208
  :group 'tree-widget)
209
209