annotate lisp/x-misc.el @ 290:c9fe270a4101 r21-0b43

Import from CVS: tag r21-0b43
author cvs
date Mon, 13 Aug 2007 10:36:47 +0200
parents c42ec1d1cded
children 70ad99077275
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1 ;;; x-misc.el --- miscellaneous X functions.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
2
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
4 ;; Copyright (C) 1995 Sun Microsystems.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
5 ;; Copyright (C) 1995, 1996 Ben Wing.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
6
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
7 ;; Author: Ben Wing <wing@666.com>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
8 ;; Maintainer: XEmacs Development Team
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
9 ;; Keywords: extensions, dumped
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
10
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
11 ;; This file is part of XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
12
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
13 ;; XEmacs is free software; you can redistribute it and/or modify it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
14 ;; under the terms of the GNU General Public License as published by
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
15 ;; the Free Software Foundation; either version 2, or (at your option)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
16 ;; any later version.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
17
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
18 ;; XEmacs is distributed in the hope that it will be useful, but
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
21 ;; General Public License for more details.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
22
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
23 ;; You should have received a copy of the GNU General Public License
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
24 ;; along with XEmacs; see the file COPYING. If not, write to the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
25 ;; Free Software Foundation, 59 Temple Place - Suite 330,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
26 ;; Boston, MA 02111-1307, USA.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
27
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
28 ;;; Commentary:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
29
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
30 ;; This file is dumped with XEmacs (when X support is compiled in).
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
31
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
32 ;;; Code:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
33
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
34 (defun x-bogosity-check-resource (name class type)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
35 "Check for a bogus resource specification."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
36 (let ((bogus (x-get-resource
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
37 (concat "__no-such-friggin-locale__." name)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
38 (concat "__No-such-friggin-widget__." class)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
39 type 'global nil t)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
40 (if bogus
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
41 (display-warning
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
42 'resource
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
43 (format "Bad resource specification encountered: something like
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
44 Emacs*%s: %s
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
45 You should replace the * with a . in order to get proper behavior when
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
46 you use the specifier and/or `set-face-*' functions." name bogus)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
47
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
48 (defun x-init-specifier-from-resources (specifier type locale
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
49 &rest resource-list)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
50 "Initialize a specifier from the resource database.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
51 LOCALE specifies the locale that is to be initialized and should be
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
52 a frame, a device, or 'global. TYPE is the type of the resource and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
53 should be one of 'string, 'boolean, 'integer, or 'natnum. The
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
54 remaining args should be conses of names and classes of resources
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
55 to be examined. The first resource with a value specified becomes
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
56 the spec for SPECIFIER in LOCALE. (However, if SPECIFIER already
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
57 has a spec in LOCALE, nothing is done.) Finally, if LOCALE is 'global,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
58 a check is done for bogus resource specifications."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
59 (if (eq locale 'global)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
60 (mapcar #'(lambda (x)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
61 (x-bogosity-check-resource (car x) (cdr x) type))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
62 resource-list))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
63 (if (not (specifier-spec-list specifier locale))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
64 (catch 'done
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
65 (while resource-list
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
66 (let* ((name (caar resource-list))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
67 (class (cdar resource-list))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
68 (resource
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
69 (x-get-resource name class type locale nil t)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
70 (if resource
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
71 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
72 (add-spec-to-specifier specifier resource locale)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
73 (throw 'done t))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
74 (setq resource-list (cdr resource-list))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
75
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
76 (defun x-get-resource-and-bogosity-check (name class type &optional locale)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
77 (x-bogosity-check-resource name class type)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
78 (x-get-resource name class type locale nil t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
79
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
80 (defun x-get-resource-and-maybe-bogosity-check (name class type &optional
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
81 locale)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
82 (if (eq locale 'global)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
83 (x-bogosity-check-resource name class type))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
84 (x-get-resource name class type locale nil t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
85
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
86 ;;; x-misc.el ends here