More tweaks of skeleton documentation wrt \n behavior at bol/eol.
[bpt/emacs.git] / lisp / widget.el
CommitLineData
e8af40ee 1;;; widget.el --- a library of user interface components
d543e20b 2;;
ba318903 3;; Copyright (C) 1996-1997, 2001-2014 Free Software Foundation, Inc.
d543e20b
PA
4;;
5;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6;; Keywords: help, extensions, faces, hypermedia
d543e20b 7;; X-URL: http://www.dina.kvl.dk/~abraham/custom/
bd78fa1d 8;; Package: emacs
d543e20b 9
c2383d2d
RS
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
c2383d2d 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
c2383d2d
RS
16
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.
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/>.
c2383d2d 24
d543e20b 25;;; Commentary:
f1180544 26;;
b3e49cbb
DL
27;; The widget library is partially documented in the `widget' Info
28;; file.
d543e20b 29;;
b3e49cbb 30;; This file only contains the code needed to define new widget types.
d543e20b
PA
31;; Everything else is autoloaded from `wid-edit.el'.
32
33;;; Code:
34
b3e49cbb
DL
35;; Doing this is unnecessary in Emacs 20. Kept as dummy in case
36;; external libraries call it. We save a kb or two of purespace by
37;; dummying-out such definitions generally.
06b60517 38(defmacro define-widget-keywords (&rest _keys)
f12126f8
SM
39 ;; ;; Don't use backquote, since that makes trouble trying to
40 ;; ;; re-bootstrap from just the .el files.
41 ;; (list 'eval-and-compile
42 ;; (list 'let (list (list 'keywords (list 'quote keys)))
43 ;; (list 'while 'keywords
44 ;; (list 'or (list 'boundp (list 'car 'keywords))
45 ;; (list 'set (list 'car 'keywords) (list 'car 'keywords)))
46 ;; (list 'setq 'keywords (list 'cdr 'keywords)))))
b3e49cbb
DL
47 )
48
f12126f8
SM
49;;(define-widget-keywords :documentation-indent
50;; :complete-function :complete :button-overlay
51;; :field-overlay
52;; :documentation-shown :button-prefix
53;; :button-suffix :mouse-down-action :glyph-up :glyph-down :glyph-inactive
54;; :prompt-internal :prompt-history :prompt-match
55;; :prompt-value :deactivate :active
56;; :inactive :activate :sibling-args :delete-button-args
57;; :insert-button-args :append-button-args :button-args
58;; :tag-glyph :off-glyph :on-glyph :valid-regexp
59;; :secret :sample-face :sample-face-get :case-fold
60;; :create :convert-widget :format :value-create :offset :extra-offset
61;; :tag :doc :from :to :args :value :action
62;; :value-set :value-delete :match :parent :delete :menu-tag-get
63;; :value-get :choice :void :menu-tag :on :off :on-type :off-type
64;; :notify :entry-format :button :children :buttons :insert-before
65;; :delete-at :format-handler :widget :value-pos :value-to-internal
66;; :indent :size :value-to-external :validate :error :directory
67;; :must-match :type-error :value-inline :inline :match-inline :greedy
68;; :button-face-get :button-face :value-face :keymap :entry-from
69;; :entry-to :help-echo :documentation-property :tab-order)
d543e20b 70
74b99d45 71(put 'define-widget 'doc-string-elt 3) ;`declare' doesn't work in functions.
d543e20b
PA
72(defun define-widget (name class doc &rest args)
73 "Define a new widget type named NAME from CLASS.
74
75NAME and CLASS should both be symbols, CLASS should be one of the
76existing widget types, or nil to create the widget from scratch.
77
78After the new widget has been defined, the following two calls will
79create identical widgets:
80
81* (widget-create NAME)
82
83* (apply 'widget-create CLASS ARGS)
84
85The third argument DOC is a documentation string for the widget."
86 (put name 'widget-type (cons class args))
aaa448c9 87 (put name 'widget-documentation (purecopy doc))
6d528fc5 88 name)
d543e20b 89
89492072
DL
90;; This is used by external widget code (in W3, at least).
91(defalias 'widget-plist-member 'plist-member)
92
d543e20b
PA
93;;; The End.
94
95(provide 'widget)
96
e8af40ee 97;;; widget.el ends here