Doc fix, duplex and setpagedevice configuration.
[bpt/emacs.git] / lisp / ps-mule.el
CommitLineData
2cb842ae
KH
1;;; ps-mule.el --- Provide multi-byte character facility to ps-print.
2
3;; Copyright (C) 1998 Free Software Foundation, Inc.
4
5;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
6;; Author: Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
7;; Maintainer: Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
8;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
9;; Keywords: print, PostScript, multibyte, mule
d36275d2 10;; Time-stamp: <99/02/19 13:15:52 vinicius>
2cb842ae
KH
11
12;; This file is part of GNU Emacs.
13
14;; GNU Emacs is free software; you can redistribute it and/or modify
15;; it under the terms of the GNU General Public License as published by
16;; the Free Software Foundation; either version 2, or (at your option)
17;; any later version.
18
19;; GNU Emacs is distributed in the hope that it will be useful,
20;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;; GNU General Public License for more details.
23
24;; You should have received a copy of the GNU General Public License
25;; along with GNU Emacs; see the file COPYING. If not, write to the
26;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27;; Boston, MA 02111-1307, USA.
28
29;;; Commentary:
30
31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
32;;
33;; About ps-mule
34;; -------------
35;;
36;; This package is used for ps-print to print multi-byte buffer.
37;;
38;; See also ps-print.el.
39;;
40;;
41;; Printing Multi-byte Buffer
42;; --------------------------
43;;
44;; The variable `ps-multibyte-buffer' specifies the ps-print multi-byte buffer
45;; handling.
46;;
47;; Valid values for `ps-multibyte-buffer' are:
48;;
49;; nil This is the value to use when you are printing
50;; buffer with only ASCII and Latin characters.
51;;
52;; `non-latin-printer' This is the value to use when you have a japanese
53;; or korean PostScript printer and want to print
54;; buffer with ASCII, Latin-1, Japanese (JISX0208 and
55;; JISX0201-Kana) and Korean characters. At present,
56;; it was not tested the Korean characters printing.
57;; If you have a korean PostScript printer, please,
58;; test it.
59;;
60;; `bdf-font' This is the value to use when you want to print
61;; buffer with BDF fonts. BDF fonts include both latin
62;; and non-latin fonts. BDF (Bitmap Distribution
63;; Format) is a format used for distributing X's font
64;; source file. BDF fonts are included in
65;; `intlfonts-1.1' which is a collection of X11 fonts
66;; for all characters supported by Emacs. In order to
67;; use this value, be sure to have installed
68;; `intlfonts-1.1' and set the variable
69;; `bdf-directory-list' appropriately (see ps-bdf.el
70;; for documentation of this variable).
71;;
72;; `bdf-font-except-latin' This is like `bdf-font' except that it is used
73;; PostScript default fonts to print ASCII and Latin-1
74;; characters. This is convenient when you want or
75;; need to use both latin and non-latin characters on
76;; the same buffer. See `ps-font-family',
77;; `ps-header-font-family' and `ps-font-info-database'.
78;;
79;; Any other value is treated as nil.
80;;
81;; The default is nil.
82;;
83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
84
85;;; Code:
86
87(eval-and-compile (require 'ps-print))
88
89;;;###autoload
90(defcustom ps-multibyte-buffer nil
91 "*Specifies the multi-byte buffer handling.
92
93Valid values are:
94
00cbf820
KH
95 nil This is the value to use the default settings which
96 is by default for printing buffer with only ASCII
97 and Latin characters. The default setting can be
98 changed by setting the variable
99 `ps-mule-font-info-database-default' differently.
100 The initial value of this variable is
101 `ps-mule-font-info-database-latin' (which see).
102
103 `non-latin-printer' This is the value to use when you have a Japanese
104 or Korean PostScript printer and want to print
2cb842ae
KH
105 buffer with ASCII, Latin-1, Japanese (JISX0208 and
106 JISX0201-Kana) and Korean characters. At present,
107 it was not tested the Korean characters printing.
108 If you have a korean PostScript printer, please,
109 test it.
110
111 `bdf-font' This is the value to use when you want to print
112 buffer with BDF fonts. BDF fonts include both latin
113 and non-latin fonts. BDF (Bitmap Distribution
114 Format) is a format used for distributing X's font
115 source file. BDF fonts are included in
116 `intlfonts-1.1' which is a collection of X11 fonts
117 for all characters supported by Emacs. In order to
118 use this value, be sure to have installed
119 `intlfonts-1.1' and set the variable
120 `bdf-directory-list' appropriately (see ps-bdf.el for
121 documentation of this variable).
122
123 `bdf-font-except-latin' This is like `bdf-font' except that it is used
124 PostScript default fonts to print ASCII and Latin-1
125 characters. This is convenient when you want or
126 need to use both latin and non-latin characters on
127 the same buffer. See `ps-font-family',
128 `ps-header-font-family' and `ps-font-info-database'.
129
130Any other value is treated as nil."
131 :type '(choice (const non-latin-printer) (const bdf-font)
132 (const bdf-font-except-latin) (other :tag "nil" nil))
133 :group 'ps-print-font)
134
135;; For Emacs 20.2 and the earlier version.
136(eval-and-compile
137 (if (not (string< mule-version "4.0"))
138 (progn
139 (defalias 'ps-mule-next-point '1+)
140 (defalias 'ps-mule-chars-in-string 'length)
141 (defalias 'ps-mule-string-char 'aref)
142 (defsubst ps-mule-next-index (str i) (1+ i)))
143 (defun ps-mule-next-point (arg)
144 (save-excursion (goto-char arg) (forward-char 1) (point)))
145 (defun ps-mule-chars-in-string (string)
146 (/ (length string)
147 (charset-bytes (char-charset (string-to-char string)))))
148 (defun ps-mule-string-char (string idx)
149 (string-to-char (substring string idx)))
150 (defun ps-mule-next-index (string i)
151 (+ i (charset-bytes (char-charset (string-to-char string))))))
152 )
153
154(defvar ps-mule-font-info-database
155 nil
156 "Alist of charsets with the corresponding font information.
157Each element has the form:
158
159 (CHARSET (FONT-TYPE FONT-SRC FONT-NAME ENCODING BYTES) ...)
160
161Where
162
163CHARSET is a charset (symbol) for this font family,
164
165FONT-TYPE is a font type: normal, bold, italic, or bold-italic.
166
167FONT-SRC is a font source: builtin, ps-bdf, vflib, or nil.
168
169 If FONT-SRC is builtin, FONT-NAME is a buitin PostScript font name.
170
5d5bea97
EZ
171 If FONT-SRC is bdf, FONT-NAME is a BDF font file name, or a list of
172 alternative font names. To use this font, the external library `ps-bdf'
173 is required.
2cb842ae
KH
174
175 If FONT-SRC is vflib, FONT-NAME is the name of a font that VFlib knows.
176 To use this font, the external library `vflib' is required.
177
178 If FONT-SRC is nil, a proper ASCII font in the variable
179 `ps-font-info-database' is used. This is useful for Latin-1 characters.
180
181ENCODING is a coding system to encode a string of characters of CHARSET into a
182proper string matching an encoding of the specified font. ENCODING may be a
183function that does this encoding. In this case, the function is called with
184one argument, the string to encode, and it should return an encoded string.
185
186BYTES specifies how many bytes each character has in the encoded byte
187sequence; it should be 1 or 2.
188
189All multi-byte characters are printed by fonts specified in this database
190regardless of a font family of ASCII characters. The exception is Latin-1
191characters which are printed by the same font as ASCII characters, thus obey
192font family.
193
194See also the variable `ps-font-info-database'.")
195
196(defconst ps-mule-font-info-database-latin
197 '((latin-iso8859-1
198 (normal nil nil iso-latin-1)))
199 "Sample setting of `ps-mule-font-info-database' to use latin fonts.")
200
00cbf820 201(defvar ps-mule-font-info-database-default
2a772306 202 ps-mule-font-info-database-latin
00cbf820
KH
203 "The default setting to use if `ps-multibyte-buffer' (which see) is nil.")
204
2cb842ae
KH
205(defconst ps-mule-font-info-database-ps
206 '((katakana-jisx0201
207 (normal builtin "Ryumin-Light.Katakana" ps-mule-encode-7bit 1)
208 (bold builtin "GothicBBB-Medium.Katakana" ps-mule-encode-7bit 1)
209 (bold-italic builtin "GothicBBB-Medium.Katakana" ps-mule-encode-7bit 1))
210 (latin-jisx0201
f58395f6 211 (normal builtin "Ryumin-Light.Hankaku" ps-mule-encode-7bit 1)
2cb842ae
KH
212 (bold builtin "GothicBBB-Medium.Hankaku" ps-mule-encode-7bit 1))
213 (japanese-jisx0208
214 (normal builtin "Ryumin-Light-H" ps-mule-encode-7bit 2)
215 (bold builtin "GothicBBB-Medium-H" ps-mule-encode-7bit 2))
216 (korean-ksc5601
f58395f6
KH
217 (normal builtin "Munhwa-Regular-KSC-EUC-H" ps-mule-encode-7bit 2)
218 (bold builtin "Munhwa-Bold-KSC-EUC-H" ps-mule-encode-7bit 2))
2cb842ae
KH
219 )
220 "Sample setting of the `ps-mule-font-info-database' to use builtin PS font.
221
222Currently, data for Japanese and Korean PostScript printers are listed.")
223
224(defconst ps-mule-font-info-database-bdf
225 '((ascii
5d5bea97 226 (normal bdf ("lt1-24-etl.bdf" "etl24-latin1.bdf") nil 1)
fb901f73
KH
227 (bold bdf ("lt1-16b-etl.bdf" "etl16b-latin1.bdf") nil 1)
228 (italic bdf ("lt1-16i-etl.bdf" "etl16i-latin1.bdf") nil 1)
229 (bold-italic bdf ("lt1-16bi-etl.bdf" "etl16bi-latin1.bdf") nil 1))
2cb842ae 230 (latin-iso8859-1
fb901f73 231 (normal bdf ("lt1-24-etl.bdf" "etl24-latin1.bdf") iso-latin-1 1)
5d5bea97
EZ
232 (bold bdf ("lt1-16b-etl.bdf" "etl16b-latin1.bdf") iso-latin-1 1)
233 (italic bdf ("lt1-16i-etl.bdf" "etl16i-latin1.bdf") iso-latin-1 1)
234 (bold-italic bdf ("lt1-16bi-etl.bdf" "etl16bi-latin1.bdf") iso-latin-1 1))
2cb842ae 235 (latin-iso8859-2
5d5bea97 236 (normal bdf ("lt2-24-etl.bdf" "etl24-latin2.bdf") iso-latin-2 1))
2cb842ae 237 (latin-iso8859-3
5d5bea97 238 (normal bdf ("lt3-24-etl.bdf" "etl24-latin3.bdf") iso-latin-3 1))
2cb842ae 239 (latin-iso8859-4
5d5bea97 240 (normal bdf ("lt4-24-etl.bdf" "etl24-latin4.bdf") iso-latin-4 1))
2cb842ae 241 (thai-tis620
5d5bea97 242 (normal bdf ("thai24.bdf" "thai-24.bdf") thai-tis620 1))
2cb842ae 243 (greek-iso8859-7
5d5bea97 244 (normal bdf ("grk24-etl.bdf" "etl24-greek.bdf") greek-iso-8bit 1))
2cb842ae
KH
245 ;; (arabic-iso8859-6 nil) ; not yet available
246 (hebrew-iso8859-8
5d5bea97 247 (normal bdf ("heb24-etl.bdf" "etl24-hebrew.bdf") hebrew-iso-8bit 1))
2cb842ae
KH
248 (katakana-jisx0201
249 (normal bdf "12x24rk.bdf" ps-mule-encode-8bit 1))
250 (latin-jisx0201
251 (normal bdf "12x24rk.bdf" ps-mule-encode-7bit 1))
252 (cyrillic-iso8859-5
5d5bea97 253 (normal bdf ("cyr24-etl.bdf" "etl24-cyrillic.bdf") cyrillic-iso-8bit 1))
2cb842ae 254 (latin-iso8859-9
5d5bea97 255 (normal bdf ("lt5-24-etl.bdf" "etl24-latin5.bdf") iso-latin-5 1))
2cb842ae
KH
256 (japanese-jisx0208-1978
257 (normal bdf "jiskan24.bdf" ps-mule-encode-7bit 2))
258 (chinese-gb2312
259 (normal bdf "gb24st.bdf" ps-mule-encode-7bit 2))
260 (japanese-jisx0208
261 (normal bdf "jiskan24.bdf" ps-mule-encode-7bit 2))
262 (korean-ksc5601
263 (normal bdf "hanglm24.bdf" ps-mule-encode-7bit 2))
264 (japanese-jisx0212
5d5bea97 265 (normal bdf ("jksp40.bdf" "jisksp40.bdf") ps-mule-encode-7bit 2))
2cb842ae 266 (chinese-cns11643-1
5d5bea97 267 (normal bdf ("cns1-40.bdf" "cns-1-40.bdf") ps-mule-encode-7bit 2))
2cb842ae 268 (chinese-cns11643-2
5d5bea97 269 (normal bdf ("cns2-40.bdf" "cns-2-40.bdf") ps-mule-encode-7bit 2))
2cb842ae
KH
270 (chinese-big5-1
271 (normal bdf "taipei24.bdf" chinese-big5 2))
272 (chinese-big5-2
273 (normal bdf "taipei24.bdf" chinese-big5 2))
274 (chinese-sisheng
5d5bea97 275 (normal bdf ("sish24-etl.bdf" "etl24-sisheng.bdf") ps-mule-encode-8bit 1))
2cb842ae 276 (ipa
5d5bea97 277 (normal bdf ("ipa24-etl.bdf" "etl24-ipa.bdf") ps-mule-encode-8bit 1))
2cb842ae 278 (vietnamese-viscii-lower
5d5bea97 279 (normal bdf ("visc24-etl.bdf" "etl24-viscii.bdf") vietnamese-viscii 1))
2cb842ae 280 (vietnamese-viscii-upper
5d5bea97 281 (normal bdf ("visc24-etl.bdf" "etl24-viscii.bdf") vietnamese-viscii 1))
2cb842ae 282 (arabic-digit
5d5bea97 283 (normal bdf ("arab24-0-etl.bdf" "etl24-arabic0.bdf") ps-mule-encode-7bit 1))
2cb842ae 284 (arabic-1-column
5d5bea97 285 (normal bdf ("arab24-1-etl.bdf" "etl24-arabic1.bdf") ps-mule-encode-7bit 1))
2cb842ae
KH
286 ;; (ascii-right-to-left nil) ; not yet available
287 (lao
5d5bea97 288 (normal bdf ("lao24-mule.bdf" "mule-lao-24.bdf") lao 1))
2cb842ae 289 (arabic-2-column
5d5bea97 290 (normal bdf ("arab24-2-etl.bdf" "etl24-arabic2.bdf") ps-mule-encode-7bit 1))
2cb842ae 291 (indian-is13194
5d5bea97 292 (normal bdf ("isci24-etl.bdf" "mule-iscii-24.bdf") ps-mule-encode-7bit 1))
2cb842ae 293 (indian-1-column
5d5bea97 294 (normal bdf ("ind1c24-mule.bdf" "mule-indian-1col-24.bdf") ps-mule-encode-7bit 2))
2cb842ae 295 (tibetan-1-column
5d5bea97 296 (normal bdf ("tib1c24-mule.bdf" "mule-tibmdx-1col-24.bdf") ps-mule-encode-7bit 2))
2cb842ae 297 (ethiopic
5d5bea97 298 (normal bdf ("ethio24f-uni.bdf" "ethiomx24f-uni.bdf") ps-mule-encode-ethiopic 2))
2cb842ae 299 (chinese-cns11643-3
5d5bea97 300 (normal bdf ("cns3-40.bdf" "cns-3-40.bdf") ps-mule-encode-7bit 2))
2cb842ae 301 (chinese-cns11643-4
5d5bea97 302 (normal bdf ("cns4-40.bdf" "cns-4-40.bdf") ps-mule-encode-7bit 2))
2cb842ae 303 (chinese-cns11643-5
5d5bea97 304 (normal bdf ("cns5-40.bdf" "cns-5-40.bdf") ps-mule-encode-7bit 2))
2cb842ae 305 (chinese-cns11643-6
5d5bea97 306 (normal bdf ("cns6-40.bdf" "cns-6-40.bdf") ps-mule-encode-7bit 2))
2cb842ae 307 (chinese-cns11643-7
5d5bea97 308 (normal bdf ("cns7-40.bdf" "cns-7-40.bdf") ps-mule-encode-7bit 2))
2cb842ae 309 (indian-2-column
5d5bea97 310 (normal bdf ("ind24-mule.bdf" "mule-indian-24.bdf") ps-mule-encode-7bit 2))
2cb842ae 311 (tibetan
5d5bea97 312 (normal bdf ("tib24-mule.bdf" "mule-tibmdx-24.bdf") ps-mule-encode-7bit 2)))
2cb842ae
KH
313 "Sample setting of the `ps-mule-font-info-database' to use BDF fonts.
314BDF (Bitmap Distribution Format) is a format used for distributing X's font
315source file.
316
317Current default value list for BDF fonts is included in `intlfonts-1.1' which is
318a collection of X11 fonts for all characters supported by Emacs.
319
320Using this list as default value to `ps-mule-font-info-database', all characters
321including ASCII and Latin-1 are printed by BDF fonts.
322
323See also `ps-mule-font-info-database-ps-bdf'.")
324
325(defconst ps-mule-font-info-database-ps-bdf
326 (cons (car ps-mule-font-info-database-latin)
327 (cdr (cdr ps-mule-font-info-database-bdf)))
328 "Sample setting of the `ps-mule-font-info-database' to use BDF fonts.
329
330Current default value list for BDF fonts is included in `intlfonts-1.1' which is
331a collection of X11 fonts for all characters supported by Emacs.
332
333Using this list as default value to `ps-mule-font-info-database', all characters
334except ASCII and Latin-1 characters are printed by BDF fonts. ASCII and Latin-1
335characters are printed by PostScript font specified by `ps-font-family' and
336`ps-header-font-family'.
337
338See also `ps-mule-font-info-database-bdf'.")
339
340;; Two typical encoding functions for PostScript fonts.
341
342(defun ps-mule-encode-7bit (string)
343 (ps-mule-encode-bit string 0))
344
345(defun ps-mule-encode-8bit (string)
346 (ps-mule-encode-bit string 128))
347
348(defun ps-mule-encode-bit (string delta)
349 (let* ((dim (charset-dimension (char-charset (string-to-char string))))
350 (len (* (ps-mule-chars-in-string string) dim))
351 (str (make-string len 0))
352 (i 0)
353 (j 0))
354 (if (= dim 1)
355 (while (< j len)
356 (aset str j
357 (+ (nth 1 (split-char (ps-mule-string-char string i))) delta))
358 (setq i (ps-mule-next-index string i)
359 j (1+ j)))
360 (while (< j len)
361 (let ((split (split-char (ps-mule-string-char string i))))
362 (aset str j (+ (nth 1 split) delta))
363 (aset str (1+ j) (+ (nth 2 split) delta))
364 (setq i (ps-mule-next-index string i)
365 j (+ j 2)))))
366 str))
367
368;; Special encoding function for Ethiopic.
369(define-ccl-program ccl-encode-ethio-unicode
370 `(1
371 ((read r2)
372 (loop
373 (if (r2 == ,leading-code-private-22)
374 ((read r0)
375 (if (r0 == ,(charset-id 'ethiopic))
376 ((read r1 r2)
377 (r1 &= 127) (r2 &= 127)
378 (call ccl-encode-ethio-font)
379 (write r1)
380 (write-read-repeat r2))
381 ((write r2 r0)
382 (repeat))))
383 (write-read-repeat r2))))))
384
385(defun ps-mule-encode-ethiopic (string)
386 (ccl-execute-on-string (symbol-value 'ccl-encode-ethio-unicode)
387 (make-vector 9 nil)
388 string))
389
390;; A charset which we are now processing.
391(defvar ps-mule-current-charset nil)
392
393(defun ps-mule-get-font-spec (charset font-type)
394 "Return FONT-SPEC for printing characters CHARSET with FONT-TYPE.
395FONT-SPEC is a list that has the form:
396
397 (FONT-SRC FONT-NAME ENCODING BYTES)
398
399FONT-SPEC is extracted from `ps-mule-font-info-database'.
400
401See the documentation of `ps-mule-font-info-database' for the meaning of each
402element of the list."
403 (let ((slot (cdr (assq charset ps-mule-font-info-database))))
404 (and slot
405 (cdr (or (assq font-type slot)
406 (and (eq font-type 'bold-italic)
407 (or (assq 'bold slot) (assq 'italic slot)))
408 (assq 'normal slot))))))
409
410;; Functions to access each element of FONT-SPEC.
411(defsubst ps-mule-font-spec-src (font-spec) (car font-spec))
412(defsubst ps-mule-font-spec-name (font-spec) (nth 1 font-spec))
413(defsubst ps-mule-font-spec-encoding (font-spec) (nth 2 font-spec))
414(defsubst ps-mule-font-spec-bytes (font-spec) (nth 3 font-spec))
415
416(defsubst ps-mule-printable-p (charset)
417 "Non-nil if characters in CHARSET is printable."
418 (ps-mule-get-font-spec charset 'normal))
419
420(defconst ps-mule-external-libraries
421 '((builtin nil nil
422 nil nil nil)
423 (bdf ps-bdf nil
424 bdf-generate-prologue bdf-generate-font bdf-generate-glyphs)
425 (pcf nil nil
426 pcf-generate-prologue pcf-generate-font pcf-generate-glyphs)
427 (vflib nil nil
428 vflib-generate-prologue vflib-generate-font vflib-generate-glyphs))
429 "Alist of information of external libraries to support PostScript printing.
430Each element has the form:
431
432 (FONT-SRC FEATURE INITIALIZED-P PROLOGUE-FUNC FONT-FUNC GLYPHS-FUNC)
433
434FONT-SRC is the font source: builtin, bdf, pcf, or vflib.
435
436FEATURE is the feature that provide a facility to handle FONT-SRC. Except for
437`builtin' FONT-SRC, this feature is automatically `require'd before handling
438FONT-SRC. Currently, we only have the feature `ps-bdf'.
439
440INITIALIZED-P indicates if this library is initialized or not.
441
442PROLOGUE-FUNC is a function to generate PostScript code which define several
443PostScript procedures that will be called by FONT-FUNC and GLYPHS-FUNC. It is
444called with no argument, and should return a list of strings.
445
446FONT-FUNC is a function to generate PostScript code which define a new font. It
447is called with one argument FONT-SPEC, and should return a list of strings.
448
449GLYPHS-FUNC is a function to generate PostScript code which define glyphs of
450characters. It is called with three arguments FONT-SPEC, CODE-LIST, and BYTES,
451and should return a list of strings.")
452
453(defun ps-mule-init-external-library (font-spec)
454 "Initialize external library specified by FONT-SPEC for PostScript printing.
455See the documentation of `ps-mule-get-font-spec' for FONT-SPEC's meaning."
456 (let* ((font-src (ps-mule-font-spec-src font-spec))
457 (slot (assq font-src ps-mule-external-libraries)))
458 (or (not font-src)
459 (nth 2 slot)
460 (let ((func (nth 3 slot)))
461 (if func
462 (progn
463 (or (featurep (nth 1 slot)) (require (nth 1 slot)))
464 (ps-output-prologue (funcall func))))
465 (setcar (nthcdr 2 slot) t)))))
466
467;; Cached glyph information of fonts, alist of:
468;; (FONT-NAME ((FONT-TYPE-NUMBER . SCALED-FONT-NAME) ...)
469;; cache CODE0 CODE1 ...)
470(defvar ps-mule-font-cache nil)
471
472(defun ps-mule-generate-font (font-spec charset)
473 "Generate PostScript codes to define a new font in FONT-SPEC for CHARSET."
5d5bea97
EZ
474 (let* ((font-name (ps-mule-font-spec-name font-spec))
475 (font-name (if (consp font-name) (car font-name) font-name))
476 (font-cache (assoc font-name ps-mule-font-cache))
2cb842ae 477 (font-src (ps-mule-font-spec-src font-spec))
2cb842ae
KH
478 (func (nth 4 (assq font-src ps-mule-external-libraries)))
479 (scaled-font-name
480 (if (eq charset 'ascii)
481 (format "f%d" ps-current-font)
482 (format "f%02x-%d"
483 (charset-id charset) ps-current-font))))
484 (and func (not font-cache)
485 (ps-output-prologue (funcall func charset font-spec)))
486 (ps-output-prologue
487 (list (format "/%s %f /%s Def%sFontMule\n"
d36275d2 488 scaled-font-name ps-font-size-internal font-name
2cb842ae
KH
489 (if (eq ps-mule-current-charset 'ascii) "Ascii" ""))))
490 (if font-cache
491 (setcar (cdr font-cache)
492 (cons (cons ps-current-font scaled-font-name)
493 (nth 1 font-cache)))
494 (setq font-cache (list font-name
495 (list (cons ps-current-font scaled-font-name))
496 'cache)
497 ps-mule-font-cache (cons font-cache ps-mule-font-cache)))
498 font-cache))
499
500(defun ps-mule-generate-glyphs (font-spec code-list)
501 "Generate PostScript codes which generate glyphs for CODE-LIST of FONT-SPEC."
502 (let* ((font-src (ps-mule-font-spec-src font-spec))
503 (func (nth 5 (assq font-src ps-mule-external-libraries))))
504 (and func
505 (ps-output-prologue
506 (funcall func font-spec code-list
507 (ps-mule-font-spec-bytes font-spec))))))
508
509(defun ps-mule-prepare-font (font-spec string charset &optional no-setfont)
510 "Generate PostScript codes to print STRING of CHARSET by font FONT-SPEC.
511
512The generated code is inserted on prologue part except the code that sets the
513current font (using PostScript procedure `FM').
514
515If optional arg NO-SETFONT is non-nil, don't generate the code for setting the
516current font."
5d5bea97
EZ
517 (let* ((font-name (ps-mule-font-spec-name font-spec))
518 (font-name (if (consp font-name) (car font-name) font-name))
519 (font-cache (assoc font-name ps-mule-font-cache)))
2cb842ae
KH
520 (or (and font-cache (assq ps-current-font (nth 1 font-cache)))
521 (setq font-cache (ps-mule-generate-font font-spec charset)))
522 (or no-setfont
523 (let ((new-font (cdr (assq ps-current-font (nth 1 font-cache)))))
524 (or (equal new-font ps-last-font)
525 (progn
526 (ps-output (format "/%s FM\n" new-font))
527 (setq ps-last-font new-font)))))
528 (if (nth 5 (assq (ps-mule-font-spec-src font-spec)
529 ps-mule-external-libraries))
530 ;; We have to generate PostScript codes which define glyphs.
531 (let* ((cached-codes (nthcdr 2 font-cache))
532 (bytes (ps-mule-font-spec-bytes font-spec))
533 (len (length string))
534 (i 0)
535 newcodes code)
536 (while (< i len)
537 (setq code (if (= bytes 1)
538 (aref string i)
539 (+ (* (aref string i) 256) (aref string (1+ i)))))
540 (or (memq code cached-codes)
541 (progn
542 (setq newcodes (cons code newcodes))
543 (setcdr cached-codes (cons code (cdr cached-codes)))))
544 (setq i (+ i bytes)))
545 (and newcodes
546 (ps-mule-generate-glyphs font-spec newcodes))))))
547
548;;;###autoload
549(defun ps-mule-prepare-ascii-font (string)
550 "Setup special ASCII font for STRING.
551STRING should contain only ASCII characters."
552 (let ((font-spec
553 (ps-mule-get-font-spec
554 'ascii
555 (car (nth ps-current-font (ps-font-alist 'ps-font-for-text))))))
556 (and font-spec
557 (ps-mule-prepare-font font-spec string 'ascii))))
558
559;;;###autoload
560(defun ps-mule-set-ascii-font ()
561 (unless (eq ps-mule-current-charset 'ascii)
562 (ps-set-font ps-current-font)
563 (setq ps-mule-current-charset 'ascii)))
564
565;; List of charsets of multi-byte characters in a text being printed.
566;; If the text doesn't contain any multi-byte characters (i.e. only ASCII),
567;; the value is nil.
568(defvar ps-mule-charset-list nil)
569
570;; This is a PostScript code inserted in the header of generated PostScript.
571(defconst ps-mule-prologue
572 "%%%% Start of Mule Section
573
574%% Working dictionary for general use.
575/MuleDict 10 dict def
576
bc4c1aae
KH
577%% Adjust /RelativeCompose properly by checking /BaselineOffset.
578/AdjustRelativeCompose { % fontdict |- fontdict
579 dup length 2 add dict begin
580 { 1 index /FID ne { def } { pop pop } ifelse } forall
581 currentdict /BaselineOffset known {
582 BaselineOffset false eq { /BaselinfOffset 0 def } if
583 } {
584 /BaselineOffset 0 def
585 } ifelse
586 currentdict /RelativeCompose known not {
b77e0a82 587 /RelativeCompose [ 0 0.1 ] def
bc4c1aae
KH
588 } {
589 RelativeCompose false ne {
590 [ BaselineOffset RelativeCompose BaselineOffset add
591 [ FontMatrix { FontSize div } forall ] transform ]
592 /RelativeCompose exch def
593 } if
594 } ifelse
595 currentdict
596 end
597} def
598
2cb842ae
KH
599%% Define already scaled font for non-ASCII character sets.
600/DefFontMule { % fontname size basefont |- --
bc4c1aae 601 findfont exch scalefont AdjustRelativeCompose definefont pop
2cb842ae
KH
602} bind def
603
604%% Define already scaled font for ASCII character sets.
605/DefAsciiFontMule { % fontname size basefont |-
606 MuleDict begin
607 findfont dup /Encoding get /ISOLatin1Encoding exch def
bc4c1aae 608 exch scalefont AdjustRelativeCompose reencodeFontISO
2cb842ae
KH
609 end
610} def
611
612%% Set the specified non-ASCII font to use. It doesn't install
613%% Ascent, etc.
614/FM { % fontname |- --
615 findfont setfont
616} bind def
617
618%% Show vacant box for characters which don't have appropriate font.
619/SB { % count column |- --
620 SpaceWidth mul /w exch def
621 1 exch 1 exch { %for
622 pop
623 gsave
624 0 setlinewidth
625 0 Descent rmoveto w 0 rlineto
626 0 LineHeight rlineto w neg 0 rlineto closepath stroke
627 grestore
628 w 0 rmoveto
629 } for
630} bind def
631
632%% Flag to tell if we are now handling a composite character. This is
633%% defined here because both composite character handler and bitmap font
634%% handler require it.
635/Cmpchar false def
636
637%%%% End of Mule Section
638
639"
640 "PostScript code for printing multi-byte characters.")
641
642(defvar ps-mule-prologue-generated nil)
643
644(defun ps-mule-prologue-generated ()
645 (unless ps-mule-prologue-generated
646 (ps-output-prologue ps-mule-prologue)
647 (setq ps-mule-prologue-generated t)))
648
649(defun ps-mule-find-wrappoint (from to char-width)
650 "Find the longest sequence which is printable in the current line.
651
652The search starts at FROM and goes until TO. It is assumed that all characters
653between FROM and TO belong to a charset in `ps-mule-current-charset'.
654
655CHAR-WIDTH is the average width of ASCII characters in the current font.
656
657Returns the value:
658
659 (ENDPOS . RUN-WIDTH)
660
661Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
662the sequence."
663 (if (eq ps-mule-current-charset 'composition)
664 ;; We must draw one char by one.
665 (let ((run-width (* (char-width (char-after from)) char-width)))
666 (if (> run-width ps-width-remaining)
667 (cons from ps-width-remaining)
668 (cons (ps-mule-next-point from) run-width)))
669 ;; We assume that all characters in this range have the same width.
670 (setq char-width (* char-width (charset-width ps-mule-current-charset)))
671 (let ((run-width (* (chars-in-region from to) char-width)))
672 (if (> run-width ps-width-remaining)
673 (cons (min to
674 (save-excursion
675 (goto-char from)
676 (forward-point
677 (truncate (/ ps-width-remaining char-width)))))
678 ps-width-remaining)
679 (cons to run-width)))))
680
681;;;###autoload
682(defun ps-mule-plot-string (from to &optional bg-color)
683 "Generate PostScript code for ploting characters in the region FROM and TO.
684
685It is assumed that all characters in this region belong to the same charset.
686
687Optional argument BG-COLOR specifies background color.
688
689Returns the value:
690
691 (ENDPOS . RUN-WIDTH)
692
693Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
694the sequence."
695 (setq ps-mule-current-charset (charset-after from))
696 (let* ((wrappoint (ps-mule-find-wrappoint
697 from to (ps-avg-char-width 'ps-font-for-text)))
698 (to (car wrappoint))
699 (font-type (car (nth ps-current-font
700 (ps-font-alist 'ps-font-for-text))))
701 (font-spec (ps-mule-get-font-spec ps-mule-current-charset font-type))
702 (string (buffer-substring-no-properties from to)))
703 (cond
704 ((= from to)
705 ;; We can't print any more characters in the current line.
706 nil)
707
708 (font-spec
709 ;; We surely have a font for printing this character set.
710 (ps-output-string (ps-mule-string-encoding font-spec string))
711 (ps-output " S\n"))
712
713 ((eq ps-mule-current-charset 'latin-iso8859-1)
714 ;; Latin-1 can be printed by a normal ASCII font.
715 (ps-output-string (ps-mule-string-ascii string))
716 (ps-output " S\n"))
717
718 ((eq ps-mule-current-charset 'composition)
719 (let* ((ch (char-after from))
720 (width (char-width ch))
721 (ch-list (decompose-composite-char ch 'list t)))
722 (if (consp (nth 1 ch-list))
723 (ps-mule-plot-rule-cmpchar ch-list width font-type)
724 (ps-mule-plot-cmpchar ch-list width t font-type))))
725
726 (t
727 ;; No way to print this charset. Just show a vacant box of an
728 ;; appropriate width.
729 (ps-output (format "%d %d SB\n"
730 (length string)
731 (if (eq ps-mule-current-charset 'composition)
732 (char-width (char-after from))
733 (charset-width ps-mule-current-charset))))))
734 wrappoint))
735
736;; Composite font support
737
738(defvar ps-mule-cmpchar-prologue-generated nil)
739
740(defconst ps-mule-cmpchar-prologue
741 "%%%% Composite character handler
742/CmpcharWidth 0 def
743/CmpcharRelativeCompose 0 def
744/CmpcharRelativeSkip 0.4 def
745
746%% Get a bounding box (relative to currentpoint) of STR.
747/GetPathBox { % str |- --
748 gsave
749 currentfont /FontType get 3 eq { %ifelse
750 stringwidth pop pop
751 } {
bc4c1aae 752 currentpoint /y exch def /x exch def
2cb842ae 753 false charpath flattenpath pathbbox
bc4c1aae
KH
754 y sub /URY exch def x sub /URX exch def
755 y sub /LLY exch def x sub /LLX exch def
2cb842ae
KH
756 } ifelse
757 grestore
758} bind def
759
760%% Beginning of composite char.
761/BC { % str xoff width |- --
762 /Cmpchar true def
763 /CmpcharWidth exch def
764 currentfont /RelativeCompose known {
765 /CmpcharRelativeCompose currentfont /RelativeCompose get def
766 } {
767 /CmpcharRelativeCompose false def
768 } ifelse
769 /bgsave bg def /bgcolorsave bgcolor def
770 /Effectsave Effect def
771 gsave % Reflect effect only at first
772 /Effect Effect 1 2 add 4 add 16 add and def
773 /f0 findfont setfont ( ) 0 CmpcharWidth getinterval S
774 grestore
775 /Effect Effectsave 8 32 add and def % enable only shadow and outline
776 false BG
bc4c1aae
KH
777 gsave
778 SpaceWidth mul 0 rmoveto dup GetPathBox S
779 /RIGHT currentpoint pop def
780 grestore
2cb842ae
KH
781 /y currentpoint exch pop def
782 /HIGH URY y add def /LOW LLY y add def
783} bind def
784
785%% End of composite char.
786/EC { % -- |- --
787 /bg bgsave def /bgcolor bgcolorsave def
788 /Effect Effectsave def
789 /Cmpchar false def
bc4c1aae
KH
790 CmpcharRelativeCompose false eq {
791 CmpcharWidth SpaceWidth mul 0 rmoveto
792 } {
793 RIGHT currentpoint exch pop moveto
794 } ifelse
2cb842ae
KH
795} bind def
796
797%% Rule base composition
798/RBC { % str xoff gref nref |- --
799 /nref exch def /gref exch def
800 gsave
801 SpaceWidth mul 0 rmoveto
802 dup
803 GetPathBox
804 [ HIGH currentpoint exch pop LOW HIGH LOW add 2 div ] gref get
805 [ URY LLY sub LLY neg 0 URY LLY sub 2 div ] nref get
806 sub /btm exch def
807 /top btm URY LLY sub add def
808 top HIGH gt { /HIGH top def } if
809 btm LOW lt { /LOW btm def } if
810 currentpoint pop btm LLY sub moveto
811 S
812 grestore
bc4c1aae 813 /CmpcharRelativeCompose false def
2cb842ae
KH
814} bind def
815
816%% Relative composition
817/RLC { % str |- --
818 gsave
819 dup GetPathBox
bc4c1aae
KH
820 LLX 0 lt { RIGHT currentpoint exch pop moveto } if
821 CmpcharRelativeCompose type /arraytype eq {
b77e0a82 822 LLY CmpcharRelativeCompose 1 get ge { % compose on top
2cb842ae
KH
823 currentpoint pop HIGH LLY sub CmpcharRelativeSkip add moveto
824 /HIGH HIGH URY LLY sub add CmpcharRelativeSkip add def
bc4c1aae
KH
825 } { URY CmpcharRelativeCompose 0 get le { % compose under bottom
826 currentpoint pop LOW URY sub CmpcharRelativeSkip sub moveto
2cb842ae 827 /LOW LOW URY LLY sub sub CmpcharRelativeSkip sub def
bc4c1aae
KH
828 } {
829 /y currentpoint exch pop def
830 y URY add dup HIGH gt { /HIGH exch def } { pop } ifelse
831 y LLY add dup LOW lt { /LOW exch def } { pop } ifelse
832 } ifelse } ifelse } if
2cb842ae
KH
833 S
834 grestore
835} bind def
836%%%% End of composite character handler
837
838"
839 "PostScript code for printing composite characters.")
840
841(defun ps-mule-plot-rule-cmpchar (ch-rule-list total-width font-type)
842 (let ((leftmost 0.0)
843 (rightmost (float (char-width (car ch-rule-list))))
844 (the-list (cons '(3 . 3) ch-rule-list))
845 cmpchar-elements)
846 (while the-list
847 (let* ((this (car the-list))
848 (gref (car this))
849 (nref (cdr this))
850 ;; X-axis info (0:left, 1:center, 2:right)
851 (gref-x (% gref 3))
852 (nref-x (% nref 3))
853 ;; Y-axis info (0:top, 1:base, 2:bottom, 3:center)
854 (gref-y (if (= gref 4) 3 (/ gref 3)))
855 (nref-y (if (= nref 4) 3 (/ nref 3)))
856 (char (car (cdr the-list)))
857 (width (float (char-width char)))
858 left)
859 (setq left (+ leftmost
860 (* (- rightmost leftmost) gref-x 0.5)
861 (- (* nref-x width 0.5)))
862 cmpchar-elements (cons (list char left gref-y nref-y)
863 cmpchar-elements)
864 leftmost (min left leftmost)
865 rightmost (max (+ left width) rightmost)
866 the-list (nthcdr 2 the-list))))
867 (if (< leftmost 0)
868 (let ((the-list cmpchar-elements)
869 elt)
870 (while the-list
871 (setq elt (car the-list)
872 the-list (cdr the-list))
873 (setcar (cdr elt) (- (nth 1 elt) leftmost)))))
874 (ps-mule-plot-cmpchar (nreverse cmpchar-elements)
875 total-width nil font-type)))
876
877(defun ps-mule-plot-cmpchar (elements total-width relativep font-type)
878 (let* ((elt (car elements))
879 (ch (if relativep elt (car elt))))
880 (ps-output-string (ps-mule-prepare-cmpchar-font ch font-type))
881 (ps-output (format " %d %d BC "
882 (if relativep 0 (nth 1 elt))
883 total-width))
884 (while (setq elements (cdr elements))
885 (setq elt (car elements)
886 ch (if relativep elt (car elt)))
887 (ps-output-string (ps-mule-prepare-cmpchar-font ch font-type))
888 (ps-output (if relativep
889 " RLC "
890 (format " %d %d %d RBC "
891 (nth 1 elt) (nth 2 elt) (nth 3 elt))))))
892 (ps-output "EC\n"))
893
894(defun ps-mule-prepare-cmpchar-font (char font-type)
895 (let* ((ps-mule-current-charset (char-charset char))
896 (font-spec (ps-mule-get-font-spec ps-mule-current-charset font-type)))
897 (cond (font-spec
898 (ps-mule-string-encoding font-spec (char-to-string char)))
899
900 ((eq ps-mule-current-charset 'latin-iso8859-1)
901 (ps-mule-string-ascii (char-to-string char)))
902
903 (t
904 ;; No font for CHAR.
905 (ps-set-font ps-current-font)
906 " "))))
907
908(defun ps-mule-string-ascii (str)
909 (ps-set-font ps-current-font)
910 (string-as-unibyte (encode-coding-string str 'iso-latin-1)))
911
912(defun ps-mule-string-encoding (font-spec str)
913 (let ((encoding (ps-mule-font-spec-encoding font-spec)))
914 (setq str
915 (string-as-unibyte
916 (cond ((coding-system-p encoding)
917 (encode-coding-string str encoding))
918 ((functionp encoding)
919 (funcall encoding str))
920 (encoding
921 (error "Invalid coding system or function: %s" encoding))
922 (t
923 str))))
924 (if (ps-mule-font-spec-src font-spec)
925 (ps-mule-prepare-font font-spec str ps-mule-current-charset)
926 (ps-set-font ps-current-font))
927 str))
928
929;; Bitmap font support
930
931(defvar ps-mule-bitmap-prologue-generated nil)
932
933(defconst ps-mule-bitmap-prologue
934 "%%%% Bitmap font handler
935
936/str7 7 string def % working area
937
938%% We grow the dictionary one bunch (1024 entries) by one.
939/BitmapDictArray 256 array def
940/BitmapDictLength 1024 def
941/BitmapDictIndex -1 def
942
943/NewBitmapDict { % -- |- --
944 /BitmapDictIndex BitmapDictIndex 1 add def
945 BitmapDictArray BitmapDictIndex BitmapDictLength dict put
946} bind def
947
948%% Make at least one dictionary.
949NewBitmapDict
950
951/AddBitmap { % gloval-charname bitmap-data |- --
952 BitmapDictArray BitmapDictIndex get
953 dup length BitmapDictLength ge {
954 pop
955 NewBitmapDict
956 BitmapDictArray BitmapDictIndex get
957 } if
958 3 1 roll put
959} bind def
960
961/GetBitmap { % gloval-charname |- bitmap-data
962 0 1 BitmapDictIndex { BitmapDictArray exch get begin } for
963 load
964 0 1 BitmapDictIndex { pop end } for
965} bind def
966
967%% Return a global character name which can be used as a key in the
968%% bitmap dictionary.
969/GlobalCharName { % fontidx code1 code2 |- gloval-charname
970 exch 256 mul add exch 65536 mul add 16777216 add 16 str7 cvrs 0 66 put
971 str7 cvn
972} bind def
973
974%% Character code holder for a 2-byte character.
975/FirstCode -1 def
976
977%% Glyph rendering procedure
978/BuildGlyphCommon { % fontdict charname |- --
979 1 index /FontDimension get 1 eq { /FirstCode 0 store } if
980 NameIndexDict exch get % STACK: fontdict charcode
981 FirstCode 0 lt { %ifelse
982 %% This is the first byte of a 2-byte character. Just
983 %% remember it for the moment.
984 /FirstCode exch store
985 pop
986 0 0 setcharwidth
987 } {
988 1 index /FontSize get /size exch def
989 1 index /FontSpaceWidthRatio get /ratio exch def
990 1 index /FontIndex get exch FirstCode exch
991 GlobalCharName GetBitmap /bmp exch def
992 %% bmp == [ DWIDTH BBX-WIDTH BBX-HEIGHT BBX-XOFF BBX-YOFF BITMAP ]
993 Cmpchar { %ifelse
994 /FontMatrix get [ exch { size div } forall ] /mtrx exch def
995 bmp 3 get bmp 4 get mtrx transform
bc4c1aae 996 /LLY exch def /LLX exch def
2cb842ae 997 bmp 1 get bmp 3 get add bmp 2 get bmp 4 get add mtrx transform
bc4c1aae 998 /URY exch def /URX exch def
2cb842ae
KH
999 } {
1000 pop
1001 } ifelse
1002 /FirstCode -1 store
1003
1004 bmp 0 get SpaceWidthRatio ratio div mul size div 0 % wx wy
1005 setcharwidth % We can't use setcachedevice here.
1006
1007 bmp 1 get 0 gt bmp 2 get 0 gt and {
1008 bmp 1 get bmp 2 get % width height
1009 true % polarity
1010 [ size 0 0 size neg bmp 3 get neg bmp 2 get bmp 4 get add ] % matrix
1011 bmp 5 1 getinterval cvx % datasrc
1012 imagemask
1013 } if
1014 } ifelse
1015} bind def
1016
1017/BuildCharCommon {
1018 1 index /Encoding get exch get
1019 1 index /BuildGlyph get exec
1020} bind def
1021
1022%% Bitmap font creater
1023
1024%% Common Encoding shared by all bitmap fonts.
1025/EncodingCommon 256 array def
1026%% Mapping table from character name to character code.
1027/NameIndexDict 256 dict def
10280 1 255 { %for
1029 /idx exch def
1030 /idxname idx 256 add 16 (XXX) cvrs dup 0 67 put cvn def % `C' == 67
1031 EncodingCommon idx idxname put
1032 NameIndexDict idxname idx put
1033} for
1034
1035/GlobalFontIndex 0 def
1036
1037%% fontname dim col fontsize relative-compose baseline-offset fbbx |- --
1038/BitmapFont {
1039 15 dict begin
1040 /FontBBox exch def
1041 /BaselineOffset exch def
1042 /RelativeCompose exch def
1043 /FontSize exch def
1044 /FontBBox [ FontBBox { FontSize div } forall ] def
1045 FontBBox 2 get FontBBox 0 get sub exch div
1046 /FontSpaceWidthRatio exch def
1047 /FontDimension exch def
1048 /FontIndex GlobalFontIndex def
1049 /FontType 3 def
1050 /FontMatrix matrix def
1051 /Encoding EncodingCommon def
1052 /BuildGlyph { BuildGlyphCommon } def
1053 /BuildChar { BuildCharCommon } def
1054 currentdict end
1055 definefont pop
1056 /GlobalFontIndex GlobalFontIndex 1 add def
1057} bind def
1058
1059%% Define a new bitmap font.
1060%% fontname dim col fontsize relative-compose baseline-offset fbbx |- --
1061/NF {
1062 /fbbx exch def
1063 %% Convert BDF's FontBoundingBox to PostScript's FontBBox
1064 [ fbbx 2 get fbbx 3 get
1065 fbbx 2 get fbbx 0 get add fbbx 3 get fbbx 1 get add ]
1066 BitmapFont
1067} bind def
1068
1069%% Define a glyph for the specified font and character.
1070/NG { % fontname charcode bitmap-data |- --
1071 /bmp exch def
1072 exch findfont dup /BaselineOffset get bmp 4 get add bmp exch 4 exch put
1073 /FontIndex get exch
1074 dup 256 idiv exch 256 mod GlobalCharName
1075 bmp AddBitmap
1076} bind def
1077%%%% End of bitmap font handler
1078
1079")
1080
1081;; External library support.
1082
1083;; The following three functions are to be called from external
1084;; libraries which support bitmap fonts (e.g. `bdf') to get
1085;; appropriate PostScript code.
1086
1087(defun ps-mule-generate-bitmap-prologue ()
1088 (unless ps-mule-bitmap-prologue-generated
1089 (setq ps-mule-bitmap-prologue-generated t)
1090 (list ps-mule-bitmap-prologue)))
1091
1092(defun ps-mule-generate-bitmap-font (&rest args)
1093 (list (apply 'format "/%s %d %d %f %S %d %S NF\n" args)))
1094
1095(defun ps-mule-generate-bitmap-glyph (font-name code dwidth bbx bitmap)
1096 (format "/%s %d [ %d %d %d %d %d <%s> ] NG\n"
1097 font-name code
1098 dwidth (aref bbx 0) (aref bbx 1) (aref bbx 2) (aref bbx 3)
1099 bitmap))
1100
1101;; Mule specific initializers.
1102
1103;;;###autoload
1104(defun ps-mule-initialize ()
1105 "Initialize global data for printing multi-byte characters."
1106 (setq ps-mule-font-cache nil
1107 ps-mule-prologue-generated nil
1108 ps-mule-cmpchar-prologue-generated nil
1109 ps-mule-bitmap-prologue-generated nil)
1110 (mapcar `(lambda (x) (setcar (nthcdr 2 x) nil))
1111 ps-mule-external-libraries))
1112
1113;;;###autoload
1114(defun ps-mule-begin-job (from to)
1115 "Start printing job for multi-byte chars between FROM and TO.
1116This checks if all multi-byte characters in the region are printable or not."
1117 (setq ps-mule-charset-list nil
1118 ps-mule-font-info-database
1119 (cond ((eq ps-multibyte-buffer 'non-latin-printer)
1120 ps-mule-font-info-database-ps)
1121 ((eq ps-multibyte-buffer 'bdf-font)
1122 ps-mule-font-info-database-bdf)
1123 ((eq ps-multibyte-buffer 'bdf-font-except-latin)
1124 ps-mule-font-info-database-ps-bdf)
1125 (t
d7d83b6e 1126 ps-mule-font-info-database-default)))
2cb842ae
KH
1127 (and (boundp 'enable-multibyte-characters)
1128 enable-multibyte-characters
1129 ;; Initialize `ps-mule-charset-list'. If some characters aren't
1130 ;; printable, warn it.
1131 (let ((charsets (find-charset-region from to)))
f37bad85
KH
1132 (setq charsets (delq 'ascii (delq 'unknown (delq nil charsets)))
1133 ps-mule-charset-list charsets)
2cb842ae
KH
1134 (save-excursion
1135 (goto-char from)
1136 (and (search-forward "\200" to t)
1137 (setq ps-mule-charset-list
1138 (cons 'composition ps-mule-charset-list))))
1139 (while charsets
1140 (setq charsets
1141 (cond
1142 ((or (eq (car charsets) 'composition)
1143 (ps-mule-printable-p (car charsets)))
1144 (cdr charsets))
1145 ((y-or-n-p
1146 "Font for some characters not found, continue anyway? ")
1147 nil)
1148 (t
1149 (error "Printing cancelled")))))))
1150
1151 (setq ps-mule-current-charset 'ascii)
1152
1153 (if ps-mule-charset-list
1154 (let ((the-list ps-mule-charset-list)
1155 font-spec elt)
1156 (ps-mule-prologue-generated)
1157 ;; If external functions are necessary, generate prologues for them.
1158 (while the-list
1159 (setq elt (car the-list)
1160 the-list (cdr the-list))
1161 (cond ((and (eq elt 'composition)
1162 (not ps-mule-cmpchar-prologue-generated))
1163 (ps-output-prologue ps-mule-cmpchar-prologue)
1164 (setq ps-mule-cmpchar-prologue-generated t))
1165 ((setq font-spec (ps-mule-get-font-spec elt 'normal))
1166 (ps-mule-init-external-library font-spec))))))
1167
1168 ;; If ASCII font is also specified in ps-mule-font-info-database,
1169 ;; use it istead of what specified in ps-font-info-database.
1170 (let ((font-spec (ps-mule-get-font-spec 'ascii 'normal)))
1171 (if font-spec
1172 (progn
1173 (ps-mule-prologue-generated)
1174 (ps-mule-init-external-library font-spec)
1175 (let ((font (ps-font-alist 'ps-font-for-text))
1176 (ps-current-font 0))
1177 (while font
1178 ;; Be sure to download a glyph for SPACE in advance.
1179 (ps-mule-prepare-font (ps-mule-get-font-spec 'ascii (car font))
1180 " " 'ascii 'no-setfont)
1181 (setq font (cdr font)
1182 ps-current-font (1+ ps-current-font)))))))
1183
1184 (if ps-mule-charset-list
1185 ;; We must change this regexp for multi-byte buffer.
1186 (setq ps-control-or-escape-regexp
1187 (cond ((eq ps-print-control-characters '8-bit)
1188 "[^\040-\176]")
1189 ((eq ps-print-control-characters 'control-8-bit)
1190 (string-as-multibyte "[^\040-\176\240-\377]"))
1191 ((eq ps-print-control-characters 'control)
1192 (string-as-multibyte "[^\040-\176\200-\377]"))
16c1fb84 1193 (t (string-as-multibyte "[^\000-\011\013\015-\377]"))))))
2cb842ae
KH
1194
1195;;;###autoload
1196(defun ps-mule-begin-page ()
1197 (setq ps-mule-current-charset 'ascii))
1198
1199
1200(provide 'ps-mule)
1201
1202;;; ps-mule.el ends here