98
|
1 ;;; widget.el --- a library of user interface components.
|
|
2 ;;
|
|
3 ;; Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
|
4 ;;
|
|
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
|
|
6 ;; Keywords: help, extensions, faces, hypermedia
|
161
|
7 ;; Version: 1.9916
|
98
|
8 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/
|
|
9
|
149
|
10 ;; This file is part of GNU Emacs.
|
|
11
|
|
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)
|
|
15 ;; any later version.
|
|
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
|
|
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.
|
|
26
|
98
|
27 ;;; Commentary:
|
|
28 ;;
|
|
29 ;; If you want to use this code, please visit the URL above.
|
|
30 ;;
|
|
31 ;; This file only contain the code needed to define new widget types.
|
106
|
32 ;; Everything else is autoloaded from `wid-edit.el'.
|
98
|
33
|
|
34 ;;; Code:
|
|
35
|
|
36 (eval-when-compile (require 'cl))
|
|
37
|
|
38 (defmacro define-widget-keywords (&rest keys)
|
|
39 (`
|
|
40 (eval-and-compile
|
|
41 (let ((keywords (quote (, keys))))
|
|
42 (while keywords
|
|
43 (or (boundp (car keywords))
|
|
44 (set (car keywords) (car keywords)))
|
|
45 (setq keywords (cdr keywords)))))))
|
|
46
|
155
|
47 (define-widget-keywords :complete-function :complete :button-overlay
|
|
48 :field-overlay
|
|
49 :documentation-shown :button-prefix
|
|
50 :button-suffix :mouse-down-action :glyph-up :glyph-down :glyph-inactive
|
149
|
51 :prompt-internal :prompt-history :prompt-match
|
153
|
52 :prompt-value :deactivate :active
|
149
|
53 :inactive :activate :sibling-args :delete-button-args
|
108
|
54 :insert-button-args :append-button-args :button-args
|
|
55 :tag-glyph :off-glyph :on-glyph :valid-regexp
|
155
|
56 :secret :sample-face :sample-face-get :case-fold
|
98
|
57 :create :convert-widget :format :value-create :offset :extra-offset
|
155
|
58 :tag :doc :from :to :args :value :action
|
98
|
59 :value-set :value-delete :match :parent :delete :menu-tag-get
|
|
60 :value-get :choice :void :menu-tag :on :off :on-type :off-type
|
|
61 :notify :entry-format :button :children :buttons :insert-before
|
|
62 :delete-at :format-handler :widget :value-pos :value-to-internal
|
|
63 :indent :size :value-to-external :validate :error :directory
|
|
64 :must-match :type-error :value-inline :inline :match-inline :greedy
|
|
65 :button-face-get :button-face :value-face :keymap :entry-from
|
155
|
66 :entry-to :help-echo :documentation-property :tab-order)
|
98
|
67
|
|
68 ;; These autoloads should be deleted when the file is added to Emacs.
|
100
|
69 (unless (fboundp 'load-gc)
|
118
|
70 (autoload 'widget-apply "wid-edit")
|
106
|
71 (autoload 'widget-create "wid-edit")
|
|
72 (autoload 'widget-insert "wid-edit")
|
149
|
73 (autoload 'widget-prompt-value "wid-edit")
|
106
|
74 (autoload 'widget-browse "wid-browse" nil t)
|
124
|
75 (autoload 'widget-browse-other-window "wid-browse" nil t)
|
149
|
76 (autoload 'widget-browse-at "wid-browse" nil t)
|
|
77 (autoload 'widget-minor-mode "wid-browse" nil t))
|
98
|
78
|
|
79 (defun define-widget (name class doc &rest args)
|
|
80 "Define a new widget type named NAME from CLASS.
|
|
81
|
|
82 NAME and CLASS should both be symbols, CLASS should be one of the
|
|
83 existing widget types, or nil to create the widget from scratch.
|
|
84
|
|
85 After the new widget has been defined, the following two calls will
|
|
86 create identical widgets:
|
|
87
|
|
88 * (widget-create NAME)
|
|
89
|
|
90 * (apply 'widget-create CLASS ARGS)
|
|
91
|
|
92 The third argument DOC is a documentation string for the widget."
|
|
93 (put name 'widget-type (cons class args))
|
149
|
94 (put name 'widget-documentation doc)
|
|
95 name)
|
98
|
96
|
|
97 ;;; The End.
|
|
98
|
|
99 (provide 'widget)
|
|
100
|
|
101 ;; widget.el ends here
|