tm 7.65.
[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.21 1996/05/27 14:08:00 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   (code-convert-string str coding-system *internal*)
116   )
117
118 (defun character-encode-region (start end coding-system)
119   "Encode the text between START and END which is
120 encoded in CODING-SYSTEM. [emu-mule.el]"
121   (code-convert start end *internal* coding-system)
122   )
123
124 (defun character-decode-region (start end coding-system)
125   "Decode the text between START and END which is
126 encoded in CODING-SYSTEM. [emu-mule.el]"
127   (code-convert start end coding-system *internal*)
128   )
129
130
131 ;;; @ character
132 ;;;
133
134 (defalias 'char-charset 'char-leading-char)
135
136 (defalias 'char-columns 'char-width)
137
138
139 ;;; @ string
140 ;;;
141
142 (defalias 'string-columns 'string-width)
143
144 (defalias 'string-to-int-list 'string-to-char-list)
145
146 (or (fboundp 'truncate-string)
147 ;;; Imported from Mule-2.3
148 (defun truncate-string (str width &optional start-column)
149   "Truncate STR to fit in WIDTH columns.
150 Optional non-nil arg START-COLUMN specifies the starting column.
151 \[emu-mule.el; Mule 2.3 emulating function]"
152   (or start-column
153       (setq start-column 0))
154   (let ((max-width (string-width str))
155         (len (length str))
156         (from 0)
157         (column 0)
158         to-prev to ch)
159     (if (>= width max-width)
160         (setq width max-width))
161     (if (>= start-column width)
162         ""
163       (while (< column start-column)
164         (setq ch (aref str from)
165               column (+ column (char-width ch))
166               from (+ from (char-bytes ch))))
167       (if (< width max-width)
168           (progn
169             (setq to from)
170             (while (<= column width)
171               (setq ch (aref str to)
172                     column (+ column (char-width ch))
173                     to-prev to
174                     to (+ to (char-bytes ch))))
175             (setq to to-prev)))
176       (substring str from to))))
177 ;;;
178   )
179
180
181 ;;; @ end
182 ;;;
183
184 (provide 'emu-mule)
185
186 ;;; emu-mule.el ends here