Fix maintainer email
[bpt/emacs.git] / lisp / ps-mule.el
CommitLineData
e8af40ee 1;;; ps-mule.el --- provide multi-byte character facility to ps-print
2cb842ae 2
0d30b337 3;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
aaef169d 4;; 2005, 2006 Free Software Foundation, Inc.
2cb842ae 5
e8af40ee 6;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
3412b8d9
VJL
7;; Kenichi Handa <handa@m17n.org> (multi-byte characters)
8;; Maintainer: Kenichi Handa <handa@m17n.org> (multi-byte characters)
8b313639 9;; Vinicius Jose Latorre <vinicius@cpqd.com.br>
e8af40ee 10;; Keywords: wp, print, PostScript, multibyte, mule
edf0b0c5 11;; Time-stamp: <2003/05/14 22:19:41 vinicius>
2cb842ae
KH
12
13;; This file is part of GNU Emacs.
14
15;; GNU Emacs is free software; you can redistribute it and/or modify
16;; it under the terms of the GNU General Public License as published by
17;; the Free Software Foundation; either version 2, or (at your option)
18;; any later version.
19
20;; GNU Emacs is distributed in the hope that it will be useful,
21;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23;; GNU General Public License for more details.
24
25;; You should have received a copy of the GNU General Public License
26;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
27;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28;; Boston, MA 02110-1301, USA.
2cb842ae
KH
29
30;;; Commentary:
31
c276ee05 32;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2cb842ae
KH
33;;
34;; About ps-mule
35;; -------------
36;;
37;; This package is used for ps-print to print multi-byte buffer.
38;;
39;; See also ps-print.el.
40;;
41;;
42;; Printing Multi-byte Buffer
43;; --------------------------
44;;
45;; The variable `ps-multibyte-buffer' specifies the ps-print multi-byte buffer
46;; handling.
47;;
48;; Valid values for `ps-multibyte-buffer' are:
49;;
c276ee05
KH
50;; nil This is the value to use the default settings which
51;; is by default for printing buffer with only ASCII
52;; and Latin characters. The default setting can be
53;; changed by setting the variable
54;; `ps-mule-font-info-database-default' differently.
55;; The initial value of this variable is
56;; `ps-mule-font-info-database-latin' (see
57;; documentation).
2cb842ae
KH
58;;
59;; `non-latin-printer' This is the value to use when you have a japanese
60;; or korean PostScript printer and want to print
61;; buffer with ASCII, Latin-1, Japanese (JISX0208 and
62;; JISX0201-Kana) and Korean characters. At present,
63;; it was not tested the Korean characters printing.
64;; If you have a korean PostScript printer, please,
65;; test it.
66;;
67;; `bdf-font' This is the value to use when you want to print
68;; buffer with BDF fonts. BDF fonts include both latin
69;; and non-latin fonts. BDF (Bitmap Distribution
70;; Format) is a format used for distributing X's font
71;; source file. BDF fonts are included in
922be019 72;; `intlfonts-1.2' which is a collection of X11 fonts
2cb842ae
KH
73;; for all characters supported by Emacs. In order to
74;; use this value, be sure to have installed
922be019 75;; `intlfonts-1.2' and set the variable
2cb842ae
KH
76;; `bdf-directory-list' appropriately (see ps-bdf.el
77;; for documentation of this variable).
78;;
79;; `bdf-font-except-latin' This is like `bdf-font' except that it is used
80;; PostScript default fonts to print ASCII and Latin-1
81;; characters. This is convenient when you want or
82;; need to use both latin and non-latin characters on
83;; the same buffer. See `ps-font-family',
84;; `ps-header-font-family' and `ps-font-info-database'.
85;;
86;; Any other value is treated as nil.
87;;
88;; The default is nil.
89;;
c276ee05 90;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2cb842ae
KH
91
92;;; Code:
93
922be019
GM
94(eval-and-compile
95 (require 'ps-print)
96
97 ;; to avoid XEmacs compilation gripes
98 (defvar leading-code-private-22 157)
99 (or (fboundp 'charset-bytes)
100 (defun charset-bytes (charset) 1)) ; ascii
101 (or (fboundp 'charset-dimension)
102 (defun charset-dimension (charset) 1)) ; ascii
103 (or (fboundp 'charset-id)
104 (defun charset-id (charset) 0)) ; ascii
105 (or (fboundp 'charset-width)
106 (defun charset-width (charset) 1)) ; ascii
107 (or (fboundp 'find-charset-region)
108 (defun find-charset-region (beg end &optional table)
109 (list 'ascii)))
922be019
GM
110 (or (fboundp 'char-width)
111 (defun char-width (char) 1)) ; ascii
112 (or (fboundp 'chars-in-region)
113 (defun chars-in-region (beg end)
114 (- (max beg end) (min beg end))))
115 (or (fboundp 'forward-point)
116 (defun forward-point (arg)
117 (save-excursion
118 (let ((count (abs arg))
119 (step (if (zerop arg)
120 0
121 (/ arg arg))))
122 (while (and (> count 0)
123 (< (point-min) (point)) (< (point) (point-max)))
124 (forward-char step)
125 (setq count (1- count)))
126 (+ (point) (* count step))))))
127 (or (fboundp 'decompose-composite-char)
128 (defun decompose-composite-char (char &optional type
129 with-composition-rule)
130 nil))
131 (or (fboundp 'encode-coding-string)
132 (defun encode-coding-string (string coding-system &optional nocopy)
133 (if nocopy
134 string
135 (copy-sequence string))))
136 (or (fboundp 'coding-system-p)
137 (defun coding-system-p (obj) nil))
138 (or (fboundp 'ccl-execute-on-string)
139 (defun ccl-execute-on-string (ccl-prog status str
140 &optional contin unibyte-p)
141 str))
142 (or (fboundp 'define-ccl-program)
143 (defmacro define-ccl-program (name ccl-program &optional doc)
dc2f8de4
GM
144 `(defconst ,name nil ,doc)))
145 (or (fboundp 'multibyte-string-p)
146 (defun multibyte-string-p (str)
147 (let ((len (length str))
148 (i 0)
149 multibyte)
150 (while (and (< i len) (not (setq multibyte (> (aref str i) 255))))
151 (setq i (1+ i)))
152 multibyte)))
153 (or (fboundp 'string-make-multibyte)
d0d08a25
EZ
154 (defalias 'string-make-multibyte 'copy-sequence))
155 (or (fboundp 'encode-char)
156 (defun encode-char (ch ccs)
157 ch)))
2cb842ae 158
c276ee05 159
3ea591bd
KH
160;;;###autoload
161(defcustom ps-multibyte-buffer nil
162 "*Specifies the multi-byte buffer handling.
163
164Valid values are:
165
166 nil This is the value to use the default settings which
167 is by default for printing buffer with only ASCII
168 and Latin characters. The default setting can be
169 changed by setting the variable
170 `ps-mule-font-info-database-default' differently.
171 The initial value of this variable is
172 `ps-mule-font-info-database-latin' (see
173 documentation).
174
175 `non-latin-printer' This is the value to use when you have a Japanese
176 or Korean PostScript printer and want to print
177 buffer with ASCII, Latin-1, Japanese (JISX0208 and
178 JISX0201-Kana) and Korean characters. At present,
179 it was not tested the Korean characters printing.
180 If you have a korean PostScript printer, please,
181 test it.
182
183 `bdf-font' This is the value to use when you want to print
184 buffer with BDF fonts. BDF fonts include both latin
185 and non-latin fonts. BDF (Bitmap Distribution
186 Format) is a format used for distributing X's font
187 source file. BDF fonts are included in
922be019 188 `intlfonts-1.2' which is a collection of X11 fonts
3ea591bd
KH
189 for all characters supported by Emacs. In order to
190 use this value, be sure to have installed
922be019 191 `intlfonts-1.2' and set the variable
3ea591bd
KH
192 `bdf-directory-list' appropriately (see ps-bdf.el for
193 documentation of this variable).
194
195 `bdf-font-except-latin' This is like `bdf-font' except that it is used
196 PostScript default fonts to print ASCII and Latin-1
197 characters. This is convenient when you want or
198 need to use both latin and non-latin characters on
199 the same buffer. See `ps-font-family',
200 `ps-header-font-family' and `ps-font-info-database'.
201
202Any other value is treated as nil."
9909b395
GM
203 :type '(choice (const non-latin-printer) (const bdf-font)
204 (const bdf-font-except-latin) (const :tag "nil" nil))
3ea591bd 205 :group 'ps-print-font)
c276ee05 206
2cb842ae
KH
207(defvar ps-mule-font-info-database
208 nil
209 "Alist of charsets with the corresponding font information.
210Each element has the form:
211
76875dcb 212 (CHARSET (FONT-TYPE FONT-SRC FONT-NAME ENCODING BYTES)) ...)
2cb842ae
KH
213
214Where
215
216CHARSET is a charset (symbol) for this font family,
217
218FONT-TYPE is a font type: normal, bold, italic, or bold-italic.
219
b1a733ef 220FONT-SRC is a font source: builtin, bdf, vflib, or nil.
2cb842ae 221
922be019 222 If FONT-SRC is builtin, FONT-NAME is a built-in PostScript font name.
2cb842ae 223
5d5bea97
EZ
224 If FONT-SRC is bdf, FONT-NAME is a BDF font file name, or a list of
225 alternative font names. To use this font, the external library `ps-bdf'
226 is required.
2cb842ae
KH
227
228 If FONT-SRC is vflib, FONT-NAME is the name of a font that VFlib knows.
229 To use this font, the external library `vflib' is required.
230
231 If FONT-SRC is nil, a proper ASCII font in the variable
76875dcb
KH
232 `ps-font-info-database' is used, and FONT-NAME is ignored.
233 This is useful for Latin-1 characters.
2cb842ae 234
76875dcb
KH
235ENCODING is a charset to encode a character of CHARSET to a glyph
236code of the specifies font. ENCODING may be a function that does
237this encoding. In this case, the function is called with one
238argument, the character to encode, and it should return an
239encoded code. ENCODING may be nil, in which case CHARSET is used
240to encode a character.
2cb842ae 241
76875dcb
KH
242BYTES specifies how many bytes each character has in the encoded
243byte sequence; it should be 1 or 2. If ENCODING is a charset,
244BYTES may be nil, in chich case the dimension of ENCODING is
245used.
2cb842ae
KH
246
247All multi-byte characters are printed by fonts specified in this database
248regardless of a font family of ASCII characters. The exception is Latin-1
249characters which are printed by the same font as ASCII characters, thus obey
250font family.
251
252See also the variable `ps-font-info-database'.")
253
254(defconst ps-mule-font-info-database-latin
76875dcb
KH
255 '((iso-8859-1
256 (normal nil nil)))
2cb842ae
KH
257 "Sample setting of `ps-mule-font-info-database' to use latin fonts.")
258
c276ee05 259(defcustom ps-mule-font-info-database-default
2a772306 260 ps-mule-font-info-database-latin
8fdd56af
GM
261 "*The default setting to use when `ps-multibyte-buffer' is nil."
262 :type '(symbol :tag "Multi-Byte Buffer Database Font Default")
c276ee05 263 :group 'ps-print-font)
00cbf820 264
2cb842ae
KH
265(defconst ps-mule-font-info-database-ps
266 '((katakana-jisx0201
76875dcb
KH
267 (normal builtin "Ryumin-Light.Katakana")
268 (bold builtin "GothicBBB-Medium.Katakana")
269 (bold-italic builtin "GothicBBB-Medium.Katakana"))
2cb842ae 270 (latin-jisx0201
76875dcb
KH
271 (normal builtin "Ryumin-Light.Hankaku")
272 (bold builtin "GothicBBB-Medium.Hankaku"))
2cb842ae 273 (japanese-jisx0208
76875dcb
KH
274 (normal builtin "Ryumin-Light-H")
275 (bold builtin "GothicBBB-Medium-H"))
2cb842ae 276 (korean-ksc5601
76875dcb
KH
277 (normal builtin "Munhwa-Regular-KSC-EUC-H")
278 (bold builtin "Munhwa-Bold-KSC-EUC-H"))
2cb842ae
KH
279 )
280 "Sample setting of the `ps-mule-font-info-database' to use builtin PS font.
281
282Currently, data for Japanese and Korean PostScript printers are listed.")
283
284(defconst ps-mule-font-info-database-bdf
76875dcb
KH
285 '((iso-8859-1
286 (normal bdf ("lt1-24-etl.bdf" "etl24-latin1.bdf"))
287 (bold bdf ("lt1-16b-etl.bdf" "etl16b-latin1.bdf"))
288 (italic bdf ("lt1-16i-etl.bdf" "etl16i-latin1.bdf"))
289 (bold-italic bdf ("lt1-16bi-etl.bdf" "etl16bi-latin1.bdf")))
290 (iso-8859-2
291 (normal bdf ("lt2-24-etl.bdf" "etl24-latin2.bdf")))
292 (iso-8859-3
293 (normal bdf ("lt3-24-etl.bdf" "etl24-latin3.bdf")))
294 (iso-8859-4
295 (normal bdf ("lt4-24-etl.bdf" "etl24-latin4.bdf")))
2cb842ae 296 (thai-tis620
76875dcb 297 (normal bdf ("thai24.bdf" "thai-24.bdf") iso-8859-11))
2cb842ae 298 (greek-iso8859-7
76875dcb 299 (normal bdf ("grk24-etl.bdf" "etl24-greek.bdf") iso-8859-7))
2cb842ae 300 (hebrew-iso8859-8
76875dcb
KH
301 (normal bdf ("heb24-etl.bdf" "etl24-hebrew.bdf") iso-8859-8))
302 (jisx0201
303 (normal bdf "12x24rk.bdf" jisx0201))
2cb842ae 304 (cyrillic-iso8859-5
76875dcb
KH
305 (normal bdf ("cyr24-etl.bdf" "etl24-cyrillic.bdf") iso-8859-5))
306 (iso-8859-9
307 (normal bdf ("lt5-24-etl.bdf" "etl24-latin5.bdf") iso-8859-9))
2cb842ae 308 (chinese-gb2312
76875dcb 309 (normal bdf "gb24st.bdf"))
2cb842ae 310 (japanese-jisx0208
76875dcb 311 (normal bdf "jiskan24.bdf"))
2cb842ae 312 (korean-ksc5601
76875dcb 313 (normal bdf "hanglm24.bdf"))
2cb842ae 314 (japanese-jisx0212
76875dcb 315 (normal bdf ("jksp40.bdf" "jisksp40.bdf")))
2cb842ae 316 (chinese-cns11643-1
76875dcb 317 (normal bdf ("cns1-40.bdf" "cns-1-40.bdf")))
2cb842ae 318 (chinese-cns11643-2
76875dcb
KH
319 (normal bdf ("cns2-40.bdf" "cns-2-40.bdf")))
320 (big5
321 (normal bdf "taipei24.bdf"))
2cb842ae 322 (chinese-sisheng
76875dcb 323 (normal bdf ("sish24-etl.bdf" "etl24-sisheng.bdf")))
2cb842ae 324 (ipa
76875dcb
KH
325 (normal bdf ("ipa24-etl.bdf" "etl24-ipa.bdf") ipa))
326 (viscii
327 (normal bdf ("visc24-etl.bdf" "etl24-viscii.bdf")))
2cb842ae 328 (arabic-digit
76875dcb 329 (normal bdf ("arab24-0-etl.bdf" "etl24-arabic0.bdf")))
2cb842ae 330 (arabic-1-column
76875dcb 331 (normal bdf ("arab24-1-etl.bdf" "etl24-arabic1.bdf")))
2cb842ae 332 (lao
76875dcb 333 (normal bdf ("lao24-mule.bdf" "mule-lao-24.bdf") ps-mule-encode-lao 1))
2cb842ae 334 (arabic-2-column
76875dcb
KH
335 (normal bdf ("arab24-2-etl.bdf" "etl24-arabic2.bdf")))
336 (devanagari-cdac
337 (normal bdf "dvsr0ntt-32.bdf"))
338 (malayalam-cdac
339 (normal bdf "mlkr0ntt-32.bdf"))
340 (tamil-cdac
341 (normal bdf "tmvl0ntt-32.bdf"))
2cb842ae 342 (indian-is13194
76875dcb 343 (normal bdf ("isci24-mule.bdf" "mule-iscii-24.bdf")))
2cb842ae 344 (indian-1-column
76875dcb 345 (normal bdf ("ind1c24-mule.bdf" "mule-indian-1col-24.bdf")))
2cb842ae 346 (ethiopic
76875dcb 347 (normal bdf ("ethio24f-uni.bdf" "ethiomx24f-uni.bdf") unicode-bmp))
2cb842ae 348 (chinese-cns11643-3
76875dcb 349 (normal bdf ("cns3-40.bdf" "cns-3-40.bdf")))
2cb842ae 350 (chinese-cns11643-4
76875dcb 351 (normal bdf ("cns4-40.bdf" "cns-4-40.bdf")))
2cb842ae 352 (chinese-cns11643-5
76875dcb 353 (normal bdf ("cns5-40.bdf" "cns-5-40.bdf")))
2cb842ae 354 (chinese-cns11643-6
76875dcb 355 (normal bdf ("cns6-40.bdf" "cns-6-40.bdf")))
2cb842ae 356 (chinese-cns11643-7
76875dcb 357 (normal bdf ("cns7-40.bdf" "cns-7-40.bdf")))
2cb842ae 358 (indian-2-column
76875dcb 359 (normal bdf ("ind24-mule.bdf" "mule-indian-24.bdf")))
2cb842ae 360 (tibetan
76875dcb
KH
361 (normal bdf ("tib24p-mule.bdf" "tib24-mule.bdf" "mule-tibmdx-24.bdf")))
362 (unicode-bmp
363 (normal bdf "etl24-unicode.bdf"))
364 )
2cb842ae
KH
365 "Sample setting of the `ps-mule-font-info-database' to use BDF fonts.
366BDF (Bitmap Distribution Format) is a format used for distributing X's font
367source file.
368
d0d08a25
EZ
369Current default value list for BDF fonts is included in `intlfonts-1.2'
370which is a collection of X11 fonts for all characters supported by Emacs.
2cb842ae 371
d0d08a25
EZ
372Using this list as default value to `ps-mule-font-info-database', all
373characters including ASCII and Latin-1 are printed by BDF fonts.
2cb842ae
KH
374
375See also `ps-mule-font-info-database-ps-bdf'.")
376
377(defconst ps-mule-font-info-database-ps-bdf
378 (cons (car ps-mule-font-info-database-latin)
379 (cdr (cdr ps-mule-font-info-database-bdf)))
380 "Sample setting of the `ps-mule-font-info-database' to use BDF fonts.
381
d0d08a25
EZ
382Current default value list for BDF fonts is included in `intlfonts-1.2'
383which is a collection of X11 fonts for all characters supported by Emacs.
2cb842ae 384
d0d08a25
EZ
385Using this list as default value to `ps-mule-font-info-database', all
386characters except ASCII and Latin-1 characters are printed with BDF fonts.
387ASCII and Latin-1 characters are printed with PostScript font specified
388by `ps-font-family' and `ps-header-font-family'.
2cb842ae
KH
389
390See also `ps-mule-font-info-database-bdf'.")
391
76875dcb
KH
392(defvar ps-mule-font-spec-list nil
393 "Array of FONT-SPEC lists for each font type.
2cb842ae 394
76875dcb
KH
395Elements are for `normal' font, `bold' font, `italic' font, and
396`bold-italic' font in this order.
397
398Each element is a list of FONT-SPEC which has this form:
2cb842ae 399
76875dcb
KH
400 (ID CHARSET (FONT-SRC FONT-NAME ENCODING) EXTRA-DATA)
401
402Where
403
404ID is a number for this FONT-SPEC and is unique in the list.
405
406CHARSET, FONT-SRC, FONT-NAME, ENCODING are the same as those in
407`ps-mule-font-info-database' (which see).
408
409EXTRA-DATA is a data attached by external libraries.
410
411Each list is ordered by the current charset priorities.
412
413This variable is setup by `ps-mule-begin-job' from
414`ps-mule-font-info-database'.")
415
416;; Functions to access each element of FONT-SPEC.
417(defsubst ps-mule-font-spec-id (font-spec) (aref font-spec 0))
418(defsubst ps-mule-font-spec-charset (font-spec) (aref font-spec 1))
419(defsubst ps-mule-font-spec-font-id (font-spec) (aref font-spec 2))
420(defsubst ps-mule-font-spec-src (font-spec) (aref font-spec 3))
421(defsubst ps-mule-font-spec-name (font-spec) (aref font-spec 4))
422(defsubst ps-mule-font-spec-set-name (font-spec name)
423 (aset font-spec 4 name))
424(defsubst ps-mule-font-spec-encoding (font-spec) (aref font-spec 5))
425(defsubst ps-mule-font-spec-bytes (font-spec) (aref font-spec 6))
426(defsubst ps-mule-font-spec-extra (font-spec) (aref font-spec 7))
427(defsubst ps-mule-font-spec-set-extra (font-spec extra)
428 (aset font-spec 7 extra))
429
430;; Functions to encode character into glyph code.
431(defun ps-mule-encode-lao (char)
432 (- char #x0DE0))
433
434(defun ps-mule-encode-char (char font-spec)
435 (let ((encoding (ps-mule-font-spec-encoding font-spec)))
436 (cond ((charsetp encoding)
437 (encode-char char encoding))
438 ((fboundp encoding)
439 (funcall encoding char))
440 (t
441 char))))
442
443;; Array of FONT-SPEC-TABLEs; Nth element is for FONT-TYPE N.
444;;
445;; FONT-TYPE is 0, 1, 2, or 3 representing normal, bold, italic, and
446;; bold-italic respectively.
447;;
448;; FONT-SPEC-TABLE is a char-table of FONT-SPECs. It records which
449;; character is printed by which FONT-SPEC. It has one extra slot
450;; whose value is an alist of the form:
451;; (CHARSET . FONT-SPEC)
452;; FONT-SPEC is a vecotr of the form:
453;; (ID FONT-SRC FONT-NAME ENCODING EXTRA)
454(defvar ps-mule-font-spec-tables nil)
455
456;; Array of FONT-TYPEs; Nth element FONT-NUMBER N.
457;;
458;; FONT-NUMBER is 0, 1, 2, 3, 4, 5, 6 representing fonts f0, f1, f2,
459;; f3, h0, h1, and H0.
460(defconst ps-mule-font-number-to-type [ 0 1 2 3 1 0 0 ])
461
462(defsubst ps-mule-get-font-spec (char font-spec-table font-spec)
463 "Return a font spec for printing CHAR with FONT-SPEC-TABLE.
464
465FONT-SPEC, if non-nil, is a font spec to try at first.
466
467See the documentation of `ps-mule-font-spec-tables' for the
468format of font spec."
469
470 (or (aref font-spec-table char)
471 (aset font-spec-table char
472 (or (and (< char 256)
473 (cdr (car (char-table-extra-slot font-spec-table 0))))
474 (and font-spec
475 (encode-char char (ps-mule-font-spec-charset font-spec))
476 font-spec)
477 (catch 'tag
478 (dolist (elt (char-table-extra-slot font-spec-table 0))
479 (and (encode-char char (car elt))
480 (throw 'tag (cdr elt)))))
481 ;; Record that no font-spec exist for CHAR.
482 t))))
2cb842ae
KH
483
484(defconst ps-mule-external-libraries
76875dcb
KH
485 '((builtin nil nil nil nil nil nil)
486 (bdf ps-bdf nil bdf-generate-prologue
487 bdf-check-font bdf-generate-font bdf-generate-glyph)
488 (pcf nil nil pcf-generate-prologue
489 pcf-check-font pcf-generate-font pcf-generate-glyph)
490 (vflib nil nil vflib-generate-prologue
491 vflib-check-font vflib-generate-font vflib-generate-glyphs))
2cb842ae
KH
492 "Alist of information of external libraries to support PostScript printing.
493Each element has the form:
494
76875dcb
KH
495 (FONT-SRC FEATURE INITIALIZED-P
496 PROLOGUE-FUNC CHECK-FUNC FONT-FUNC GLYPH-FUNC)
2cb842ae
KH
497
498FONT-SRC is the font source: builtin, bdf, pcf, or vflib.
499
500FEATURE is the feature that provide a facility to handle FONT-SRC. Except for
501`builtin' FONT-SRC, this feature is automatically `require'd before handling
502FONT-SRC. Currently, we only have the feature `ps-bdf'.
503
504INITIALIZED-P indicates if this library is initialized or not.
505
76875dcb
KH
506PROLOGUE-FUNC is a function to generate PostScript code which
507define several PostScript procedures that will be called by
508FONT-FUNC and GLYPHS-FUNC. It is called with no argument, and
509should return a list of strings.
2cb842ae 510
76875dcb
KH
511CHECK-FUNC is a function to check if a font is available or not.
512It is called with one argument FONT-SPEC, and should return
513non-nil iff the font specified in FONT-SPEC is available.
2cb842ae 514
76875dcb
KH
515FONT-FUNC is a function to generate PostScript code which define
516a new font. It is called with one argument FONT-SPEC, and should
517return a list of strings.
518
519GLYPH-FUNC is a function to generate PostScript code which define a glyph of
520characters. It is called with two arguments FONT-SPEC and CODE,
2cb842ae
KH
521and should return a list of strings.")
522
76875dcb
KH
523(defsubst ps-mule-exlib-feature (exlib) (nth 1 exlib))
524(defsubst ps-mule-exlib-initialized-p (exlib) (nth 2 exlib))
525(defsubst ps-mule-exlib-set-initialized-p (exlib val)
526 (setcar (nthcdr 2 exlib) val))
527(defsubst ps-mule-exlib-prologue (exlib) (nth 3 exlib))
528(defsubst ps-mule-exlib-check (exlib) (nth 4 exlib))
529(defsubst ps-mule-exlib-font (exlib) (nth 5 exlib))
530(defsubst ps-mule-exlib-glyph (exlib) (nth 6 exlib))
531
532(defun ps-mule-init-external-library (exlib)
533 "Initialize external library specified by EXLIB for PostScript printing.
534See the documentation of `ps-mule-external-libraries' for EXLIB's meaning."
535 (or (ps-mule-exlib-initialized-p exlib)
536 (let ((prologue-func (ps-mule-exlib-prologue exlib)))
537 (if prologue-func
538 (let ((feature (ps-mule-exlib-feature exlib)))
539 (if feature
540 (require feature))
541 (ps-output-prologue (funcall prologue-func))))
542 (ps-mule-exlib-set-initialized-p exlib t))))
543
544(defvar ps-mule-output-list nil)
545
546(defun ps-mule-check-font (font-spec)
547 "Check if a font specified in FONT-SPEC is available or not."
548 (let ((font-src (ps-mule-font-spec-src font-spec)))
2cb842ae 549 (or (not font-src)
76875dcb
KH
550 (let ((exlib (assq font-src ps-mule-external-libraries)))
551 (ps-mule-init-external-library exlib)
552 (or (not (ps-mule-exlib-check exlib))
553 (funcall (ps-mule-exlib-check exlib) font-spec))))))
2cb842ae 554
76875dcb
KH
555(defun ps-mule-prepare-font (font-spec)
556 "Generate PostScript codes defining a new font of FONT-TYPE for CHARSET."
557 (let* ((font-src (ps-mule-font-spec-src font-spec))
558 (exlib (assq font-src ps-mule-external-libraries))
559 (id (ps-mule-font-spec-id font-spec))
560 (ftag (format "%02X" id))
561 (font-func (ps-mule-exlib-font exlib))
562 output-list)
563 (if font-func
564 (setq output-list (funcall font-func font-spec))
565 (setq output-list
566 (format "/F%s /%s findfont def\n"
567 ftag (or (ps-mule-font-spec-name font-spec) "Courier")))
568 (ps-mule-font-spec-set-extra font-spec t))
569 (and output-list
570 (nconc ps-mule-output-list (list output-list)))))
571
572(defun ps-mule-prepare-glyph (char font-spec)
573 "Generate PostScript codes to print CHAR by FONT-SPEC.
574
575If CHAR is a cons (FROM TO), generate codes for characters
576specified by the character code range FROM and TO.
577
578The generated code is inserted on prologue part."
579 (if (vectorp font-spec)
580 (progn
581 (or (ps-mule-font-spec-extra font-spec)
582 (ps-mule-prepare-font font-spec))
583 (let ((glyph-func (ps-mule-exlib-glyph
584 (assq (ps-mule-font-spec-src font-spec)
585 ps-mule-external-libraries))))
586 (if glyph-func
587 (let (from to output-list)
588 (if (consp char)
589 (setq from (car char) to (cdr char))
590 (setq from char to char))
591 (while (<= from to)
592 (setq output-list
593 (funcall glyph-func font-spec from))
594 (and output-list
595 (ps-output-prologue output-list))
596 (setq from (1+ from)))))))))
2cb842ae
KH
597
598;; This is a PostScript code inserted in the header of generated PostScript.
599(defconst ps-mule-prologue
600 "%%%% Start of Mule Section
601
440756f0
KH
602/Latin1Encoding { % newname fontname | font
603 findfont dup length dict begin
604 { 1 index /FID ne { def } { pop pop } ifelse } forall
605 /Encoding ISOLatin1Encoding def
606 currentdict
607 end
608 definefont
609} bind def
610
76875dcb
KH
611%% Redefine fonts for multiple charsets.
612/ReDefFont { % fontname encoding fdepvector size | -
613 20 dict begin
614 3 index findfont {
615 1 index /FID ne 2 index /UniqueID ne and {def} {pop pop} ifelse
616 } forall
617 /FontType 0 def
618 /FMapType 3 def
619 /EscChar 0 def
620 % FontMatrix ::= [ size 0 0 size 0 0 ]
621 /FontMatrix exch [ exch dup 0 exch 0 exch 0 0 ] def
622 /FDepVector exch def
623 /Encoding exch def
624 currentdict
625 end % fontname dic
626 definefont pop
440756f0 627} bind def
2cb842ae
KH
628"
629 "PostScript code for printing multi-byte characters.")
630
631(defvar ps-mule-prologue-generated nil)
632
76875dcb
KH
633;; EscChar used in generated composite fonts.
634(defconst ps-mule-esc-char 0)
635
2cb842ae
KH
636(defun ps-mule-prologue-generated ()
637 (unless ps-mule-prologue-generated
638 (ps-output-prologue ps-mule-prologue)
76875dcb 639 (ps-output-prologue (format "/EscChar %d def\n" ps-mule-esc-char))
2cb842ae
KH
640 (setq ps-mule-prologue-generated t)))
641
76875dcb
KH
642(defun ps-mule-encode-region (from to font-spec-table)
643 "Generate PostScript code for plotting characters in the region FROM and TO.
2cb842ae 644
76875dcb
KH
645FONT-NUM is 0, 1, 2, 3, 4, 5, or 6, each represents font tags
646f0, f1, f2, f3, h0, h1, and H0 respectively."
647 (let* ((font-spec nil)
648 (font-id 0)
649 (string-list nil)
650 ;; At most 4-byte (EscChar FONT-ID CODE1 CODE2) per character.
651 (str (make-string (* (- to from) 4) 0))
652 (i 0))
653 (goto-char from)
654 (while (< (point) to)
655 (let* ((char (following-char))
656 (this-spec (ps-mule-get-font-spec char font-spec-table font-spec))
657 this-id)
658 (if (vectorp this-spec)
659 (setq this-id (ps-mule-font-spec-font-id this-spec))
660 ;; Can't print CHAR. Replace it with '?'.
661 (setq char ??
662 this-spec (ps-mule-get-font-spec char font-spec-table nil)
663 this-id (ps-mule-font-spec-font-id this-spec)))
664 (or (= font-id this-id)
665 (progn
666 (if font-spec
667 (setq string-list (cons (substring str 0 i) string-list)
668 i 0))
669 (setq font-id this-id)
670 (or (= font-id 0)
671 (progn
672 (aset str i ps-mule-esc-char)
673 (setq i (1+ i))
674 (aset str i font-id)
675 (setq i (1+ i))))))
676 (setq font-spec this-spec)
677 (if (< char 128)
678 (aset str i char)
679 (let* ((code (ps-mule-encode-char char font-spec)))
680 (if (= (ps-mule-font-spec-bytes font-spec) 1)
cb0ff0f1
KH
681 (aset str i code)
682 (aset str i (/ code 256))
76875dcb 683 (setq i (1+ i))
cb0ff0f1 684 (aset str i (% code 256)))))
76875dcb
KH
685 (setq i (1+ i))
686 (forward-char 1)))
687 (nreverse (cons (substring str 0 i) string-list))))
688
689(defun ps-mule-plot-composition (composition font-spec-table)
690 "Generate PostScript code for plotting COMPOSITION with FONT-NUM."
691 (ps-output "[")
692 (let ((components (copy-sequence (nth 2 composition)))
693 (font-spec nil))
694 (dotimes (i (length components))
695 (let ((elt (aref components i))
696 this-spec)
697 (if (consp elt)
698 ;; ELT is a composition rule.
699 (ps-output (format " %d" (encode-composition-rule elt)))
700 ;; ELT is a glyph character.
701 (setq this-spec
702 (ps-mule-get-font-spec elt font-spec-table font-spec))
703 (or (vectorp this-spec)
704 ;; Can't print CHAR. Replace it with '?'.
705 (setq elt ??
706 this-spec
707 (ps-mule-get-font-spec elt font-spec-table font-spec)))
708 (setq font-spec this-spec)
709 (let* ((bytes (ps-mule-font-spec-bytes font-spec))
710 (code (ps-mule-encode-char elt font-spec))
711 (font-id (ps-mule-font-spec-font-id font-spec))
712 (str (make-string (if (= font-id 0) 1 (+ 2 bytes)) 0)))
713 (if (= font-id 0)
cb0ff0f1 714 (aset str 0 code)
76875dcb 715 (aset str 0 ps-mule-esc-char)
cb0ff0f1 716 (aset str 1 font-id)
76875dcb 717 (if (= bytes 1)
cb0ff0f1
KH
718 (aset str 2 code)
719 (aset str 2 (/ code 256))
720 (aset str 3 (% code 256))))
76875dcb
KH
721 (ps-output "[")
722 (ps-output-string str)
723 (ps-output (if (eq (ps-mule-font-spec-src font-spec) 'bdf)
724 (format "/C%02X-%X" (ps-mule-font-spec-id font-spec)
725 elt)
726 "false"))
727 (ps-output "]"))))))
728 (ps-output " ] " (if (nth 3 composition) "RLC" "RBC") "\n"))
2cb842ae 729
2cb842ae 730(defun ps-mule-plot-string (from to &optional bg-color)
922be019 731 "Generate PostScript code for plotting characters in the region FROM and TO.
2cb842ae 732
76875dcb 733Optional argument BG-COLOR is ignored.
d0da93b3
KH
734
735Returns the value:
736
737 (ENDPOS . RUN-WIDTH)
738
739Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
740the sequence."
76875dcb
KH
741 (let* ((average-width (ps-avg-char-width 'ps-font-for-text))
742 (point (point))
743 (composition (find-composition from to nil t))
744 (stop (if composition (car composition) to))
745 (ascii-or-latin-1 "[\000-\377]+")
746 (run-width 0)
747 (endpos nil)
748 (font-spec-table (aref ps-mule-font-spec-tables
749 (aref ps-mule-font-number-to-type
750 ps-current-font)))
751 width)
752 (goto-char from)
753 (while (not endpos)
754 (cond ((= (point) stop)
755 (if (= stop to)
756 (setq endpos stop)
757 (if (< from stop)
758 (dolist (l (ps-mule-encode-region from (point)
759 font-spec-table))
760 (ps-output-string l)
761 (ps-output " S\n")))
762 (setq width (* (nth 5 composition) average-width))
763 (if (< ps-width-remaining (+ run-width width))
764 (setq endpos stop)
765 (ps-mule-plot-composition composition font-spec-table)
766 (setq run-width (+ run-width width)
767 from (nth 1 composition))
768 (goto-char from)
769 (setq composition (find-composition (point) to nil t))
770 (setq stop (if composition (car composition) to)))))
771
772 ((looking-at ascii-or-latin-1)
773 (let ((nchars (- (min (match-end 0) stop) (point))))
774 (setq width (* average-width nchars))
775 (if (< ps-width-remaining (+ run-width width))
776 (setq nchars (truncate (- ps-width-remaining run-width)
777 average-width)
778 run-width (+ run-width (* nchars average-width))
779 endpos (+ (point) nchars))
780 (setq run-width (+ run-width width))
781 (forward-char nchars))))
782
783 (t
784 (while (and (< (point) stop) (not endpos))
785 (setq width (char-width (following-char)))
786 (if (< ps-width-remaining (+ run-width width))
787 (setq endpos (point))
788 (setq run-width (+ run-width width))
789 (forward-char 1))))))
790
791 (if (< from endpos)
792 (dolist (l (ps-mule-encode-region from endpos font-spec-table))
793 (ps-output-string l)
794 (ps-output " S\n")))
795 (goto-char point)
796 (cons endpos run-width)))
797
798;; Character composition support
2cb842ae 799
d0da93b3 800(defvar ps-mule-composition-prologue-generated nil)
2cb842ae 801
d0da93b3 802(defconst ps-mule-composition-prologue
76875dcb 803 "%%%% Procedures for character composition.
d0da93b3 804/RelativeCompositionSkip 0.4 def
2cb842ae
KH
805
806%% Get a bounding box (relative to currentpoint) of STR.
76875dcb
KH
807/GetPathBox { % [ str cname ] | -
808 dup 1 get dup false ne {
809 BitmapDict exch get /bmp exch def
810 %% bmp ::= [ DWIDTH WIDTH HEIGHT XOFF YOFF BITMAP RELATIVE-COMPOSE]
811 /LLY bmp 4 get def
812 /URY LLY bmp 2 get add def
813 /RelativeCompose bmp 6 get dup false ne {
814 dup LLY le { pop 1 } { URY ge { -1 } { 0 } ifelse } ifelse
815 } {
816 pop 0
817 } ifelse def
818 dup 0 get stringwidth pop dup /WIDTH exch def bmp 0 get div
819 dup LLY mul /LLY exch def
820 URY mul /URY exch def
2cb842ae 821 } {
76875dcb
KH
822 pop
823 dup 0 get stringwidth pop /WIDTH exch def
824 gsave 0 0 moveto
825 dup 0 get false charpath flattenpath pathbbox
826 /URY exch def pop /LLY exch def pop
827 grestore
828 /RelativeCompose 0 def
2cb842ae 829 } ifelse
2cb842ae
KH
830} bind def
831
76875dcb
KH
832%% Apply effects except for shadow and outline to the rectangle
833%% specified by TOP BOTTOM LEFT RIGHT.
834/SpecialEffect { % -- | --
d0da93b3
KH
835 currentpoint dup TOP add /yy exch def BOTTOM add /YY exch def
836 dup LEFT add /xx exch def RIGHT add /XX exch def
837 %% Adjust positions for future shadowing.
838 Effect 8 and 0 ne {
839 /yy yy Yshadow add def
840 /XX XX Xshadow add def
841 } if
842 Effect 1 and 0 ne { UnderlinePosition Hline } if % underline
843 Effect 2 and 0 ne { StrikeoutPosition Hline } if % strikeout
844 Effect 4 and 0 ne { OverlinePosition Hline } if % overline
845 bg { % background
846 true
847 Effect 16 and 0 ne {SpaceBackground doBox} { xx yy XX YY doRect} ifelse
848 } if
849 Effect 16 and 0 ne { false 0 doBox } if % box
850} def
2cb842ae 851
76875dcb
KH
852%% Draw COMPONENTS which has the form [ [str0 xoff0 yoff0] ... ] with
853%% effects shadow and outline.
854/ShowComponents { % components | -
855 gsave
856 { gsave aload pop rmoveto
857 Effect 8 and 0 ne { dup doShadow } if
858 Effect 32 and 0 ne { true doOutline } { show } ifelse
859 grestore
d0da93b3 860 } forall
76875dcb 861 grestore
d0da93b3
KH
862 RIGHT 0 rmoveto
863} def
864
865%% Show relative composition.
76875dcb 866/RLC { % [[str0 cname0] [str1 cname1] ... [strN cnameN]] | -
d0da93b3 867 /components exch def
76875dcb
KH
868 [ % push [str xoff yoff] one by one
869 [ components 0 get GetPathBox aload pop pop 0 0 ]
870 %% Bounding box of overall glyphs.
871 /LEFT 0 def
872 /RIGHT WIDTH def
873 /TOP URY def
874 /BOTTOM LLY def
875
876 1 1 components length 1 sub {
877 components exch get
878 [ exch
879 GetPathBox
880 aload pop pop % str
881 0 % xoff
882 RelativeCompose 1 eq { % compose on TOP
883 TOP LLY sub RelativeCompositionSkip add % yoff
884 /TOP TOP URY LLY sub add RelativeCompositionSkip add def
885 } { RelativeCompose -1 eq { % compose under BOTTOM
886 BOTTOM URY sub RelativeCompositionSkip sub % yoff
887 /BOTTOM BOTTOM URY LLY sub sub
888 RelativeCompositionSkip sub def
d0da93b3 889 } {
76875dcb
KH
890 0 % yoff
891 URY TOP gt { /TOP URY def } if
892 LLY BOTTOM lt { /BOTTOM LLY def } if
893 } ifelse } ifelse
894 ]
895 } for
896 ]
897 SpecialEffect % Reflect special effects.
898 ShowComponents % Draw components.
d0da93b3
KH
899} def
900
901%% Show rule-base composition.
76875dcb 902/RBC { % [[str0 cname0] rule1 [str1 cname0] rule2 ... [strN cnameN]] | -
d0da93b3 903 /components exch def
76875dcb
KH
904 [ % push [str xoff yoff] one by one
905 [ components 0 get GetPathBox aload pop pop 0 0 ]
906 %% Bounding box of overall glyphs.
907 /LEFT 0 def
908 /RIGHT WIDTH def
909 /TOP URY def
910 /BOTTOM LLY def
911 1 1 components length 1 sub {
912 components exch get /elt exch def
913 elt type /integertype eq { % rule
914 %% Do the same RULE decoding as the macro
922be019 915 %% COMPOSITION_DECODE_RULE in emacs/src/composite.h.
d0da93b3
KH
916 elt 12 idiv dup 3 mod /grefx exch def 3 idiv /grefy exch def
917 elt 12 mod dup 3 mod /nrefx exch def 3 idiv /nrefy exch def
d0da93b3 918 } { % other strings
76875dcb 919 [
d0da93b3 920 elt GetPathBox
76875dcb 921 aload pop pop
d0da93b3 922 /height URY LLY sub def
76875dcb
KH
923 /left LEFT [ 0 RIGHT LEFT sub dup 2 div exch ] grefx get add
924 [ 0 WIDTH 2 div WIDTH ] nrefx get sub def
d0da93b3
KH
925 /bottom [ TOP 0 BOTTOM TOP BOTTOM add 2 div ] grefy get
926 [ height LLY neg 0 height 2 div ] nrefy get sub def
927 %% Update bounding box
928 left LEFT lt { /LEFT left def } if
76875dcb 929 left WIDTH add RIGHT gt { /RIGHT left WIDTH add def } if
d0da93b3
KH
930 bottom BOTTOM lt { /BOTTOM bottom def } if
931 bottom height add TOP gt { /TOP bottom height add def } if
76875dcb
KH
932 left bottom LLY sub ]
933 } ifelse
934 } for
935 ]
64ed6f71 936
76875dcb
KH
937 LEFT 0 lt { % Adjust xoff to the right.
938 dup { dup 1 get LEFT sub 1 exch put } forall
939 /RIGHT RIGHT LEFT sub def
940 } if
d0da93b3 941
76875dcb
KH
942 SpecialEffect % Reflect special effects.
943 ShowComponents % Draw components.
d0da93b3 944} def
76875dcb 945%%%% End of procedures for character composition
2cb842ae 946"
922be019 947 "PostScript code for printing character composition.")
2cb842ae 948
76875dcb
KH
949(defun ps-mule-composition-prologue-generated ()
950 (unless ps-mule-composition-prologue-generated
951 (ps-mule-prologue-generated)
952 (ps-output-prologue ps-mule-composition-prologue)
953 (setq ps-mule-composition-prologue-generated t)))
2cb842ae
KH
954
955;; Bitmap font support
956
957(defvar ps-mule-bitmap-prologue-generated nil)
958
959(defconst ps-mule-bitmap-prologue
76875dcb 960 "%%%% Procedures for bitmap fonts.
2cb842ae 961
76875dcb
KH
962%% Create a base bitmap font.
963/NBF { % fontname fontsize relative-compose baseline-offset enc | --
964 11 dict begin
965 /FontType 3 def
966 /FontMatrix matrix def
967 /FontBBox [ 0 0 0 0 ] def
968 /Encoding exch def
2cb842ae
KH
969 /BaselineOffset exch def
970 /RelativeCompose exch def
971 /FontSize exch def
76875dcb
KH
972 /FontMatrix [ 1 FontSize div 0 0 1 FontSize div 0 0 ] def
973 /BuildGlyph { % fontdict charname | -
974 BitmapDict exch get /bmp exch def pop
975 %% bmp ::= [ DWIDTH WIDTH HEIGHT XOFF YOFF BITMAP RELATIVE-COMPOSE ]
976 /llx bmp 3 get def
977 /lly bmp 4 get def
978 /urx llx bmp 1 get add def
979 /ury lly bmp 2 get add def
980 bmp 0 get 0 llx lly urx ury setcachedevice
981 bmp 5 get length 0 gt {
982 llx ury translate
983 bmp 1 get bmp 2 get
984 true [ 1 0 0 -1 0 0 ] { bmp 5 get } imagemask
985 } if
986 } bind def
987 /BuildChar { % fontdict byte | -
988 1 index /Encoding get exch get
989 1 index /BuildGlyph get exec
990 } bind def
991 dup currentdict end
992 definefont def
2cb842ae
KH
993} bind def
994
76875dcb
KH
995%% Create a parent font of 8/8 mapping.
996/NPF { % fontname encoding fdepvector | -
997 8 dict begin
998 /FontType 0 def
999 /FMapType 2 def
1000 /FontMatrix matrix def
1001 /FDepVector exch def
1002 /Encoding exch def
1003 dup currentdict
1004 end
1005 definefont def
2cb842ae 1006} bind def
2cb842ae 1007
76875dcb 1008%%%% End of procedures for bitmap fonts.
2cb842ae
KH
1009")
1010
1011;; External library support.
1012
76875dcb 1013(defvar ps-mule-bitmap-dict-list nil)
a4c2acb3 1014(defvar ps-mule-bitmap-font-record nil)
76875dcb 1015
2cb842ae
KH
1016;; The following three functions are to be called from external
1017;; libraries which support bitmap fonts (e.g. `bdf') to get
1018;; appropriate PostScript code.
1019
1020(defun ps-mule-generate-bitmap-prologue ()
1021 (unless ps-mule-bitmap-prologue-generated
76875dcb
KH
1022 (setq ps-mule-bitmap-prologue-generated t
1023 ps-mule-bitmap-dict-list nil
1024 ps-mule-bitmap-font-record (make-vector 1024 nil))
2cb842ae
KH
1025 (list ps-mule-bitmap-prologue)))
1026
76875dcb
KH
1027(defun ps-mule-generate-bitmap-font (font-spec size relative-compose
1028 baselie-offset bbx)
1029 (let* ((id (ps-mule-font-spec-id font-spec))
1030 (bytes (ps-mule-font-spec-bytes font-spec))
1031 output-list)
1032 (if (= bytes 1)
1033 (setq output-list
1034 (list (format "/E%02X [ 0 1 255 {pop /.notdef} for ] def\n" id)
1035 (format "%%%% %s\n" (ps-mule-font-spec-name font-spec))
1036 (format "/F%02X %f %S %d E%02X NBF\n" id size
1037 relative-compose baselie-offset id)))
1038 (setq output-list
1039 (list (list (format "/E%02X [ 0 1 255 { pop 0 } for ] def\n" id))
1040 (list (format "/V%02X [" id))
1041 " ] def\n"
1042 (format "%%%% %s\n" (ps-mule-font-spec-name font-spec))
1043 (format "/F%02X E%02X V%02X NPF\n" id id id))))
1044 (aset ps-mule-bitmap-font-record id
1045 (vector (= bytes 1) output-list
1046 size relative-compose baselie-offset bbx))
1047 (if ps-mule-bitmap-dict-list
1048 output-list
1049 (setq ps-mule-bitmap-dict-list (list "/BitmapDict <<\n" ">> def\n"))
1050 (cons ps-mule-bitmap-dict-list output-list))))
1051
1052(defun ps-mule-generate-bitmap-glyph (font-spec char code bitmap)
1053 (let* ((id (ps-mule-font-spec-id font-spec))
1054 ;; FONT-RECORD ::= ([(SUBFONT-OUTPUT-LIST ...) | t]
1055 ;; BASEFONT-OUTPUT-LIST SIZE REL-COMP B-OFFSET BBX)
1056 (font-record (aref ps-mule-bitmap-font-record id))
1057 enc-name
1058 output-list)
1059 (if (listp (aref font-record 0))
1060 ;; This is a 2-dimensional font. Create a subfont for this
1061 ;; glyph if not yet created.
1062 (let* ((high (/ code 256))
1063 (id2 (+ (* id 256) high)))
1064 (setq output-list (cdr (assq high (aref font-record 0)))
1065 code (% code 256))
1066 (or output-list
1067 ;; We must create a subfont.
1068 (let ((enc-list (car (aref font-record 1)))
1069 (fdep-list (nth 1 (aref font-record 1))))
1070 (setq output-list
1071 (list
1072 (format "/E%04X [ 0 1 255 {pop /.notdef} for ] def\n"
1073 id2)
1074 (format "/F%04X %f %S %d E%04X NBF\n"
1075 id2 (aref font-record 2) (aref font-record 3)
1076 (aref font-record 4) id2)
1077 (format "E%02X %d %d put\n"
1078 id high (1- (length fdep-list)))))
1079 (nconc enc-list (list output-list))
1080 (nconc fdep-list (list (format " F%04X" id2)))
1081 (aset font-record 0
1082 (cons (cons high output-list) (aref font-record 0)))))
1083 (setq enc-name (format "%04X" id2)))
1084 (setq output-list (aref font-record 1)
1085 enc-name (format "%02X" id)))
1086 (setcdr ps-mule-bitmap-dict-list
1087 (cons (format "/C%02X-%X %s\n" id char bitmap)
1088 (cdr ps-mule-bitmap-dict-list)))
1089 (setcdr output-list
1090 (cons (format "E%s %d /C%02X-%X put\n" enc-name code id char)
1091 (cdr output-list))))
1092 nil)
2cb842ae
KH
1093
1094;; Mule specific initializers.
1095
1096;;;###autoload
1097(defun ps-mule-initialize ()
1098 "Initialize global data for printing multi-byte characters."
76875dcb 1099 (setq ps-mule-prologue-generated nil
d0da93b3 1100 ps-mule-composition-prologue-generated nil
2cb842ae
KH
1101 ps-mule-bitmap-prologue-generated nil)
1102 (mapcar `(lambda (x) (setcar (nthcdr 2 x) nil))
1103 ps-mule-external-libraries))
1104
922be019
GM
1105(defun ps-mule-encode-header-string (string fonttag)
1106 "Generate PostScript code for ploting STRING by font FONTTAG.
76875dcb
KH
1107FONTTAG should be a string \"/h0\", \"/h1\", \"/L0\", or \"/H0\"."
1108 (with-temp-buffer
1109 (insert string)
1110 (ps-mule-encode-region (point-min) (point-max)
1111 (aref ps-mule-font-spec-tables
1112 (aref ps-mule-font-number-to-type
1113 (cond ((string= fonttag "/h0") 4)
1114 ((string= fonttag "/h1") 5)
1115 ((string= fonttag "/L0") 6)
1116 (t 0)))))))
922be019 1117
2cb842ae
KH
1118;;;###autoload
1119(defun ps-mule-begin-job (from to)
1120 "Start printing job for multi-byte chars between FROM and TO.
1121This checks if all multi-byte characters in the region are printable or not."
76875dcb
KH
1122 (auto-compose-region from to)
1123 (if (and (not (find-composition from to))
1124 (save-excursion
1125 (goto-char from)
1126 (= (skip-chars-forward "\x00-\xFF" to) to)))
1127 ;; All characters can be printed by normal PostScript fonts.
1128 (setq ps-basic-plot-string-function 'ps-basic-plot-string
1129 ps-encode-header-string-function 'identity)
1130 (setq ps-basic-plot-string-function 'ps-mule-plot-string
1131 ps-encode-header-string-function 'ps-mule-encode-header-string
1132 ps-mule-font-info-database
1133 (cond ((eq ps-multibyte-buffer 'non-latin-printer)
1134 ps-mule-font-info-database-ps)
1135 ((eq ps-multibyte-buffer 'bdf-font)
1136 ps-mule-font-info-database-bdf)
1137 ((eq ps-multibyte-buffer 'bdf-font-except-latin)
1138 ps-mule-font-info-database-ps-bdf)
1139 (t
1140 ps-mule-font-info-database-default)))
1141
1142 ;; Be sure to have font information for Latin-1.
1143 (or (assq 'iso-8859-1 ps-mule-font-info-database)
1144 (setq ps-mule-font-info-database
0e78bb62 1145 (cons '(iso-8859-1 (normal nil nil))
76875dcb
KH
1146 ps-mule-font-info-database)))
1147
1148 ;; Generate ps-mule-font-spec-tables.
1149 (let ((font-spec-alist (make-vector 4 nil))
1150 (id-max 0)
1151 (font-id 0)
1152 font-info-list)
1153 ;; Generate properly ordered font-info-list from
1154 ;; ps-mule-font-info-database.
1155 (let ((charset-list
1156 (copy-sequence (get-language-info current-language-environment
1157 'charset))))
1158 (setq charset-list (cons 'iso-8859-1 (delq 'iso-8859-1 charset-list)))
1159 (dolist (charset charset-list)
1160 (let ((font-info (assq charset ps-mule-font-info-database)))
1161 (and font-info
1162 (setq font-info-list (cons font-info font-info-list)))))
1163 (dolist (font-info ps-mule-font-info-database)
1164 (or (memq (car font-info) charset-list)
1165 (setq font-info-list (cons font-info font-info-list))))
1166 (setq font-info-list (nreverse font-info-list)))
1167
1168 ;; Store FONT-SPECs in each element of font-spec-alist.
1169 (dolist (font-info font-info-list)
1170 (let ((font-spec-vec (make-vector 4 nil))
1171 (charset (car font-info))
1172 encoding font-spec)
1173 (dolist (e (cdr font-info))
1174 (setq encoding (or (nth 3 e) charset)
1175 font-spec (vector id-max charset font-id
1176 (nth 1 e) (nth 2 e) encoding
1177 (or (nth 4 e) (charset-dimension encoding))
1178 nil)
1179 id-max (1+ id-max))
1180 (if (ps-mule-check-font font-spec)
1181 (aset font-spec-vec
1182 (cond ((eq (car e) 'normal) 0)
1183 ((eq (car e) 'bold) 1)
1184 ((eq (car e) 'italic) 2)
1185 (t 3)) font-spec)))
1186 (when (aref font-spec-vec 0)
1187 (or (aref font-spec-vec 3)
1188 (aset font-spec-vec 3 (or (aref font-spec-vec 1)
1189 (aref font-spec-vec 2)
1190 (aref font-spec-vec 0))))
1191 (or (aref font-spec-vec 1)
1192 (aset font-spec-vec 1 (aref font-spec-vec 0)))
1193 (or (aref font-spec-vec 2)
1194 (aset font-spec-vec 2 (aref font-spec-vec 1)))
1195 (dotimes (i 4)
1196 (aset font-spec-alist i
1197 (nconc (aref font-spec-alist i)
1198 (list (cons charset (aref font-spec-vec i))))))
1199 (setq font-id (1+ font-id)))))
1200
1201 ;; Make four FONT-SPEC-TABLEs and set them in
1202 ;; ps-mule-font-spec-tables. Each char table has one extra slot
1203 ;; whose value is an element of font-spec-alist.
1204 (setq ps-mule-font-spec-tables (make-vector 4 nil))
1205 (put 'font-spec-table 'char-table-extra-slots 1)
1206 (dotimes (i 4)
1207 (let ((table (make-char-table 'font-spec-table)))
1208 (aset ps-mule-font-spec-tables i table)
1209 (set-char-table-extra-slot table 0 (aref font-spec-alist i))
1210 ;; Be sure to have glyphs for "0123456789/" in advance for
1211 ;; page numbering.
1212 (let ((str " 0123456789/"))
1213 (dotimes (i (length str))
1214 (or (vectorp (ps-mule-get-font-spec (aref str i) table nil))
1215 (error "ASCII font not available")))))))
1216
1217 (ps-mule-prologue-generated)
1218 (if (find-composition from to)
1219 (ps-mule-composition-prologue-generated))))
1220
1221(defun ps-mule-restruct-output-list (list tail)
1222 (dolist (elt list)
1223 (if (listp elt)
1224 (setq tail (ps-mule-restruct-output-list elt tail))
1225 (setcdr tail (cons elt (cdr tail)))
1226 (setq tail (cdr tail))))
1227 tail)
1228
1229(defun ps-mule-redefine-font (font-number fonttag size ps-font)
1230 (let* ((font-type (aref ps-mule-font-number-to-type font-number))
1231 (font-spec-alist (char-table-extra-slot
1232 (aref ps-mule-font-spec-tables font-type) 0)))
1233 (ps-output-prologue
1234 (list (if (ps-mule-font-spec-src (cdr (car font-spec-alist)))
1235 ;; We ignore a font specfied in ps-font-info-database.
1236 (format "/V%s VTOP%d def\n" fonttag font-type)
440756f0
KH
1237 (format "/V%s [ VTOP%d aload pop ] def\n
1238V%s 0 /%s-latin1 /%s Latin1Encoding put\n"
1239 fonttag font-type fonttag ps-font ps-font))
76875dcb
KH
1240 (format "/%s ETOP%d V%s %f ReDefFont\n"
1241 fonttag font-type fonttag size)))))
2cb842ae 1242
2cb842ae 1243
76875dcb
KH
1244;;;###autoload
1245(defun ps-mule-end-job ()
1246 "Finish printing job for multi-byte chars."
1247
1248 ;; Prepare root and sub fonts while generating glyphs if necessary.
1249 (let ((output-head (list t))
1250 (ps-mule-output-list (list t)))
1251 (dotimes (i 4)
1252 (map-char-table 'ps-mule-prepare-glyph
1253 (aref ps-mule-font-spec-tables i)))
1254 (ps-mule-restruct-output-list (cdr ps-mule-output-list) output-head)
1255 (ps-output-prologue (cdr output-head)))
1256
1257 ;; Prepare top Encoding and templates of FDepVector.
1258 (dotimes (i 4)
1259 (let ((font-spec-alist (char-table-extra-slot
1260 (aref ps-mule-font-spec-tables i) 0))
1261 font-list font-spec)
1262 (dolist (elt font-spec-alist)
1263 (setq font-spec (cdr elt))
1264 (if (ps-mule-font-spec-extra font-spec)
1265 (push (cons (ps-mule-font-spec-font-id font-spec)
1266 (ps-mule-font-spec-id font-spec))
1267 font-list)))
1268 (setq font-list (nreverse font-list))
1269 (ps-output-prologue
1270 (list (format "/ETOP%d 256 array def\n" i)
1271 (format "0 1 255 { ETOP%d exch 0 put } for\n" i)))
1272 (let ((index 0))
1273 (dolist (font font-list)
1274 (ps-output-prologue (format "ETOP%d %d %d put\n" i (car font) index))
1275 (setq index (1+ index))))
1276 (ps-output-prologue (format "/VTOP%d [%s] def\n" i
1277 (mapconcat #'(lambda (x)
1278 (format "F%02X" (cdr x)))
1279 font-list " ")))))
1280
1281 ;; Redefine fonts f0, f1, f2, f3, h0, h1, H0.
1282 (ps-mule-redefine-font 4 "h0" ps-header-title-font-size-internal
1283 (ps-font 'ps-font-for-header 'bold))
1284 (ps-mule-redefine-font 5 "h1" ps-header-font-size-internal
1285 (ps-font 'ps-font-for-header 'normal))
1286 (ps-mule-redefine-font 6 "H0" ps-footer-font-size-internal
1287 (ps-font 'ps-font-for-footer 'normal))
1288 (let ((font (ps-font-alist 'ps-font-for-text))
1289 (i 0))
1290 (while font
1291 (ps-mule-redefine-font i (format "f%d" i)
1292 ps-font-size-internal
1293 (ps-font 'ps-font-for-text (car (car font))))
1294 (setq font (cdr font)
1295 i (1+ i)))))
2cb842ae
KH
1296
1297(provide 'ps-mule)
1298
6b61353c 1299;;; arch-tag: bca017b2-66a7-4e59-8584-103e749eadbe
2cb842ae 1300;;; ps-mule.el ends here