tm 7.69.
[elisp/apel.git] / emu-mule.el
1 ;;;
2 ;;; emu-mule.el --- Mule 2.* emulation module for Mule
3 ;;;
4 ;;; Copyright (C) 1995 Free Software Foundation, Inc.
5 ;;; Copyright (C) 1994 .. 1996 MORIOKA Tomohiko
6 ;;;
7 ;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;;; Version:
9 ;;;     $Id: emu-mule.el,v 7.25 1996/06/26 15:33:39 morioka Exp $
10 ;;; Keywords: emulation, compatibility, Mule
11 ;;;
12 ;;; This file is part of tl (Tiny Library).
13 ;;;
14 ;;; This program is free software; you can redistribute it and/or
15 ;;; modify it under the terms of the GNU General Public License as
16 ;;; published by the Free Software Foundation; either version 2, or
17 ;;; (at your option) any later version.
18 ;;;
19 ;;; This program 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 GNU
22 ;;; General Public License for more details.
23 ;;;
24 ;;; You should have received a copy of the GNU General Public License
25 ;;; along with This program.  If not, write to the Free Software
26 ;;; Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 ;;;
28 ;;; Code:
29
30 ;;; @ version specific features
31 ;;;
32
33 (cond (running-emacs-19
34        (require 'emu-19)
35        
36        ;; Suggested by SASAKI Osamu <osamu@shuugr.bekkoame.or.jp>
37        ;; (cf. [os2-emacs-ja:78])
38        (defun fontset-pixel-size (fontset)
39          (let* ((font (get-font-info
40                        (aref (cdr (get-fontset-info fontset)) 0)))
41                 (open (aref font 4)))
42            (if (= open 1)
43                (aref font 5)
44              (if (= open 0)
45                  (let ((pat (aref font 1)))
46                    (if (string-match "-[0-9]+-" pat)
47                        (string-to-number
48                         (substring
49                          pat (1+ (match-beginning 0)) (1- (match-end 0))))
50                      0)))
51              )))
52        )
53       (running-emacs-18
54        (require 'emu-18)
55        (defun tl:make-overlay (beg end &optional buffer type))
56        (defun tl:overlay-put (overlay prop value))
57        ))
58
59
60 ;;; @ character set
61 ;;;
62
63 ;; 94 character set
64 (defconst charset-ascii          lc-ascii  "ASCII")
65 (defconst charset-jisx0201-kana  lc-kana   "JIS X0201 Katakana")
66 (defconst charset-jisx0201-latin lc-roman  "JIS X0201 Latin")
67
68 ;; 96 character set
69 (defconst charset-latin-1        lc-ltn1   "ISO-8859-1 (Latin-1)")
70 (defconst charset-latin-2        lc-ltn2   "ISO-8859-2 (Latin-2)")
71 (defconst charset-latin-3        lc-ltn3   "ISO-8859-3 (Latin-3)")
72 (defconst charset-latin-4        lc-ltn4   "ISO-8859-4 (Latin-4)")
73 (defconst charset-cyrillic       lc-crl    "ISO-8859-5 (Cyrillic)")
74 (defconst charset-arabic         lc-arb    "ISO-8859-6 (Arabic)")
75 (defconst charset-greek          lc-grk    "ISO-8859-7 (Greek)")
76 (defconst charset-hebrew         lc-hbw    "ISO-8859-8 (Hebrew)")
77 (defconst charset-latin-5        lc-ltn5   "ISO-8859-9 (Latin-5)")
78
79 ;; 94x94 character set
80 (defconst charset-jisx0208-1978  lc-jpold  "JIS X0208-1978")
81 (defconst charset-gb2312         lc-cn     "GB 2312-1980")
82 (defconst charset-jisx0208       lc-jp     "JIS X0208-1983")
83 (defconst charset-ksc5601        lc-kr     "KS C5601-1987")
84 (defconst charset-jisx0212       lc-jp2    "JIS X0212-1990")
85 (defconst charset-cns11643-1     lc-cns1   "CNS 11643-1986 plane 1")
86 (defconst charset-cns11643-2     lc-cns2   "CNS 11643-1986 plane 2")
87 (defconst charset-cns11643-3     lc-cns3   "CNS 11643-1986 plane 3")
88 (defconst charset-cns11643-4     lc-cns4   "CNS 11643-1986 plane 4")
89 (defconst charset-cns11643-5     lc-cns5   "CNS 11643-1986 plane 5")
90 (defconst charset-cns11643-6     lc-cns6   "CNS 11643-1986 plane 6")
91 (defconst charset-cns11643-7     lc-cns7   "CNS 11643-1986 plane 7")
92
93 ;; Big 5
94 (defconst charset-big5-1         lc-big5-1 "Big5 Level 1")
95 (defconst charset-big5-2         lc-big5-2 "Big5 Level 2")
96
97 (defalias 'charset-description 'char-description)
98 (defalias 'charset-registry    'char-registry)
99 (defalias 'charset-columns     'char-width)
100 (defalias 'charset-direction   'char-direction)
101
102
103 ;;; @ coding system
104 ;;;
105
106 (defun character-encode-string (str coding-system)
107   "Encode the string STR which is encoded in CODING-SYSTEM.
108 \[emu-mule.el]"
109   (code-convert-string str *internal* coding-system)
110   )
111
112 (defun character-decode-string (str coding-system)
113   "Decode the string STR which is encoded in CODING-SYSTEM.
114 \[emu-mule.el]"
115   (let ((len (length str))
116         ret)
117     (while (and
118             (< 0 len)
119             (null
120              (setq ret
121                    (code-convert-string (substring str 0 len)
122                                         coding-system *internal*))
123              ))
124       (setq len (1- len))
125       )
126     (concat ret (substring str len))
127     ))
128
129 (defun character-encode-region (start end coding-system)
130   "Encode the text between START and END which is
131 encoded in CODING-SYSTEM. [emu-mule.el]"
132   (code-convert start end *internal* coding-system)
133   )
134
135 (defun character-decode-region (start end coding-system)
136   "Decode the text between START and END which is
137 encoded in CODING-SYSTEM. [emu-mule.el]"
138   (code-convert start end coding-system *internal*)
139   )
140
141 (defmacro as-binary-process (&rest body)
142   (` (let (selective-display    ; Disable ^M to nl translation.
143            ;; Mule
144            mc-flag      
145            (default-process-coding-system (cons *noconv* *noconv*))
146            program-coding-system-alist)
147        (,@ body)
148        )))
149
150
151 ;;; @ character
152 ;;;
153
154 (defalias 'char-charset 'char-leading-char)
155
156 (defalias 'char-length 'char-bytes)
157
158 (defalias 'char-columns 'char-width)
159
160
161 ;;; @ string
162 ;;;
163
164 (defalias 'string-columns 'string-width)
165
166 (defalias 'string-to-int-list 'string-to-char-list)
167
168 (or (fboundp 'truncate-string)
169 ;;; Imported from Mule-2.3
170 (defun truncate-string (str width &optional start-column)
171   "Truncate STR to fit in WIDTH columns.
172 Optional non-nil arg START-COLUMN specifies the starting column.
173 \[emu-mule.el; Mule 2.3 emulating function]"
174   (or start-column
175       (setq start-column 0))
176   (let ((max-width (string-width str))
177         (len (length str))
178         (from 0)
179         (column 0)
180         to-prev to ch)
181     (if (>= width max-width)
182         (setq width max-width))
183     (if (>= start-column width)
184         ""
185       (while (< column start-column)
186         (setq ch (aref str from)
187               column (+ column (char-width ch))
188               from (+ from (char-bytes ch))))
189       (if (< width max-width)
190           (progn
191             (setq to from)
192             (while (<= column width)
193               (setq ch (aref str to)
194                     column (+ column (char-width ch))
195                     to-prev to
196                     to (+ to (char-bytes ch))))
197             (setq to to-prev)))
198       (substring str from to))))
199 ;;;
200   )
201
202
203 ;;; @ regulation
204 ;;;
205
206 (defun regulate-latin-char (chr)
207   (cond ((and (<= ?\e$B#A\e(B chr)(<= chr ?\e$B#Z\e(B))
208          (+ (- chr ?\e$B#A\e(B) ?A)
209          )
210         ((and (<= ?\e$B#a\e(B chr)(<= chr ?\e$B#z\e(B))
211          (+ (- chr ?\e$B#a\e(B) ?a)
212          )
213         ((eq chr ?\e$B!%\e(B) ?.)
214         ((eq chr ?\e$B!$\e(B) ?,)
215         (t chr)
216         ))
217
218 (defun regulate-latin-string (str)
219   (let ((len (length str))
220         (i 0)
221         chr (dest ""))
222     (while (< i len)
223       (setq chr (sref str i))
224       (setq dest (concat dest
225                          (char-to-string (regulate-latin-char chr))))
226       (setq i (+ i (char-bytes chr)))
227       )
228     dest))
229
230
231 ;;; @ end
232 ;;;
233
234 (provide 'emu-mule)
235
236 ;;; emu-mule.el ends here