annotate lisp/w3/font.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; font.el,v --- New font model
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Author: wmperry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Created: 1996/05/29 15:44:56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Version: 1.45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: faces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;;; Copyright (c) 1995 by William M. Perry (wmperry@spry.com)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;;; This file is not part of GNU Emacs, but the same permissions apply.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;;; along with GNU Emacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;; The emacsen compatibility package - load it up before anything else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 (eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 (load-library "w3-sysdp"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (if (not (fboundp '<<)) (fset '<< 'lsh))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 (if (not (fboundp '&)) (fset '& 'logand))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (if (not (fboundp '|)) (fset '| 'logior))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (if (not (fboundp '~)) (fset '~ 'lognot))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (if (not (fboundp '>>)) (defun >> (value count) (<< value (- count))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;;; Lots of variables / keywords for use later in the program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;; Not much should need to be modified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (defconst font-running-xemacs (string-match "XEmacs" (emacs-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 "Whether we are running in XEmacs or not.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (defmacro defkeyword (keyword &optional docstring)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (list 'defconst keyword (list 'quote keyword)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (or docstring "A keyword")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (defconst font-window-system-mappings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 '((x . (x-font-create-name x-font-create-object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (ns . (ns-font-create-name ns-font-create-object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (tty . (tty-font-create-plist tty-font-create-object)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 "An assoc list mapping device types to the function used to create
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 a font name from a font structure.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (defconst ns-font-weight-mappings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 '((:extra-light . "extralight")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (:light . "light")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (:demi-light . "demilight")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (:medium . "medium")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (:normal . "normal")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (:demi-bold . "demibold")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (:bold . "bold")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (:extra-bold . "extrabold"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 "An assoc list mapping keywords to actual NeXTstep specific
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 information to use")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (defconst x-font-weight-mappings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 '((:extra-light . "extralight")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (:light . "light")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (:demi-light . "demilight")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (:demi . "demi")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (:book . "book")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (:medium . "medium")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (:normal . "normal")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (:demi-bold . "demibold")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (:bold . "bold")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (:extra-bold . "extrabold"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 "An assoc list mapping keywords to actual Xwindow specific strings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 for use in the 'weight' field of an X font string.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (defconst font-possible-weights
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (mapcar 'car x-font-weight-mappings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (defvar font-rgb-file nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 "Where the RGB file was found.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (defvar font-maximum-slippage "1pt"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 "How much a font is allowed to vary from the desired size.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (defvar font-family-mappings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 ("serif" . ("garamond"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 "palatino"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 "times new roman"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 "baskerville"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 "bookman"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 "bodoni"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 "computer modern"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 "rockwell"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 ("sans-serif" . ("lucida"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 "lucidatypewriter"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 "gills-sans"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 "avant-garde"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 "univers"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 "helvetica"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 "optima"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ("elfin" . ("tymes"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 ("monospace" . ("courier" "lucidatypewriter" "fixed"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 ("cursive" . ("sirene" "zapf chancery"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 "A list of font family mappings.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (defkeyword :family "Keyword specifying the font family of a FONTOBJ.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (defkeyword :weight "Keyword specifying the font weight of a FONTOBJ.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (defkeyword :extra-light)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (defkeyword :light)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (defkeyword :demi-light)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (defkeyword :medium)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (defkeyword :normal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (defkeyword :demi-bold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (defkeyword :bold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (defkeyword :extra-bold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (defkeyword :style "Keyword specifying the font style of a FONTOBJ.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (defkeyword :size "Keyword specifying the font size of a FONTOBJ.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (defkeyword :registry "Keyword specifying the registry of a FONTOBJ.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (defkeyword :encoding "Keyword specifying the encoding of a FONTOBJ.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (eval-when-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (defmacro define-new-mask (attr mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (`
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (defconst (, (intern (format "font-%s-mask" attr))) (<< 1 (, mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (, (format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 "Bitmask for whether a font is to be rendered in %s or not."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 attr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (defun (, (intern (format "font-%s-p" attr))) (fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (, (format "Whether FONTOBJ will be renderd in `%s' or not." attr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (if (/= 0 (& (font-style fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (, (intern (format "font-%s-mask" attr)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (defun (, (intern (format "font-set-%s-p" attr))) (fontobj val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (, (format "Set whether FONTOBJ will be renderd in `%s' or not."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 attr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (if val
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (set-font-style fontobj (| (font-style fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (, (intern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (format "font-%s-mask" attr)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (set-font-style fontobj (logxor (font-style fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (, (intern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (format "font-%s-mask"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 attr)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (let ((mask 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (define-new-mask bold (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (define-new-mask italic (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (define-new-mask oblique (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (define-new-mask dim (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (define-new-mask underline (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (define-new-mask overline (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (define-new-mask linethrough (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (define-new-mask strikethru (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (define-new-mask reverse (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (define-new-mask blink (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (define-new-mask smallcaps (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (define-new-mask bigcaps (setq mask (1+ mask)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (define-new-mask dropcaps (setq mask (1+ mask))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (defvar font-caps-display-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (let ((table (make-display-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (i 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 ;; Standard ASCII characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (while (< i 26)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (aset table (+ i ?a) (+ i ?A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (setq i (1+ i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 ;; Now ISO translations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (setq i 224)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (while (< i 247) ;; Agrave - Ouml
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (aset table i (- i 32))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (setq i (1+ i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (setq i 248)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (while (< i 255) ;; Oslash - Thorn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (aset table i (- i 32))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (setq i (1+ i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 ;;; Utility functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (defun unique (list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (let ((retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (cur))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (while list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (setq cur (car list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 list (cdr list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (if (member cur retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (setq retval (cons cur retval))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (nreverse retval)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (defun font-higher-weight (w1 w2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (let ((index1 (length (memq w1 font-possible-weights)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (index2 (length (memq w2 font-possible-weights))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 ((<= index1 index2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (or w1 w2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 ((not w2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 w1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 w2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (defun font-spatial-to-canonical (spec &optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 "Convert SPEC (in inches, millimeters, points, or picas) into pixels"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 ;; 1 in = 25.4 mm = 72 pt = 6 pa
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (if (numberp spec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 spec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (let ((num nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (type nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 ;; If for any reason we get null for any of this, default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 ;; to 1024x768 resolution on a 17" screen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (pix-width (float (or (device-pixel-width device) 1024)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (mm-width (float (or (device-mm-width device) 293)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (retval nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (if (string-match "[^0-9.]+$" spec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (setq type (substring spec (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 spec (substring spec 0 (match-beginning 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (setq type "px"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 spec spec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (setq num (string-to-number spec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 ((member type '("pixel" "px" "pix"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (setq retval num
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 num nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 ((member type '("point" "pt"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (setq retval (+ (* (/ pix-width mm-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (/ 25.4 72.0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 num))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 ((member type '("pica" "pa"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (setq retval (* (/ pix-width mm-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (/ 25.4 6.0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 num)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 ((member type '("inch" "in"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (setq retval (* (/ pix-width mm-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (/ 25.4 1.0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 num)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 ((string= type "mm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (setq retval (* (/ pix-width mm-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 num)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 ((string= type "cm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (setq retval (* (/ pix-width mm-width)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 num)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (t (setq retval num))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 retval)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 ;;; The main interface routines - constructors and accessor functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (defun make-font (&rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (vector :family
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (if (stringp (nth 1 (memq :family args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (list (nth 1 (memq :family args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (nth 1 (memq :family args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 :weight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (nth 1 (memq :weight args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 :style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (if (numberp (nth 1 (memq :style args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (nth 1 (memq :style args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 :size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (nth 1 (memq :size args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 :registry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (nth 1 (memq :registry args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 :encoding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (nth 1 (memq :encoding args))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (defsubst set-font-family (fontobj family)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (aset fontobj 1 family))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (defsubst set-font-weight (fontobj weight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (aset fontobj 3 weight))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (defsubst set-font-style (fontobj style)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (aset fontobj 5 style))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (defsubst set-font-size (fontobj size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (aset fontobj 7 size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (defsubst set-font-registry (fontobj reg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (aset fontobj 9 reg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (defsubst set-font-encoding (fontobj enc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (aset fontobj 11 enc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (defsubst font-family (fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (aref fontobj 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (defsubst font-weight (fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (aref fontobj 3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (defsubst font-style (fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (aref fontobj 5))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (defsubst font-size (fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (aref fontobj 7))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (defsubst font-registry (fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (aref fontobj 9))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (defsubst font-encoding (fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (aref fontobj 11))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (defun font-create-name (fontobj &optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 (let* ((type (device-type device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (func (car (cdr-safe (assq type font-window-system-mappings)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (and func (fboundp func) (funcall func fontobj device))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (defun font-create-object (fontname &optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (let* ((type (device-type device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (func (car (cdr (cdr-safe (assq type font-window-system-mappings))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (and func (fboundp func) (funcall func fontname device))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (defun font-combine-fonts-internal (fontobj-1 fontobj-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (let ((retval (make-font))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (size-1 (and (font-size fontobj-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (font-spatial-to-canonical (font-size fontobj-1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (size-2 (and (font-size fontobj-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (font-spatial-to-canonical (font-size fontobj-2)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (set-font-weight retval (font-higher-weight (font-weight fontobj-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (font-weight fontobj-2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (set-font-family retval (unique (append (font-family fontobj-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (font-family fontobj-2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (set-font-style retval (| (font-style fontobj-1) (font-style fontobj-2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 (set-font-registry retval (or (font-registry fontobj-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 (font-registry fontobj-2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (set-font-encoding retval (or (font-encoding fontobj-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 (font-encoding fontobj-2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (set-font-size retval (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 ((and size-1 size-2 (>= size-2 size-1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (font-size fontobj-2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 ((and size-1 size-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (font-size fontobj-1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (size-1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (font-size fontobj-1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (size-2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (font-size fontobj-2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (t nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 retval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (defun font-combine-fonts (&rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 ((null args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (error "Wrong number of arguments to font-combine-fonts"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 ((= (length args) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (car args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (let ((retval (font-combine-fonts-internal (nth 0 args) (nth 1 args))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (setq args (cdr (cdr args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 (while args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (setq retval (font-combine-fonts-internal retval (car args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 args (cdr args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 retval))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 ;;; The window-system dependent code (TTY-style)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (defun tty-font-create-object (fontname &optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (defun tty-font-create-plist (fontobj &optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (let ((styles (font-style fontobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (weight (font-weight fontobj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (cons 'underline (font-underline-p fontobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (cons 'highlight (if (or (font-bold-p fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (memq weight '(:bold :demi-bold))) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (cons 'dim (font-dim-p fontobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (cons 'blinking (font-blink-p fontobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (cons 'reverse (font-reverse-p fontobj)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 ;;; The window-system dependent code (X-style)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (defvar font-x-font-regexp (or (and font-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (boundp 'x-font-regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 x-font-regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (let
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 ((- "[-?]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (foundry "[^-]*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (family "[^-]*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (weight "\\(bold\\|demibold\\|medium\\|black\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (weight\? "\\([^-]*\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (slant "\\([ior]\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (slant\? "\\([^-]?\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (swidth "\\([^-]*\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (adstyle "\\([^-]*\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (pixelsize "\\(\\*\\|[0-9]+\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (pointsize "\\(\\*\\|0\\|[0-9][0-9]+\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (resx "\\([*0]\\|[0-9][0-9]+\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (resy "\\([*0]\\|[0-9][0-9]+\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (spacing "[cmp?*]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (avgwidth "\\(\\*\\|[0-9]+\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 (registry "[^-]*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (encoding "[^-]+")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (concat "\\`\\*?[-?*]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 foundry - family - weight\? - slant\? - swidth - adstyle -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 pixelsize - pointsize - resx - resy - spacing - avgwidth -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 registry - encoding "\\'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (defun x-font-create-object (fontname &optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (if (or (not (stringp fontname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (not (string-match font-x-font-regexp fontname)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (make-font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (let ((family nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (style nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (size nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (weight (match-string 1 fontname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (slant (match-string 2 fontname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (swidth (match-string 3 fontname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (adstyle (match-string 4 fontname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (pxsize (match-string 5 fontname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (ptsize (match-string 6 fontname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (retval nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (if (not (string-match x-font-regexp-foundry-and-family fontname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (setq family (list (match-string 1 fontname))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 (if (string= "*" weight) (setq weight nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (if (string= "*" slant) (setq slant nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (if (string= "*" swidth) (setq swidth nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (if (string= "*" adstyle) (setq adstyle nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 (if (string= "*" pxsize) (setq pxsize nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (if (string= "*" ptsize) (setq ptsize nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (if ptsize (setq size (format "%dpt" (/ (string-to-int ptsize) 10))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (if (and (not size) pxsize) (setq size (concat pxsize "px")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (if weight (setq weight (intern-soft (concat ":" (downcase weight)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 (if (and adstyle (not (equal adstyle "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (setq family (append family (list adstyle))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 (setq retval (make-font :family family
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 :weight weight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 :size size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 (font-set-bold-p retval (eq :bold weight))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 ((null slant) nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 ((member slant '("i" "I"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 (font-set-italic-p retval t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 ((member slant '("o" "O"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 (font-set-oblique-p retval t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 retval)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (defun x-font-families-for-device (&optional device no-resetp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (require 'x-font-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 (error nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (or device (setq device (selected-device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 (if (boundp 'device-fonts-cache)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (let ((menu (or (cdr-safe (assq device device-fonts-cache)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (if (and (not menu) (not no-resetp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (reset-device-font-menus device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (x-font-families-for-device device t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 (let ((scaled (mapcar (function (lambda (x) (if x (aref x 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (aref menu 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (normal (mapcar (function (lambda (x) (if x (aref x 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (aref menu 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (sort (unique (nconc scaled normal)) 'string-lessp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (mapcar 'car font-family-mappings)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (defvar font-default-cache nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (defun font-default-font-for-device (&optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 (or device (setq device (selected-device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (if font-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (face-font-name 'default device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (cdr-safe (assq 'font (frame-parameters device)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (defun font-default-object-for-device (&optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (let ((font (font-default-font-for-device device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (or (cdr-safe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (assoc font font-default-cache))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (setq font-default-cache (cons (cons font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (font-create-object font))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 font-default-cache))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (cdr-safe (assoc font font-default-cache))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (defun font-default-family-for-device (&optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (or device (setq device (selected-device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (font-family (font-default-object-for-device device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 (defun font-default-size-for-device (&optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 (or device (setq device (selected-device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (if font-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (format "%dpx" (face-height 'default device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (font-size (font-default-object-for-device device))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (defun x-font-create-name (fontobj &optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (if (and (not (or (font-family fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (font-weight fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (font-size fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (font-registry fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (font-encoding fontobj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 (not (font-bold-p fontobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (not (font-italic-p fontobj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (face-font 'default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (or device (setq device (selected-device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (let ((family (or (font-family fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (font-default-family-for-device device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (x-font-families-for-device device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 (weight (or (font-weight fontobj) :medium))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (style (font-style fontobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (size (or (font-size fontobj) (font-default-size-for-device device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (registry (or (font-registry fontobj) "*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (encoding (or (font-encoding fontobj) "*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (if (stringp family)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (setq family (list family)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (setq weight (font-higher-weight weight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (and (font-bold-p fontobj) :bold)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (if (stringp size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (setq size (round (font-spatial-to-canonical size device))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (setq weight (or (cdr-safe (assq weight x-font-weight-mappings)) "*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (let ((done nil) ; Did we find a good font yet?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 (font-name nil) ; font name we are currently checking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (cur-family nil) ; current family we are checking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (while (and family (not done))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (setq cur-family (car family)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 family (cdr family))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (if (assoc cur-family font-family-mappings)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 ;; If the family name is an alias as defined by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 ;; font-family-mappings, then append those families
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 ;; to the front of 'family' and continue in the loop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (setq family (append
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (cdr-safe (assoc cur-family
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 font-family-mappings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 family))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 ;; Not an alias for a list of fonts, so we just check it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 ;; First, convert all '-' to spaces so that we don't screw up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 ;; the oh-so wonderful X font model. Wheee.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 (let ((x (length cur-family)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (while (> x 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 (if (= ?- (aref cur-family (1- x)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (aset cur-family (1- x) ? ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (setq x (1- x))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (setq font-name (format "-*-%s-%s-%s-*-*-%s-*-*-*-*-*-%s-%s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 cur-family weight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (if (font-italic-p fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 "i"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 "r")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 (if size (int-to-string size) "*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 registry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 encoding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 done (try-font-name font-name device))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 (if done font-name)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 ;;; The window-system dependent code (NS-style)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (defun ns-font-families-for-device (&optional device no-resetp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 ;; For right now, assume we are going to have the same storage for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 ;; device fonts for NS as we do for X. Is this a valid assumption?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (or device (setq device (selected-device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (let ((menu (or (cdr-safe (assq device device-fonts-cache)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 (if (and (not menu) (not no-resetp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (reset-device-font-menus device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 (ns-font-families-for-device device t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 (let ((scaled (mapcar (function (lambda (x) (if x (aref x 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (aref menu 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 (normal (mapcar (function (lambda (x) (if x (aref x 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (aref menu 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 (sort (unique (nconc scaled normal)) 'string-lessp)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (defun ns-font-create-name (fontobj &optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (let ((family (or (font-family fontobj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 (ns-font-families-for-device device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (weight (or (font-weight fontobj) :medium))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (style (or (font-style fontobj) (list :normal)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 (size (font-size fontobj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 (registry (or (font-registry fontobj) "*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (encoding (or (font-encoding fontobj) "*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 ;; Create a font, wow!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 (if (stringp family)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (setq family (list family)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (if (symbolp style)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (setq style (list style)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 (setq weight (font-higher-weight weight (car-safe (memq :bold style))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 (if (stringp size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 (setq size (font-spatial-to-canonical size device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 (setq weight (or (cdr-safe (assq weight ns-font-weight-mappings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 "medium"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 (let ((done nil) ; Did we find a good font yet?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 (font-name nil) ; font name we are currently checking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (cur-family nil) ; current family we are checking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (while (and family (not done))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 (setq cur-family (car family)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 family (cdr family))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (if (assoc cur-family font-family-mappings)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 ;; If the family name is an alias as defined by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 ;; font-family-mappings, then append those families
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 ;; to the front of 'family' and continue in the loop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (setq family (append
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (cdr-safe (assoc cur-family
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 font-family-mappings))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 family))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 ;; CARL: Need help here - I am not familiar with the NS font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 ;; model
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (setq font-name "UNKNOWN FORMULA GOES HERE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 done (try-font-name font-name device))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (if done font-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 ;;; Now overwrite the original copy of set-face-font with our own copy that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 ;;; can deal with either syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (defun font-set-face-font (&optional face font &rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (if (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (call-interactively 'font-original-set-face-font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 ((and (vectorp font) (= (length font) 12))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (let ((font-name (font-create-name font)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 (set-face-property face 'font-specification font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 ((null font-name) ; No matching font!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 ((listp font-name) ; For TTYs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 (let (cur)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (while font-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 (setq cur (car font-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 font-name (cdr font-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (apply 'set-face-property face (car cur) (cdr cur) args))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (font-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (apply 'font-original-set-face-font face font-name args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 (apply 'set-face-underline-p face (font-underline-p font) args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (if (and (or (font-smallcaps-p font) (font-bigcaps-p font))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (fboundp 'set-face-display-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (apply 'set-face-display-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 face font-caps-display-table args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (apply 'set-face-property face 'strikethru (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (font-linethrough-p font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (font-strikethru-p font))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (condition-case nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (apply 'font-original-set-face-font face font-name args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 (let ((args (car-safe args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (and (or (font-bold-p font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (memq (font-weight font) '(:bold :demi-bold)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 (make-face-bold face args t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 (and (font-italic-p font) (make-face-italic face args t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 (apply 'set-face-underline-p face (font-underline-p font) args)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 ;; Let the original set-face-font signal any errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (set-face-property face 'font-specification nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 (apply 'font-original-set-face-font face font args)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 ;;; Now for emacsen specific stuff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 (defun font-update-device-fonts (device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 ;; Update all faces that were created with the 'font' package
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 ;; to appear correctly on the new device. This should be in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 ;; create-device-hook. This is XEmacs 19.12+ specific
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (let ((faces (face-list 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (cur nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (font nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (font-spec nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (while faces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (setq cur (car faces)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 faces (cdr faces)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 font-spec (face-property cur 'font-specification))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 (if font-spec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 (set-face-font cur font-spec device)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 (defun font-update-one-face (face &optional device-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 ;; Update FACE on all devices in DEVICE-LIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 ;; DEVICE_LIST defaults to a list of all active devices
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (setq device-list (or device-list (device-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 (if (devicep device-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (setq device-list (list device-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (let* ((cur-device nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (font-spec (face-property face 'font-specification))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (font nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (if (not font-spec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 ;; Hey! Don't mess with fonts we didn't create in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 ;; first place.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (while device-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 (setq cur-device (car device-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 device-list (cdr device-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (if (not (device-live-p cur-device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 ;; Whoah!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (if font-spec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (set-face-font face font-spec cur-device)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 ;;; Various color related things
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 ((fboundp 'display-warning)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (fset 'font-warn 'display-warning))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 ((fboundp 'w3-warn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (fset 'font-warn 'w3-warn))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 ((fboundp 'url-warn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 (fset 'font-warn 'url-warn))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 ((fboundp 'warn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (defun font-warn (class message &optional level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 (warn "(%s/%s) %s" class (or level 'warning) message)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 (defun font-warn (class message &optional level)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (set-buffer (get-buffer-create "*W3-WARNINGS*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 (insert (format "(%s/%s) %s\n" class (or level 'warning) message)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (display-buffer (current-buffer))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (defun font-lookup-rgb-components (color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 "Lookup COLOR (a color name) in rgb.txt and return a list of RGB values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 The list (R G B) is returned, or an error is signaled if the lookup fails."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (let ((lib-list (if (boundp 'x-library-search-path)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 x-library-search-path
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 ;; This default is from XEmacs 19.13 - hope it covers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 ;; everyone.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 (list "/usr/X11R6/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 "/usr/X11R5/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 "/usr/lib/X11R6/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 "/usr/lib/X11R5/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 "/usr/local/X11R6/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 "/usr/local/X11R5/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 "/usr/local/lib/X11R6/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 "/usr/local/lib/X11R5/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 "/usr/X11/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 "/usr/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 "/usr/local/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 "/usr/X386/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 "/usr/x386/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 "/usr/XFree86/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 "/usr/unsupported/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 "/usr/athena/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 "/usr/local/x11r5/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 "/usr/lpp/Xamples/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 "/usr/openwin/lib/X11/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 "/usr/openwin/share/lib/X11/")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (file font-rgb-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 r g b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (if (not file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 (while lib-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (setq file (expand-file-name "rgb.txt" (car lib-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (if (file-readable-p file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (setq lib-list nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 font-rgb-file file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 (setq lib-list (cdr lib-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 file nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 (if (null file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (list 0 0 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (set-buffer (find-file-noselect file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (if (not (= (aref (buffer-name) 0) ? ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (rename-buffer (generate-new-buffer-name " *rgb-tmp-buffer*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 (if (re-search-forward (format "\t%s$" (regexp-quote color)) nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (setq r (* (read (current-buffer)) 256)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 g (* (read (current-buffer)) 256)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 b (* (read (current-buffer)) 256)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 (font-warn 'color (format "No such color: %s" color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (setq r 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 g 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 b 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 (list r g b) ))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 (defun font-hex-string-to-number (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 "Convert STRING to an integer by parsing it as a hexadecimal number."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 (let ((conv-list '((?0 . 0) (?a . 10) (?A . 10)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 (?1 . 1) (?b . 11) (?B . 11)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 (?2 . 2) (?c . 12) (?C . 12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 (?3 . 3) (?d . 13) (?D . 13)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 (?4 . 4) (?e . 14) (?E . 14)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 (?5 . 5) (?f . 15) (?F . 15)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 (?6 . 6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 (?7 . 7)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 (?8 . 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (?9 . 9)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 (n 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 (i 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (lim (length string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 (while (< i lim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 (setq n (+ (* n 16) (or (cdr (assq (aref string i) conv-list)) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 i (1+ i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 n ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (defun font-parse-rgb-components (color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 "Parse RGB color specification and return a list of integers (R G B).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 #FEFEFE and rgb:fe/fe/fe style specifications are parsed."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 (let ((case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 r g b str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (cond ((string-match "^#[0-9a-f]+$" color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 ((= (length color) 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (setq r (font-hex-string-to-number (substring color 1 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 g (font-hex-string-to-number (substring color 2 3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 b (font-hex-string-to-number (substring color 3 4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 r (* r 4096)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 g (* g 4096)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 b (* b 4096)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 ((= (length color) 7)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 (setq r (font-hex-string-to-number (substring color 1 3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 g (font-hex-string-to-number (substring color 3 5))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 b (font-hex-string-to-number (substring color 5 7))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 r (* r 256)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 g (* g 256)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 b (* b 256)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 ((= (length color) 10)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 (setq r (font-hex-string-to-number (substring color 1 4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 g (font-hex-string-to-number (substring color 4 7))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 b (font-hex-string-to-number (substring color 7 10))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 r (* r 16)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 g (* g 16)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 b (* b 16)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 ((= (length color) 13)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 (setq r (font-hex-string-to-number (substring color 1 5))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 g (font-hex-string-to-number (substring color 5 9))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 b (font-hex-string-to-number (substring color 9 13))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 (font-warn 'color (format "Invalid RGB color specification: %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 (setq r 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 g 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 b 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 ((string-match "rgb:\\([0-9a-f]+\\)/\\([0-9a-f]+\\)/\\([0-9a-f]+\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 (if (or (> (- (match-end 1) (match-beginning 1)) 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (> (- (match-end 2) (match-beginning 2)) 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 (> (- (match-end 3) (match-beginning 3)) 4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (error "Invalid RGB color specification: %s" color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 (setq str (match-string 1 color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 r (* (font-hex-string-to-number str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 (expt 16 (- 4 (length str))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 str (match-string 2 color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 g (* (font-hex-string-to-number str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (expt 16 (- 4 (length str))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 str (match-string 3 color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 b (* (font-hex-string-to-number str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (expt 16 (- 4 (length str)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 (font-warn 'html (format "Invalid RGB color specification: %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 (setq r 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 g 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 b 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 (list r g b) ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (defsubst font-rgb-color-p (obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 (and (vectorp obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 (= (length obj) 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (eq (aref obj 0) 'rgb)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (defsubst font-rgb-color-red (obj) (aref obj 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 (defsubst font-rgb-color-green (obj) (aref obj 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 (defsubst font-rgb-color-blue (obj) (aref obj 3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 (defun font-color-rgb-components (color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 "Return the RGB components of COLOR as a list of integers (R G B).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 16-bit values are always returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 #FEFEFE and rgb:fe/fe/fe style color specifications are parsed directly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 into their components.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 RGB values for color names are looked up in the rgb.txt file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 The variable x-library-search-path is use to locate the rgb.txt file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 (let ((case-fold-search t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 ((font-rgb-color-p color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 (list (* 65535 (font-rgb-color-red color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 (* 65535 (font-rgb-color-green color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 (* 65535 (font-rgb-color-blue color))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 ((and (vectorp color) (= 3 (length color)) (floatp (aref color 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 (list (* 65535 (aref color 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 (* 65535 (aref color 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 (* 65535 (aref color 2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 ((and (vectorp color) (= 3 (length color)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (list (aref color 0) (aref color 1) (aref color 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 ((and (listp color) (= 3 (length color)) (floatp (car color)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 (mapcar (function (lambda (x) (* x 65535))) color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 ((and (listp color) (= 3 (length color)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 ((or (string-match "^#" color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (string-match "^rgb:" color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 (font-parse-rgb-components color))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 ((string-match "\\([0-9.]+\\)[ \t]\\([0-9.]+\\)[ \t]\\([0-9.]+\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (let ((r (string-to-number (match-string 1 color)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 (g (string-to-number (match-string 2 color)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (b (string-to-number (match-string 3 color))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (if (floatp r)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 (setq r (round (* 255 r))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 g (round (* 255 g))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 b (round (* 255 b))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 (font-parse-rgb-components (format "#%02x%02x%02x" r g b))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 (font-lookup-rgb-components color)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (defsubst font-tty-compute-color-delta (col1 col2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (+
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (* (- (aref col1 0) (aref col2 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (- (aref col1 0) (aref col2 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 (* (- (aref col1 1) (aref col2 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 (- (aref col1 1) (aref col2 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 (* (- (aref col1 2) (aref col2 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 (- (aref col1 2) (aref col2 2)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 (defun font-tty-find-closest-color (r g b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 ;; This is basically just a lisp copy of allocate_nearest_color
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 ;; from objects-x.c from Emacs 19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 ;; We really should just check tty-color-list, but unfortunately
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 ;; that does not include any RGB information at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 ;; So for now we just hardwire in the default list and call it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 ;; good for now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 (setq r (/ r 65535.0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 g (/ g 65535.0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 b (/ b 65535.0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 (let* ((color_def (vector r g b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (colors [([1.0 1.0 1.0] . "white")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 ([0.0 1.0 1.0] . "cyan")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 ([1.0 0.0 1.0] . "magenta")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 ([0.0 0.0 1.0] . "blue")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 ([1.0 1.0 0.0] . "yellow")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 ([0.0 1.0 0.0] . "green")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 ([1.0 0.0 0.0] . "red")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 ([0.0 0.0 0.0] . "black")])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 (no_cells (length colors))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 (x 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 (nearest 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 (nearest_delta 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 (trial_delta 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 (setq nearest_delta (font-tty-compute-color-delta (car (aref colors 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 color_def))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (while (/= no_cells x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 (setq trial_delta (font-tty-compute-color-delta (car (aref colors x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 color_def))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 (if (< trial_delta nearest_delta)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 (setq nearest x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 nearest_delta trial_delta))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 (setq x (1+ x)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 (cdr-safe (aref colors nearest))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (defun font-normalize-color (color &optional device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 "Return an RGB tuple, given any form of input. If an error occurs, black
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 is returned."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 ((eq (device-type device) 'x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 (apply 'format "#%04x%04x%04x" (font-color-rgb-components color)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 ((eq (device-type device) 'tty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 (apply 'font-tty-find-closest-color (font-color-rgb-components color)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 ((eq (device-type device) 'ns)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 (let ((vals (mapcar (function (lambda (x) (>> x 8)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 (font-color-rgb-components color))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 (apply 'format "RGB%02x%02x%02ff" vals)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 (t "black")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 (defun font-set-face-background (&optional face color &rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 (if (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 (call-interactively 'font-original-set-face-background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 ((font-rgb-color-p color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 (apply 'font-original-set-face-background face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 (font-normalize-color color) args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 (apply 'font-original-set-face-background face color args)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 (defun font-set-face-foreground (&optional face color &rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 (if (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 (call-interactively 'font-original-set-face-foreground)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 ((font-rgb-color-p color)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 (apply 'font-original-set-face-foreground face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 (font-normalize-color color) args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 (apply 'font-original-set-face-foreground face color args)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 ;;; Do the actual overwriting of some functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 (defmacro font-overwrite-fn (func)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 (` (let ((our-func (intern (format "font-%s" (, func))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 (new-func (intern (format "font-original-%s" (, func))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (old-func (and (fboundp (, func)) (symbol-function (, func)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 (if (not (fboundp new-func))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 (if old-func
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 (fset new-func old-func)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 (fset new-func 'ignore))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 (fset (, func) our-func))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 (font-overwrite-fn 'set-face-foreground)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 (font-overwrite-fn 'set-face-background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 (font-overwrite-fn 'set-face-font)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 (provide 'font)