Mercurial > emacs
annotate lisp/widget.el @ 19885:266e93ddaf0e
(french-calendar-accents): Change variable to function.
Uses changed. Test that we can display multibyte chars.
(french-calendar-day-name-array, french-calendar-month-name-array):
New functions. Use them instead of directly using these variables.
(french-calendar-multibyte-month-name-array): New variable.
(french-calendar-multibyte-special-days-array): New variable.
(calendar-print-french-date): Bind enable-multibyte-characters to t.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 12 Sep 1997 19:34:27 +0000 |
parents | e83bc8150072 |
children | 148cbe18165c |
rev | line source |
---|---|
17334 | 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 | |
18258
e83bc8150072
Synched with 1.9920.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
7 ;; Version: 1.9920 |
17334 | 8 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/ |
9 | |
17520 | 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 | |
17334 | 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. | |
32 ;; Everything else is autoloaded from `wid-edit.el'. | |
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 | |
18258
e83bc8150072
Synched with 1.9920.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
47 (define-widget-keywords :documentation-indent |
e83bc8150072
Synched with 1.9920.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18139
diff
changeset
|
48 :complete-function :complete :button-overlay |
18139
ee3c0d09dcd3
Synched with 1.9908.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18090
diff
changeset
|
49 :field-overlay |
18089 | 50 :documentation-shown :button-prefix |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18033
diff
changeset
|
51 :button-suffix :mouse-down-action :glyph-up :glyph-down :glyph-inactive |
17799 | 52 :prompt-internal :prompt-history :prompt-match |
18033
bccd356a3b7c
Synched with version 1.9900.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17799
diff
changeset
|
53 :prompt-value :deactivate :active |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17520
diff
changeset
|
54 :inactive :activate :sibling-args :delete-button-args |
17334 | 55 :insert-button-args :append-button-args :button-args |
56 :tag-glyph :off-glyph :on-glyph :valid-regexp | |
18067
0e2aa3b58e16
Synched with version 1.9901.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18033
diff
changeset
|
57 :secret :sample-face :sample-face-get :case-fold |
17334 | 58 :create :convert-widget :format :value-create :offset :extra-offset |
18090 | 59 :tag :doc :from :to :args :value :action |
17334 | 60 :value-set :value-delete :match :parent :delete :menu-tag-get |
61 :value-get :choice :void :menu-tag :on :off :on-type :off-type | |
62 :notify :entry-format :button :children :buttons :insert-before | |
63 :delete-at :format-handler :widget :value-pos :value-to-internal | |
64 :indent :size :value-to-external :validate :error :directory | |
65 :must-match :type-error :value-inline :inline :match-inline :greedy | |
66 :button-face-get :button-face :value-face :keymap :entry-from | |
18139
ee3c0d09dcd3
Synched with 1.9908.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
18090
diff
changeset
|
67 :entry-to :help-echo :documentation-property :tab-order) |
17334 | 68 |
69 ;; These autoloads should be deleted when the file is added to Emacs. | |
70 (unless (fboundp 'load-gc) | |
71 (autoload 'widget-apply "wid-edit") | |
72 (autoload 'widget-create "wid-edit") | |
73 (autoload 'widget-insert "wid-edit") | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17520
diff
changeset
|
74 (autoload 'widget-prompt-value "wid-edit") |
17334 | 75 (autoload 'widget-browse "wid-browse" nil t) |
17415 | 76 (autoload 'widget-browse-other-window "wid-browse" nil t) |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17520
diff
changeset
|
77 (autoload 'widget-browse-at "wid-browse" nil t) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17520
diff
changeset
|
78 (autoload 'widget-minor-mode "wid-browse" nil t)) |
17334 | 79 |
80 (defun define-widget (name class doc &rest args) | |
81 "Define a new widget type named NAME from CLASS. | |
82 | |
83 NAME and CLASS should both be symbols, CLASS should be one of the | |
84 existing widget types, or nil to create the widget from scratch. | |
85 | |
86 After the new widget has been defined, the following two calls will | |
87 create identical widgets: | |
88 | |
89 * (widget-create NAME) | |
90 | |
91 * (apply 'widget-create CLASS ARGS) | |
92 | |
93 The third argument DOC is a documentation string for the widget." | |
94 (put name 'widget-type (cons class args)) | |
17550
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17520
diff
changeset
|
95 (put name 'widget-documentation doc) |
d6545cfb6c5a
Synched with custom 1.90.
Per Abrahamsen <abraham@dina.kvl.dk>
parents:
17520
diff
changeset
|
96 name) |
17334 | 97 |
98 ;;; The End. | |
99 | |
100 (provide 'widget) | |
101 | |
102 ;; widget.el ends here |