7
|
1 /* vi:set ts=8 sts=4 sw=4:
|
|
2 *
|
|
3 * VIM - Vi IMproved by Bram Moolenaar
|
|
4 * Multibyte extensions partly by Sung-Hoon Baek
|
|
5 *
|
|
6 * Do ":help uganda" in Vim to read copying and usage conditions.
|
|
7 * Do ":help credits" in Vim to see a list of people who contributed.
|
|
8 * See README.txt for an overview of the Vim source code.
|
|
9 */
|
|
10 /*
|
|
11 * mbyte.c: Code specifically for handling multi-byte characters.
|
|
12 *
|
|
13 * The encoding used in the core is set with 'encoding'. When 'encoding' is
|
|
14 * changed, the following four variables are set (for speed).
|
|
15 * Currently these types of character encodings are supported:
|
|
16 *
|
|
17 * "enc_dbcs" When non-zero it tells the type of double byte character
|
|
18 * encoding (Chinese, Korean, Japanese, etc.).
|
|
19 * The cell width on the display is equal to the number of
|
|
20 * bytes. (exception: DBCS_JPNU with first byte 0x8e)
|
|
21 * Recognizing the first or second byte is difficult, it
|
|
22 * requires checking a byte sequence from the start.
|
|
23 * "enc_utf8" When TRUE use Unicode characters in UTF-8 encoding.
|
|
24 * The cell width on the display needs to be determined from
|
|
25 * the character value.
|
|
26 * Recognizing bytes is easy: 0xxx.xxxx is a single-byte
|
|
27 * char, 10xx.xxxx is a trailing byte, 11xx.xxxx is a leading
|
|
28 * byte of a multi-byte character.
|
|
29 * To make things complicated, up to two composing characters
|
|
30 * are allowed. These are drawn on top of the first char.
|
|
31 * For most editing the sequence of bytes with composing
|
|
32 * characters included is considered to be one character.
|
|
33 * "enc_unicode" When 2 use 16-bit Unicode characters (or UTF-16).
|
|
34 * When 4 use 32-but Unicode characters.
|
|
35 * Internally characters are stored in UTF-8 encoding to
|
|
36 * avoid NUL bytes. Conversion happens when doing I/O.
|
|
37 * "enc_utf8" will also be TRUE.
|
|
38 *
|
|
39 * "has_mbyte" is set when "enc_dbcs" or "enc_utf8" is non-zero.
|
|
40 *
|
|
41 * If none of these is TRUE, 8-bit bytes are used for a character. The
|
|
42 * encoding isn't currently specified (TODO).
|
|
43 *
|
|
44 * 'encoding' specifies the encoding used in the core. This is in registers,
|
|
45 * text manipulation, buffers, etc. Conversion has to be done when characters
|
|
46 * in another encoding are received or send:
|
|
47 *
|
|
48 * clipboard
|
|
49 * ^
|
|
50 * | (2)
|
|
51 * V
|
|
52 * +---------------+
|
|
53 * (1) | | (3)
|
|
54 * keyboard ----->| core |-----> display
|
|
55 * | |
|
|
56 * +---------------+
|
|
57 * ^
|
|
58 * | (4)
|
|
59 * V
|
|
60 * file
|
|
61 *
|
|
62 * (1) Typed characters arrive in the current locale. Conversion is to be
|
|
63 * done when 'encoding' is different from 'termencoding'.
|
|
64 * (2) Text will be made available with the encoding specified with
|
|
65 * 'encoding'. If this is not sufficient, system-specific conversion
|
|
66 * might be required.
|
|
67 * (3) For the GUI the correct font must be selected, no conversion done.
|
|
68 * Otherwise, conversion is to be done when 'encoding' differs from
|
|
69 * 'termencoding'. (Different in the GTK+ 2 port -- 'termencoding'
|
|
70 * is always used for both input and output and must always be set to
|
|
71 * "utf-8". gui_mch_init() does this automatically.)
|
|
72 * (4) The encoding of the file is specified with 'fileencoding'. Conversion
|
|
73 * is to be done when it's different from 'encoding'.
|
|
74 *
|
|
75 * The viminfo file is a special case: Only text is converted, not file names.
|
|
76 * Vim scripts may contain an ":encoding" command. This has an effect for
|
|
77 * some commands, like ":menutrans"
|
|
78 */
|
|
79
|
|
80 #include "vim.h"
|
|
81
|
|
82 #ifdef WIN32UNIX
|
|
83 # ifndef WIN32_LEAN_AND_MEAN
|
|
84 # define WIN32_LEAN_AND_MEAN
|
|
85 # endif
|
|
86 # include <windows.h>
|
|
87 # ifdef WIN32
|
|
88 # undef WIN32 /* Some windows.h define WIN32, we don't want that here. */
|
|
89 # endif
|
|
90 #endif
|
|
91
|
|
92 #if (defined(WIN3264) || defined(WIN32UNIX)) && !defined(__MINGW32__)
|
|
93 # include <winnls.h>
|
|
94 #endif
|
|
95
|
|
96 #ifdef FEAT_GUI_X11
|
|
97 # include <X11/Intrinsic.h>
|
|
98 #endif
|
|
99 #ifdef X_LOCALE
|
|
100 #include <X11/Xlocale.h>
|
|
101 #endif
|
|
102
|
661
|
103 #if defined(FEAT_GUI_GTK) && defined(FEAT_XIM) && defined(HAVE_GTK2)
|
7
|
104 # include <gdk/gdkkeysyms.h>
|
|
105 # ifdef WIN3264
|
|
106 # include <gdk/gdkwin32.h>
|
|
107 # else
|
|
108 # include <gdk/gdkx.h>
|
|
109 # endif
|
|
110 #endif
|
|
111
|
|
112 #ifdef HAVE_WCHAR_H
|
|
113 # include <wchar.h>
|
|
114 #endif
|
|
115
|
|
116 #if 0
|
|
117 /* This has been disabled, because several people reported problems with the
|
|
118 * wcwidth() and iswprint() library functions, esp. for Hebrew. */
|
|
119 # ifdef __STDC_ISO_10646__
|
|
120 # define USE_WCHAR_FUNCTIONS
|
|
121 # endif
|
|
122 #endif
|
|
123
|
|
124 #if defined(FEAT_MBYTE) || defined(PROTO)
|
|
125
|
|
126 static int enc_canon_search __ARGS((char_u *name));
|
|
127 static int dbcs_char2len __ARGS((int c));
|
|
128 static int dbcs_char2bytes __ARGS((int c, char_u *buf));
|
474
|
129 static int dbcs_ptr2len __ARGS((char_u *p));
|
7
|
130 static int dbcs_char2cells __ARGS((int c));
|
|
131 static int dbcs_ptr2char __ARGS((char_u *p));
|
|
132
|
|
133 /* Lookup table to quickly get the length in bytes of a UTF-8 character from
|
|
134 * the first byte of a UTF-8 string. Bytes which are illegal when used as the
|
|
135 * first byte have a one, because these will be used separately. */
|
|
136 static char utf8len_tab[256] =
|
|
137 {
|
|
138 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
|
|
139 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
|
|
140 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
|
|
141 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
|
|
142 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /*bogus*/
|
|
143 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /*bogus*/
|
|
144 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
|
|
145 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,1,1,
|
|
146 };
|
|
147
|
|
148 /*
|
|
149 * XIM often causes trouble. Define XIM_DEBUG to get a log of XIM callbacks
|
|
150 * in the "xim.log" file.
|
|
151 */
|
|
152 /* #define XIM_DEBUG */
|
|
153 #ifdef XIM_DEBUG
|
|
154 static void
|
|
155 xim_log(char *s, ...)
|
|
156 {
|
|
157 va_list arglist;
|
|
158 static FILE *fd = NULL;
|
|
159
|
|
160 if (fd == (FILE *)-1)
|
|
161 return;
|
|
162 if (fd == NULL)
|
|
163 {
|
531
|
164 fd = mch_fopen("xim.log", "w");
|
7
|
165 if (fd == NULL)
|
|
166 {
|
|
167 EMSG("Cannot open xim.log");
|
|
168 fd = (FILE *)-1;
|
|
169 return;
|
|
170 }
|
|
171 }
|
|
172
|
|
173 va_start(arglist, s);
|
|
174 vfprintf(fd, s, arglist);
|
|
175 va_end(arglist);
|
|
176 }
|
|
177 #endif
|
|
178
|
|
179 #endif
|
|
180
|
|
181 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
|
|
182 /*
|
|
183 * Canonical encoding names and their properties.
|
|
184 * "iso-8859-n" is handled by enc_canonize() directly.
|
|
185 */
|
|
186 static struct
|
|
187 { char *name; int prop; int codepage;}
|
|
188 enc_canon_table[] =
|
|
189 {
|
|
190 #define IDX_LATIN_1 0
|
|
191 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
|
|
192 #define IDX_ISO_2 1
|
|
193 {"iso-8859-2", ENC_8BIT, 0},
|
|
194 #define IDX_ISO_3 2
|
|
195 {"iso-8859-3", ENC_8BIT, 0},
|
|
196 #define IDX_ISO_4 3
|
|
197 {"iso-8859-4", ENC_8BIT, 0},
|
|
198 #define IDX_ISO_5 4
|
|
199 {"iso-8859-5", ENC_8BIT, 0},
|
|
200 #define IDX_ISO_6 5
|
|
201 {"iso-8859-6", ENC_8BIT, 0},
|
|
202 #define IDX_ISO_7 6
|
|
203 {"iso-8859-7", ENC_8BIT, 0},
|
407
|
204 #define IDX_ISO_8 7
|
7
|
205 {"iso-8859-8", ENC_8BIT, 0},
|
407
|
206 #define IDX_ISO_9 8
|
7
|
207 {"iso-8859-9", ENC_8BIT, 0},
|
407
|
208 #define IDX_ISO_10 9
|
7
|
209 {"iso-8859-10", ENC_8BIT, 0},
|
407
|
210 #define IDX_ISO_11 10
|
7
|
211 {"iso-8859-11", ENC_8BIT, 0},
|
407
|
212 #define IDX_ISO_13 11
|
7
|
213 {"iso-8859-13", ENC_8BIT, 0},
|
407
|
214 #define IDX_ISO_14 12
|
7
|
215 {"iso-8859-14", ENC_8BIT, 0},
|
407
|
216 #define IDX_ISO_15 13
|
26
|
217 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
|
407
|
218 #define IDX_KOI8_R 14
|
7
|
219 {"koi8-r", ENC_8BIT, 0},
|
407
|
220 #define IDX_KOI8_U 15
|
7
|
221 {"koi8-u", ENC_8BIT, 0},
|
407
|
222 #define IDX_UTF8 16
|
7
|
223 {"utf-8", ENC_UNICODE, 0},
|
407
|
224 #define IDX_UCS2 17
|
7
|
225 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
|
407
|
226 #define IDX_UCS2LE 18
|
7
|
227 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
|
407
|
228 #define IDX_UTF16 19
|
7
|
229 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
|
407
|
230 #define IDX_UTF16LE 20
|
7
|
231 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
|
407
|
232 #define IDX_UCS4 21
|
7
|
233 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
|
407
|
234 #define IDX_UCS4LE 22
|
7
|
235 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
|
407
|
236
|
|
237 /* For debugging DBCS encoding on Unix. */
|
|
238 #define IDX_DEBUG 23
|
7
|
239 {"debug", ENC_DBCS, DBCS_DEBUG},
|
407
|
240 #define IDX_EUC_JP 24
|
7
|
241 {"euc-jp", ENC_DBCS, DBCS_JPNU},
|
407
|
242 #define IDX_SJIS 25
|
7
|
243 {"sjis", ENC_DBCS, DBCS_JPN},
|
407
|
244 #define IDX_EUC_KR 26
|
7
|
245 {"euc-kr", ENC_DBCS, DBCS_KORU},
|
407
|
246 #define IDX_EUC_CN 27
|
7
|
247 {"euc-cn", ENC_DBCS, DBCS_CHSU},
|
407
|
248 #define IDX_EUC_TW 28
|
7
|
249 {"euc-tw", ENC_DBCS, DBCS_CHTU},
|
407
|
250 #define IDX_BIG5 29
|
7
|
251 {"big5", ENC_DBCS, DBCS_CHT},
|
407
|
252
|
|
253 /* MS-DOS and MS-Windows codepages are included here, so that they can be
|
|
254 * used on Unix too. Most of them are similar to ISO-8859 encodings, but
|
|
255 * not exactly the same. */
|
|
256 #define IDX_CP437 30
|
|
257 {"cp437", ENC_8BIT, 437}, /* like iso-8859-1 */
|
|
258 #define IDX_CP737 31
|
|
259 {"cp737", ENC_8BIT, 737}, /* like iso-8859-7 */
|
|
260 #define IDX_CP775 32
|
|
261 {"cp775", ENC_8BIT, 775}, /* Baltic */
|
|
262 #define IDX_CP850 33
|
|
263 {"cp850", ENC_8BIT, 850}, /* like iso-8859-4 */
|
|
264 #define IDX_CP852 34
|
|
265 {"cp852", ENC_8BIT, 852}, /* like iso-8859-1 */
|
|
266 #define IDX_CP855 35
|
|
267 {"cp855", ENC_8BIT, 855}, /* like iso-8859-2 */
|
|
268 #define IDX_CP857 36
|
|
269 {"cp857", ENC_8BIT, 857}, /* like iso-8859-5 */
|
|
270 #define IDX_CP860 37
|
|
271 {"cp860", ENC_8BIT, 860}, /* like iso-8859-9 */
|
|
272 #define IDX_CP861 38
|
|
273 {"cp861", ENC_8BIT, 861}, /* like iso-8859-1 */
|
|
274 #define IDX_CP862 39
|
|
275 {"cp862", ENC_8BIT, 862}, /* like iso-8859-1 */
|
|
276 #define IDX_CP863 40
|
|
277 {"cp863", ENC_8BIT, 863}, /* like iso-8859-8 */
|
|
278 #define IDX_CP865 41
|
|
279 {"cp865", ENC_8BIT, 865}, /* like iso-8859-1 */
|
|
280 #define IDX_CP866 42
|
|
281 {"cp866", ENC_8BIT, 866}, /* like iso-8859-5 */
|
|
282 #define IDX_CP869 43
|
|
283 {"cp869", ENC_8BIT, 869}, /* like iso-8859-7 */
|
|
284 #define IDX_CP874 44
|
|
285 {"cp874", ENC_8BIT, 874}, /* Thai */
|
|
286 #define IDX_CP932 45
|
|
287 {"cp932", ENC_DBCS, DBCS_JPN},
|
|
288 #define IDX_CP936 46
|
|
289 {"cp936", ENC_DBCS, DBCS_CHS},
|
|
290 #define IDX_CP949 47
|
|
291 {"cp949", ENC_DBCS, DBCS_KOR},
|
|
292 #define IDX_CP950 48
|
|
293 {"cp950", ENC_DBCS, DBCS_CHT},
|
|
294 #define IDX_CP1250 49
|
|
295 {"cp1250", ENC_8BIT, 1250}, /* Czech, Polish, etc. */
|
|
296 #define IDX_CP1251 50
|
|
297 {"cp1251", ENC_8BIT, 1251}, /* Cyrillic */
|
|
298 /* cp1252 is considered to be equal to latin1 */
|
|
299 #define IDX_CP1253 51
|
|
300 {"cp1253", ENC_8BIT, 1253}, /* Greek */
|
|
301 #define IDX_CP1254 52
|
|
302 {"cp1254", ENC_8BIT, 1254}, /* Turkish */
|
|
303 #define IDX_CP1255 53
|
|
304 {"cp1255", ENC_8BIT, 1255}, /* Hebrew */
|
|
305 #define IDX_CP1256 54
|
|
306 {"cp1256", ENC_8BIT, 1256}, /* Arabic */
|
|
307 #define IDX_CP1257 55
|
|
308 {"cp1257", ENC_8BIT, 1257}, /* Baltic */
|
|
309 #define IDX_CP1258 56
|
|
310 {"cp1258", ENC_8BIT, 1258}, /* Vietnamese */
|
|
311
|
|
312 #define IDX_MACROMAN 57
|
|
313 {"macroman", ENC_8BIT + ENC_MACROMAN, 0}, /* Mac OS */
|
890
|
314 #define IDX_DECMCS 58
|
|
315 {"dec-mcs", ENC_8BIT, 0}, /* DEC MCS */
|
|
316 #define IDX_HPROMAN8 59
|
|
317 {"hp-roman8", ENC_8BIT, 0}, /* HP Roman8 */
|
|
318 #define IDX_COUNT 60
|
7
|
319 };
|
|
320
|
|
321 /*
|
|
322 * Aliases for encoding names.
|
|
323 */
|
|
324 static struct
|
|
325 { char *name; int canon;}
|
|
326 enc_alias_table[] =
|
|
327 {
|
|
328 {"ansi", IDX_LATIN_1},
|
|
329 {"iso-8859-1", IDX_LATIN_1},
|
|
330 {"latin2", IDX_ISO_2},
|
|
331 {"latin3", IDX_ISO_3},
|
|
332 {"latin4", IDX_ISO_4},
|
|
333 {"cyrillic", IDX_ISO_5},
|
|
334 {"arabic", IDX_ISO_6},
|
|
335 {"greek", IDX_ISO_7},
|
|
336 #ifdef WIN3264
|
|
337 {"hebrew", IDX_CP1255},
|
|
338 #else
|
|
339 {"hebrew", IDX_ISO_8},
|
|
340 #endif
|
|
341 {"latin5", IDX_ISO_9},
|
|
342 {"turkish", IDX_ISO_9}, /* ? */
|
|
343 {"latin6", IDX_ISO_10},
|
|
344 {"nordic", IDX_ISO_10}, /* ? */
|
|
345 {"thai", IDX_ISO_11}, /* ? */
|
|
346 {"latin7", IDX_ISO_13},
|
|
347 {"latin8", IDX_ISO_14},
|
|
348 {"latin9", IDX_ISO_15},
|
|
349 {"utf8", IDX_UTF8},
|
|
350 {"unicode", IDX_UCS2},
|
|
351 {"ucs2", IDX_UCS2},
|
|
352 {"ucs2be", IDX_UCS2},
|
|
353 {"ucs-2be", IDX_UCS2},
|
|
354 {"ucs2le", IDX_UCS2LE},
|
|
355 {"utf16", IDX_UTF16},
|
|
356 {"utf16be", IDX_UTF16},
|
|
357 {"utf-16be", IDX_UTF16},
|
|
358 {"utf16le", IDX_UTF16LE},
|
|
359 {"ucs4", IDX_UCS4},
|
|
360 {"ucs4be", IDX_UCS4},
|
|
361 {"ucs-4be", IDX_UCS4},
|
|
362 {"ucs4le", IDX_UCS4LE},
|
1540
|
363 {"utf32", IDX_UCS4},
|
|
364 {"utf-32", IDX_UCS4},
|
|
365 {"utf32be", IDX_UCS4},
|
|
366 {"utf-32be", IDX_UCS4},
|
|
367 {"utf32le", IDX_UCS4LE},
|
|
368 {"utf-32le", IDX_UCS4LE},
|
7
|
369 {"932", IDX_CP932},
|
|
370 {"949", IDX_CP949},
|
|
371 {"936", IDX_CP936},
|
932
|
372 {"gbk", IDX_CP936},
|
7
|
373 {"950", IDX_CP950},
|
|
374 {"eucjp", IDX_EUC_JP},
|
|
375 {"unix-jis", IDX_EUC_JP},
|
|
376 {"ujis", IDX_EUC_JP},
|
|
377 {"shift-jis", IDX_SJIS},
|
|
378 {"euckr", IDX_EUC_KR},
|
|
379 {"5601", IDX_EUC_KR}, /* Sun: KS C 5601 */
|
|
380 {"euccn", IDX_EUC_CN},
|
|
381 {"gb2312", IDX_EUC_CN},
|
|
382 {"euctw", IDX_EUC_TW},
|
|
383 #if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
|
|
384 {"japan", IDX_CP932},
|
|
385 {"korea", IDX_CP949},
|
|
386 {"prc", IDX_CP936},
|
|
387 {"chinese", IDX_CP936},
|
|
388 {"taiwan", IDX_CP950},
|
|
389 {"big5", IDX_CP950},
|
|
390 #else
|
|
391 {"japan", IDX_EUC_JP},
|
|
392 {"korea", IDX_EUC_KR},
|
|
393 {"prc", IDX_EUC_CN},
|
|
394 {"chinese", IDX_EUC_CN},
|
|
395 {"taiwan", IDX_EUC_TW},
|
|
396 {"cp950", IDX_BIG5},
|
|
397 {"950", IDX_BIG5},
|
|
398 #endif
|
|
399 {"mac", IDX_MACROMAN},
|
890
|
400 {"mac-roman", IDX_MACROMAN},
|
7
|
401 {NULL, 0}
|
|
402 };
|
|
403
|
|
404 #ifndef CP_UTF8
|
|
405 # define CP_UTF8 65001 /* magic number from winnls.h */
|
|
406 #endif
|
|
407
|
|
408 /*
|
|
409 * Find encoding "name" in the list of canonical encoding names.
|
|
410 * Returns -1 if not found.
|
|
411 */
|
|
412 static int
|
|
413 enc_canon_search(name)
|
|
414 char_u *name;
|
|
415 {
|
|
416 int i;
|
|
417
|
|
418 for (i = 0; i < IDX_COUNT; ++i)
|
|
419 if (STRCMP(name, enc_canon_table[i].name) == 0)
|
|
420 return i;
|
|
421 return -1;
|
|
422 }
|
|
423
|
|
424 #endif
|
|
425
|
|
426 #if defined(FEAT_MBYTE) || defined(PROTO)
|
|
427
|
|
428 /*
|
|
429 * Find canonical encoding "name" in the list and return its properties.
|
|
430 * Returns 0 if not found.
|
|
431 */
|
|
432 int
|
|
433 enc_canon_props(name)
|
|
434 char_u *name;
|
|
435 {
|
|
436 int i;
|
|
437
|
|
438 i = enc_canon_search(name);
|
|
439 if (i >= 0)
|
|
440 return enc_canon_table[i].prop;
|
|
441 #ifdef WIN3264
|
|
442 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
|
|
443 {
|
|
444 CPINFO cpinfo;
|
|
445
|
|
446 /* Get info on this codepage to find out what it is. */
|
|
447 if (GetCPInfo(atoi(name + 2), &cpinfo) != 0)
|
|
448 {
|
|
449 if (cpinfo.MaxCharSize == 1) /* some single-byte encoding */
|
|
450 return ENC_8BIT;
|
|
451 if (cpinfo.MaxCharSize == 2
|
|
452 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
|
|
453 /* must be a DBCS encoding */
|
|
454 return ENC_DBCS;
|
|
455 }
|
|
456 return 0;
|
|
457 }
|
|
458 #endif
|
|
459 if (STRNCMP(name, "2byte-", 6) == 0)
|
|
460 return ENC_DBCS;
|
|
461 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
|
|
462 return ENC_8BIT;
|
|
463 return 0;
|
|
464 }
|
|
465
|
|
466 /*
|
|
467 * Set up for using multi-byte characters.
|
|
468 * Called in three cases:
|
|
469 * - by main() to initialize (p_enc == NULL)
|
|
470 * - by set_init_1() after 'encoding' was set to its default.
|
|
471 * - by do_set() when 'encoding' has been set.
|
|
472 * p_enc must have been passed through enc_canonize() already.
|
|
473 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
|
|
474 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
|
|
475 * When there is something wrong: Returns an error message and doesn't change
|
|
476 * anything.
|
|
477 */
|
|
478 char_u *
|
|
479 mb_init()
|
|
480 {
|
|
481 int i;
|
|
482 int idx;
|
|
483 int n;
|
|
484 int enc_dbcs_new = 0;
|
|
485 #if defined(USE_ICONV) && !defined(WIN3264) && !defined(WIN32UNIX) \
|
|
486 && !defined(MACOS)
|
|
487 # define LEN_FROM_CONV
|
|
488 vimconv_T vimconv;
|
|
489 char_u *p;
|
|
490 #endif
|
|
491
|
|
492 if (p_enc == NULL)
|
|
493 {
|
|
494 /* Just starting up: set the whole table to one's. */
|
|
495 for (i = 0; i < 256; ++i)
|
|
496 mb_bytelen_tab[i] = 1;
|
|
497 input_conv.vc_type = CONV_NONE;
|
|
498 input_conv.vc_factor = 1;
|
|
499 output_conv.vc_type = CONV_NONE;
|
|
500 return NULL;
|
|
501 }
|
|
502
|
|
503 #ifdef WIN3264
|
|
504 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
|
|
505 {
|
|
506 CPINFO cpinfo;
|
|
507
|
|
508 /* Get info on this codepage to find out what it is. */
|
|
509 if (GetCPInfo(atoi(p_enc + 2), &cpinfo) != 0)
|
|
510 {
|
|
511 if (cpinfo.MaxCharSize == 1)
|
|
512 {
|
|
513 /* some single-byte encoding */
|
|
514 enc_unicode = 0;
|
|
515 enc_utf8 = FALSE;
|
|
516 }
|
|
517 else if (cpinfo.MaxCharSize == 2
|
|
518 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
|
|
519 {
|
|
520 /* must be a DBCS encoding, check below */
|
|
521 enc_dbcs_new = atoi(p_enc + 2);
|
|
522 }
|
|
523 else
|
|
524 goto codepage_invalid;
|
|
525 }
|
|
526 else if (GetLastError() == ERROR_INVALID_PARAMETER)
|
|
527 {
|
|
528 codepage_invalid:
|
|
529 return (char_u *)N_("E543: Not a valid codepage");
|
|
530 }
|
|
531 }
|
|
532 #endif
|
|
533 else if (STRNCMP(p_enc, "8bit-", 5) == 0
|
|
534 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
|
|
535 {
|
|
536 /* Accept any "8bit-" or "iso-8859-" name. */
|
|
537 enc_unicode = 0;
|
|
538 enc_utf8 = FALSE;
|
|
539 }
|
|
540 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
|
|
541 {
|
|
542 #ifdef WIN3264
|
|
543 /* Windows: accept only valid codepage numbers, check below. */
|
|
544 if (p_enc[6] != 'c' || p_enc[7] != 'p'
|
|
545 || (enc_dbcs_new = atoi(p_enc + 8)) == 0)
|
|
546 return e_invarg;
|
|
547 #else
|
|
548 /* Unix: accept any "2byte-" name, assume current locale. */
|
|
549 enc_dbcs_new = DBCS_2BYTE;
|
|
550 #endif
|
|
551 }
|
|
552 else if ((idx = enc_canon_search(p_enc)) >= 0)
|
|
553 {
|
|
554 i = enc_canon_table[idx].prop;
|
|
555 if (i & ENC_UNICODE)
|
|
556 {
|
|
557 /* Unicode */
|
|
558 enc_utf8 = TRUE;
|
|
559 if (i & (ENC_2BYTE | ENC_2WORD))
|
|
560 enc_unicode = 2;
|
|
561 else if (i & ENC_4BYTE)
|
|
562 enc_unicode = 4;
|
|
563 else
|
|
564 enc_unicode = 0;
|
|
565 }
|
|
566 else if (i & ENC_DBCS)
|
|
567 {
|
|
568 /* 2byte, handle below */
|
|
569 enc_dbcs_new = enc_canon_table[idx].codepage;
|
|
570 }
|
|
571 else
|
|
572 {
|
|
573 /* Must be 8-bit. */
|
|
574 enc_unicode = 0;
|
|
575 enc_utf8 = FALSE;
|
|
576 }
|
|
577 }
|
|
578 else /* Don't know what encoding this is, reject it. */
|
|
579 return e_invarg;
|
|
580
|
|
581 if (enc_dbcs_new != 0)
|
|
582 {
|
|
583 #ifdef WIN3264
|
|
584 /* Check if the DBCS code page is OK. */
|
|
585 if (!IsValidCodePage(enc_dbcs_new))
|
|
586 goto codepage_invalid;
|
|
587 #endif
|
|
588 enc_unicode = 0;
|
|
589 enc_utf8 = FALSE;
|
|
590 }
|
|
591 enc_dbcs = enc_dbcs_new;
|
|
592 has_mbyte = (enc_dbcs != 0 || enc_utf8);
|
|
593
|
|
594 #ifdef WIN3264
|
|
595 enc_codepage = encname2codepage(p_enc);
|
26
|
596 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
|
7
|
597 #endif
|
|
598
|
492
|
599 /* Detect an encoding that uses latin1 characters. */
|
|
600 enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0
|
|
601 || STRCMP(p_enc, "iso-8859-15") == 0);
|
|
602
|
7
|
603 /*
|
|
604 * Set the function pointers.
|
|
605 */
|
|
606 if (enc_utf8)
|
|
607 {
|
474
|
608 mb_ptr2len = utfc_ptr2len;
|
7
|
609 mb_char2len = utf_char2len;
|
|
610 mb_char2bytes = utf_char2bytes;
|
|
611 mb_ptr2cells = utf_ptr2cells;
|
|
612 mb_char2cells = utf_char2cells;
|
|
613 mb_off2cells = utf_off2cells;
|
|
614 mb_ptr2char = utf_ptr2char;
|
|
615 mb_head_off = utf_head_off;
|
|
616 }
|
|
617 else if (enc_dbcs != 0)
|
|
618 {
|
474
|
619 mb_ptr2len = dbcs_ptr2len;
|
7
|
620 mb_char2len = dbcs_char2len;
|
|
621 mb_char2bytes = dbcs_char2bytes;
|
|
622 mb_ptr2cells = dbcs_ptr2cells;
|
|
623 mb_char2cells = dbcs_char2cells;
|
|
624 mb_off2cells = dbcs_off2cells;
|
|
625 mb_ptr2char = dbcs_ptr2char;
|
|
626 mb_head_off = dbcs_head_off;
|
|
627 }
|
|
628 else
|
|
629 {
|
474
|
630 mb_ptr2len = latin_ptr2len;
|
7
|
631 mb_char2len = latin_char2len;
|
|
632 mb_char2bytes = latin_char2bytes;
|
|
633 mb_ptr2cells = latin_ptr2cells;
|
|
634 mb_char2cells = latin_char2cells;
|
|
635 mb_off2cells = latin_off2cells;
|
|
636 mb_ptr2char = latin_ptr2char;
|
|
637 mb_head_off = latin_head_off;
|
|
638 }
|
|
639
|
|
640 /*
|
|
641 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
|
|
642 */
|
|
643 #ifdef LEN_FROM_CONV
|
|
644 /* When 'encoding' is different from the current locale mblen() won't
|
|
645 * work. Use conversion to "utf-8" instead. */
|
|
646 vimconv.vc_type = CONV_NONE;
|
|
647 if (enc_dbcs)
|
|
648 {
|
|
649 p = enc_locale();
|
|
650 if (p == NULL || STRCMP(p, p_enc) != 0)
|
|
651 {
|
|
652 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
|
|
653 vimconv.vc_fail = TRUE;
|
|
654 }
|
|
655 vim_free(p);
|
|
656 }
|
|
657 #endif
|
|
658
|
|
659 for (i = 0; i < 256; ++i)
|
|
660 {
|
|
661 /* Our own function to reliably check the length of UTF-8 characters,
|
|
662 * independent of mblen(). */
|
|
663 if (enc_utf8)
|
|
664 n = utf8len_tab[i];
|
|
665 else if (enc_dbcs == 0)
|
|
666 n = 1;
|
|
667 else
|
|
668 {
|
|
669 #if defined(WIN3264) || defined(WIN32UNIX)
|
|
670 /* enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
|
|
671 * CodePage identifier, which we can pass directly in to Windows
|
|
672 * API */
|
|
673 n = IsDBCSLeadByteEx(enc_dbcs, (BYTE)i) ? 2 : 1;
|
|
674 #else
|
1030
|
675 # if defined(MACOS) || defined(__amigaos4__)
|
7
|
676 /*
|
|
677 * if mblen() is not available, character which MSB is turned on
|
|
678 * are treated as leading byte character. (note : This assumption
|
|
679 * is not always true.)
|
|
680 */
|
|
681 n = (i & 0x80) ? 2 : 1;
|
|
682 # else
|
|
683 char buf[MB_MAXBYTES];
|
|
684 # ifdef X_LOCALE
|
|
685 # ifndef mblen
|
|
686 # define mblen _Xmblen
|
|
687 # endif
|
|
688 # endif
|
|
689 if (i == NUL) /* just in case mblen() can't handle "" */
|
|
690 n = 1;
|
|
691 else
|
|
692 {
|
|
693 buf[0] = i;
|
|
694 buf[1] = 0;
|
|
695 #ifdef LEN_FROM_CONV
|
|
696 if (vimconv.vc_type != CONV_NONE)
|
|
697 {
|
|
698 /*
|
|
699 * string_convert() should fail when converting the first
|
|
700 * byte of a double-byte character.
|
|
701 */
|
|
702 p = string_convert(&vimconv, (char_u *)buf, NULL);
|
|
703 if (p != NULL)
|
|
704 {
|
|
705 vim_free(p);
|
|
706 n = 1;
|
|
707 }
|
|
708 else
|
|
709 n = 2;
|
|
710 }
|
|
711 else
|
|
712 #endif
|
|
713 {
|
|
714 /*
|
|
715 * mblen() should return -1 for invalid (means the leading
|
|
716 * multibyte) character. However there are some platforms
|
|
717 * where mblen() returns 0 for invalid character.
|
|
718 * Therefore, following condition includes 0.
|
|
719 */
|
418
|
720 (void)mblen(NULL, 0); /* First reset the state. */
|
7
|
721 if (mblen(buf, (size_t)1) <= 0)
|
|
722 n = 2;
|
|
723 else
|
|
724 n = 1;
|
|
725 }
|
|
726 }
|
|
727 # endif
|
|
728 #endif
|
|
729 }
|
|
730
|
|
731 mb_bytelen_tab[i] = n;
|
|
732 }
|
|
733
|
|
734 #ifdef LEN_FROM_CONV
|
|
735 convert_setup(&vimconv, NULL, NULL);
|
|
736 #endif
|
|
737
|
|
738 /* The cell width depends on the type of multi-byte characters. */
|
|
739 (void)init_chartab();
|
|
740
|
|
741 /* When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[] */
|
|
742 screenalloc(FALSE);
|
|
743
|
|
744 /* When using Unicode, set default for 'fileencodings'. */
|
|
745 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
|
|
746 set_string_option_direct((char_u *)"fencs", -1,
|
694
|
747 (char_u *)"ucs-bom,utf-8,default,latin1", OPT_FREE, 0);
|
|
748
|
7
|
749 #if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
|
|
750 /* GNU gettext 0.10.37 supports this feature: set the codeset used for
|
|
751 * translated messages independently from the current locale. */
|
|
752 (void)bind_textdomain_codeset(VIMPACKAGE,
|
|
753 enc_utf8 ? "utf-8" : (char *)p_enc);
|
|
754 #endif
|
|
755
|
23
|
756 #ifdef WIN32
|
|
757 /* When changing 'encoding' while starting up, then convert the command
|
|
758 * line arguments from the active codepage to 'encoding'. */
|
|
759 if (starting != 0)
|
|
760 fix_arg_enc();
|
|
761 #endif
|
|
762
|
7
|
763 #ifdef FEAT_AUTOCMD
|
|
764 /* Fire an autocommand to let people do custom font setup. This must be
|
|
765 * after Vim has been setup for the new encoding. */
|
|
766 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
|
|
767 #endif
|
|
768
|
740
|
769 #ifdef FEAT_SPELL
|
236
|
770 /* Need to reload spell dictionaries */
|
|
771 spell_reload();
|
|
772 #endif
|
|
773
|
7
|
774 return NULL;
|
|
775 }
|
|
776
|
|
777 /*
|
|
778 * Return the size of the BOM for the current buffer:
|
|
779 * 0 - no BOM
|
|
780 * 2 - UCS-2 or UTF-16 BOM
|
|
781 * 4 - UCS-4 BOM
|
|
782 * 3 - UTF-8 BOM
|
|
783 */
|
|
784 int
|
|
785 bomb_size()
|
|
786 {
|
|
787 int n = 0;
|
|
788
|
|
789 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
|
|
790 {
|
|
791 if (*curbuf->b_p_fenc == NUL)
|
|
792 {
|
|
793 if (enc_utf8)
|
|
794 {
|
|
795 if (enc_unicode != 0)
|
|
796 n = enc_unicode;
|
|
797 else
|
|
798 n = 3;
|
|
799 }
|
|
800 }
|
|
801 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
|
|
802 n = 3;
|
|
803 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
|
|
804 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
|
|
805 n = 2;
|
|
806 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
|
|
807 n = 4;
|
|
808 }
|
|
809 return n;
|
|
810 }
|
|
811
|
|
812 /*
|
|
813 * Get class of pointer:
|
|
814 * 0 for blank or NUL
|
|
815 * 1 for punctuation
|
|
816 * 2 for an (ASCII) word character
|
|
817 * >2 for other word characters
|
|
818 */
|
|
819 int
|
|
820 mb_get_class(p)
|
|
821 char_u *p;
|
|
822 {
|
|
823 if (MB_BYTE2LEN(p[0]) == 1)
|
|
824 {
|
|
825 if (p[0] == NUL || vim_iswhite(p[0]))
|
|
826 return 0;
|
|
827 if (vim_iswordc(p[0]))
|
|
828 return 2;
|
|
829 return 1;
|
|
830 }
|
|
831 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
|
|
832 return dbcs_class(p[0], p[1]);
|
|
833 if (enc_utf8)
|
|
834 return utf_class(utf_ptr2char(p));
|
|
835 return 0;
|
|
836 }
|
|
837
|
|
838 /*
|
|
839 * Get class of a double-byte character. This always returns 3 or bigger.
|
|
840 * TODO: Should return 1 for punctuation.
|
|
841 */
|
|
842 int
|
|
843 dbcs_class(lead, trail)
|
|
844 unsigned lead;
|
|
845 unsigned trail;
|
|
846 {
|
|
847 switch (enc_dbcs)
|
|
848 {
|
|
849 /* please add classfy routine for your language in here */
|
|
850
|
|
851 case DBCS_JPNU: /* ? */
|
|
852 case DBCS_JPN:
|
|
853 {
|
|
854 /* JIS code classification */
|
|
855 unsigned char lb = lead;
|
|
856 unsigned char tb = trail;
|
|
857
|
|
858 /* convert process code to JIS */
|
|
859 # if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
|
|
860 /* process code is SJIS */
|
|
861 if (lb <= 0x9f)
|
|
862 lb = (lb - 0x81) * 2 + 0x21;
|
|
863 else
|
|
864 lb = (lb - 0xc1) * 2 + 0x21;
|
|
865 if (tb <= 0x7e)
|
|
866 tb -= 0x1f;
|
|
867 else if (tb <= 0x9e)
|
|
868 tb -= 0x20;
|
|
869 else
|
|
870 {
|
|
871 tb -= 0x7e;
|
|
872 lb += 1;
|
|
873 }
|
|
874 # else
|
|
875 /*
|
|
876 * XXX: Code page identification can not use with all
|
|
877 * system! So, some other encoding information
|
|
878 * will be needed.
|
|
879 * In japanese: SJIS,EUC,UNICODE,(JIS)
|
|
880 * Note that JIS-code system don't use as
|
|
881 * process code in most system because it uses
|
|
882 * escape sequences(JIS is context depend encoding).
|
|
883 */
|
|
884 /* assume process code is JAPANESE-EUC */
|
|
885 lb &= 0x7f;
|
|
886 tb &= 0x7f;
|
|
887 # endif
|
|
888 /* exceptions */
|
|
889 switch (lb << 8 | tb)
|
|
890 {
|
|
891 case 0x2121: /* ZENKAKU space */
|
|
892 return 0;
|
|
893 case 0x2122: /* KU-TEN (Japanese comma) */
|
|
894 case 0x2123: /* TOU-TEN (Japanese period) */
|
|
895 case 0x2124: /* ZENKAKU comma */
|
|
896 case 0x2125: /* ZENKAKU period */
|
|
897 return 1;
|
|
898 case 0x213c: /* prolongedsound handled as KATAKANA */
|
|
899 return 13;
|
|
900 }
|
|
901 /* sieved by KU code */
|
|
902 switch (lb)
|
|
903 {
|
|
904 case 0x21:
|
|
905 case 0x22:
|
|
906 /* special symbols */
|
|
907 return 10;
|
|
908 case 0x23:
|
|
909 /* alpha-numeric */
|
|
910 return 11;
|
|
911 case 0x24:
|
|
912 /* hiragana */
|
|
913 return 12;
|
|
914 case 0x25:
|
|
915 /* katakana */
|
|
916 return 13;
|
|
917 case 0x26:
|
|
918 /* greek */
|
|
919 return 14;
|
|
920 case 0x27:
|
|
921 /* russian */
|
|
922 return 15;
|
|
923 case 0x28:
|
|
924 /* lines */
|
|
925 return 16;
|
|
926 default:
|
|
927 /* kanji */
|
|
928 return 17;
|
|
929 }
|
|
930 }
|
|
931
|
|
932 case DBCS_KORU: /* ? */
|
|
933 case DBCS_KOR:
|
|
934 {
|
|
935 /* KS code classification */
|
|
936 unsigned char c1 = lead;
|
|
937 unsigned char c2 = trail;
|
|
938
|
|
939 /*
|
|
940 * 20 : Hangul
|
|
941 * 21 : Hanja
|
|
942 * 22 : Symbols
|
|
943 * 23 : Alpha-numeric/Roman Letter (Full width)
|
|
944 * 24 : Hangul Letter(Alphabet)
|
|
945 * 25 : Roman Numeral/Greek Letter
|
|
946 * 26 : Box Drawings
|
|
947 * 27 : Unit Symbols
|
|
948 * 28 : Circled/Parenthesized Letter
|
|
949 * 29 : Hirigana/Katakana
|
|
950 * 30 : Cyrillic Letter
|
|
951 */
|
|
952
|
|
953 if (c1 >= 0xB0 && c1 <= 0xC8)
|
|
954 /* Hangul */
|
|
955 return 20;
|
|
956 #if defined(WIN3264) || defined(WIN32UNIX)
|
|
957 else if (c1 <= 0xA0 || c2 <= 0xA0)
|
|
958 /* Extended Hangul Region : MS UHC(Unified Hangul Code) */
|
|
959 /* c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
|
|
960 * c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
|
|
961 */
|
|
962 return 20;
|
|
963 #endif
|
|
964
|
|
965 else if (c1 >= 0xCA && c1 <= 0xFD)
|
|
966 /* Hanja */
|
|
967 return 21;
|
|
968 else switch (c1)
|
|
969 {
|
|
970 case 0xA1:
|
|
971 case 0xA2:
|
|
972 /* Symbols */
|
|
973 return 22;
|
|
974 case 0xA3:
|
|
975 /* Alpha-numeric */
|
|
976 return 23;
|
|
977 case 0xA4:
|
|
978 /* Hangul Letter(Alphabet) */
|
|
979 return 24;
|
|
980 case 0xA5:
|
|
981 /* Roman Numeral/Greek Letter */
|
|
982 return 25;
|
|
983 case 0xA6:
|
|
984 /* Box Drawings */
|
|
985 return 26;
|
|
986 case 0xA7:
|
|
987 /* Unit Symbols */
|
|
988 return 27;
|
|
989 case 0xA8:
|
|
990 case 0xA9:
|
|
991 if (c2 <= 0xAF)
|
|
992 return 25; /* Roman Letter */
|
|
993 else if (c2 >= 0xF6)
|
|
994 return 22; /* Symbols */
|
|
995 else
|
|
996 /* Circled/Parenthesized Letter */
|
|
997 return 28;
|
|
998 case 0xAA:
|
|
999 case 0xAB:
|
|
1000 /* Hirigana/Katakana */
|
|
1001 return 29;
|
|
1002 case 0xAC:
|
|
1003 /* Cyrillic Letter */
|
|
1004 return 30;
|
|
1005 }
|
|
1006 }
|
|
1007 default:
|
|
1008 break;
|
|
1009 }
|
|
1010 return 3;
|
|
1011 }
|
|
1012
|
|
1013 /*
|
|
1014 * mb_char2len() function pointer.
|
|
1015 * Return length in bytes of character "c".
|
|
1016 * Returns 1 for a single-byte character.
|
|
1017 */
|
|
1018 /* ARGSUSED */
|
|
1019 int
|
|
1020 latin_char2len(c)
|
|
1021 int c;
|
|
1022 {
|
|
1023 return 1;
|
|
1024 }
|
|
1025
|
|
1026 static int
|
|
1027 dbcs_char2len(c)
|
|
1028 int c;
|
|
1029 {
|
|
1030 if (c >= 0x100)
|
|
1031 return 2;
|
|
1032 return 1;
|
|
1033 }
|
|
1034
|
|
1035 /*
|
|
1036 * mb_char2bytes() function pointer.
|
|
1037 * Convert a character to its bytes.
|
|
1038 * Returns the length in bytes.
|
|
1039 */
|
|
1040 int
|
|
1041 latin_char2bytes(c, buf)
|
|
1042 int c;
|
|
1043 char_u *buf;
|
|
1044 {
|
|
1045 buf[0] = c;
|
|
1046 return 1;
|
|
1047 }
|
|
1048
|
|
1049 static int
|
|
1050 dbcs_char2bytes(c, buf)
|
|
1051 int c;
|
|
1052 char_u *buf;
|
|
1053 {
|
|
1054 if (c >= 0x100)
|
|
1055 {
|
|
1056 buf[0] = (unsigned)c >> 8;
|
|
1057 buf[1] = c;
|
221
|
1058 /* Never use a NUL byte, it causes lots of trouble. It's an invalid
|
|
1059 * character anyway. */
|
|
1060 if (buf[1] == NUL)
|
|
1061 buf[1] = '\n';
|
7
|
1062 return 2;
|
|
1063 }
|
|
1064 buf[0] = c;
|
|
1065 return 1;
|
|
1066 }
|
|
1067
|
|
1068 /*
|
474
|
1069 * mb_ptr2len() function pointer.
|
7
|
1070 * Get byte length of character at "*p" but stop at a NUL.
|
|
1071 * For UTF-8 this includes following composing characters.
|
|
1072 * Returns 0 when *p is NUL.
|
|
1073 *
|
|
1074 */
|
|
1075 int
|
474
|
1076 latin_ptr2len(p)
|
7
|
1077 char_u *p;
|
|
1078 {
|
|
1079 return MB_BYTE2LEN(*p);
|
|
1080 }
|
|
1081
|
|
1082 static int
|
474
|
1083 dbcs_ptr2len(p)
|
7
|
1084 char_u *p;
|
|
1085 {
|
|
1086 int len;
|
|
1087
|
|
1088 /* Check if second byte is not missing. */
|
|
1089 len = MB_BYTE2LEN(*p);
|
|
1090 if (len == 2 && p[1] == NUL)
|
|
1091 len = 1;
|
|
1092 return len;
|
|
1093 }
|
|
1094
|
|
1095 struct interval
|
|
1096 {
|
|
1097 unsigned short first;
|
|
1098 unsigned short last;
|
|
1099 };
|
|
1100 static int intable __ARGS((struct interval *table, size_t size, int c));
|
|
1101
|
|
1102 /*
|
|
1103 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
|
|
1104 */
|
|
1105 static int
|
|
1106 intable(table, size, c)
|
|
1107 struct interval *table;
|
|
1108 size_t size;
|
|
1109 int c;
|
|
1110 {
|
|
1111 int mid, bot, top;
|
|
1112
|
|
1113 /* first quick check for Latin1 etc. characters */
|
|
1114 if (c < table[0].first)
|
|
1115 return FALSE;
|
|
1116
|
|
1117 /* binary search in table */
|
|
1118 bot = 0;
|
835
|
1119 top = (int)(size / sizeof(struct interval) - 1);
|
7
|
1120 while (top >= bot)
|
|
1121 {
|
|
1122 mid = (bot + top) / 2;
|
|
1123 if (table[mid].last < c)
|
|
1124 bot = mid + 1;
|
|
1125 else if (table[mid].first > c)
|
|
1126 top = mid - 1;
|
|
1127 else
|
|
1128 return TRUE;
|
|
1129 }
|
|
1130 return FALSE;
|
|
1131 }
|
|
1132
|
|
1133 /*
|
|
1134 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
|
|
1135 * Returns 4 or 6 for an unprintable character.
|
|
1136 * Is only correct for characters >= 0x80.
|
|
1137 * When p_ambw is "double", return 2 for a character with East Asian Width
|
|
1138 * class 'A'(mbiguous).
|
|
1139 */
|
|
1140 int
|
|
1141 utf_char2cells(c)
|
|
1142 int c;
|
|
1143 {
|
|
1144 /* sorted list of non-overlapping intervals of East Asian Ambiguous
|
|
1145 * characters, generated with:
|
|
1146 * "uniset +WIDTH-A -cat=Me -cat=Mn -cat=Cf c" */
|
|
1147 static struct interval ambiguous[] = {
|
|
1148 {0x00A1, 0x00A1}, {0x00A4, 0x00A4}, {0x00A7, 0x00A8},
|
|
1149 {0x00AA, 0x00AA}, {0x00AE, 0x00AE}, {0x00B0, 0x00B4},
|
|
1150 {0x00B6, 0x00BA}, {0x00BC, 0x00BF}, {0x00C6, 0x00C6},
|
|
1151 {0x00D0, 0x00D0}, {0x00D7, 0x00D8}, {0x00DE, 0x00E1},
|
|
1152 {0x00E6, 0x00E6}, {0x00E8, 0x00EA}, {0x00EC, 0x00ED},
|
|
1153 {0x00F0, 0x00F0}, {0x00F2, 0x00F3}, {0x00F7, 0x00FA},
|
|
1154 {0x00FC, 0x00FC}, {0x00FE, 0x00FE}, {0x0101, 0x0101},
|
|
1155 {0x0111, 0x0111}, {0x0113, 0x0113}, {0x011B, 0x011B},
|
|
1156 {0x0126, 0x0127}, {0x012B, 0x012B}, {0x0131, 0x0133},
|
|
1157 {0x0138, 0x0138}, {0x013F, 0x0142}, {0x0144, 0x0144},
|
|
1158 {0x0148, 0x014B}, {0x014D, 0x014D}, {0x0152, 0x0153},
|
|
1159 {0x0166, 0x0167}, {0x016B, 0x016B}, {0x01CE, 0x01CE},
|
|
1160 {0x01D0, 0x01D0}, {0x01D2, 0x01D2}, {0x01D4, 0x01D4},
|
|
1161 {0x01D6, 0x01D6}, {0x01D8, 0x01D8}, {0x01DA, 0x01DA},
|
|
1162 {0x01DC, 0x01DC}, {0x0251, 0x0251}, {0x0261, 0x0261},
|
|
1163 {0x02C4, 0x02C4}, {0x02C7, 0x02C7}, {0x02C9, 0x02CB},
|
|
1164 {0x02CD, 0x02CD}, {0x02D0, 0x02D0}, {0x02D8, 0x02DB},
|
|
1165 {0x02DD, 0x02DD}, {0x02DF, 0x02DF}, {0x0391, 0x03A1},
|
|
1166 {0x03A3, 0x03A9}, {0x03B1, 0x03C1}, {0x03C3, 0x03C9},
|
|
1167 {0x0401, 0x0401}, {0x0410, 0x044F}, {0x0451, 0x0451},
|
|
1168 {0x2010, 0x2010}, {0x2013, 0x2016}, {0x2018, 0x2019},
|
|
1169 {0x201C, 0x201D}, {0x2020, 0x2022}, {0x2024, 0x2027},
|
|
1170 {0x2030, 0x2030}, {0x2032, 0x2033}, {0x2035, 0x2035},
|
|
1171 {0x203B, 0x203B}, {0x203E, 0x203E}, {0x2074, 0x2074},
|
|
1172 {0x207F, 0x207F}, {0x2081, 0x2084}, {0x20AC, 0x20AC},
|
|
1173 {0x2103, 0x2103}, {0x2105, 0x2105}, {0x2109, 0x2109},
|
|
1174 {0x2113, 0x2113}, {0x2116, 0x2116}, {0x2121, 0x2122},
|
|
1175 {0x2126, 0x2126}, {0x212B, 0x212B}, {0x2153, 0x2154},
|
|
1176 {0x215B, 0x215E}, {0x2160, 0x216B}, {0x2170, 0x2179},
|
|
1177 {0x2190, 0x2199}, {0x21B8, 0x21B9}, {0x21D2, 0x21D2},
|
|
1178 {0x21D4, 0x21D4}, {0x21E7, 0x21E7}, {0x2200, 0x2200},
|
|
1179 {0x2202, 0x2203}, {0x2207, 0x2208}, {0x220B, 0x220B},
|
|
1180 {0x220F, 0x220F}, {0x2211, 0x2211}, {0x2215, 0x2215},
|
|
1181 {0x221A, 0x221A}, {0x221D, 0x2220}, {0x2223, 0x2223},
|
|
1182 {0x2225, 0x2225}, {0x2227, 0x222C}, {0x222E, 0x222E},
|
|
1183 {0x2234, 0x2237}, {0x223C, 0x223D}, {0x2248, 0x2248},
|
|
1184 {0x224C, 0x224C}, {0x2252, 0x2252}, {0x2260, 0x2261},
|
|
1185 {0x2264, 0x2267}, {0x226A, 0x226B}, {0x226E, 0x226F},
|
|
1186 {0x2282, 0x2283}, {0x2286, 0x2287}, {0x2295, 0x2295},
|
|
1187 {0x2299, 0x2299}, {0x22A5, 0x22A5}, {0x22BF, 0x22BF},
|
|
1188 {0x2312, 0x2312}, {0x2460, 0x24E9}, {0x24EB, 0x254B},
|
|
1189 {0x2550, 0x2573}, {0x2580, 0x258F}, {0x2592, 0x2595},
|
|
1190 {0x25A0, 0x25A1}, {0x25A3, 0x25A9}, {0x25B2, 0x25B3},
|
|
1191 {0x25B6, 0x25B7}, {0x25BC, 0x25BD}, {0x25C0, 0x25C1},
|
|
1192 {0x25C6, 0x25C8}, {0x25CB, 0x25CB}, {0x25CE, 0x25D1},
|
|
1193 {0x25E2, 0x25E5}, {0x25EF, 0x25EF}, {0x2605, 0x2606},
|
|
1194 {0x2609, 0x2609}, {0x260E, 0x260F}, {0x2614, 0x2615},
|
|
1195 {0x261C, 0x261C}, {0x261E, 0x261E}, {0x2640, 0x2640},
|
|
1196 {0x2642, 0x2642}, {0x2660, 0x2661}, {0x2663, 0x2665},
|
|
1197 {0x2667, 0x266A}, {0x266C, 0x266D}, {0x266F, 0x266F},
|
|
1198 {0x273D, 0x273D}, {0x2776, 0x277F}, {0xE000, 0xF8FF},
|
|
1199 {0xFFFD, 0xFFFD}, /* {0xF0000, 0xFFFFD}, {0x100000, 0x10FFFD} */
|
|
1200 };
|
|
1201
|
|
1202 if (c >= 0x100)
|
|
1203 {
|
|
1204 #ifdef USE_WCHAR_FUNCTIONS
|
|
1205 /*
|
|
1206 * Assume the library function wcwidth() works better than our own
|
|
1207 * stuff. It should return 1 for ambiguous width chars!
|
|
1208 */
|
|
1209 int n = wcwidth(c);
|
|
1210
|
|
1211 if (n < 0)
|
|
1212 return 6; /* unprintable, displays <xxxx> */
|
|
1213 if (n > 1)
|
|
1214 return n;
|
|
1215 #else
|
|
1216 if (!utf_printable(c))
|
|
1217 return 6; /* unprintable, displays <xxxx> */
|
|
1218 if (c >= 0x1100
|
|
1219 && (c <= 0x115f /* Hangul Jamo */
|
|
1220 || c == 0x2329
|
|
1221 || c == 0x232a
|
|
1222 || (c >= 0x2e80 && c <= 0xa4cf
|
|
1223 && c != 0x303f) /* CJK ... Yi */
|
|
1224 || (c >= 0xac00 && c <= 0xd7a3) /* Hangul Syllables */
|
|
1225 || (c >= 0xf900 && c <= 0xfaff) /* CJK Compatibility
|
|
1226 Ideographs */
|
|
1227 || (c >= 0xfe30 && c <= 0xfe6f) /* CJK Compatibility Forms */
|
|
1228 || (c >= 0xff00 && c <= 0xff60) /* Fullwidth Forms */
|
|
1229 || (c >= 0xffe0 && c <= 0xffe6)
|
|
1230 || (c >= 0x20000 && c <= 0x2fffd)
|
|
1231 || (c >= 0x30000 && c <= 0x3fffd)))
|
|
1232 return 2;
|
|
1233 #endif
|
|
1234 }
|
|
1235
|
|
1236 /* Characters below 0x100 are influenced by 'isprint' option */
|
|
1237 else if (c >= 0x80 && !vim_isprintc(c))
|
|
1238 return 4; /* unprintable, displays <xx> */
|
|
1239
|
|
1240 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
|
|
1241 return 2;
|
|
1242
|
|
1243 return 1;
|
|
1244 }
|
|
1245
|
|
1246 /*
|
|
1247 * mb_ptr2cells() function pointer.
|
|
1248 * Return the number of display cells character at "*p" occupies.
|
|
1249 * This doesn't take care of unprintable characters, use ptr2cells() for that.
|
|
1250 */
|
|
1251 /*ARGSUSED*/
|
|
1252 int
|
|
1253 latin_ptr2cells(p)
|
|
1254 char_u *p;
|
|
1255 {
|
|
1256 return 1;
|
|
1257 }
|
|
1258
|
|
1259 int
|
|
1260 utf_ptr2cells(p)
|
|
1261 char_u *p;
|
|
1262 {
|
|
1263 int c;
|
|
1264
|
|
1265 /* Need to convert to a wide character. */
|
|
1266 if (*p >= 0x80)
|
|
1267 {
|
|
1268 c = utf_ptr2char(p);
|
|
1269 /* An illegal byte is displayed as <xx>. */
|
474
|
1270 if (utf_ptr2len(p) == 1 || c == NUL)
|
7
|
1271 return 4;
|
|
1272 /* If the char is ASCII it must be an overlong sequence. */
|
|
1273 if (c < 0x80)
|
|
1274 return char2cells(c);
|
|
1275 return utf_char2cells(c);
|
|
1276 }
|
|
1277 return 1;
|
|
1278 }
|
|
1279
|
|
1280 int
|
|
1281 dbcs_ptr2cells(p)
|
|
1282 char_u *p;
|
|
1283 {
|
|
1284 /* Number of cells is equal to number of bytes, except for euc-jp when
|
|
1285 * the first byte is 0x8e. */
|
|
1286 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
|
|
1287 return 1;
|
|
1288 return MB_BYTE2LEN(*p);
|
|
1289 }
|
|
1290
|
|
1291 /*
|
|
1292 * mb_char2cells() function pointer.
|
|
1293 * Return the number of display cells character "c" occupies.
|
|
1294 * Only takes care of multi-byte chars, not "^C" and such.
|
|
1295 */
|
|
1296 /*ARGSUSED*/
|
|
1297 int
|
|
1298 latin_char2cells(c)
|
|
1299 int c;
|
|
1300 {
|
|
1301 return 1;
|
|
1302 }
|
|
1303
|
|
1304 static int
|
|
1305 dbcs_char2cells(c)
|
|
1306 int c;
|
|
1307 {
|
|
1308 /* Number of cells is equal to number of bytes, except for euc-jp when
|
|
1309 * the first byte is 0x8e. */
|
|
1310 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
|
|
1311 return 1;
|
|
1312 /* use the first byte */
|
|
1313 return MB_BYTE2LEN((unsigned)c >> 8);
|
|
1314 }
|
|
1315
|
|
1316 /*
|
|
1317 * mb_off2cells() function pointer.
|
|
1318 * Return number of display cells for char at ScreenLines[off].
|
1378
|
1319 * We make sure that the offset used is less than "max_off".
|
7
|
1320 */
|
|
1321 /*ARGSUSED*/
|
|
1322 int
|
1378
|
1323 latin_off2cells(off, max_off)
|
7
|
1324 unsigned off;
|
1378
|
1325 unsigned max_off;
|
7
|
1326 {
|
|
1327 return 1;
|
|
1328 }
|
|
1329
|
|
1330 int
|
1378
|
1331 dbcs_off2cells(off, max_off)
|
7
|
1332 unsigned off;
|
1378
|
1333 unsigned max_off;
|
7
|
1334 {
|
1378
|
1335 /* never check beyond end of the line */
|
|
1336 if (off >= max_off)
|
|
1337 return 1;
|
|
1338
|
7
|
1339 /* Number of cells is equal to number of bytes, except for euc-jp when
|
|
1340 * the first byte is 0x8e. */
|
|
1341 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
|
|
1342 return 1;
|
|
1343 return MB_BYTE2LEN(ScreenLines[off]);
|
|
1344 }
|
|
1345
|
|
1346 int
|
1378
|
1347 utf_off2cells(off, max_off)
|
7
|
1348 unsigned off;
|
1378
|
1349 unsigned max_off;
|
7
|
1350 {
|
1378
|
1351 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1;
|
7
|
1352 }
|
|
1353
|
|
1354 /*
|
|
1355 * mb_ptr2char() function pointer.
|
|
1356 * Convert a byte sequence into a character.
|
|
1357 */
|
|
1358 int
|
|
1359 latin_ptr2char(p)
|
|
1360 char_u *p;
|
|
1361 {
|
|
1362 return *p;
|
|
1363 }
|
|
1364
|
|
1365 static int
|
|
1366 dbcs_ptr2char(p)
|
|
1367 char_u *p;
|
|
1368 {
|
|
1369 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
|
|
1370 return (p[0] << 8) + p[1];
|
|
1371 return *p;
|
|
1372 }
|
|
1373
|
|
1374 /*
|
|
1375 * Convert a UTF-8 byte sequence to a wide character.
|
|
1376 * If the sequence is illegal or truncated by a NUL the first byte is
|
|
1377 * returned.
|
|
1378 * Does not include composing characters, of course.
|
|
1379 */
|
|
1380 int
|
|
1381 utf_ptr2char(p)
|
|
1382 char_u *p;
|
|
1383 {
|
|
1384 int len;
|
|
1385
|
|
1386 if (p[0] < 0x80) /* be quick for ASCII */
|
|
1387 return p[0];
|
|
1388
|
|
1389 len = utf8len_tab[p[0]];
|
|
1390 if ((p[1] & 0xc0) == 0x80)
|
|
1391 {
|
|
1392 if (len == 2)
|
|
1393 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
|
|
1394 if ((p[2] & 0xc0) == 0x80)
|
|
1395 {
|
|
1396 if (len == 3)
|
|
1397 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
|
|
1398 + (p[2] & 0x3f);
|
|
1399 if ((p[3] & 0xc0) == 0x80)
|
|
1400 {
|
|
1401 if (len == 4)
|
|
1402 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
|
|
1403 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
|
|
1404 if ((p[4] & 0xc0) == 0x80)
|
|
1405 {
|
|
1406 if (len == 5)
|
|
1407 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
|
|
1408 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
|
|
1409 + (p[4] & 0x3f);
|
|
1410 if ((p[5] & 0xc0) == 0x80 && len == 6)
|
|
1411 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
|
|
1412 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
|
|
1413 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
|
|
1414 }
|
|
1415 }
|
|
1416 }
|
|
1417 }
|
|
1418 /* Illegal value, just return the first byte */
|
|
1419 return p[0];
|
|
1420 }
|
|
1421
|
|
1422 /*
|
|
1423 * Get character at **pp and advance *pp to the next character.
|
|
1424 * Note: composing characters are skipped!
|
|
1425 */
|
|
1426 int
|
|
1427 mb_ptr2char_adv(pp)
|
|
1428 char_u **pp;
|
|
1429 {
|
|
1430 int c;
|
|
1431
|
|
1432 c = (*mb_ptr2char)(*pp);
|
474
|
1433 *pp += (*mb_ptr2len)(*pp);
|
|
1434 return c;
|
|
1435 }
|
|
1436
|
|
1437 /*
|
|
1438 * Get character at **pp and advance *pp to the next character.
|
|
1439 * Note: composing characters are returned as separate characters.
|
|
1440 */
|
|
1441 int
|
|
1442 mb_cptr2char_adv(pp)
|
|
1443 char_u **pp;
|
|
1444 {
|
|
1445 int c;
|
|
1446
|
|
1447 c = (*mb_ptr2char)(*pp);
|
|
1448 if (enc_utf8)
|
|
1449 *pp += utf_ptr2len(*pp);
|
|
1450 else
|
|
1451 *pp += (*mb_ptr2len)(*pp);
|
7
|
1452 return c;
|
|
1453 }
|
|
1454
|
|
1455 #if defined(FEAT_ARABIC) || defined(PROTO)
|
|
1456 /*
|
|
1457 * Check whether we are dealing with Arabic combining characters.
|
|
1458 * Note: these are NOT really composing characters!
|
|
1459 */
|
|
1460 int
|
|
1461 arabic_combine(one, two)
|
|
1462 int one; /* first character */
|
|
1463 int two; /* character just after "one" */
|
|
1464 {
|
|
1465 if (one == a_LAM)
|
|
1466 return arabic_maycombine(two);
|
|
1467 return FALSE;
|
|
1468 }
|
|
1469
|
|
1470 /*
|
|
1471 * Check whether we are dealing with a character that could be regarded as an
|
|
1472 * Arabic combining character, need to check the character before this.
|
|
1473 */
|
|
1474 int
|
|
1475 arabic_maycombine(two)
|
|
1476 int two;
|
|
1477 {
|
|
1478 if (p_arshape && !p_tbidi)
|
|
1479 return (two == a_ALEF_MADDA
|
|
1480 || two == a_ALEF_HAMZA_ABOVE
|
|
1481 || two == a_ALEF_HAMZA_BELOW
|
|
1482 || two == a_ALEF);
|
|
1483 return FALSE;
|
|
1484 }
|
|
1485
|
|
1486 /*
|
|
1487 * Check if the character pointed to by "p2" is a composing character when it
|
|
1488 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
|
|
1489 * behaves like a composing character.
|
|
1490 */
|
|
1491 int
|
|
1492 utf_composinglike(p1, p2)
|
|
1493 char_u *p1;
|
|
1494 char_u *p2;
|
|
1495 {
|
|
1496 int c2;
|
|
1497
|
|
1498 c2 = utf_ptr2char(p2);
|
|
1499 if (utf_iscomposing(c2))
|
|
1500 return TRUE;
|
|
1501 if (!arabic_maycombine(c2))
|
|
1502 return FALSE;
|
|
1503 return arabic_combine(utf_ptr2char(p1), c2);
|
|
1504 }
|
|
1505 #endif
|
|
1506
|
|
1507 /*
|
1205
|
1508 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
|
7
|
1509 * composing characters.
|
|
1510 */
|
|
1511 int
|
714
|
1512 utfc_ptr2char(p, pcc)
|
7
|
1513 char_u *p;
|
714
|
1514 int *pcc; /* return: composing chars, last one is 0 */
|
7
|
1515 {
|
|
1516 int len;
|
|
1517 int c;
|
|
1518 int cc;
|
714
|
1519 int i = 0;
|
7
|
1520
|
|
1521 c = utf_ptr2char(p);
|
474
|
1522 len = utf_ptr2len(p);
|
714
|
1523
|
7
|
1524 /* Only accept a composing char when the first char isn't illegal. */
|
|
1525 if ((len > 1 || *p < 0x80)
|
|
1526 && p[len] >= 0x80
|
|
1527 && UTF_COMPOSINGLIKE(p, p + len))
|
|
1528 {
|
714
|
1529 cc = utf_ptr2char(p + len);
|
|
1530 for (;;)
|
|
1531 {
|
|
1532 pcc[i++] = cc;
|
|
1533 if (i == MAX_MCO)
|
|
1534 break;
|
|
1535 len += utf_ptr2len(p + len);
|
|
1536 if (p[len] < 0x80 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
|
|
1537 break;
|
|
1538 }
|
7
|
1539 }
|
714
|
1540
|
|
1541 if (i < MAX_MCO) /* last composing char must be 0 */
|
|
1542 pcc[i] = 0;
|
|
1543
|
7
|
1544 return c;
|
|
1545 }
|
|
1546
|
|
1547 /*
|
1205
|
1548 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
|
7
|
1549 * composing characters. Use no more than p[maxlen].
|
|
1550 */
|
|
1551 int
|
714
|
1552 utfc_ptr2char_len(p, pcc, maxlen)
|
7
|
1553 char_u *p;
|
714
|
1554 int *pcc; /* return: composing chars, last one is 0 */
|
7
|
1555 int maxlen;
|
|
1556 {
|
|
1557 int len;
|
|
1558 int c;
|
|
1559 int cc;
|
714
|
1560 int i = 0;
|
7
|
1561
|
|
1562 c = utf_ptr2char(p);
|
474
|
1563 len = utf_ptr2len_len(p, maxlen);
|
7
|
1564 /* Only accept a composing char when the first char isn't illegal. */
|
|
1565 if ((len > 1 || *p < 0x80)
|
|
1566 && len < maxlen
|
|
1567 && p[len] >= 0x80
|
|
1568 && UTF_COMPOSINGLIKE(p, p + len))
|
|
1569 {
|
714
|
1570 cc = utf_ptr2char(p + len);
|
|
1571 for (;;)
|
|
1572 {
|
|
1573 pcc[i++] = cc;
|
|
1574 if (i == MAX_MCO)
|
|
1575 break;
|
|
1576 len += utf_ptr2len_len(p + len, maxlen - len);
|
|
1577 if (len >= maxlen
|
|
1578 || p[len] < 0x80
|
|
1579 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
|
|
1580 break;
|
|
1581 }
|
7
|
1582 }
|
714
|
1583
|
|
1584 if (i < MAX_MCO) /* last composing char must be 0 */
|
|
1585 pcc[i] = 0;
|
|
1586
|
7
|
1587 return c;
|
|
1588 }
|
|
1589
|
|
1590 /*
|
|
1591 * Convert the character at screen position "off" to a sequence of bytes.
|
|
1592 * Includes the composing characters.
|
|
1593 * "buf" must at least have the length MB_MAXBYTES.
|
|
1594 * Returns the produced number of bytes.
|
|
1595 */
|
|
1596 int
|
|
1597 utfc_char2bytes(off, buf)
|
|
1598 int off;
|
|
1599 char_u *buf;
|
|
1600 {
|
|
1601 int len;
|
714
|
1602 int i;
|
7
|
1603
|
|
1604 len = utf_char2bytes(ScreenLinesUC[off], buf);
|
714
|
1605 for (i = 0; i < Screen_mco; ++i)
|
7
|
1606 {
|
714
|
1607 if (ScreenLinesC[i][off] == 0)
|
|
1608 break;
|
|
1609 len += utf_char2bytes(ScreenLinesC[i][off], buf + len);
|
7
|
1610 }
|
|
1611 return len;
|
|
1612 }
|
|
1613
|
|
1614 /*
|
|
1615 * Get the length of a UTF-8 byte sequence, not including any following
|
|
1616 * composing characters.
|
|
1617 * Returns 0 for "".
|
|
1618 * Returns 1 for an illegal byte sequence.
|
|
1619 */
|
|
1620 int
|
474
|
1621 utf_ptr2len(p)
|
7
|
1622 char_u *p;
|
|
1623 {
|
|
1624 int len;
|
|
1625 int i;
|
|
1626
|
|
1627 if (*p == NUL)
|
|
1628 return 0;
|
|
1629 len = utf8len_tab[*p];
|
|
1630 for (i = 1; i < len; ++i)
|
|
1631 if ((p[i] & 0xc0) != 0x80)
|
|
1632 return 1;
|
|
1633 return len;
|
|
1634 }
|
|
1635
|
|
1636 /*
|
|
1637 * Return length of UTF-8 character, obtained from the first byte.
|
|
1638 * "b" must be between 0 and 255!
|
|
1639 */
|
|
1640 int
|
|
1641 utf_byte2len(b)
|
|
1642 int b;
|
|
1643 {
|
|
1644 return utf8len_tab[b];
|
|
1645 }
|
|
1646
|
|
1647 /*
|
|
1648 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
|
|
1649 * following composing characters.
|
|
1650 * Returns 1 for "".
|
1487
|
1651 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
|
7
|
1652 * Returns number > "size" for an incomplete byte sequence.
|
|
1653 */
|
|
1654 int
|
474
|
1655 utf_ptr2len_len(p, size)
|
7
|
1656 char_u *p;
|
|
1657 int size;
|
|
1658 {
|
|
1659 int len;
|
|
1660 int i;
|
1487
|
1661 int m;
|
7
|
1662
|
|
1663 if (*p == NUL)
|
|
1664 return 1;
|
1487
|
1665 m = len = utf8len_tab[*p];
|
7
|
1666 if (len > size)
|
1487
|
1667 m = size; /* incomplete byte sequence. */
|
|
1668 for (i = 1; i < m; ++i)
|
7
|
1669 if ((p[i] & 0xc0) != 0x80)
|
|
1670 return 1;
|
|
1671 return len;
|
|
1672 }
|
|
1673
|
|
1674 /*
|
|
1675 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
|
|
1676 * This includes following composing characters.
|
|
1677 */
|
|
1678 int
|
474
|
1679 utfc_ptr2len(p)
|
7
|
1680 char_u *p;
|
|
1681 {
|
|
1682 int len;
|
318
|
1683 int b0 = *p;
|
7
|
1684 #ifdef FEAT_ARABIC
|
|
1685 int prevlen;
|
|
1686 #endif
|
|
1687
|
318
|
1688 if (b0 == NUL)
|
7
|
1689 return 0;
|
318
|
1690 if (b0 < 0x80 && p[1] < 0x80) /* be quick for ASCII */
|
7
|
1691 return 1;
|
|
1692
|
|
1693 /* Skip over first UTF-8 char, stopping at a NUL byte. */
|
474
|
1694 len = utf_ptr2len(p);
|
7
|
1695
|
|
1696 /* Check for illegal byte. */
|
318
|
1697 if (len == 1 && b0 >= 0x80)
|
7
|
1698 return 1;
|
|
1699
|
|
1700 /*
|
|
1701 * Check for composing characters. We can handle only the first two, but
|
|
1702 * skip all of them (otherwise the cursor would get stuck).
|
|
1703 */
|
|
1704 #ifdef FEAT_ARABIC
|
|
1705 prevlen = 0;
|
|
1706 #endif
|
|
1707 for (;;)
|
|
1708 {
|
|
1709 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
|
|
1710 return len;
|
|
1711
|
|
1712 /* Skip over composing char */
|
|
1713 #ifdef FEAT_ARABIC
|
|
1714 prevlen = len;
|
|
1715 #endif
|
474
|
1716 len += utf_ptr2len(p + len);
|
7
|
1717 }
|
|
1718 }
|
|
1719
|
|
1720 /*
|
|
1721 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
|
|
1722 * takes. This includes following composing characters.
|
|
1723 * Returns 1 for an illegal char or an incomplete byte sequence.
|
|
1724 */
|
|
1725 int
|
474
|
1726 utfc_ptr2len_len(p, size)
|
7
|
1727 char_u *p;
|
|
1728 int size;
|
|
1729 {
|
|
1730 int len;
|
|
1731 #ifdef FEAT_ARABIC
|
|
1732 int prevlen;
|
|
1733 #endif
|
|
1734
|
|
1735 if (*p == NUL)
|
|
1736 return 0;
|
|
1737 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) /* be quick for ASCII */
|
|
1738 return 1;
|
|
1739
|
|
1740 /* Skip over first UTF-8 char, stopping at a NUL byte. */
|
474
|
1741 len = utf_ptr2len_len(p, size);
|
7
|
1742
|
|
1743 /* Check for illegal byte and incomplete byte sequence. */
|
|
1744 if ((len == 1 && p[0] >= 0x80) || len > size)
|
|
1745 return 1;
|
|
1746
|
|
1747 /*
|
|
1748 * Check for composing characters. We can handle only the first two, but
|
|
1749 * skip all of them (otherwise the cursor would get stuck).
|
|
1750 */
|
|
1751 #ifdef FEAT_ARABIC
|
|
1752 prevlen = 0;
|
|
1753 #endif
|
|
1754 while (len < size)
|
|
1755 {
|
|
1756 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
|
|
1757 break;
|
|
1758
|
|
1759 /* Skip over composing char */
|
|
1760 #ifdef FEAT_ARABIC
|
|
1761 prevlen = len;
|
|
1762 #endif
|
474
|
1763 len += utf_ptr2len_len(p + len, size - len);
|
7
|
1764 }
|
|
1765 return len;
|
|
1766 }
|
|
1767
|
|
1768 /*
|
|
1769 * Return the number of bytes the UTF-8 encoding of character "c" takes.
|
|
1770 * This does not include composing characters.
|
|
1771 */
|
|
1772 int
|
|
1773 utf_char2len(c)
|
|
1774 int c;
|
|
1775 {
|
|
1776 if (c < 0x80)
|
|
1777 return 1;
|
|
1778 if (c < 0x800)
|
|
1779 return 2;
|
|
1780 if (c < 0x10000)
|
|
1781 return 3;
|
|
1782 if (c < 0x200000)
|
|
1783 return 4;
|
|
1784 if (c < 0x4000000)
|
|
1785 return 5;
|
|
1786 return 6;
|
|
1787 }
|
|
1788
|
|
1789 /*
|
|
1790 * Convert Unicode character "c" to UTF-8 string in "buf[]".
|
|
1791 * Returns the number of bytes.
|
|
1792 * This does not include composing characters.
|
|
1793 */
|
|
1794 int
|
|
1795 utf_char2bytes(c, buf)
|
|
1796 int c;
|
|
1797 char_u *buf;
|
|
1798 {
|
|
1799 if (c < 0x80) /* 7 bits */
|
|
1800 {
|
|
1801 buf[0] = c;
|
|
1802 return 1;
|
|
1803 }
|
|
1804 if (c < 0x800) /* 11 bits */
|
|
1805 {
|
|
1806 buf[0] = 0xc0 + ((unsigned)c >> 6);
|
|
1807 buf[1] = 0x80 + (c & 0x3f);
|
|
1808 return 2;
|
|
1809 }
|
|
1810 if (c < 0x10000) /* 16 bits */
|
|
1811 {
|
|
1812 buf[0] = 0xe0 + ((unsigned)c >> 12);
|
|
1813 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
|
|
1814 buf[2] = 0x80 + (c & 0x3f);
|
|
1815 return 3;
|
|
1816 }
|
|
1817 if (c < 0x200000) /* 21 bits */
|
|
1818 {
|
|
1819 buf[0] = 0xf0 + ((unsigned)c >> 18);
|
|
1820 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
|
|
1821 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
|
|
1822 buf[3] = 0x80 + (c & 0x3f);
|
|
1823 return 4;
|
|
1824 }
|
|
1825 if (c < 0x4000000) /* 26 bits */
|
|
1826 {
|
|
1827 buf[0] = 0xf8 + ((unsigned)c >> 24);
|
|
1828 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
|
|
1829 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
|
|
1830 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
|
|
1831 buf[4] = 0x80 + (c & 0x3f);
|
|
1832 return 5;
|
|
1833 }
|
|
1834 /* 31 bits */
|
|
1835 buf[0] = 0xfc + ((unsigned)c >> 30);
|
|
1836 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
|
|
1837 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
|
|
1838 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
|
|
1839 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
|
|
1840 buf[5] = 0x80 + (c & 0x3f);
|
|
1841 return 6;
|
|
1842 }
|
|
1843
|
|
1844 /*
|
|
1845 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
|
|
1846 * drawn on top of the preceding character.
|
|
1847 * Based on code from Markus Kuhn.
|
|
1848 */
|
|
1849 int
|
|
1850 utf_iscomposing(c)
|
|
1851 int c;
|
|
1852 {
|
|
1853 /* sorted list of non-overlapping intervals */
|
|
1854 static struct interval combining[] =
|
|
1855 {
|
|
1856 {0x0300, 0x034f}, {0x0360, 0x036f}, {0x0483, 0x0486}, {0x0488, 0x0489},
|
|
1857 {0x0591, 0x05a1}, {0x05a3, 0x05b9}, {0x05bb, 0x05bd}, {0x05bf, 0x05bf},
|
|
1858 {0x05c1, 0x05c2}, {0x05c4, 0x05c4}, {0x0610, 0x0615}, {0x064b, 0x0658},
|
|
1859 {0x0670, 0x0670}, {0x06d6, 0x06dc}, {0x06de, 0x06e4}, {0x06e7, 0x06e8},
|
|
1860 {0x06ea, 0x06ed}, {0x0711, 0x0711}, {0x0730, 0x074a}, {0x07a6, 0x07b0},
|
|
1861 {0x0901, 0x0903}, {0x093c, 0x093c}, {0x093e, 0x094d}, {0x0951, 0x0954},
|
|
1862 {0x0962, 0x0963}, {0x0981, 0x0983}, {0x09bc, 0x09bc}, {0x09be, 0x09c4},
|
|
1863 {0x09c7, 0x09c8}, {0x09cb, 0x09cd}, {0x09d7, 0x09d7}, {0x09e2, 0x09e3},
|
|
1864 {0x0a01, 0x0a03}, {0x0a3c, 0x0a3c}, {0x0a3e, 0x0a42}, {0x0a47, 0x0a48},
|
|
1865 {0x0a4b, 0x0a4d}, {0x0a70, 0x0a71}, {0x0a81, 0x0a83}, {0x0abc, 0x0abc},
|
|
1866 {0x0abe, 0x0ac5}, {0x0ac7, 0x0ac9}, {0x0acb, 0x0acd}, {0x0ae2, 0x0ae3},
|
|
1867 {0x0b01, 0x0b03}, {0x0b3c, 0x0b3c}, {0x0b3e, 0x0b43}, {0x0b47, 0x0b48},
|
|
1868 {0x0b4b, 0x0b4d}, {0x0b56, 0x0b57}, {0x0b82, 0x0b82}, {0x0bbe, 0x0bc2},
|
|
1869 {0x0bc6, 0x0bc8}, {0x0bca, 0x0bcd}, {0x0bd7, 0x0bd7}, {0x0c01, 0x0c03},
|
|
1870 {0x0c3e, 0x0c44}, {0x0c46, 0x0c48}, {0x0c4a, 0x0c4d}, {0x0c55, 0x0c56},
|
|
1871 {0x0c82, 0x0c83}, {0x0cbc, 0x0cbc}, {0x0cbe, 0x0cc4}, {0x0cc6, 0x0cc8},
|
|
1872 {0x0cca, 0x0ccd}, {0x0cd5, 0x0cd6}, {0x0d02, 0x0d03}, {0x0d3e, 0x0d43},
|
|
1873 {0x0d46, 0x0d48}, {0x0d4a, 0x0d4d}, {0x0d57, 0x0d57}, {0x0d82, 0x0d83},
|
|
1874 {0x0dca, 0x0dca}, {0x0dcf, 0x0dd4}, {0x0dd6, 0x0dd6}, {0x0dd8, 0x0ddf},
|
|
1875 {0x0df2, 0x0df3}, {0x0e31, 0x0e31}, {0x0e34, 0x0e3a}, {0x0e47, 0x0e4e},
|
|
1876 {0x0eb1, 0x0eb1}, {0x0eb4, 0x0eb9}, {0x0ebb, 0x0ebc}, {0x0ec8, 0x0ecd},
|
|
1877 {0x0f18, 0x0f19}, {0x0f35, 0x0f35}, {0x0f37, 0x0f37}, {0x0f39, 0x0f39},
|
|
1878 {0x0f3e, 0x0f3f}, {0x0f71, 0x0f84}, {0x0f86, 0x0f87}, {0x0f90, 0x0f97},
|
|
1879 {0x0f99, 0x0fbc}, {0x0fc6, 0x0fc6}, {0x102c, 0x1032}, {0x1036, 0x1039},
|
|
1880 {0x1056, 0x1059}, {0x1712, 0x1714}, {0x1732, 0x1734}, {0x1752, 0x1753},
|
|
1881 {0x1772, 0x1773}, {0x17b6, 0x17d3}, {0x17dd, 0x17dd}, {0x180b, 0x180d},
|
|
1882 {0x18a9, 0x18a9}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x20d0, 0x20ea},
|
|
1883 {0x302a, 0x302f}, {0x3099, 0x309a}, {0xfb1e, 0xfb1e}, {0xfe00, 0xfe0f},
|
|
1884 {0xfe20, 0xfe23},
|
|
1885 };
|
|
1886
|
|
1887 return intable(combining, sizeof(combining), c);
|
|
1888 }
|
|
1889
|
|
1890 /*
|
|
1891 * Return TRUE for characters that can be displayed in a normal way.
|
|
1892 * Only for characters of 0x100 and above!
|
|
1893 */
|
|
1894 int
|
|
1895 utf_printable(c)
|
|
1896 int c;
|
|
1897 {
|
|
1898 #ifdef USE_WCHAR_FUNCTIONS
|
|
1899 /*
|
|
1900 * Assume the iswprint() library function works better than our own stuff.
|
|
1901 */
|
|
1902 return iswprint(c);
|
|
1903 #else
|
|
1904 /* Sorted list of non-overlapping intervals.
|
|
1905 * 0xd800-0xdfff is reserved for UTF-16, actually illegal. */
|
|
1906 static struct interval nonprint[] =
|
|
1907 {
|
|
1908 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
|
|
1909 {0x206a, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
|
|
1910 {0xfffe, 0xffff}
|
|
1911 };
|
|
1912
|
|
1913 return !intable(nonprint, sizeof(nonprint), c);
|
|
1914 #endif
|
|
1915 }
|
|
1916
|
|
1917 /*
|
|
1918 * Get class of a Unicode character.
|
|
1919 * 0: white space
|
|
1920 * 1: punctuation
|
|
1921 * 2 or bigger: some class of word character.
|
|
1922 */
|
|
1923 int
|
|
1924 utf_class(c)
|
|
1925 int c;
|
|
1926 {
|
|
1927 /* sorted list of non-overlapping intervals */
|
|
1928 static struct clinterval
|
|
1929 {
|
|
1930 unsigned short first;
|
|
1931 unsigned short last;
|
|
1932 unsigned short class;
|
|
1933 } classes[] =
|
|
1934 {
|
|
1935 {0x037e, 0x037e, 1}, /* Greek question mark */
|
|
1936 {0x0387, 0x0387, 1}, /* Greek ano teleia */
|
|
1937 {0x055a, 0x055f, 1}, /* Armenian punctuation */
|
|
1938 {0x0589, 0x0589, 1}, /* Armenian full stop */
|
|
1939 {0x05be, 0x05be, 1},
|
|
1940 {0x05c0, 0x05c0, 1},
|
|
1941 {0x05c3, 0x05c3, 1},
|
|
1942 {0x05f3, 0x05f4, 1},
|
|
1943 {0x060c, 0x060c, 1},
|
|
1944 {0x061b, 0x061b, 1},
|
|
1945 {0x061f, 0x061f, 1},
|
|
1946 {0x066a, 0x066d, 1},
|
|
1947 {0x06d4, 0x06d4, 1},
|
|
1948 {0x0700, 0x070d, 1}, /* Syriac punctuation */
|
|
1949 {0x0964, 0x0965, 1},
|
|
1950 {0x0970, 0x0970, 1},
|
|
1951 {0x0df4, 0x0df4, 1},
|
|
1952 {0x0e4f, 0x0e4f, 1},
|
|
1953 {0x0e5a, 0x0e5b, 1},
|
|
1954 {0x0f04, 0x0f12, 1},
|
|
1955 {0x0f3a, 0x0f3d, 1},
|
|
1956 {0x0f85, 0x0f85, 1},
|
|
1957 {0x104a, 0x104f, 1}, /* Myanmar punctuation */
|
|
1958 {0x10fb, 0x10fb, 1}, /* Georgian punctuation */
|
|
1959 {0x1361, 0x1368, 1}, /* Ethiopic punctuation */
|
|
1960 {0x166d, 0x166e, 1}, /* Canadian Syl. punctuation */
|
|
1961 {0x1680, 0x1680, 0},
|
|
1962 {0x169b, 0x169c, 1},
|
|
1963 {0x16eb, 0x16ed, 1},
|
|
1964 {0x1735, 0x1736, 1},
|
|
1965 {0x17d4, 0x17dc, 1}, /* Khmer punctuation */
|
|
1966 {0x1800, 0x180a, 1}, /* Mongolian punctuation */
|
|
1967 {0x2000, 0x200b, 0}, /* spaces */
|
|
1968 {0x200c, 0x2027, 1}, /* punctuation and symbols */
|
|
1969 {0x2028, 0x2029, 0},
|
|
1970 {0x202a, 0x202e, 1}, /* punctuation and symbols */
|
|
1971 {0x202f, 0x202f, 0},
|
|
1972 {0x2030, 0x205e, 1}, /* punctuation and symbols */
|
|
1973 {0x205f, 0x205f, 0},
|
|
1974 {0x2060, 0x27ff, 1}, /* punctuation and symbols */
|
|
1975 {0x2070, 0x207f, 0x2070}, /* superscript */
|
|
1976 {0x2080, 0x208f, 0x2080}, /* subscript */
|
|
1977 {0x2983, 0x2998, 1},
|
|
1978 {0x29d8, 0x29db, 1},
|
|
1979 {0x29fc, 0x29fd, 1},
|
|
1980 {0x3000, 0x3000, 0}, /* ideographic space */
|
|
1981 {0x3001, 0x3020, 1}, /* ideographic punctuation */
|
|
1982 {0x3030, 0x3030, 1},
|
|
1983 {0x303d, 0x303d, 1},
|
|
1984 {0x3040, 0x309f, 0x3040}, /* Hiragana */
|
|
1985 {0x30a0, 0x30ff, 0x30a0}, /* Katakana */
|
|
1986 {0x3300, 0x9fff, 0x4e00}, /* CJK Ideographs */
|
|
1987 {0xac00, 0xd7a3, 0xac00}, /* Hangul Syllables */
|
|
1988 {0xf900, 0xfaff, 0x4e00}, /* CJK Ideographs */
|
|
1989 {0xfd3e, 0xfd3f, 1},
|
|
1990 {0xfe30, 0xfe6b, 1}, /* punctuation forms */
|
|
1991 {0xff00, 0xff0f, 1}, /* half/fullwidth ASCII */
|
|
1992 {0xff1a, 0xff20, 1}, /* half/fullwidth ASCII */
|
|
1993 {0xff3b, 0xff40, 1}, /* half/fullwidth ASCII */
|
|
1994 {0xff5b, 0xff65, 1}, /* half/fullwidth ASCII */
|
|
1995 };
|
|
1996 int bot = 0;
|
|
1997 int top = sizeof(classes) / sizeof(struct clinterval) - 1;
|
|
1998 int mid;
|
|
1999
|
|
2000 /* First quick check for Latin1 characters, use 'iskeyword'. */
|
|
2001 if (c < 0x100)
|
|
2002 {
|
335
|
2003 if (c == ' ' || c == '\t' || c == NUL || c == 0xa0)
|
7
|
2004 return 0; /* blank */
|
|
2005 if (vim_iswordc(c))
|
|
2006 return 2; /* word character */
|
|
2007 return 1; /* punctuation */
|
|
2008 }
|
|
2009
|
|
2010 /* binary search in table */
|
|
2011 while (top >= bot)
|
|
2012 {
|
|
2013 mid = (bot + top) / 2;
|
|
2014 if (classes[mid].last < c)
|
|
2015 bot = mid + 1;
|
|
2016 else if (classes[mid].first > c)
|
|
2017 top = mid - 1;
|
|
2018 else
|
|
2019 return (int)classes[mid].class;
|
|
2020 }
|
|
2021
|
|
2022 /* most other characters are "word" characters */
|
|
2023 return 2;
|
|
2024 }
|
|
2025
|
|
2026 /*
|
|
2027 * Code for Unicode case-dependent operations. Based on notes in
|
|
2028 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
|
|
2029 * This code uses simple case folding, not full case folding.
|
|
2030 */
|
|
2031
|
|
2032 /*
|
|
2033 * The following table is built by foldExtract.pl < CaseFolding.txt .
|
|
2034 * It must be in numeric order, because we use binary search on it.
|
|
2035 * An entry such as {0x41,0x5a,1,32} means that UCS-4 characters in the range
|
|
2036 * from 0x41 to 0x5a inclusive, stepping by 1, are folded by adding 32.
|
|
2037 */
|
|
2038
|
|
2039 typedef struct
|
|
2040 {
|
|
2041 int rangeStart;
|
|
2042 int rangeEnd;
|
|
2043 int step;
|
|
2044 int offset;
|
|
2045 } convertStruct;
|
|
2046
|
297
|
2047 static convertStruct foldCase[] =
|
7
|
2048 {
|
|
2049 {0x41,0x5a,1,32}, {0xc0,0xd6,1,32}, {0xd8,0xde,1,32},
|
|
2050 {0x100,0x12e,2,1}, {0x130,0x130,-1,-199}, {0x132,0x136,2,1},
|
|
2051 {0x139,0x147,2,1}, {0x14a,0x176,2,1}, {0x178,0x178,-1,-121},
|
|
2052 {0x179,0x17d,2,1}, {0x181,0x181,-1,210}, {0x182,0x184,2,1},
|
|
2053 {0x186,0x186,-1,206}, {0x187,0x187,-1,1}, {0x189,0x18a,1,205},
|
|
2054 {0x18b,0x18b,-1,1}, {0x18e,0x18e,-1,79}, {0x18f,0x18f,-1,202},
|
|
2055 {0x190,0x190,-1,203}, {0x191,0x191,-1,1}, {0x193,0x193,-1,205},
|
|
2056 {0x194,0x194,-1,207}, {0x196,0x196,-1,211}, {0x197,0x197,-1,209},
|
|
2057 {0x198,0x198,-1,1}, {0x19c,0x19c,-1,211}, {0x19d,0x19d,-1,213},
|
|
2058 {0x19f,0x19f,-1,214}, {0x1a0,0x1a4,2,1}, {0x1a6,0x1a6,-1,218},
|
|
2059 {0x1a7,0x1a7,-1,1}, {0x1a9,0x1a9,-1,218}, {0x1ac,0x1ac,-1,1},
|
|
2060 {0x1ae,0x1ae,-1,218}, {0x1af,0x1af,-1,1}, {0x1b1,0x1b2,1,217},
|
|
2061 {0x1b3,0x1b5,2,1}, {0x1b7,0x1b7,-1,219}, {0x1b8,0x1bc,4,1},
|
|
2062 {0x1c4,0x1c4,-1,2}, {0x1c5,0x1c5,-1,1}, {0x1c7,0x1c7,-1,2},
|
|
2063 {0x1c8,0x1c8,-1,1}, {0x1ca,0x1ca,-1,2}, {0x1cb,0x1db,2,1},
|
|
2064 {0x1de,0x1ee,2,1}, {0x1f1,0x1f1,-1,2}, {0x1f2,0x1f4,2,1},
|
|
2065 {0x1f6,0x1f6,-1,-97}, {0x1f7,0x1f7,-1,-56}, {0x1f8,0x21e,2,1},
|
|
2066 {0x220,0x220,-1,-130}, {0x222,0x232,2,1}, {0x386,0x386,-1,38},
|
|
2067 {0x388,0x38a,1,37}, {0x38c,0x38c,-1,64}, {0x38e,0x38f,1,63},
|
|
2068 {0x391,0x3a1,1,32}, {0x3a3,0x3ab,1,32}, {0x3d8,0x3ee,2,1},
|
|
2069 {0x3f4,0x3f4,-1,-60}, {0x3f7,0x3f7,-1,1}, {0x3f9,0x3f9,-1,-7},
|
|
2070 {0x3fa,0x3fa,-1,1}, {0x400,0x40f,1,80}, {0x410,0x42f,1,32},
|
|
2071 {0x460,0x480,2,1}, {0x48a,0x4be,2,1}, {0x4c1,0x4cd,2,1},
|
|
2072 {0x4d0,0x4f4,2,1}, {0x4f8,0x500,8,1}, {0x502,0x50e,2,1},
|
|
2073 {0x531,0x556,1,48}, {0x1e00,0x1e94,2,1}, {0x1ea0,0x1ef8,2,1},
|
|
2074 {0x1f08,0x1f0f,1,-8}, {0x1f18,0x1f1d,1,-8}, {0x1f28,0x1f2f,1,-8},
|
|
2075 {0x1f38,0x1f3f,1,-8}, {0x1f48,0x1f4d,1,-8}, {0x1f59,0x1f5f,2,-8},
|
|
2076 {0x1f68,0x1f6f,1,-8}, {0x1f88,0x1f8f,1,-8}, {0x1f98,0x1f9f,1,-8},
|
|
2077 {0x1fa8,0x1faf,1,-8}, {0x1fb8,0x1fb9,1,-8}, {0x1fba,0x1fbb,1,-74},
|
|
2078 {0x1fbc,0x1fbc,-1,-9}, {0x1fc8,0x1fcb,1,-86}, {0x1fcc,0x1fcc,-1,-9},
|
|
2079 {0x1fd8,0x1fd9,1,-8}, {0x1fda,0x1fdb,1,-100}, {0x1fe8,0x1fe9,1,-8},
|
|
2080 {0x1fea,0x1feb,1,-112}, {0x1fec,0x1fec,-1,-7}, {0x1ff8,0x1ff9,1,-128},
|
|
2081 {0x1ffa,0x1ffb,1,-126}, {0x1ffc,0x1ffc,-1,-9}, {0x2126,0x2126,-1,-7517},
|
|
2082 {0x212a,0x212a,-1,-8383}, {0x212b,0x212b,-1,-8262},
|
|
2083 {0x2160,0x216f,1,16}, {0x24b6,0x24cf,1,26}, {0xff21,0xff3a,1,32},
|
|
2084 {0x10400,0x10427,1,40}
|
|
2085 };
|
|
2086
|
|
2087 static int utf_convert(int a, convertStruct table[], int tableSize);
|
|
2088
|
|
2089 /*
|
|
2090 * Generic conversion function for case operations.
|
|
2091 * Return the converted equivalent of "a", which is a UCS-4 character. Use
|
|
2092 * the given conversion "table". Uses binary search on "table".
|
|
2093 */
|
|
2094 static int
|
|
2095 utf_convert(a, table, tableSize)
|
|
2096 int a;
|
|
2097 convertStruct table[];
|
|
2098 int tableSize;
|
|
2099 {
|
|
2100 int start, mid, end; /* indices into table */
|
|
2101
|
|
2102 start = 0;
|
|
2103 end = tableSize / sizeof(convertStruct);
|
|
2104 while (start < end)
|
|
2105 {
|
|
2106 /* need to search further */
|
|
2107 mid = (end + start) /2;
|
|
2108 if (table[mid].rangeEnd < a)
|
|
2109 start = mid + 1;
|
|
2110 else
|
|
2111 end = mid;
|
|
2112 }
|
|
2113 if (table[start].rangeStart <= a && a <= table[start].rangeEnd
|
|
2114 && (a - table[start].rangeStart) % table[start].step == 0)
|
|
2115 return (a + table[start].offset);
|
|
2116 else
|
|
2117 return a;
|
|
2118 }
|
|
2119
|
|
2120 /*
|
|
2121 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
|
|
2122 * simple case folding.
|
|
2123 */
|
|
2124 int
|
|
2125 utf_fold(a)
|
|
2126 int a;
|
|
2127 {
|
|
2128 return utf_convert(a, foldCase, sizeof(foldCase));
|
|
2129 }
|
|
2130
|
|
2131 /*
|
|
2132 * The following tables are built by upperLowerExtract.pl < UnicodeData.txt .
|
|
2133 * They must be in numeric order, because we use binary search on them.
|
|
2134 * An entry such as {0x41,0x5a,1,32} means that UCS-4 characters in the range
|
|
2135 * from 0x41 to 0x5a inclusive, stepping by 1, are switched to lower (for
|
|
2136 * example) by adding 32.
|
|
2137 */
|
297
|
2138 static convertStruct toLower[] =
|
7
|
2139 {
|
|
2140 {0x41,0x5a,1,32}, {0xc0,0xd6,1,32}, {0xd8,0xde,1,32},
|
|
2141 {0x100,0x12e,2,1}, {0x130,0x130,-1,-199}, {0x132,0x136,2,1},
|
|
2142 {0x139,0x147,2,1}, {0x14a,0x176,2,1}, {0x178,0x178,-1,-121},
|
|
2143 {0x179,0x17d,2,1}, {0x181,0x181,-1,210}, {0x182,0x184,2,1},
|
|
2144 {0x186,0x186,-1,206}, {0x187,0x187,-1,1}, {0x189,0x18a,1,205},
|
|
2145 {0x18b,0x18b,-1,1}, {0x18e,0x18e,-1,79}, {0x18f,0x18f,-1,202},
|
|
2146 {0x190,0x190,-1,203}, {0x191,0x191,-1,1}, {0x193,0x193,-1,205},
|
|
2147 {0x194,0x194,-1,207}, {0x196,0x196,-1,211}, {0x197,0x197,-1,209},
|
|
2148 {0x198,0x198,-1,1}, {0x19c,0x19c,-1,211}, {0x19d,0x19d,-1,213},
|
|
2149 {0x19f,0x19f,-1,214}, {0x1a0,0x1a4,2,1}, {0x1a6,0x1a6,-1,218},
|
|
2150 {0x1a7,0x1a7,-1,1}, {0x1a9,0x1a9,-1,218}, {0x1ac,0x1ac,-1,1},
|
|
2151 {0x1ae,0x1ae,-1,218}, {0x1af,0x1af,-1,1}, {0x1b1,0x1b2,1,217},
|
|
2152 {0x1b3,0x1b5,2,1}, {0x1b7,0x1b7,-1,219}, {0x1b8,0x1bc,4,1},
|
|
2153 {0x1c4,0x1ca,3,2}, {0x1cd,0x1db,2,1}, {0x1de,0x1ee,2,1},
|
|
2154 {0x1f1,0x1f1,-1,2}, {0x1f4,0x1f4,-1,1}, {0x1f6,0x1f6,-1,-97},
|
|
2155 {0x1f7,0x1f7,-1,-56}, {0x1f8,0x21e,2,1}, {0x220,0x220,-1,-130},
|
|
2156 {0x222,0x232,2,1}, {0x386,0x386,-1,38}, {0x388,0x38a,1,37},
|
|
2157 {0x38c,0x38c,-1,64}, {0x38e,0x38f,1,63}, {0x391,0x3a1,1,32},
|
|
2158 {0x3a3,0x3ab,1,32}, {0x3d8,0x3ee,2,1}, {0x3f4,0x3f4,-1,-60},
|
|
2159 {0x3f7,0x3f7,-1,1}, {0x3f9,0x3f9,-1,-7}, {0x3fa,0x3fa,-1,1},
|
|
2160 {0x400,0x40f,1,80}, {0x410,0x42f,1,32}, {0x460,0x480,2,1},
|
|
2161 {0x48a,0x4be,2,1}, {0x4c1,0x4cd,2,1}, {0x4d0,0x4f4,2,1},
|
|
2162 {0x4f8,0x500,8,1}, {0x502,0x50e,2,1}, {0x531,0x556,1,48},
|
|
2163 {0x1e00,0x1e94,2,1}, {0x1ea0,0x1ef8,2,1}, {0x1f08,0x1f0f,1,-8},
|
|
2164 {0x1f18,0x1f1d,1,-8}, {0x1f28,0x1f2f,1,-8}, {0x1f38,0x1f3f,1,-8},
|
|
2165 {0x1f48,0x1f4d,1,-8}, {0x1f59,0x1f5f,2,-8}, {0x1f68,0x1f6f,1,-8},
|
|
2166 {0x1fb8,0x1fb9,1,-8}, {0x1fba,0x1fbb,1,-74}, {0x1fc8,0x1fcb,1,-86},
|
|
2167 {0x1fd8,0x1fd9,1,-8}, {0x1fda,0x1fdb,1,-100}, {0x1fe8,0x1fe9,1,-8},
|
|
2168 {0x1fea,0x1feb,1,-112}, {0x1fec,0x1fec,-1,-7}, {0x1ff8,0x1ff9,1,-128},
|
|
2169 {0x1ffa,0x1ffb,1,-126}, {0x2126,0x2126,-1,-7517}, {0x212a,0x212a,-1,-8383},
|
|
2170 {0x212b,0x212b,-1,-8262}, {0xff21,0xff3a,1,32}, {0x10400,0x10427,1,40}
|
|
2171 };
|
|
2172
|
297
|
2173 static convertStruct toUpper[] =
|
7
|
2174 {
|
|
2175 {0x61,0x7a,1,-32}, {0xb5,0xb5,-1,743}, {0xe0,0xf6,1,-32},
|
|
2176 {0xf8,0xfe,1,-32}, {0xff,0xff,-1,121}, {0x101,0x12f,2,-1},
|
|
2177 {0x131,0x131,-1,-232}, {0x133,0x137,2,-1}, {0x13a,0x148,2,-1},
|
|
2178 {0x14b,0x177,2,-1}, {0x17a,0x17e,2,-1}, {0x17f,0x17f,-1,-300},
|
|
2179 {0x183,0x185,2,-1}, {0x188,0x18c,4,-1}, {0x192,0x192,-1,-1},
|
|
2180 {0x195,0x195,-1,97}, {0x199,0x199,-1,-1}, {0x19e,0x19e,-1,130},
|
|
2181 {0x1a1,0x1a5,2,-1}, {0x1a8,0x1ad,5,-1}, {0x1b0,0x1b4,4,-1},
|
|
2182 {0x1b6,0x1b9,3,-1}, {0x1bd,0x1bd,-1,-1}, {0x1bf,0x1bf,-1,56},
|
|
2183 {0x1c5,0x1c6,1,-1}, {0x1c8,0x1c9,1,-1}, {0x1cb,0x1cc,1,-1},
|
|
2184 {0x1ce,0x1dc,2,-1}, {0x1dd,0x1dd,-1,-79}, {0x1df,0x1ef,2,-1},
|
|
2185 {0x1f2,0x1f3,1,-1}, {0x1f5,0x1f9,4,-1}, {0x1fb,0x21f,2,-1},
|
|
2186 {0x223,0x233,2,-1}, {0x253,0x253,-1,-210}, {0x254,0x254,-1,-206},
|
|
2187 {0x256,0x257,1,-205}, {0x259,0x259,-1,-202}, {0x25b,0x25b,-1,-203},
|
|
2188 {0x260,0x260,-1,-205}, {0x263,0x263,-1,-207}, {0x268,0x268,-1,-209},
|
|
2189 {0x269,0x26f,6,-211}, {0x272,0x272,-1,-213}, {0x275,0x275,-1,-214},
|
|
2190 {0x280,0x283,3,-218}, {0x288,0x288,-1,-218}, {0x28a,0x28b,1,-217},
|
|
2191 {0x292,0x292,-1,-219}, {0x3ac,0x3ac,-1,-38}, {0x3ad,0x3af,1,-37},
|
|
2192 {0x3b1,0x3c1,1,-32}, {0x3c2,0x3c2,-1,-31}, {0x3c3,0x3cb,1,-32},
|
|
2193 {0x3cc,0x3cc,-1,-64}, {0x3cd,0x3ce,1,-63}, {0x3d0,0x3d0,-1,-62},
|
|
2194 {0x3d1,0x3d1,-1,-57}, {0x3d5,0x3d5,-1,-47}, {0x3d6,0x3d6,-1,-54},
|
|
2195 {0x3d9,0x3ef,2,-1}, {0x3f0,0x3f0,-1,-86}, {0x3f1,0x3f1,-1,-80},
|
|
2196 {0x3f2,0x3f2,-1,7}, {0x3f5,0x3f5,-1,-96}, {0x3f8,0x3fb,3,-1},
|
|
2197 {0x430,0x44f,1,-32}, {0x450,0x45f,1,-80}, {0x461,0x481,2,-1},
|
|
2198 {0x48b,0x4bf,2,-1}, {0x4c2,0x4ce,2,-1}, {0x4d1,0x4f5,2,-1},
|
|
2199 {0x4f9,0x501,8,-1}, {0x503,0x50f,2,-1}, {0x561,0x586,1,-48},
|
|
2200 {0x1e01,0x1e95,2,-1}, {0x1e9b,0x1e9b,-1,-59}, {0x1ea1,0x1ef9,2,-1},
|
|
2201 {0x1f00,0x1f07,1,8}, {0x1f10,0x1f15,1,8}, {0x1f20,0x1f27,1,8},
|
|
2202 {0x1f30,0x1f37,1,8}, {0x1f40,0x1f45,1,8}, {0x1f51,0x1f57,2,8},
|
|
2203 {0x1f60,0x1f67,1,8}, {0x1f70,0x1f71,1,74}, {0x1f72,0x1f75,1,86},
|
|
2204 {0x1f76,0x1f77,1,100}, {0x1f78,0x1f79,1,128}, {0x1f7a,0x1f7b,1,112},
|
|
2205 {0x1f7c,0x1f7d,1,126}, {0x1f80,0x1f87,1,8}, {0x1f90,0x1f97,1,8},
|
|
2206 {0x1fa0,0x1fa7,1,8}, {0x1fb0,0x1fb1,1,8}, {0x1fb3,0x1fb3,-1,9},
|
|
2207 {0x1fbe,0x1fbe,-1,-7205}, {0x1fc3,0x1fc3,-1,9}, {0x1fd0,0x1fd1,1,8},
|
|
2208 {0x1fe0,0x1fe1,1,8}, {0x1fe5,0x1fe5,-1,7}, {0x1ff3,0x1ff3,-1,9},
|
|
2209 {0xff41,0xff5a,1,-32}, {0x10428,0x1044f,1,-40}
|
|
2210 };
|
|
2211
|
|
2212 /*
|
|
2213 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
|
|
2214 * simple case folding.
|
|
2215 */
|
|
2216 int
|
|
2217 utf_toupper(a)
|
|
2218 int a;
|
|
2219 {
|
|
2220 /* If 'casemap' contains "keepascii" use ASCII style toupper(). */
|
|
2221 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
|
|
2222 return TOUPPER_ASC(a);
|
|
2223
|
856
|
2224 #if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
|
|
2225 /* If towupper() is available and handles Unicode, use it. */
|
7
|
2226 if (!(cmp_flags & CMP_INTERNAL))
|
|
2227 return towupper(a);
|
|
2228 #endif
|
|
2229
|
|
2230 /* For characters below 128 use locale sensitive toupper(). */
|
|
2231 if (a < 128)
|
|
2232 return TOUPPER_LOC(a);
|
|
2233
|
|
2234 /* For any other characters use the above mapping table. */
|
|
2235 return utf_convert(a, toUpper, sizeof(toUpper));
|
|
2236 }
|
|
2237
|
|
2238 int
|
|
2239 utf_islower(a)
|
|
2240 int a;
|
|
2241 {
|
|
2242 return (utf_toupper(a) != a);
|
|
2243 }
|
|
2244
|
|
2245 /*
|
|
2246 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
|
|
2247 * simple case folding.
|
|
2248 */
|
|
2249 int
|
|
2250 utf_tolower(a)
|
|
2251 int a;
|
|
2252 {
|
|
2253 /* If 'casemap' contains "keepascii" use ASCII style tolower(). */
|
|
2254 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
|
|
2255 return TOLOWER_ASC(a);
|
|
2256
|
856
|
2257 #if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
|
257
|
2258 /* If towlower() is available and handles Unicode, use it. */
|
7
|
2259 if (!(cmp_flags & CMP_INTERNAL))
|
|
2260 return towlower(a);
|
|
2261 #endif
|
|
2262
|
|
2263 /* For characters below 128 use locale sensitive tolower(). */
|
|
2264 if (a < 128)
|
|
2265 return TOLOWER_LOC(a);
|
|
2266
|
|
2267 /* For any other characters use the above mapping table. */
|
|
2268 return utf_convert(a, toLower, sizeof(toLower));
|
|
2269 }
|
|
2270
|
|
2271 int
|
|
2272 utf_isupper(a)
|
|
2273 int a;
|
|
2274 {
|
|
2275 return (utf_tolower(a) != a);
|
|
2276 }
|
|
2277
|
|
2278 /*
|
|
2279 * Version of strnicmp() that handles multi-byte characters.
|
|
2280 * Needed for Big5, Sjift-JIS and UTF-8 encoding. Other DBCS encodings can
|
|
2281 * probably use strnicmp(), because there are no ASCII characters in the
|
|
2282 * second byte.
|
|
2283 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
|
|
2284 * two characters otherwise.
|
|
2285 */
|
|
2286 int
|
303
|
2287 mb_strnicmp(s1, s2, nn)
|
7
|
2288 char_u *s1, *s2;
|
303
|
2289 size_t nn;
|
7
|
2290 {
|
|
2291 int i, j, l;
|
|
2292 int cdiff;
|
308
|
2293 int incomplete = FALSE;
|
835
|
2294 int n = (int)nn;
|
7
|
2295
|
|
2296 for (i = 0; i < n; i += l)
|
|
2297 {
|
|
2298 if (s1[i] == NUL && s2[i] == NUL) /* both strings end */
|
|
2299 return 0;
|
|
2300 if (enc_utf8)
|
|
2301 {
|
|
2302 l = utf_byte2len(s1[i]);
|
|
2303 if (l > n - i)
|
308
|
2304 {
|
7
|
2305 l = n - i; /* incomplete character */
|
308
|
2306 incomplete = TRUE;
|
|
2307 }
|
7
|
2308 /* Check directly first, it's faster. */
|
|
2309 for (j = 0; j < l; ++j)
|
1052
|
2310 {
|
7
|
2311 if (s1[i + j] != s2[i + j])
|
|
2312 break;
|
1052
|
2313 if (s1[i + j] == 0)
|
|
2314 /* Both stings have the same bytes but are incomplete or
|
|
2315 * have illegal bytes, accept them as equal. */
|
|
2316 l = j;
|
|
2317 }
|
7
|
2318 if (j < l)
|
|
2319 {
|
|
2320 /* If one of the two characters is incomplete return -1. */
|
308
|
2321 if (incomplete || i + utf_byte2len(s2[i]) > n)
|
7
|
2322 return -1;
|
|
2323 cdiff = utf_fold(utf_ptr2char(s1 + i))
|
|
2324 - utf_fold(utf_ptr2char(s2 + i));
|
|
2325 if (cdiff != 0)
|
|
2326 return cdiff;
|
|
2327 }
|
|
2328 }
|
|
2329 else
|
|
2330 {
|
474
|
2331 l = (*mb_ptr2len)(s1 + i);
|
7
|
2332 if (l <= 1)
|
|
2333 {
|
|
2334 /* Single byte: first check normally, then with ignore case. */
|
|
2335 if (s1[i] != s2[i])
|
|
2336 {
|
1347
|
2337 cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
|
7
|
2338 if (cdiff != 0)
|
|
2339 return cdiff;
|
|
2340 }
|
|
2341 }
|
|
2342 else
|
|
2343 {
|
|
2344 /* For non-Unicode multi-byte don't ignore case. */
|
|
2345 if (l > n - i)
|
|
2346 l = n - i;
|
|
2347 cdiff = STRNCMP(s1 + i, s2 + i, l);
|
|
2348 if (cdiff != 0)
|
|
2349 return cdiff;
|
|
2350 }
|
|
2351 }
|
|
2352 }
|
|
2353 return 0;
|
|
2354 }
|
|
2355
|
|
2356 /*
|
|
2357 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
|
|
2358 * 'encoding' has been set to.
|
|
2359 */
|
|
2360 void
|
|
2361 show_utf8()
|
|
2362 {
|
|
2363 int len;
|
273
|
2364 int rlen = 0;
|
7
|
2365 char_u *line;
|
|
2366 int clen;
|
|
2367 int i;
|
|
2368
|
|
2369 /* Get the byte length of the char under the cursor, including composing
|
|
2370 * characters. */
|
|
2371 line = ml_get_cursor();
|
474
|
2372 len = utfc_ptr2len(line);
|
7
|
2373 if (len == 0)
|
|
2374 {
|
|
2375 MSG("NUL");
|
|
2376 return;
|
|
2377 }
|
|
2378
|
|
2379 clen = 0;
|
|
2380 for (i = 0; i < len; ++i)
|
|
2381 {
|
|
2382 if (clen == 0)
|
|
2383 {
|
|
2384 /* start of (composing) character, get its length */
|
|
2385 if (i > 0)
|
273
|
2386 {
|
|
2387 STRCPY(IObuff + rlen, "+ ");
|
|
2388 rlen += 2;
|
|
2389 }
|
474
|
2390 clen = utf_ptr2len(line + i);
|
7
|
2391 }
|
273
|
2392 sprintf((char *)IObuff + rlen, "%02x ", line[i]);
|
7
|
2393 --clen;
|
835
|
2394 rlen += (int)STRLEN(IObuff + rlen);
|
273
|
2395 if (rlen > IOSIZE - 20)
|
|
2396 break;
|
7
|
2397 }
|
|
2398
|
|
2399 msg(IObuff);
|
|
2400 }
|
|
2401
|
|
2402 /*
|
|
2403 * mb_head_off() function pointer.
|
|
2404 * Return offset from "p" to the first byte of the character it points into.
|
|
2405 * Returns 0 when already at the first byte of a character.
|
|
2406 */
|
|
2407 /*ARGSUSED*/
|
|
2408 int
|
|
2409 latin_head_off(base, p)
|
|
2410 char_u *base;
|
|
2411 char_u *p;
|
|
2412 {
|
|
2413 return 0;
|
|
2414 }
|
|
2415
|
|
2416 int
|
|
2417 dbcs_head_off(base, p)
|
|
2418 char_u *base;
|
|
2419 char_u *p;
|
|
2420 {
|
|
2421 char_u *q;
|
|
2422
|
|
2423 /* It can't be a trailing byte when not using DBCS, at the start of the
|
|
2424 * string or the previous byte can't start a double-byte. */
|
|
2425 if (p <= base || MB_BYTE2LEN(p[-1]) == 1)
|
|
2426 return 0;
|
|
2427
|
|
2428 /* This is slow: need to start at the base and go forward until the
|
|
2429 * byte we are looking for. Return 1 when we went past it, 0 otherwise. */
|
|
2430 q = base;
|
|
2431 while (q < p)
|
474
|
2432 q += dbcs_ptr2len(q);
|
7
|
2433 return (q == p) ? 0 : 1;
|
|
2434 }
|
|
2435
|
|
2436 #if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \
|
|
2437 || defined(PROTO)
|
|
2438 /*
|
|
2439 * Special version of dbcs_head_off() that works for ScreenLines[], where
|
|
2440 * single-width DBCS_JPNU characters are stored separately.
|
|
2441 */
|
|
2442 int
|
|
2443 dbcs_screen_head_off(base, p)
|
|
2444 char_u *base;
|
|
2445 char_u *p;
|
|
2446 {
|
|
2447 char_u *q;
|
|
2448
|
|
2449 /* It can't be a trailing byte when not using DBCS, at the start of the
|
|
2450 * string or the previous byte can't start a double-byte.
|
|
2451 * For euc-jp an 0x8e byte in the previous cell always means we have a
|
|
2452 * lead byte in the current cell. */
|
|
2453 if (p <= base
|
|
2454 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
|
|
2455 || MB_BYTE2LEN(p[-1]) == 1)
|
|
2456 return 0;
|
|
2457
|
|
2458 /* This is slow: need to start at the base and go forward until the
|
|
2459 * byte we are looking for. Return 1 when we went past it, 0 otherwise.
|
|
2460 * For DBCS_JPNU look out for 0x8e, which means the second byte is not
|
|
2461 * stored as the next byte. */
|
|
2462 q = base;
|
|
2463 while (q < p)
|
|
2464 {
|
|
2465 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
|
|
2466 ++q;
|
|
2467 else
|
474
|
2468 q += dbcs_ptr2len(q);
|
7
|
2469 }
|
|
2470 return (q == p) ? 0 : 1;
|
|
2471 }
|
|
2472 #endif
|
|
2473
|
|
2474 int
|
|
2475 utf_head_off(base, p)
|
|
2476 char_u *base;
|
|
2477 char_u *p;
|
|
2478 {
|
|
2479 char_u *q;
|
|
2480 char_u *s;
|
|
2481 int c;
|
|
2482 #ifdef FEAT_ARABIC
|
|
2483 char_u *j;
|
|
2484 #endif
|
|
2485
|
|
2486 if (*p < 0x80) /* be quick for ASCII */
|
|
2487 return 0;
|
|
2488
|
|
2489 /* Skip backwards over trailing bytes: 10xx.xxxx
|
|
2490 * Skip backwards again if on a composing char. */
|
|
2491 for (q = p; ; --q)
|
|
2492 {
|
|
2493 /* Move s to the last byte of this char. */
|
|
2494 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
|
|
2495 ;
|
|
2496 /* Move q to the first byte of this char. */
|
|
2497 while (q > base && (*q & 0xc0) == 0x80)
|
|
2498 --q;
|
|
2499 /* Check for illegal sequence. Do allow an illegal byte after where we
|
|
2500 * started. */
|
|
2501 if (utf8len_tab[*q] != (int)(s - q + 1)
|
|
2502 && utf8len_tab[*q] != (int)(p - q + 1))
|
|
2503 return 0;
|
|
2504
|
|
2505 if (q <= base)
|
|
2506 break;
|
|
2507
|
|
2508 c = utf_ptr2char(q);
|
|
2509 if (utf_iscomposing(c))
|
|
2510 continue;
|
|
2511
|
|
2512 #ifdef FEAT_ARABIC
|
|
2513 if (arabic_maycombine(c))
|
|
2514 {
|
|
2515 /* Advance to get a sneak-peak at the next char */
|
|
2516 j = q;
|
|
2517 --j;
|
|
2518 /* Move j to the first byte of this char. */
|
|
2519 while (j > base && (*j & 0xc0) == 0x80)
|
|
2520 --j;
|
|
2521 if (arabic_combine(utf_ptr2char(j), c))
|
|
2522 continue;
|
|
2523 }
|
|
2524 #endif
|
|
2525 break;
|
|
2526 }
|
|
2527
|
|
2528 return (int)(p - q);
|
|
2529 }
|
|
2530
|
140
|
2531 #if defined(FEAT_EVAL) || defined(PROTO)
|
7
|
2532 /*
|
99
|
2533 * Copy a character from "*fp" to "*tp" and advance the pointers.
|
|
2534 */
|
|
2535 void
|
|
2536 mb_copy_char(fp, tp)
|
|
2537 char_u **fp;
|
|
2538 char_u **tp;
|
|
2539 {
|
474
|
2540 int l = (*mb_ptr2len)(*fp);
|
99
|
2541
|
|
2542 mch_memmove(*tp, *fp, (size_t)l);
|
|
2543 *tp += l;
|
|
2544 *fp += l;
|
|
2545 }
|
140
|
2546 #endif
|
99
|
2547
|
|
2548 /*
|
7
|
2549 * Return the offset from "p" to the first byte of a character. When "p" is
|
|
2550 * at the start of a character 0 is returned, otherwise the offset to the next
|
|
2551 * character. Can start anywhere in a stream of bytes.
|
|
2552 */
|
|
2553 int
|
|
2554 mb_off_next(base, p)
|
|
2555 char_u *base;
|
|
2556 char_u *p;
|
|
2557 {
|
|
2558 int i;
|
|
2559 int j;
|
|
2560
|
|
2561 if (enc_utf8)
|
|
2562 {
|
|
2563 if (*p < 0x80) /* be quick for ASCII */
|
|
2564 return 0;
|
|
2565
|
|
2566 /* Find the next character that isn't 10xx.xxxx */
|
|
2567 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
|
|
2568 ;
|
|
2569 if (i > 0)
|
|
2570 {
|
|
2571 /* Check for illegal sequence. */
|
|
2572 for (j = 0; p - j > base; ++j)
|
|
2573 if ((p[-j] & 0xc0) != 0x80)
|
|
2574 break;
|
|
2575 if (utf8len_tab[p[-j]] != i + j)
|
|
2576 return 0;
|
|
2577 }
|
|
2578 return i;
|
|
2579 }
|
|
2580
|
|
2581 /* Only need to check if we're on a trail byte, it doesn't matter if we
|
|
2582 * want the offset to the next or current character. */
|
|
2583 return (*mb_head_off)(base, p);
|
|
2584 }
|
|
2585
|
|
2586 /*
|
|
2587 * Return the offset from "p" to the last byte of the character it points
|
|
2588 * into. Can start anywhere in a stream of bytes.
|
|
2589 */
|
|
2590 int
|
|
2591 mb_tail_off(base, p)
|
|
2592 char_u *base;
|
|
2593 char_u *p;
|
|
2594 {
|
|
2595 int i;
|
|
2596 int j;
|
|
2597
|
|
2598 if (*p == NUL)
|
|
2599 return 0;
|
|
2600
|
|
2601 if (enc_utf8)
|
|
2602 {
|
|
2603 /* Find the last character that is 10xx.xxxx */
|
|
2604 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
|
|
2605 ;
|
|
2606 /* Check for illegal sequence. */
|
|
2607 for (j = 0; p - j > base; ++j)
|
|
2608 if ((p[-j] & 0xc0) != 0x80)
|
|
2609 break;
|
|
2610 if (utf8len_tab[p[-j]] != i + j + 1)
|
|
2611 return 0;
|
|
2612 return i;
|
|
2613 }
|
|
2614
|
|
2615 /* It can't be the first byte if a double-byte when not using DBCS, at the
|
|
2616 * end of the string or the byte can't start a double-byte. */
|
|
2617 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
|
|
2618 return 0;
|
|
2619
|
|
2620 /* Return 1 when on the lead byte, 0 when on the tail byte. */
|
|
2621 return 1 - dbcs_head_off(base, p);
|
|
2622 }
|
|
2623
|
776
|
2624 /*
|
|
2625 * Find the next illegal byte sequence.
|
|
2626 */
|
|
2627 void
|
|
2628 utf_find_illegal()
|
|
2629 {
|
|
2630 pos_T pos = curwin->w_cursor;
|
|
2631 char_u *p;
|
|
2632 int len;
|
|
2633 vimconv_T vimconv;
|
|
2634 char_u *tofree = NULL;
|
|
2635
|
|
2636 vimconv.vc_type = CONV_NONE;
|
|
2637 if (enc_utf8 && (enc_canon_props(curbuf->b_p_fenc) & ENC_8BIT))
|
|
2638 {
|
|
2639 /* 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
|
|
2640 * possibly a utf-8 file with illegal bytes. Setup for conversion
|
|
2641 * from utf-8 to 'fileencoding'. */
|
|
2642 convert_setup(&vimconv, p_enc, curbuf->b_p_fenc);
|
|
2643 }
|
|
2644
|
|
2645 #ifdef FEAT_VIRTUALEDIT
|
|
2646 curwin->w_cursor.coladd = 0;
|
|
2647 #endif
|
|
2648 for (;;)
|
|
2649 {
|
|
2650 p = ml_get_cursor();
|
|
2651 if (vimconv.vc_type != CONV_NONE)
|
|
2652 {
|
|
2653 vim_free(tofree);
|
|
2654 tofree = string_convert(&vimconv, p, NULL);
|
|
2655 if (tofree == NULL)
|
|
2656 break;
|
|
2657 p = tofree;
|
|
2658 }
|
|
2659
|
|
2660 while (*p != NUL)
|
|
2661 {
|
|
2662 /* Illegal means that there are not enough trail bytes (checked by
|
|
2663 * utf_ptr2len()) or too many of them (overlong sequence). */
|
|
2664 len = utf_ptr2len(p);
|
|
2665 if (*p >= 0x80 && (len == 1
|
|
2666 || utf_char2len(utf_ptr2char(p)) != len))
|
|
2667 {
|
|
2668 if (vimconv.vc_type == CONV_NONE)
|
835
|
2669 curwin->w_cursor.col += (colnr_T)(p - ml_get_cursor());
|
776
|
2670 else
|
|
2671 {
|
|
2672 int l;
|
|
2673
|
835
|
2674 len = (int)(p - tofree);
|
776
|
2675 for (p = ml_get_cursor(); *p != NUL && len-- > 0; p += l)
|
|
2676 {
|
|
2677 l = utf_ptr2len(p);
|
|
2678 curwin->w_cursor.col += l;
|
|
2679 }
|
|
2680 }
|
|
2681 goto theend;
|
|
2682 }
|
|
2683 p += len;
|
|
2684 }
|
|
2685 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
|
|
2686 break;
|
|
2687 ++curwin->w_cursor.lnum;
|
|
2688 curwin->w_cursor.col = 0;
|
|
2689 }
|
|
2690
|
|
2691 /* didn't find it: don't move and beep */
|
|
2692 curwin->w_cursor = pos;
|
|
2693 beep_flush();
|
|
2694
|
|
2695 theend:
|
|
2696 vim_free(tofree);
|
|
2697 convert_setup(&vimconv, NULL, NULL);
|
|
2698 }
|
|
2699
|
26
|
2700 #if defined(HAVE_GTK2) || defined(PROTO)
|
|
2701 /*
|
|
2702 * Return TRUE if string "s" is a valid utf-8 string.
|
|
2703 * When "end" is NULL stop at the first NUL.
|
|
2704 * When "end" is positive stop there.
|
|
2705 */
|
|
2706 int
|
|
2707 utf_valid_string(s, end)
|
|
2708 char_u *s;
|
|
2709 char_u *end;
|
|
2710 {
|
|
2711 int l;
|
|
2712 char_u *p = s;
|
|
2713
|
|
2714 while (end == NULL ? *p != NUL : p < end)
|
|
2715 {
|
|
2716 if ((*p & 0xc0) == 0x80)
|
|
2717 return FALSE; /* invalid lead byte */
|
|
2718 l = utf8len_tab[*p];
|
|
2719 if (end != NULL && p + l > end)
|
|
2720 return FALSE; /* incomplete byte sequence */
|
|
2721 ++p;
|
|
2722 while (--l > 0)
|
|
2723 if ((*p++ & 0xc0) != 0x80)
|
|
2724 return FALSE; /* invalid trail byte */
|
|
2725 }
|
|
2726 return TRUE;
|
|
2727 }
|
|
2728 #endif
|
|
2729
|
7
|
2730 #if defined(FEAT_GUI) || defined(PROTO)
|
|
2731 /*
|
|
2732 * Special version of mb_tail_off() for use in ScreenLines[].
|
|
2733 */
|
|
2734 int
|
|
2735 dbcs_screen_tail_off(base, p)
|
|
2736 char_u *base;
|
|
2737 char_u *p;
|
|
2738 {
|
|
2739 /* It can't be the first byte if a double-byte when not using DBCS, at the
|
|
2740 * end of the string or the byte can't start a double-byte.
|
|
2741 * For euc-jp an 0x8e byte always means we have a lead byte in the current
|
|
2742 * cell. */
|
|
2743 if (*p == NUL || p[1] == NUL
|
|
2744 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
|
|
2745 || MB_BYTE2LEN(*p) == 1)
|
|
2746 return 0;
|
|
2747
|
|
2748 /* Return 1 when on the lead byte, 0 when on the tail byte. */
|
|
2749 return 1 - dbcs_screen_head_off(base, p);
|
|
2750 }
|
|
2751 #endif
|
|
2752
|
|
2753 /*
|
|
2754 * If the cursor moves on an trail byte, set the cursor on the lead byte.
|
|
2755 * Thus it moves left if necessary.
|
|
2756 * Return TRUE when the cursor was adjusted.
|
|
2757 */
|
|
2758 void
|
|
2759 mb_adjust_cursor()
|
|
2760 {
|
|
2761 mb_adjustpos(&curwin->w_cursor);
|
|
2762 }
|
|
2763
|
|
2764 /*
|
|
2765 * Adjust position "*lp" to point to the first byte of a multi-byte character.
|
|
2766 * If it points to a tail byte it's moved backwards to the head byte.
|
|
2767 */
|
|
2768 void
|
|
2769 mb_adjustpos(lp)
|
|
2770 pos_T *lp;
|
|
2771 {
|
|
2772 char_u *p;
|
|
2773
|
|
2774 if (lp->col > 0
|
|
2775 #ifdef FEAT_VIRTUALEDIT
|
|
2776 || lp->coladd > 1
|
|
2777 #endif
|
|
2778 )
|
|
2779 {
|
|
2780 p = ml_get(lp->lnum);
|
|
2781 lp->col -= (*mb_head_off)(p, p + lp->col);
|
|
2782 #ifdef FEAT_VIRTUALEDIT
|
|
2783 /* Reset "coladd" when the cursor would be on the right half of a
|
|
2784 * double-wide character. */
|
|
2785 if (lp->coladd == 1
|
|
2786 && p[lp->col] != TAB
|
|
2787 && vim_isprintc((*mb_ptr2char)(p + lp->col))
|
|
2788 && ptr2cells(p + lp->col) > 1)
|
|
2789 lp->coladd = 0;
|
|
2790 #endif
|
|
2791 }
|
|
2792 }
|
|
2793
|
|
2794 /*
|
|
2795 * Return a pointer to the character before "*p", if there is one.
|
|
2796 */
|
|
2797 char_u *
|
|
2798 mb_prevptr(line, p)
|
|
2799 char_u *line; /* start of the string */
|
|
2800 char_u *p;
|
|
2801 {
|
|
2802 if (p > line)
|
39
|
2803 mb_ptr_back(line, p);
|
7
|
2804 return p;
|
|
2805 }
|
|
2806
|
|
2807 /*
|
474
|
2808 * Return the character length of "str". Each multi-byte character (with
|
|
2809 * following composing characters) counts as one.
|
7
|
2810 */
|
|
2811 int
|
|
2812 mb_charlen(str)
|
|
2813 char_u *str;
|
|
2814 {
|
500
|
2815 char_u *p = str;
|
|
2816 int count;
|
|
2817
|
|
2818 if (p == NULL)
|
7
|
2819 return 0;
|
|
2820
|
500
|
2821 for (count = 0; *p != NUL; count++)
|
|
2822 p += (*mb_ptr2len)(p);
|
7
|
2823
|
|
2824 return count;
|
|
2825 }
|
|
2826
|
740
|
2827 #if defined(FEAT_SPELL) || defined(PROTO)
|
500
|
2828 /*
|
|
2829 * Like mb_charlen() but for a string with specified length.
|
|
2830 */
|
|
2831 int
|
|
2832 mb_charlen_len(str, len)
|
|
2833 char_u *str;
|
|
2834 int len;
|
|
2835 {
|
|
2836 char_u *p = str;
|
|
2837 int count;
|
|
2838
|
|
2839 for (count = 0; *p != NUL && p < str + len; count++)
|
|
2840 p += (*mb_ptr2len)(p);
|
|
2841
|
|
2842 return count;
|
|
2843 }
|
|
2844 #endif
|
|
2845
|
7
|
2846 /*
|
|
2847 * Try to un-escape a multi-byte character.
|
|
2848 * Used for the "to" and "from" part of a mapping.
|
|
2849 * Return the un-escaped string if it is a multi-byte character, and advance
|
|
2850 * "pp" to just after the bytes that formed it.
|
|
2851 * Return NULL if no multi-byte char was found.
|
|
2852 */
|
|
2853 char_u *
|
|
2854 mb_unescape(pp)
|
|
2855 char_u **pp;
|
|
2856 {
|
|
2857 static char_u buf[MB_MAXBYTES + 1];
|
|
2858 int n, m = 0;
|
|
2859 char_u *str = *pp;
|
|
2860
|
|
2861 /* Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
|
|
2862 * KS_EXTRA KE_CSI to CSI. */
|
|
2863 for (n = 0; str[n] != NUL && m <= MB_MAXBYTES; ++n)
|
|
2864 {
|
|
2865 if (str[n] == K_SPECIAL
|
|
2866 && str[n + 1] == KS_SPECIAL
|
|
2867 && str[n + 2] == KE_FILLER)
|
|
2868 {
|
|
2869 buf[m++] = K_SPECIAL;
|
|
2870 n += 2;
|
|
2871 }
|
1495
|
2872 else if ((str[n] == K_SPECIAL
|
7
|
2873 # ifdef FEAT_GUI
|
1495
|
2874 || str[n] == CSI
|
|
2875 # endif
|
|
2876 )
|
7
|
2877 && str[n + 1] == KS_EXTRA
|
|
2878 && str[n + 2] == (int)KE_CSI)
|
|
2879 {
|
|
2880 buf[m++] = CSI;
|
|
2881 n += 2;
|
|
2882 }
|
|
2883 else if (str[n] == K_SPECIAL
|
|
2884 # ifdef FEAT_GUI
|
|
2885 || str[n] == CSI
|
|
2886 # endif
|
|
2887 )
|
|
2888 break; /* a special key can't be a multibyte char */
|
|
2889 else
|
|
2890 buf[m++] = str[n];
|
|
2891 buf[m] = NUL;
|
|
2892
|
|
2893 /* Return a multi-byte character if it's found. An illegal sequence
|
|
2894 * will result in a 1 here. */
|
474
|
2895 if ((*mb_ptr2len)(buf) > 1)
|
7
|
2896 {
|
|
2897 *pp = str + n + 1;
|
|
2898 return buf;
|
|
2899 }
|
|
2900 }
|
|
2901 return NULL;
|
|
2902 }
|
|
2903
|
|
2904 /*
|
|
2905 * Return TRUE if the character at "row"/"col" on the screen is the left side
|
|
2906 * of a double-width character.
|
|
2907 * Caller must make sure "row" and "col" are not invalid!
|
|
2908 */
|
|
2909 int
|
|
2910 mb_lefthalve(row, col)
|
|
2911 int row;
|
|
2912 int col;
|
|
2913 {
|
|
2914 #ifdef FEAT_HANGULIN
|
|
2915 if (composing_hangul)
|
|
2916 return TRUE;
|
|
2917 #endif
|
1378
|
2918 return (*mb_off2cells)(LineOffset[row] + col,
|
|
2919 LineOffset[row] + screen_Columns) > 1;
|
7
|
2920 }
|
|
2921
|
|
2922 # if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \
|
|
2923 || defined(PROTO)
|
|
2924 /*
|
|
2925 * Correct a position on the screen, if it's the right halve of a double-wide
|
|
2926 * char move it to the left halve. Returns the corrected column.
|
|
2927 */
|
|
2928 int
|
|
2929 mb_fix_col(col, row)
|
|
2930 int col;
|
|
2931 int row;
|
|
2932 {
|
|
2933 col = check_col(col);
|
|
2934 row = check_row(row);
|
|
2935 if (has_mbyte && ScreenLines != NULL && col > 0
|
|
2936 && ((enc_dbcs
|
|
2937 && ScreenLines[LineOffset[row] + col] != NUL
|
|
2938 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
|
|
2939 ScreenLines + LineOffset[row] + col))
|
|
2940 || (enc_utf8 && ScreenLines[LineOffset[row] + col] == 0)))
|
|
2941 --col;
|
|
2942 return col;
|
|
2943 }
|
|
2944 # endif
|
|
2945 #endif
|
|
2946
|
|
2947 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
|
|
2948 static int enc_alias_search __ARGS((char_u *name));
|
|
2949
|
|
2950 /*
|
|
2951 * Skip the Vim specific head of a 'encoding' name.
|
|
2952 */
|
|
2953 char_u *
|
|
2954 enc_skip(p)
|
|
2955 char_u *p;
|
|
2956 {
|
|
2957 if (STRNCMP(p, "2byte-", 6) == 0)
|
|
2958 return p + 6;
|
|
2959 if (STRNCMP(p, "8bit-", 5) == 0)
|
|
2960 return p + 5;
|
|
2961 return p;
|
|
2962 }
|
|
2963
|
|
2964 /*
|
|
2965 * Find the canonical name for encoding "enc".
|
|
2966 * When the name isn't recognized, returns "enc" itself, but with all lower
|
|
2967 * case characters and '_' replaced with '-'.
|
|
2968 * Returns an allocated string. NULL for out-of-memory.
|
|
2969 */
|
|
2970 char_u *
|
|
2971 enc_canonize(enc)
|
|
2972 char_u *enc;
|
|
2973 {
|
|
2974 char_u *r;
|
|
2975 char_u *p, *s;
|
|
2976 int i;
|
|
2977
|
39
|
2978 # ifdef FEAT_MBYTE
|
|
2979 if (STRCMP(enc, "default") == 0)
|
|
2980 {
|
|
2981 /* Use the default encoding as it's found by set_init_1(). */
|
|
2982 r = get_encoding_default();
|
|
2983 if (r == NULL)
|
|
2984 r = (char_u *)"latin1";
|
|
2985 return vim_strsave(r);
|
|
2986 }
|
|
2987 # endif
|
|
2988
|
1205
|
2989 /* copy "enc" to allocated memory, with room for two '-' */
|
7
|
2990 r = alloc((unsigned)(STRLEN(enc) + 3));
|
|
2991 if (r != NULL)
|
|
2992 {
|
|
2993 /* Make it all lower case and replace '_' with '-'. */
|
|
2994 p = r;
|
|
2995 for (s = enc; *s != NUL; ++s)
|
|
2996 {
|
|
2997 if (*s == '_')
|
|
2998 *p++ = '-';
|
|
2999 else
|
|
3000 *p++ = TOLOWER_ASC(*s);
|
|
3001 }
|
|
3002 *p = NUL;
|
|
3003
|
|
3004 /* Skip "2byte-" and "8bit-". */
|
|
3005 p = enc_skip(r);
|
|
3006
|
481
|
3007 /* Change "microsoft-cp" to "cp". Used in some spell files. */
|
|
3008 if (STRNCMP(p, "microsoft-cp", 12) == 0)
|
|
3009 mch_memmove(p, p + 10, STRLEN(p + 10) + 1);
|
|
3010
|
7
|
3011 /* "iso8859" -> "iso-8859" */
|
|
3012 if (STRNCMP(p, "iso8859", 7) == 0)
|
|
3013 {
|
|
3014 mch_memmove(p + 4, p + 3, STRLEN(p + 2));
|
|
3015 p[3] = '-';
|
|
3016 }
|
|
3017
|
|
3018 /* "iso-8859n" -> "iso-8859-n" */
|
|
3019 if (STRNCMP(p, "iso-8859", 8) == 0 && p[8] != '-')
|
|
3020 {
|
|
3021 mch_memmove(p + 9, p + 8, STRLEN(p + 7));
|
|
3022 p[8] = '-';
|
|
3023 }
|
|
3024
|
|
3025 /* "latin-N" -> "latinN" */
|
|
3026 if (STRNCMP(p, "latin-", 6) == 0)
|
|
3027 mch_memmove(p + 5, p + 6, STRLEN(p + 5));
|
|
3028
|
|
3029 if (enc_canon_search(p) >= 0)
|
|
3030 {
|
|
3031 /* canonical name can be used unmodified */
|
|
3032 if (p != r)
|
|
3033 mch_memmove(r, p, STRLEN(p) + 1);
|
|
3034 }
|
|
3035 else if ((i = enc_alias_search(p)) >= 0)
|
|
3036 {
|
|
3037 /* alias recognized, get canonical name */
|
|
3038 vim_free(r);
|
|
3039 r = vim_strsave((char_u *)enc_canon_table[i].name);
|
|
3040 }
|
|
3041 }
|
|
3042 return r;
|
|
3043 }
|
|
3044
|
|
3045 /*
|
|
3046 * Search for an encoding alias of "name".
|
|
3047 * Returns -1 when not found.
|
|
3048 */
|
|
3049 static int
|
|
3050 enc_alias_search(name)
|
|
3051 char_u *name;
|
|
3052 {
|
|
3053 int i;
|
|
3054
|
|
3055 for (i = 0; enc_alias_table[i].name != NULL; ++i)
|
|
3056 if (STRCMP(name, enc_alias_table[i].name) == 0)
|
|
3057 return enc_alias_table[i].canon;
|
|
3058 return -1;
|
|
3059 }
|
|
3060 #endif
|
|
3061
|
|
3062 #if defined(FEAT_MBYTE) || defined(PROTO)
|
|
3063
|
|
3064 #ifdef HAVE_LANGINFO_H
|
|
3065 # include <langinfo.h>
|
|
3066 #endif
|
|
3067
|
|
3068 /*
|
|
3069 * Get the canonicalized encoding of the current locale.
|
|
3070 * Returns an allocated string when successful, NULL when not.
|
|
3071 */
|
|
3072 char_u *
|
|
3073 enc_locale()
|
|
3074 {
|
|
3075 #ifndef WIN3264
|
|
3076 char *s;
|
|
3077 char *p;
|
|
3078 int i;
|
|
3079 #endif
|
|
3080 char buf[50];
|
|
3081 #ifdef WIN3264
|
|
3082 long acp = GetACP();
|
|
3083
|
|
3084 if (acp == 1200)
|
|
3085 STRCPY(buf, "ucs-2le");
|
407
|
3086 else if (acp == 1252) /* cp1252 is used as latin1 */
|
7
|
3087 STRCPY(buf, "latin1");
|
|
3088 else
|
|
3089 sprintf(buf, "cp%ld", acp);
|
|
3090 #else
|
|
3091 # ifdef HAVE_NL_LANGINFO_CODESET
|
|
3092 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
|
|
3093 # endif
|
167
|
3094 # if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
|
7
|
3095 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
|
167
|
3096 # endif
|
7
|
3097 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
|
|
3098 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
|
|
3099 s = getenv("LANG");
|
|
3100
|
|
3101 if (s == NULL || *s == NUL)
|
|
3102 return FAIL;
|
|
3103
|
|
3104 /* The most generic locale format is:
|
|
3105 * language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
|
|
3106 * If there is a '.' remove the part before it.
|
|
3107 * if there is something after the codeset, remove it.
|
|
3108 * Make the name lowercase and replace '_' with '-'.
|
|
3109 * Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
|
|
3110 * "ko_KR.EUC" == "euc-kr"
|
|
3111 */
|
|
3112 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
|
|
3113 {
|
|
3114 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
|
|
3115 && !isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
|
|
3116 {
|
|
3117 /* copy "XY.EUC" to "euc-XY" to buf[10] */
|
|
3118 STRCPY(buf + 10, "euc-");
|
|
3119 buf[14] = p[-2];
|
|
3120 buf[15] = p[-1];
|
|
3121 buf[16] = 0;
|
|
3122 s = buf + 10;
|
|
3123 }
|
|
3124 else
|
|
3125 s = p + 1;
|
|
3126 }
|
840
|
3127 for (i = 0; s[i] != NUL && s + i < buf + sizeof(buf) - 1; ++i)
|
7
|
3128 {
|
|
3129 if (s[i] == '_' || s[i] == '-')
|
|
3130 buf[i] = '-';
|
|
3131 else if (isalnum((int)s[i]))
|
|
3132 buf[i] = TOLOWER_ASC(s[i]);
|
|
3133 else
|
|
3134 break;
|
|
3135 }
|
|
3136 buf[i] = NUL;
|
|
3137 #endif
|
|
3138
|
|
3139 return enc_canonize((char_u *)buf);
|
|
3140 }
|
|
3141
|
|
3142 #if defined(WIN3264) || defined(PROTO)
|
|
3143 /*
|
|
3144 * Convert an encoding name to an MS-Windows codepage.
|
|
3145 * Returns zero if no codepage can be figured out.
|
|
3146 */
|
|
3147 int
|
|
3148 encname2codepage(name)
|
|
3149 char_u *name;
|
|
3150 {
|
|
3151 int cp;
|
|
3152 char_u *p = name;
|
|
3153 int idx;
|
|
3154
|
|
3155 if (STRNCMP(p, "8bit-", 5) == 0)
|
|
3156 p += 5;
|
|
3157 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
|
|
3158 p += 6;
|
|
3159
|
|
3160 if (p[0] == 'c' && p[1] == 'p')
|
|
3161 cp = atoi(p + 2);
|
|
3162 else if ((idx = enc_canon_search(p)) >= 0)
|
|
3163 cp = enc_canon_table[idx].codepage;
|
|
3164 else
|
|
3165 return 0;
|
|
3166 if (IsValidCodePage(cp))
|
|
3167 return cp;
|
|
3168 return 0;
|
|
3169 }
|
|
3170 #endif
|
|
3171
|
|
3172 # if defined(USE_ICONV) || defined(PROTO)
|
|
3173
|
|
3174 static char_u *iconv_string __ARGS((vimconv_T *vcp, char_u *str, int slen, int *unconvlenp));
|
|
3175
|
|
3176 /*
|
|
3177 * Call iconv_open() with a check if iconv() works properly (there are broken
|
|
3178 * versions).
|
|
3179 * Returns (void *)-1 if failed.
|
|
3180 * (should return iconv_t, but that causes problems with prototypes).
|
|
3181 */
|
|
3182 void *
|
|
3183 my_iconv_open(to, from)
|
|
3184 char_u *to;
|
|
3185 char_u *from;
|
|
3186 {
|
|
3187 iconv_t fd;
|
|
3188 #define ICONV_TESTLEN 400
|
|
3189 char_u tobuf[ICONV_TESTLEN];
|
|
3190 char *p;
|
|
3191 size_t tolen;
|
|
3192 static int iconv_ok = -1;
|
|
3193
|
|
3194 if (iconv_ok == FALSE)
|
|
3195 return (void *)-1; /* detected a broken iconv() previously */
|
|
3196
|
|
3197 #ifdef DYNAMIC_ICONV
|
|
3198 /* Check if the iconv.dll can be found. */
|
|
3199 if (!iconv_enabled(TRUE))
|
|
3200 return (void *)-1;
|
|
3201 #endif
|
|
3202
|
|
3203 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
|
|
3204
|
|
3205 if (fd != (iconv_t)-1 && iconv_ok == -1)
|
|
3206 {
|
|
3207 /*
|
|
3208 * Do a dummy iconv() call to check if it actually works. There is a
|
|
3209 * version of iconv() on Linux that is broken. We can't ignore it,
|
|
3210 * because it's wide-spread. The symptoms are that after outputting
|
|
3211 * the initial shift state the "to" pointer is NULL and conversion
|
|
3212 * stops for no apparent reason after about 8160 characters.
|
|
3213 */
|
|
3214 p = (char *)tobuf;
|
|
3215 tolen = ICONV_TESTLEN;
|
|
3216 (void)iconv(fd, NULL, NULL, &p, &tolen);
|
|
3217 if (p == NULL)
|
|
3218 {
|
|
3219 iconv_ok = FALSE;
|
|
3220 iconv_close(fd);
|
|
3221 fd = (iconv_t)-1;
|
|
3222 }
|
|
3223 else
|
|
3224 iconv_ok = TRUE;
|
|
3225 }
|
|
3226
|
|
3227 return (void *)fd;
|
|
3228 }
|
|
3229
|
|
3230 /*
|
|
3231 * Convert the string "str[slen]" with iconv().
|
|
3232 * If "unconvlenp" is not NULL handle the string ending in an incomplete
|
|
3233 * sequence and set "*unconvlenp" to the length of it.
|
|
3234 * Returns the converted string in allocated memory. NULL for an error.
|
|
3235 */
|
|
3236 static char_u *
|
|
3237 iconv_string(vcp, str, slen, unconvlenp)
|
|
3238 vimconv_T *vcp;
|
|
3239 char_u *str;
|
|
3240 int slen;
|
|
3241 int *unconvlenp;
|
|
3242 {
|
|
3243 const char *from;
|
|
3244 size_t fromlen;
|
|
3245 char *to;
|
|
3246 size_t tolen;
|
|
3247 size_t len = 0;
|
|
3248 size_t done = 0;
|
|
3249 char_u *result = NULL;
|
|
3250 char_u *p;
|
|
3251 int l;
|
|
3252
|
|
3253 from = (char *)str;
|
|
3254 fromlen = slen;
|
|
3255 for (;;)
|
|
3256 {
|
|
3257 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
|
|
3258 {
|
|
3259 /* Allocate enough room for most conversions. When re-allocating
|
|
3260 * increase the buffer size. */
|
|
3261 len = len + fromlen * 2 + 40;
|
|
3262 p = alloc((unsigned)len);
|
|
3263 if (p != NULL && done > 0)
|
|
3264 mch_memmove(p, result, done);
|
|
3265 vim_free(result);
|
|
3266 result = p;
|
|
3267 if (result == NULL) /* out of memory */
|
|
3268 break;
|
|
3269 }
|
|
3270
|
|
3271 to = (char *)result + done;
|
|
3272 tolen = len - done - 2;
|
|
3273 /* Avoid a warning for systems with a wrong iconv() prototype by
|
|
3274 * casting the second argument to void *. */
|
|
3275 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
|
|
3276 != (size_t)-1)
|
|
3277 {
|
|
3278 /* Finished, append a NUL. */
|
|
3279 *to = NUL;
|
|
3280 break;
|
|
3281 }
|
|
3282
|
|
3283 /* Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
|
|
3284 * iconv library may use one of them. */
|
|
3285 if (!vcp->vc_fail && unconvlenp != NULL
|
|
3286 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
|
|
3287 {
|
|
3288 /* Handle an incomplete sequence at the end. */
|
|
3289 *to = NUL;
|
835
|
3290 *unconvlenp = (int)fromlen;
|
7
|
3291 break;
|
|
3292 }
|
|
3293
|
|
3294 /* Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
|
|
3295 * iconv library may use one of them. */
|
|
3296 else if (!vcp->vc_fail
|
|
3297 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
|
|
3298 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
|
|
3299 {
|
|
3300 /* Can't convert: insert a '?' and skip a character. This assumes
|
|
3301 * conversion from 'encoding' to something else. In other
|
|
3302 * situations we don't know what to skip anyway. */
|
|
3303 *to++ = '?';
|
|
3304 if ((*mb_ptr2cells)((char_u *)from) > 1)
|
|
3305 *to++ = '?';
|
221
|
3306 if (enc_utf8)
|
835
|
3307 l = utfc_ptr2len_len((char_u *)from, (int)fromlen);
|
221
|
3308 else
|
|
3309 {
|
474
|
3310 l = (*mb_ptr2len)((char_u *)from);
|
227
|
3311 if (l > (int)fromlen)
|
835
|
3312 l = (int)fromlen;
|
221
|
3313 }
|
7
|
3314 from += l;
|
|
3315 fromlen -= l;
|
|
3316 }
|
|
3317 else if (ICONV_ERRNO != ICONV_E2BIG)
|
|
3318 {
|
|
3319 /* conversion failed */
|
|
3320 vim_free(result);
|
|
3321 result = NULL;
|
|
3322 break;
|
|
3323 }
|
|
3324 /* Not enough room or skipping illegal sequence. */
|
|
3325 done = to - (char *)result;
|
|
3326 }
|
|
3327 return result;
|
|
3328 }
|
|
3329
|
|
3330 # if defined(DYNAMIC_ICONV) || defined(PROTO)
|
|
3331 /*
|
|
3332 * Dynamically load the "iconv.dll" on Win32.
|
|
3333 */
|
|
3334
|
|
3335 #ifndef DYNAMIC_ICONV /* just generating prototypes */
|
|
3336 # define HINSTANCE int
|
|
3337 #endif
|
297
|
3338 static HINSTANCE hIconvDLL = 0;
|
|
3339 static HINSTANCE hMsvcrtDLL = 0;
|
7
|
3340
|
|
3341 # ifndef DYNAMIC_ICONV_DLL
|
|
3342 # define DYNAMIC_ICONV_DLL "iconv.dll"
|
|
3343 # define DYNAMIC_ICONV_DLL_ALT "libiconv.dll"
|
|
3344 # endif
|
|
3345 # ifndef DYNAMIC_MSVCRT_DLL
|
|
3346 # define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
|
|
3347 # endif
|
|
3348
|
|
3349 /*
|
|
3350 * Try opening the iconv.dll and return TRUE if iconv() can be used.
|
|
3351 */
|
|
3352 int
|
|
3353 iconv_enabled(verbose)
|
|
3354 int verbose;
|
|
3355 {
|
|
3356 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
|
|
3357 return TRUE;
|
|
3358 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL);
|
|
3359 if (hIconvDLL == 0) /* sometimes it's called libiconv.dll */
|
|
3360 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL_ALT);
|
|
3361 if (hIconvDLL != 0)
|
|
3362 hMsvcrtDLL = LoadLibrary(DYNAMIC_MSVCRT_DLL);
|
|
3363 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
|
|
3364 {
|
|
3365 /* Only give the message when 'verbose' is set, otherwise it might be
|
|
3366 * done whenever a conversion is attempted. */
|
|
3367 if (verbose && p_verbose > 0)
|
292
|
3368 {
|
|
3369 verbose_enter();
|
7
|
3370 EMSG2(_(e_loadlib),
|
|
3371 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL);
|
292
|
3372 verbose_leave();
|
|
3373 }
|
7
|
3374 iconv_end();
|
|
3375 return FALSE;
|
|
3376 }
|
|
3377
|
344
|
3378 iconv = (void *)GetProcAddress(hIconvDLL, "libiconv");
|
|
3379 iconv_open = (void *)GetProcAddress(hIconvDLL, "libiconv_open");
|
|
3380 iconv_close = (void *)GetProcAddress(hIconvDLL, "libiconv_close");
|
|
3381 iconvctl = (void *)GetProcAddress(hIconvDLL, "libiconvctl");
|
|
3382 iconv_errno = (void *)GetProcAddress(hMsvcrtDLL, "_errno");
|
7
|
3383 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
|
|
3384 || iconvctl == NULL || iconv_errno == NULL)
|
|
3385 {
|
|
3386 iconv_end();
|
|
3387 if (verbose && p_verbose > 0)
|
292
|
3388 {
|
|
3389 verbose_enter();
|
7
|
3390 EMSG2(_(e_loadfunc), "for libiconv");
|
292
|
3391 verbose_leave();
|
|
3392 }
|
7
|
3393 return FALSE;
|
|
3394 }
|
|
3395 return TRUE;
|
|
3396 }
|
|
3397
|
|
3398 void
|
|
3399 iconv_end()
|
|
3400 {
|
|
3401 /* Don't use iconv() when inputting or outputting characters. */
|
|
3402 if (input_conv.vc_type == CONV_ICONV)
|
|
3403 convert_setup(&input_conv, NULL, NULL);
|
|
3404 if (output_conv.vc_type == CONV_ICONV)
|
|
3405 convert_setup(&output_conv, NULL, NULL);
|
|
3406
|
|
3407 if (hIconvDLL != 0)
|
|
3408 FreeLibrary(hIconvDLL);
|
|
3409 if (hMsvcrtDLL != 0)
|
|
3410 FreeLibrary(hMsvcrtDLL);
|
|
3411 hIconvDLL = 0;
|
|
3412 hMsvcrtDLL = 0;
|
|
3413 }
|
|
3414 # endif /* DYNAMIC_ICONV */
|
|
3415 # endif /* USE_ICONV */
|
|
3416
|
|
3417 #endif /* FEAT_MBYTE */
|
|
3418
|
|
3419 #if defined(FEAT_XIM) || defined(PROTO)
|
|
3420
|
|
3421 # ifdef FEAT_GUI_GTK
|
|
3422 static int xim_has_preediting INIT(= FALSE); /* IM current status */
|
|
3423
|
|
3424 /*
|
|
3425 * Set preedit_start_col to the current cursor position.
|
|
3426 */
|
|
3427 static void
|
|
3428 init_preedit_start_col(void)
|
|
3429 {
|
|
3430 if (State & CMDLINE)
|
|
3431 preedit_start_col = cmdline_getvcol_cursor();
|
|
3432 else if (curwin != NULL)
|
|
3433 getvcol(curwin, &curwin->w_cursor, &preedit_start_col, NULL, NULL);
|
|
3434 /* Prevent that preediting marks the buffer as changed. */
|
|
3435 xim_changed_while_preediting = curbuf->b_changed;
|
|
3436 }
|
|
3437 # endif
|
|
3438
|
|
3439 # if defined(HAVE_GTK2) && !defined(PROTO)
|
|
3440
|
|
3441 static int im_is_active = FALSE; /* IM is enabled for current mode */
|
|
3442 static int im_preedit_cursor = 0; /* cursor offset in characters */
|
|
3443 static int im_preedit_trailing = 0; /* number of characters after cursor */
|
|
3444
|
|
3445 static unsigned long im_commit_handler_id = 0;
|
|
3446 static unsigned int im_activatekey_keyval = GDK_VoidSymbol;
|
|
3447 static unsigned int im_activatekey_state = 0;
|
|
3448
|
|
3449 void
|
|
3450 im_set_active(int active)
|
|
3451 {
|
|
3452 int was_active;
|
|
3453
|
|
3454 was_active = !!im_is_active;
|
|
3455 im_is_active = (active && !p_imdisable);
|
|
3456
|
|
3457 if (im_is_active != was_active)
|
|
3458 xim_reset();
|
|
3459 }
|
|
3460
|
|
3461 void
|
|
3462 xim_set_focus(int focus)
|
|
3463 {
|
|
3464 if (xic != NULL)
|
|
3465 {
|
|
3466 if (focus)
|
|
3467 gtk_im_context_focus_in(xic);
|
|
3468 else
|
|
3469 gtk_im_context_focus_out(xic);
|
|
3470 }
|
|
3471 }
|
|
3472
|
|
3473 void
|
|
3474 im_set_position(int row, int col)
|
|
3475 {
|
|
3476 if (xic != NULL)
|
|
3477 {
|
|
3478 GdkRectangle area;
|
|
3479
|
|
3480 area.x = FILL_X(col);
|
|
3481 area.y = FILL_Y(row);
|
|
3482 area.width = gui.char_width * (mb_lefthalve(row, col) ? 2 : 1);
|
|
3483 area.height = gui.char_height;
|
|
3484
|
|
3485 gtk_im_context_set_cursor_location(xic, &area);
|
|
3486 }
|
|
3487 }
|
|
3488
|
|
3489 # if 0 || defined(PROTO) /* apparently only used in gui_x11.c */
|
|
3490 void
|
|
3491 xim_set_preedit(void)
|
|
3492 {
|
|
3493 im_set_position(gui.row, gui.col);
|
|
3494 }
|
|
3495 # endif
|
|
3496
|
|
3497 static void
|
|
3498 im_add_to_input(char_u *str, int len)
|
|
3499 {
|
|
3500 /* Convert from 'termencoding' (always "utf-8") to 'encoding' */
|
|
3501 if (input_conv.vc_type != CONV_NONE)
|
|
3502 {
|
|
3503 str = string_convert(&input_conv, str, &len);
|
|
3504 g_return_if_fail(str != NULL);
|
|
3505 }
|
|
3506
|
|
3507 add_to_input_buf_csi(str, len);
|
|
3508
|
|
3509 if (input_conv.vc_type != CONV_NONE)
|
|
3510 vim_free(str);
|
|
3511
|
|
3512 if (p_mh) /* blank out the pointer if necessary */
|
|
3513 gui_mch_mousehide(TRUE);
|
|
3514 }
|
|
3515
|
|
3516 static void
|
|
3517 im_delete_preedit(void)
|
|
3518 {
|
|
3519 char_u bskey[] = {CSI, 'k', 'b'};
|
|
3520 char_u delkey[] = {CSI, 'k', 'D'};
|
|
3521
|
|
3522 if (State & NORMAL)
|
|
3523 {
|
|
3524 im_preedit_cursor = 0;
|
|
3525 return;
|
|
3526 }
|
|
3527 for (; im_preedit_cursor > 0; --im_preedit_cursor)
|
|
3528 add_to_input_buf(bskey, (int)sizeof(bskey));
|
|
3529
|
|
3530 for (; im_preedit_trailing > 0; --im_preedit_trailing)
|
|
3531 add_to_input_buf(delkey, (int)sizeof(delkey));
|
|
3532 }
|
|
3533
|
941
|
3534 /*
|
|
3535 * Move the cursor left by "num_move_back" characters.
|
|
3536 * Note that ins_left() checks im_is_preediting() to avoid breaking undo for
|
|
3537 * these K_LEFT keys.
|
|
3538 */
|
7
|
3539 static void
|
|
3540 im_correct_cursor(int num_move_back)
|
|
3541 {
|
|
3542 char_u backkey[] = {CSI, 'k', 'l'};
|
|
3543
|
|
3544 if (State & NORMAL)
|
|
3545 return;
|
|
3546 # ifdef FEAT_RIGHTLEFT
|
|
3547 if ((State & CMDLINE) == 0 && curwin != NULL && curwin->w_p_rl)
|
|
3548 backkey[2] = 'r';
|
|
3549 # endif
|
|
3550 for (; num_move_back > 0; --num_move_back)
|
|
3551 add_to_input_buf(backkey, (int)sizeof(backkey));
|
|
3552 }
|
|
3553
|
|
3554 static int xim_expected_char = NUL;
|
|
3555 static int xim_ignored_char = FALSE;
|
|
3556
|
|
3557 /*
|
|
3558 * Update the mode and cursor while in an IM callback.
|
|
3559 */
|
|
3560 static void
|
|
3561 im_show_info(void)
|
|
3562 {
|
|
3563 int old_vgetc_busy;
|
822
|
3564
|
7
|
3565 old_vgetc_busy = vgetc_busy;
|
|
3566 vgetc_busy = TRUE;
|
|
3567 showmode();
|
|
3568 vgetc_busy = old_vgetc_busy;
|
|
3569 setcursor();
|
|
3570 out_flush();
|
|
3571 }
|
|
3572
|
|
3573 /*
|
|
3574 * Callback invoked when the user finished preediting.
|
|
3575 * Put the final string into the input buffer.
|
|
3576 */
|
|
3577 /*ARGSUSED0*/
|
|
3578 static void
|
|
3579 im_commit_cb(GtkIMContext *context, const gchar *str, gpointer data)
|
|
3580 {
|
|
3581 int slen = (int)STRLEN(str);
|
|
3582 int add_to_input = TRUE;
|
|
3583 int clen;
|
|
3584 int len = slen;
|
|
3585 int commit_with_preedit = TRUE;
|
|
3586 char_u *im_str, *p;
|
|
3587
|
|
3588 #ifdef XIM_DEBUG
|
|
3589 xim_log("im_commit_cb(): %s\n", str);
|
|
3590 #endif
|
|
3591
|
|
3592 /* The imhangul module doesn't reset the preedit string before
|
|
3593 * committing. Call im_delete_preedit() to work around that. */
|
|
3594 im_delete_preedit();
|
|
3595
|
|
3596 /* Indicate that preediting has finished. */
|
|
3597 if (preedit_start_col == MAXCOL)
|
|
3598 {
|
|
3599 init_preedit_start_col();
|
|
3600 commit_with_preedit = FALSE;
|
|
3601 }
|
|
3602
|
|
3603 /* The thing which setting "preedit_start_col" to MAXCOL means that
|
|
3604 * "preedit_start_col" will be set forcely when calling
|
|
3605 * preedit_changed_cb() next time.
|
|
3606 * "preedit_start_col" should not reset with MAXCOL on this part. Vim
|
|
3607 * is simulating the preediting by using add_to_input_str(). when
|
|
3608 * preedit begin immediately before committed, the typebuf is not
|
|
3609 * flushed to screen, then it can't get correct "preedit_start_col".
|
|
3610 * Thus, it should calculate the cells by adding cells of the committed
|
|
3611 * string. */
|
|
3612 if (input_conv.vc_type != CONV_NONE)
|
|
3613 {
|
|
3614 im_str = string_convert(&input_conv, (char_u *)str, &len);
|
|
3615 g_return_if_fail(im_str != NULL);
|
|
3616 }
|
|
3617 else
|
|
3618 im_str = (char_u *)str;
|
|
3619 clen = 0;
|
474
|
3620 for (p = im_str; p < im_str + len; p += (*mb_ptr2len)(p))
|
7
|
3621 clen += (*mb_ptr2cells)(p);
|
|
3622 if (input_conv.vc_type != CONV_NONE)
|
|
3623 vim_free(im_str);
|
|
3624 preedit_start_col += clen;
|
|
3625
|
|
3626 /* Is this a single character that matches a keypad key that's just
|
|
3627 * been pressed? If so, we don't want it to be entered as such - let
|
|
3628 * us carry on processing the raw keycode so that it may be used in
|
|
3629 * mappings as <kSomething>. */
|
|
3630 if (xim_expected_char != NUL)
|
|
3631 {
|
|
3632 /* We're currently processing a keypad or other special key */
|
|
3633 if (slen == 1 && str[0] == xim_expected_char)
|
|
3634 {
|
|
3635 /* It's a match - don't do it here */
|
|
3636 xim_ignored_char = TRUE;
|
|
3637 add_to_input = FALSE;
|
|
3638 }
|
|
3639 else
|
|
3640 {
|
|
3641 /* Not a match */
|
|
3642 xim_ignored_char = FALSE;
|
|
3643 }
|
|
3644 }
|
|
3645
|
|
3646 if (add_to_input)
|
|
3647 im_add_to_input((char_u *)str, slen);
|
|
3648
|
|
3649 /* Inserting chars while "im_is_active" is set does not cause a change of
|
|
3650 * buffer. When the chars are committed the buffer must be marked as
|
|
3651 * changed. */
|
|
3652 if (!commit_with_preedit)
|
|
3653 preedit_start_col = MAXCOL;
|
|
3654
|
|
3655 /* This flag is used in changed() at next call. */
|
|
3656 xim_changed_while_preediting = TRUE;
|
|
3657
|
|
3658 if (gtk_main_level() > 0)
|
|
3659 gtk_main_quit();
|
|
3660 }
|
|
3661
|
|
3662 /*
|
|
3663 * Callback invoked after start to the preedit.
|
|
3664 */
|
|
3665 /*ARGSUSED*/
|
|
3666 static void
|
|
3667 im_preedit_start_cb(GtkIMContext *context, gpointer data)
|
|
3668 {
|
|
3669 #ifdef XIM_DEBUG
|
|
3670 xim_log("im_preedit_start_cb()\n");
|
|
3671 #endif
|
|
3672
|
|
3673 im_is_active = TRUE;
|
|
3674 gui_update_cursor(TRUE, FALSE);
|
|
3675 }
|
|
3676
|
|
3677 /*
|
|
3678 * Callback invoked after end to the preedit.
|
|
3679 */
|
|
3680 /*ARGSUSED*/
|
|
3681 static void
|
|
3682 im_preedit_end_cb(GtkIMContext *context, gpointer data)
|
|
3683 {
|
|
3684 #ifdef XIM_DEBUG
|
|
3685 xim_log("im_preedit_end_cb()\n");
|
|
3686 #endif
|
|
3687 im_delete_preedit();
|
|
3688
|
|
3689 /* Indicate that preediting has finished */
|
|
3690 preedit_start_col = MAXCOL;
|
|
3691 xim_has_preediting = FALSE;
|
|
3692
|
|
3693 im_is_active = FALSE;
|
|
3694 gui_update_cursor(TRUE, FALSE);
|
|
3695 im_show_info();
|
|
3696 }
|
|
3697
|
|
3698 /*
|
|
3699 * Callback invoked after changes to the preedit string. If the preedit
|
|
3700 * string was empty before, remember the preedit start column so we know
|
|
3701 * where to apply feedback attributes. Delete the previous preedit string
|
|
3702 * if there was one, save the new preedit cursor offset, and put the new
|
|
3703 * string into the input buffer.
|
|
3704 *
|
|
3705 * TODO: The pragmatic "put into input buffer" approach used here has
|
|
3706 * several fundamental problems:
|
|
3707 *
|
|
3708 * - The characters in the preedit string are subject to remapping.
|
|
3709 * That's broken, only the finally committed string should be remapped.
|
|
3710 *
|
|
3711 * - There is a race condition involved: The retrieved value for the
|
|
3712 * current cursor position will be wrong if any unprocessed characters
|
|
3713 * are still queued in the input buffer.
|
|
3714 *
|
|
3715 * - Due to the lack of synchronization between the file buffer in memory
|
|
3716 * and any typed characters, it's practically impossible to implement the
|
|
3717 * "retrieve_surrounding" and "delete_surrounding" signals reliably. IM
|
|
3718 * modules for languages such as Thai are likely to rely on this feature
|
|
3719 * for proper operation.
|
|
3720 *
|
|
3721 * Conclusions: I think support for preediting needs to be moved to the
|
|
3722 * core parts of Vim. Ideally, until it has been committed, the preediting
|
|
3723 * string should only be displayed and not affect the buffer content at all.
|
|
3724 * The question how to deal with the synchronization issue still remains.
|
|
3725 * Circumventing the input buffer is probably not desirable. Anyway, I think
|
|
3726 * implementing "retrieve_surrounding" is the only hard problem.
|
|
3727 *
|
|
3728 * One way to solve all of this in a clean manner would be to queue all key
|
|
3729 * press/release events "as is" in the input buffer, and apply the IM filtering
|
|
3730 * at the receiving end of the queue. This, however, would have a rather large
|
|
3731 * impact on the code base. If there is an easy way to force processing of all
|
|
3732 * remaining input from within the "retrieve_surrounding" signal handler, this
|
|
3733 * might not be necessary. Gotta ask on vim-dev for opinions.
|
|
3734 */
|
|
3735 /*ARGSUSED1*/
|
|
3736 static void
|
|
3737 im_preedit_changed_cb(GtkIMContext *context, gpointer data)
|
|
3738 {
|
|
3739 char *preedit_string = NULL;
|
|
3740 int cursor_index = 0;
|
|
3741 int num_move_back = 0;
|
|
3742 char_u *str;
|
|
3743 char_u *p;
|
|
3744 int i;
|
|
3745
|
|
3746 gtk_im_context_get_preedit_string(context,
|
|
3747 &preedit_string, NULL,
|
|
3748 &cursor_index);
|
|
3749
|
|
3750 #ifdef XIM_DEBUG
|
|
3751 xim_log("im_preedit_changed_cb(): %s\n", preedit_string);
|
|
3752 #endif
|
|
3753
|
|
3754 g_return_if_fail(preedit_string != NULL); /* just in case */
|
|
3755
|
|
3756 /* If preedit_start_col is MAXCOL set it to the current cursor position. */
|
|
3757 if (preedit_start_col == MAXCOL && preedit_string[0] != '\0')
|
|
3758 {
|
|
3759 xim_has_preediting = TRUE;
|
|
3760
|
|
3761 /* Urgh, this breaks if the input buffer isn't empty now */
|
|
3762 init_preedit_start_col();
|
|
3763 }
|
|
3764 else if (cursor_index == 0 && preedit_string[0] == '\0')
|
|
3765 {
|
941
|
3766 xim_has_preediting = FALSE;
|
7
|
3767
|
|
3768 /* If at the start position (after typing backspace)
|
|
3769 * preedit_start_col must be reset. */
|
|
3770 preedit_start_col = MAXCOL;
|
|
3771 }
|
|
3772
|
|
3773 im_delete_preedit();
|
|
3774
|
|
3775 /*
|
|
3776 * Compute the end of the preediting area: "preedit_end_col".
|
|
3777 * According to the documentation of gtk_im_context_get_preedit_string(),
|
|
3778 * the cursor_pos output argument returns the offset in bytes. This is
|
|
3779 * unfortunately not true -- real life shows the offset is in characters,
|
|
3780 * and the GTK+ source code agrees with me. Will file a bug later.
|
|
3781 */
|
|
3782 if (preedit_start_col != MAXCOL)
|
|
3783 preedit_end_col = preedit_start_col;
|
|
3784 str = (char_u *)preedit_string;
|
|
3785 for (p = str, i = 0; *p != NUL; p += utf_byte2len(*p), ++i)
|
|
3786 {
|
|
3787 int is_composing;
|
|
3788
|
|
3789 is_composing = ((*p & 0x80) != 0 && utf_iscomposing(utf_ptr2char(p)));
|
|
3790 /*
|
|
3791 * These offsets are used as counters when generating <BS> and <Del>
|
|
3792 * to delete the preedit string. So don't count composing characters
|
|
3793 * unless 'delcombine' is enabled.
|
|
3794 */
|
|
3795 if (!is_composing || p_deco)
|
|
3796 {
|
|
3797 if (i < cursor_index)
|
|
3798 ++im_preedit_cursor;
|
|
3799 else
|
|
3800 ++im_preedit_trailing;
|
|
3801 }
|
|
3802 if (!is_composing && i >= cursor_index)
|
|
3803 {
|
|
3804 /* This is essentially the same as im_preedit_trailing, except
|
|
3805 * composing characters are not counted even if p_deco is set. */
|
|
3806 ++num_move_back;
|
|
3807 }
|
|
3808 if (preedit_start_col != MAXCOL)
|
|
3809 preedit_end_col += utf_ptr2cells(p);
|
|
3810 }
|
|
3811
|
|
3812 if (p > str)
|
|
3813 {
|
|
3814 im_add_to_input(str, (int)(p - str));
|
|
3815 im_correct_cursor(num_move_back);
|
|
3816 }
|
|
3817
|
|
3818 g_free(preedit_string);
|
|
3819
|
|
3820 if (gtk_main_level() > 0)
|
|
3821 gtk_main_quit();
|
|
3822 }
|
|
3823
|
|
3824 /*
|
|
3825 * Translate the Pango attributes at iter to Vim highlighting attributes.
|
|
3826 * Ignore attributes not supported by Vim highlighting. This shouldn't have
|
|
3827 * too much impact -- right now we handle even more attributes than necessary
|
|
3828 * for the IM modules I tested with.
|
|
3829 */
|
|
3830 static int
|
|
3831 translate_pango_attributes(PangoAttrIterator *iter)
|
|
3832 {
|
|
3833 PangoAttribute *attr;
|
|
3834 int char_attr = HL_NORMAL;
|
|
3835
|
|
3836 attr = pango_attr_iterator_get(iter, PANGO_ATTR_UNDERLINE);
|
|
3837 if (attr != NULL && ((PangoAttrInt *)attr)->value
|
|
3838 != (int)PANGO_UNDERLINE_NONE)
|
|
3839 char_attr |= HL_UNDERLINE;
|
|
3840
|
|
3841 attr = pango_attr_iterator_get(iter, PANGO_ATTR_WEIGHT);
|
|
3842 if (attr != NULL && ((PangoAttrInt *)attr)->value >= (int)PANGO_WEIGHT_BOLD)
|
|
3843 char_attr |= HL_BOLD;
|
|
3844
|
|
3845 attr = pango_attr_iterator_get(iter, PANGO_ATTR_STYLE);
|
|
3846 if (attr != NULL && ((PangoAttrInt *)attr)->value
|
|
3847 != (int)PANGO_STYLE_NORMAL)
|
|
3848 char_attr |= HL_ITALIC;
|
|
3849
|
|
3850 attr = pango_attr_iterator_get(iter, PANGO_ATTR_BACKGROUND);
|
|
3851 if (attr != NULL)
|
|
3852 {
|
|
3853 const PangoColor *color = &((PangoAttrColor *)attr)->color;
|
|
3854
|
|
3855 /* Assume inverse if black background is requested */
|
|
3856 if ((color->red | color->green | color->blue) == 0)
|
|
3857 char_attr |= HL_INVERSE;
|
|
3858 }
|
|
3859
|
|
3860 return char_attr;
|
|
3861 }
|
|
3862
|
|
3863 /*
|
|
3864 * Retrieve the highlighting attributes at column col in the preedit string.
|
|
3865 * Return -1 if not in preediting mode or if col is out of range.
|
|
3866 */
|
|
3867 int
|
|
3868 im_get_feedback_attr(int col)
|
|
3869 {
|
|
3870 char *preedit_string = NULL;
|
|
3871 PangoAttrList *attr_list = NULL;
|
|
3872 int char_attr = -1;
|
|
3873
|
|
3874 if (xic == NULL)
|
|
3875 return char_attr;
|
|
3876
|
|
3877 gtk_im_context_get_preedit_string(xic, &preedit_string, &attr_list, NULL);
|
|
3878
|
|
3879 if (preedit_string != NULL && attr_list != NULL)
|
|
3880 {
|
944
|
3881 int idx;
|
7
|
3882
|
|
3883 /* Get the byte index as used by PangoAttrIterator */
|
944
|
3884 for (idx = 0; col > 0 && preedit_string[idx] != '\0'; --col)
|
|
3885 idx += utfc_ptr2len((char_u *)preedit_string + idx);
|
|
3886
|
|
3887 if (preedit_string[idx] != '\0')
|
7
|
3888 {
|
|
3889 PangoAttrIterator *iter;
|
|
3890 int start, end;
|
|
3891
|
|
3892 char_attr = HL_NORMAL;
|
|
3893 iter = pango_attr_list_get_iterator(attr_list);
|
|
3894
|
|
3895 /* Extract all relevant attributes from the list. */
|
|
3896 do
|
|
3897 {
|
|
3898 pango_attr_iterator_range(iter, &start, &end);
|
|
3899
|
944
|
3900 if (idx >= start && idx < end)
|
7
|
3901 char_attr |= translate_pango_attributes(iter);
|
|
3902 }
|
|
3903 while (pango_attr_iterator_next(iter));
|
|
3904
|
|
3905 pango_attr_iterator_destroy(iter);
|
|
3906 }
|
|
3907 }
|
|
3908
|
|
3909 if (attr_list != NULL)
|
|
3910 pango_attr_list_unref(attr_list);
|
|
3911 g_free(preedit_string);
|
|
3912
|
|
3913 return char_attr;
|
|
3914 }
|
|
3915
|
|
3916 void
|
|
3917 xim_init(void)
|
|
3918 {
|
|
3919 #ifdef XIM_DEBUG
|
|
3920 xim_log("xim_init()\n");
|
|
3921 #endif
|
|
3922
|
|
3923 g_return_if_fail(gui.drawarea != NULL);
|
|
3924 g_return_if_fail(gui.drawarea->window != NULL);
|
|
3925
|
|
3926 xic = gtk_im_multicontext_new();
|
|
3927 g_object_ref(xic);
|
|
3928
|
|
3929 im_commit_handler_id = g_signal_connect(G_OBJECT(xic), "commit",
|
|
3930 G_CALLBACK(&im_commit_cb), NULL);
|
|
3931 g_signal_connect(G_OBJECT(xic), "preedit_changed",
|
|
3932 G_CALLBACK(&im_preedit_changed_cb), NULL);
|
|
3933 g_signal_connect(G_OBJECT(xic), "preedit_start",
|
|
3934 G_CALLBACK(&im_preedit_start_cb), NULL);
|
|
3935 g_signal_connect(G_OBJECT(xic), "preedit_end",
|
|
3936 G_CALLBACK(&im_preedit_end_cb), NULL);
|
|
3937
|
|
3938 gtk_im_context_set_client_window(xic, gui.drawarea->window);
|
|
3939 }
|
|
3940
|
|
3941 void
|
|
3942 im_shutdown(void)
|
|
3943 {
|
|
3944 #ifdef XIM_DEBUG
|
|
3945 xim_log("im_shutdown()\n");
|
|
3946 #endif
|
|
3947
|
|
3948 if (xic != NULL)
|
|
3949 {
|
|
3950 gtk_im_context_focus_out(xic);
|
|
3951 g_object_unref(xic);
|
|
3952 xic = NULL;
|
|
3953 }
|
|
3954 im_is_active = FALSE;
|
|
3955 im_commit_handler_id = 0;
|
|
3956 preedit_start_col = MAXCOL;
|
|
3957 xim_has_preediting = FALSE;
|
|
3958 }
|
|
3959
|
|
3960 /*
|
|
3961 * Convert the string argument to keyval and state for GdkEventKey.
|
|
3962 * If str is valid return TRUE, otherwise FALSE.
|
|
3963 *
|
|
3964 * See 'imactivatekey' for documentation of the format.
|
|
3965 */
|
|
3966 static int
|
|
3967 im_string_to_keyval(const char *str, unsigned int *keyval, unsigned int *state)
|
|
3968 {
|
|
3969 const char *mods_end;
|
|
3970 unsigned tmp_keyval;
|
|
3971 unsigned tmp_state = 0;
|
|
3972
|
|
3973 mods_end = strrchr(str, '-');
|
|
3974 mods_end = (mods_end != NULL) ? mods_end + 1 : str;
|
|
3975
|
|
3976 /* Parse modifier keys */
|
|
3977 while (str < mods_end)
|
|
3978 switch (*str++)
|
|
3979 {
|
|
3980 case '-': break;
|
|
3981 case 'S': case 's': tmp_state |= (unsigned)GDK_SHIFT_MASK; break;
|
|
3982 case 'L': case 'l': tmp_state |= (unsigned)GDK_LOCK_MASK; break;
|
|
3983 case 'C': case 'c': tmp_state |= (unsigned)GDK_CONTROL_MASK;break;
|
|
3984 case '1': tmp_state |= (unsigned)GDK_MOD1_MASK; break;
|
|
3985 case '2': tmp_state |= (unsigned)GDK_MOD2_MASK; break;
|
|
3986 case '3': tmp_state |= (unsigned)GDK_MOD3_MASK; break;
|
|
3987 case '4': tmp_state |= (unsigned)GDK_MOD4_MASK; break;
|
|
3988 case '5': tmp_state |= (unsigned)GDK_MOD5_MASK; break;
|
|
3989 default:
|
|
3990 return FALSE;
|
|
3991 }
|
|
3992
|
|
3993 tmp_keyval = gdk_keyval_from_name(str);
|
|
3994
|
|
3995 if (tmp_keyval == 0 || tmp_keyval == GDK_VoidSymbol)
|
|
3996 return FALSE;
|
|
3997
|
|
3998 if (keyval != NULL)
|
|
3999 *keyval = tmp_keyval;
|
|
4000 if (state != NULL)
|
|
4001 *state = tmp_state;
|
|
4002
|
|
4003 return TRUE;
|
|
4004 }
|
|
4005
|
|
4006 /*
|
|
4007 * Return TRUE if p_imak is valid, otherwise FALSE. As a special case, an
|
|
4008 * empty string is also regarded as valid.
|
|
4009 *
|
|
4010 * Note: The numerical key value of p_imak is cached if it was valid; thus
|
|
4011 * boldly assuming im_xim_isvalid_imactivate() will always be called whenever
|
|
4012 * 'imak' changes. This is currently the case but not obvious -- should
|
|
4013 * probably rename the function for clarity.
|
|
4014 */
|
|
4015 int
|
|
4016 im_xim_isvalid_imactivate(void)
|
|
4017 {
|
|
4018 if (p_imak[0] == NUL)
|
|
4019 {
|
|
4020 im_activatekey_keyval = GDK_VoidSymbol;
|
|
4021 im_activatekey_state = 0;
|
|
4022 return TRUE;
|
|
4023 }
|
|
4024
|
|
4025 return im_string_to_keyval((const char *)p_imak,
|
|
4026 &im_activatekey_keyval,
|
|
4027 &im_activatekey_state);
|
|
4028 }
|
|
4029
|
|
4030 static void
|
|
4031 im_synthesize_keypress(unsigned int keyval, unsigned int state)
|
|
4032 {
|
|
4033 GdkEventKey *event;
|
|
4034
|
|
4035 # ifdef HAVE_GTK_MULTIHEAD
|
|
4036 event = (GdkEventKey *)gdk_event_new(GDK_KEY_PRESS);
|
|
4037 g_object_ref(gui.drawarea->window); /* unreffed by gdk_event_free() */
|
|
4038 # else
|
|
4039 event = (GdkEventKey *)g_malloc0((gulong)sizeof(GdkEvent));
|
|
4040 event->type = GDK_KEY_PRESS;
|
|
4041 # endif
|
|
4042 event->window = gui.drawarea->window;
|
|
4043 event->send_event = TRUE;
|
|
4044 event->time = GDK_CURRENT_TIME;
|
|
4045 event->state = state;
|
|
4046 event->keyval = keyval;
|
|
4047 event->hardware_keycode = /* needed for XIM */
|
|
4048 XKeysymToKeycode(GDK_WINDOW_XDISPLAY(event->window), (KeySym)keyval);
|
|
4049 event->length = 0;
|
|
4050 event->string = NULL;
|
|
4051
|
|
4052 gtk_im_context_filter_keypress(xic, event);
|
|
4053
|
|
4054 /* For consistency, also send the corresponding release event. */
|
|
4055 event->type = GDK_KEY_RELEASE;
|
|
4056 event->send_event = FALSE;
|
|
4057 gtk_im_context_filter_keypress(xic, event);
|
|
4058
|
|
4059 # ifdef HAVE_GTK_MULTIHEAD
|
|
4060 gdk_event_free((GdkEvent *)event);
|
|
4061 # else
|
|
4062 g_free(event);
|
|
4063 # endif
|
|
4064 }
|
|
4065
|
|
4066 void
|
|
4067 xim_reset(void)
|
|
4068 {
|
|
4069 if (xic != NULL)
|
|
4070 {
|
|
4071 /*
|
|
4072 * The third-party imhangul module (and maybe others too) ignores
|
|
4073 * gtk_im_context_reset() or at least doesn't reset the active state.
|
|
4074 * Thus sending imactivatekey would turn it off if it was on before,
|
|
4075 * which is clearly not what we want. Fortunately we can work around
|
|
4076 * that for imhangul by sending GDK_Escape, but I don't know if it
|
|
4077 * works with all IM modules that support an activation key :/
|
|
4078 *
|
|
4079 * An alternative approach would be to destroy the IM context and
|
|
4080 * recreate it. But that means loading/unloading the IM module on
|
|
4081 * every mode switch, which causes a quite noticable delay even on
|
|
4082 * my rather fast box...
|
|
4083 * *
|
|
4084 * Moreover, there are some XIM which cannot respond to
|
|
4085 * im_synthesize_keypress(). we hope that they reset by
|
|
4086 * xim_shutdown().
|
|
4087 */
|
|
4088 if (im_activatekey_keyval != GDK_VoidSymbol && im_is_active)
|
|
4089 im_synthesize_keypress(GDK_Escape, 0U);
|
|
4090
|
|
4091 gtk_im_context_reset(xic);
|
|
4092
|
|
4093 /*
|
|
4094 * HACK for Ami: This sequence of function calls makes Ami handle
|
1205
|
4095 * the IM reset graciously, without breaking loads of other stuff.
|
7
|
4096 * It seems to force English mode as well, which is exactly what we
|
|
4097 * want because it makes the Ami status display work reliably.
|
|
4098 */
|
|
4099 gtk_im_context_set_use_preedit(xic, FALSE);
|
|
4100
|
|
4101 if (p_imdisable)
|
|
4102 im_shutdown();
|
|
4103 else
|
|
4104 {
|
|
4105 gtk_im_context_set_use_preedit(xic, TRUE);
|
|
4106 xim_set_focus(gui.in_focus);
|
|
4107
|
|
4108 if (im_activatekey_keyval != GDK_VoidSymbol)
|
|
4109 {
|
|
4110 if (im_is_active)
|
|
4111 {
|
|
4112 g_signal_handler_block(xic, im_commit_handler_id);
|
|
4113 im_synthesize_keypress(im_activatekey_keyval,
|
|
4114 im_activatekey_state);
|
|
4115 g_signal_handler_unblock(xic, im_commit_handler_id);
|
|
4116 }
|
|
4117 }
|
|
4118 else
|
|
4119 {
|
|
4120 im_shutdown();
|
|
4121 xim_init();
|
|
4122 xim_set_focus(gui.in_focus);
|
|
4123 }
|
|
4124 }
|
|
4125 }
|
|
4126
|
|
4127 preedit_start_col = MAXCOL;
|
|
4128 xim_has_preediting = FALSE;
|
|
4129 }
|
|
4130
|
|
4131 int
|
|
4132 xim_queue_key_press_event(GdkEventKey *event, int down)
|
|
4133 {
|
|
4134 if (down)
|
|
4135 {
|
|
4136 /*
|
|
4137 * Workaround GTK2 XIM 'feature' that always converts keypad keys to
|
|
4138 * chars., even when not part of an IM sequence (ref. feature of
|
|
4139 * gdk/gdkkeyuni.c).
|
|
4140 * Flag any keypad keys that might represent a single char.
|
|
4141 * If this (on its own - i.e., not part of an IM sequence) is
|
|
4142 * committed while we're processing one of these keys, we can ignore
|
|
4143 * that commit and go ahead & process it ourselves. That way we can
|
|
4144 * still distinguish keypad keys for use in mappings.
|
|
4145 */
|
|
4146 switch (event->keyval)
|
|
4147 {
|
|
4148 case GDK_KP_Add: xim_expected_char = '+'; break;
|
|
4149 case GDK_KP_Subtract: xim_expected_char = '-'; break;
|
|
4150 case GDK_KP_Divide: xim_expected_char = '/'; break;
|
|
4151 case GDK_KP_Multiply: xim_expected_char = '*'; break;
|
|
4152 case GDK_KP_Decimal: xim_expected_char = '.'; break;
|
|
4153 case GDK_KP_Equal: xim_expected_char = '='; break;
|
|
4154 case GDK_KP_0: xim_expected_char = '0'; break;
|
|
4155 case GDK_KP_1: xim_expected_char = '1'; break;
|
|
4156 case GDK_KP_2: xim_expected_char = '2'; break;
|
|
4157 case GDK_KP_3: xim_expected_char = '3'; break;
|
|
4158 case GDK_KP_4: xim_expected_char = '4'; break;
|
|
4159 case GDK_KP_5: xim_expected_char = '5'; break;
|
|
4160 case GDK_KP_6: xim_expected_char = '6'; break;
|
|
4161 case GDK_KP_7: xim_expected_char = '7'; break;
|
|
4162 case GDK_KP_8: xim_expected_char = '8'; break;
|
|
4163 case GDK_KP_9: xim_expected_char = '9'; break;
|
|
4164 default: xim_expected_char = NUL;
|
|
4165 }
|
|
4166 xim_ignored_char = FALSE;
|
|
4167 }
|
|
4168
|
|
4169 /*
|
|
4170 * When typing fFtT, XIM may be activated. Thus it must pass
|
|
4171 * gtk_im_context_filter_keypress() in Normal mode.
|
|
4172 * And while doing :sh too.
|
|
4173 */
|
|
4174 if (xic != NULL && !p_imdisable
|
|
4175 && (State & (INSERT | CMDLINE | NORMAL | EXTERNCMD)) != 0)
|
|
4176 {
|
|
4177 /*
|
|
4178 * Filter 'imactivatekey' and map it to CTRL-^. This way, Vim is
|
|
4179 * always aware of the current status of IM, and can even emulate
|
|
4180 * the activation key for modules that don't support one.
|
|
4181 */
|
|
4182 if (event->keyval == im_activatekey_keyval
|
|
4183 && (event->state & im_activatekey_state) == im_activatekey_state)
|
|
4184 {
|
|
4185 unsigned int state_mask;
|
|
4186
|
|
4187 /* Require the state of the 3 most used modifiers to match exactly.
|
|
4188 * Otherwise e.g. <S-C-space> would be unusable for other purposes
|
|
4189 * if the IM activate key is <S-space>. */
|
|
4190 state_mask = im_activatekey_state;
|
|
4191 state_mask |= ((int)GDK_SHIFT_MASK | (int)GDK_CONTROL_MASK
|
|
4192 | (int)GDK_MOD1_MASK);
|
|
4193
|
|
4194 if ((event->state & state_mask) != im_activatekey_state)
|
|
4195 return FALSE;
|
|
4196
|
|
4197 /* Don't send it a second time on GDK_KEY_RELEASE. */
|
|
4198 if (event->type != GDK_KEY_PRESS)
|
|
4199 return TRUE;
|
|
4200
|
781
|
4201 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
|
7
|
4202 {
|
|
4203 im_set_active(FALSE);
|
|
4204
|
|
4205 /* ":lmap" mappings exists, toggle use of mappings. */
|
|
4206 State ^= LANGMAP;
|
|
4207 if (State & LANGMAP)
|
|
4208 {
|
|
4209 curbuf->b_p_iminsert = B_IMODE_NONE;
|
|
4210 State &= ~LANGMAP;
|
|
4211 }
|
|
4212 else
|
|
4213 {
|
|
4214 curbuf->b_p_iminsert = B_IMODE_LMAP;
|
|
4215 State |= LANGMAP;
|
|
4216 }
|
|
4217 return TRUE;
|
|
4218 }
|
|
4219
|
|
4220 return gtk_im_context_filter_keypress(xic, event);
|
|
4221 }
|
|
4222
|
|
4223 /* Don't filter events through the IM context if IM isn't active
|
|
4224 * right now. Unlike with GTK+ 1.2 we cannot rely on the IM module
|
|
4225 * not doing anything before the activation key was sent. */
|
|
4226 if (im_activatekey_keyval == GDK_VoidSymbol || im_is_active)
|
|
4227 {
|
|
4228 int imresult = gtk_im_context_filter_keypress(xic, event);
|
|
4229
|
|
4230 /* Some XIM send following sequence:
|
|
4231 * 1. preedited string.
|
|
4232 * 2. committed string.
|
|
4233 * 3. line changed key.
|
|
4234 * 4. preedited string.
|
|
4235 * 5. remove preedited string.
|
|
4236 * if 3, Vim can't move back the above line for 5.
|
|
4237 * thus, this part should not parse the key. */
|
|
4238 if (!imresult && preedit_start_col != MAXCOL
|
|
4239 && event->keyval == GDK_Return)
|
|
4240 {
|
|
4241 im_synthesize_keypress(GDK_Return, 0U);
|
|
4242 return FALSE;
|
|
4243 }
|
|
4244
|
|
4245 /* If XIM tried to commit a keypad key as a single char.,
|
|
4246 * ignore it so we can use the keypad key 'raw', for mappings. */
|
|
4247 if (xim_expected_char != NUL && xim_ignored_char)
|
|
4248 /* We had a keypad key, and XIM tried to thieve it */
|
|
4249 return FALSE;
|
|
4250
|
|
4251 /* Normal processing */
|
|
4252 return imresult;
|
|
4253 }
|
|
4254 }
|
|
4255
|
|
4256 return FALSE;
|
|
4257 }
|
|
4258
|
|
4259 int
|
|
4260 im_get_status(void)
|
|
4261 {
|
|
4262 return im_is_active;
|
|
4263 }
|
|
4264
|
|
4265 # else /* !HAVE_GTK2 */
|
|
4266
|
|
4267 static int xim_is_active = FALSE; /* XIM should be active in the current
|
|
4268 mode */
|
|
4269 static int xim_has_focus = FALSE; /* XIM is really being used for Vim */
|
|
4270 #ifdef FEAT_GUI_X11
|
|
4271 static XIMStyle input_style;
|
|
4272 static int status_area_enabled = TRUE;
|
|
4273 #endif
|
|
4274
|
|
4275 #ifdef FEAT_GUI_GTK
|
|
4276 # ifdef WIN3264
|
|
4277 # include <gdk/gdkwin32.h>
|
|
4278 # else
|
|
4279 # include <gdk/gdkx.h>
|
|
4280 # endif
|
|
4281 #else
|
|
4282 # ifdef PROTO
|
|
4283 /* Define a few things to be able to generate prototypes while not configured
|
|
4284 * for GTK. */
|
|
4285 # define GSList int
|
|
4286 # define gboolean int
|
|
4287 typedef int GdkEvent;
|
|
4288 typedef int GdkEventKey;
|
|
4289 # define GdkIC int
|
|
4290 # endif
|
|
4291 #endif
|
|
4292
|
574
|
4293 #if defined(FEAT_GUI_GTK) || defined(PROTO)
|
7
|
4294 static int preedit_buf_len = 0;
|
|
4295 static int xim_can_preediting INIT(= FALSE); /* XIM in showmode() */
|
|
4296 static int xim_input_style;
|
|
4297 #ifndef FEAT_GUI_GTK
|
|
4298 # define gboolean int
|
|
4299 #endif
|
|
4300 static gboolean use_status_area = 0;
|
|
4301
|
|
4302 static int im_xim_str2keycode __ARGS((unsigned int *code, unsigned int *state));
|
|
4303 static void im_xim_send_event_imactivate __ARGS((void));
|
|
4304
|
|
4305 /*
|
|
4306 * Convert string to keycode and state for XKeyEvent.
|
|
4307 * When string is valid return OK, when invalid return FAIL.
|
|
4308 *
|
|
4309 * See 'imactivatekey' documentation for the format.
|
|
4310 */
|
|
4311 static int
|
|
4312 im_xim_str2keycode(code, state)
|
|
4313 unsigned int *code;
|
|
4314 unsigned int *state;
|
|
4315 {
|
|
4316 int retval = OK;
|
|
4317 int len;
|
|
4318 unsigned keycode = 0, keystate = 0;
|
|
4319 Window window;
|
|
4320 Display *display;
|
|
4321 char_u *flag_end;
|
|
4322 char_u *str;
|
|
4323
|
|
4324 if (*p_imak != NUL)
|
|
4325 {
|
|
4326 len = STRLEN(p_imak);
|
|
4327 for (flag_end = p_imak + len - 1;
|
|
4328 flag_end > p_imak && *flag_end != '-'; --flag_end)
|
|
4329 ;
|
|
4330
|
|
4331 /* Parse modifier keys */
|
|
4332 for (str = p_imak; str < flag_end; ++str)
|
|
4333 {
|
|
4334 switch (*str)
|
|
4335 {
|
|
4336 case 's': case 'S':
|
|
4337 keystate |= ShiftMask;
|
|
4338 break;
|
|
4339 case 'l': case 'L':
|
|
4340 keystate |= LockMask;
|
|
4341 break;
|
|
4342 case 'c': case 'C':
|
|
4343 keystate |= ControlMask;
|
|
4344 break;
|
|
4345 case '1':
|
|
4346 keystate |= Mod1Mask;
|
|
4347 break;
|
|
4348 case '2':
|
|
4349 keystate |= Mod2Mask;
|
|
4350 break;
|
|
4351 case '3':
|
|
4352 keystate |= Mod3Mask;
|
|
4353 break;
|
|
4354 case '4':
|
|
4355 keystate |= Mod4Mask;
|
|
4356 break;
|
|
4357 case '5':
|
|
4358 keystate |= Mod5Mask;
|
|
4359 break;
|
|
4360 case '-':
|
|
4361 break;
|
|
4362 default:
|
|
4363 retval = FAIL;
|
|
4364 }
|
|
4365 }
|
|
4366 if (*str == '-')
|
|
4367 ++str;
|
|
4368
|
|
4369 /* Get keycode from string. */
|
|
4370 gui_get_x11_windis(&window, &display);
|
|
4371 if (display)
|
|
4372 keycode = XKeysymToKeycode(display, XStringToKeysym((char *)str));
|
|
4373 if (keycode == 0)
|
|
4374 retval = FAIL;
|
|
4375
|
|
4376 if (code != NULL)
|
|
4377 *code = keycode;
|
|
4378 if (state != NULL)
|
|
4379 *state = keystate;
|
|
4380 }
|
|
4381 return retval;
|
|
4382 }
|
|
4383
|
|
4384 static void
|
|
4385 im_xim_send_event_imactivate()
|
|
4386 {
|
|
4387 /* Force turn on preedit state by symulate keypress event.
|
|
4388 * Keycode and state is specified by 'imactivatekey'.
|
|
4389 */
|
|
4390 XKeyEvent ev;
|
|
4391
|
|
4392 gui_get_x11_windis(&ev.window, &ev.display);
|
|
4393 ev.root = RootWindow(ev.display, DefaultScreen(ev.display));
|
|
4394 ev.subwindow = None;
|
|
4395 ev.time = CurrentTime;
|
|
4396 ev.x = 1;
|
|
4397 ev.y = 1;
|
|
4398 ev.x_root = 1;
|
|
4399 ev.y_root = 1;
|
|
4400 ev.same_screen = 1;
|
|
4401 ev.type = KeyPress;
|
|
4402 if (im_xim_str2keycode(&ev.keycode, &ev.state) == OK)
|
|
4403 XSendEvent(ev.display, ev.window, 1, KeyPressMask, (XEvent*)&ev);
|
|
4404 }
|
|
4405
|
|
4406 /*
|
|
4407 * Return TRUE if 'imactivatekey' has a valid value.
|
|
4408 */
|
|
4409 int
|
|
4410 im_xim_isvalid_imactivate()
|
|
4411 {
|
|
4412 return im_xim_str2keycode(NULL, NULL) == OK;
|
|
4413 }
|
|
4414 #endif /* FEAT_GUI_GTK */
|
|
4415
|
|
4416 /*
|
|
4417 * Switch using XIM on/off. This is used by the code that changes "State".
|
|
4418 */
|
|
4419 void
|
|
4420 im_set_active(active)
|
|
4421 int active;
|
|
4422 {
|
|
4423 if (xic == NULL)
|
|
4424 return;
|
|
4425
|
|
4426 /* If 'imdisable' is set, XIM is never active. */
|
|
4427 if (p_imdisable)
|
|
4428 active = FALSE;
|
574
|
4429 #if !defined (FEAT_GUI_GTK)
|
7
|
4430 else if (input_style & XIMPreeditPosition)
|
|
4431 /* There is a problem in switching XIM off when preediting is used,
|
|
4432 * and it is not clear how this can be solved. For now, keep XIM on
|
|
4433 * all the time, like it was done in Vim 5.8. */
|
|
4434 active = TRUE;
|
|
4435 #endif
|
|
4436
|
|
4437 /* Remember the active state, it is needed when Vim gets keyboard focus. */
|
|
4438 xim_is_active = active;
|
|
4439
|
|
4440 #ifdef FEAT_GUI_GTK
|
|
4441 /* When 'imactivatekey' has valid key-string, try to control XIM preedit
|
|
4442 * state. When 'imactivatekey' has no or invalid string, try old XIM
|
|
4443 * focus control.
|
|
4444 */
|
|
4445 if (*p_imak != NUL)
|
|
4446 {
|
|
4447 /* BASIC STRATEGY:
|
|
4448 * Destroy old Input Context (XIC), and create new one. New XIC
|
|
4449 * would have a state of preedit that is off. When argument:active
|
|
4450 * is false, that's all. Else argument:active is true, send a key
|
|
4451 * event specified by 'imactivatekey' to activate XIM preedit state.
|
|
4452 */
|
|
4453
|
|
4454 xim_is_active = TRUE; /* Disable old XIM focus control */
|
|
4455 /* If we can monitor preedit state with preedit callback functions,
|
|
4456 * try least creation of new XIC.
|
|
4457 */
|
|
4458 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
|
|
4459 {
|
|
4460 if (xim_can_preediting && !active)
|
|
4461 {
|
|
4462 /* Force turn off preedit state. With some IM
|
|
4463 * implementations, we cannot turn off preedit state by
|
|
4464 * symulate keypress event. It is why using such a method
|
|
4465 * that destroy old IC (input context), and create new one.
|
|
4466 * When create new IC, its preedit state is usually off.
|
|
4467 */
|
|
4468 xim_reset();
|
|
4469 xim_set_focus(FALSE);
|
|
4470 gdk_ic_destroy(xic);
|
|
4471 xim_init();
|
|
4472 xim_can_preediting = FALSE;
|
|
4473 }
|
|
4474 else if (!xim_can_preediting && active)
|
|
4475 im_xim_send_event_imactivate();
|
|
4476 }
|
|
4477 else
|
|
4478 {
|
|
4479 /* First, force destroy old IC, and create new one. It
|
|
4480 * symulates "turning off preedit state".
|
|
4481 */
|
|
4482 xim_set_focus(FALSE);
|
|
4483 gdk_ic_destroy(xic);
|
|
4484 xim_init();
|
|
4485 xim_can_preediting = FALSE;
|
|
4486
|
|
4487 /* 2nd, when requested to activate IM, symulate this by sending
|
|
4488 * the event.
|
|
4489 */
|
|
4490 if (active)
|
|
4491 {
|
|
4492 im_xim_send_event_imactivate();
|
|
4493 xim_can_preediting = TRUE;
|
|
4494 }
|
|
4495 }
|
|
4496 }
|
|
4497 else
|
|
4498 {
|
|
4499 # ifndef XIMPreeditUnKnown
|
|
4500 /* X11R5 doesn't have these, it looks safe enough to define here. */
|
|
4501 typedef unsigned long XIMPreeditState;
|
|
4502 # define XIMPreeditUnKnown 0L
|
|
4503 # define XIMPreeditEnable 1L
|
|
4504 # define XIMPreeditDisable (1L<<1)
|
|
4505 # define XNPreeditState "preeditState"
|
|
4506 # endif
|
|
4507 XIMPreeditState preedit_state = XIMPreeditUnKnown;
|
|
4508 XVaNestedList preedit_attr;
|
|
4509 XIC pxic;
|
|
4510
|
|
4511 preedit_attr = XVaCreateNestedList(0,
|
|
4512 XNPreeditState, &preedit_state,
|
|
4513 NULL);
|
|
4514 pxic = ((GdkICPrivate *)xic)->xic;
|
|
4515
|
|
4516 if (!XGetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL))
|
|
4517 {
|
|
4518 XFree(preedit_attr);
|
|
4519 preedit_attr = XVaCreateNestedList(0,
|
|
4520 XNPreeditState,
|
|
4521 active ? XIMPreeditEnable : XIMPreeditDisable,
|
|
4522 NULL);
|
|
4523 XSetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL);
|
|
4524 xim_can_preediting = active;
|
|
4525 xim_is_active = active;
|
|
4526 }
|
|
4527 XFree(preedit_attr);
|
|
4528 }
|
|
4529 if (xim_input_style & XIMPreeditCallbacks)
|
|
4530 {
|
|
4531 preedit_buf_len = 0;
|
|
4532 init_preedit_start_col();
|
|
4533 }
|
|
4534 #else
|
|
4535 # if 0
|
|
4536 /* When had tested kinput2 + canna + Athena GUI version with
|
|
4537 * 'imactivatekey' is "s-space", im_xim_send_event_imactivate() did not
|
|
4538 * work correctly. It just inserted one space. I don't know why we
|
|
4539 * couldn't switch state of XIM preediting. This is reason why these
|
|
4540 * codes are commented out.
|
|
4541 */
|
|
4542 /* First, force destroy old IC, and create new one. It symulates
|
|
4543 * "turning off preedit state".
|
|
4544 */
|
|
4545 xim_set_focus(FALSE);
|
|
4546 XDestroyIC(xic);
|
|
4547 xic = NULL;
|
|
4548 xim_init();
|
|
4549
|
|
4550 /* 2nd, when requested to activate IM, symulate this by sending the
|
|
4551 * event.
|
|
4552 */
|
|
4553 if (active)
|
|
4554 im_xim_send_event_imactivate();
|
|
4555 # endif
|
|
4556 #endif
|
|
4557 xim_set_preedit();
|
|
4558 }
|
|
4559
|
|
4560 /*
|
|
4561 * Adjust using XIM for gaining or losing keyboard focus. Also called when
|
|
4562 * "xim_is_active" changes.
|
|
4563 */
|
|
4564 void
|
|
4565 xim_set_focus(focus)
|
|
4566 int focus;
|
|
4567 {
|
|
4568 if (xic == NULL)
|
|
4569 return;
|
|
4570
|
|
4571 /*
|
|
4572 * XIM only gets focus when the Vim window has keyboard focus and XIM has
|
|
4573 * been set active for the current mode.
|
|
4574 */
|
|
4575 if (focus && xim_is_active)
|
|
4576 {
|
|
4577 if (!xim_has_focus)
|
|
4578 {
|
|
4579 xim_has_focus = TRUE;
|
|
4580 #ifdef FEAT_GUI_GTK
|
|
4581 gdk_im_begin(xic, gui.drawarea->window);
|
|
4582 #else
|
|
4583 XSetICFocus(xic);
|
|
4584 #endif
|
|
4585 }
|
|
4586 }
|
|
4587 else
|
|
4588 {
|
|
4589 if (xim_has_focus)
|
|
4590 {
|
|
4591 xim_has_focus = FALSE;
|
|
4592 #ifdef FEAT_GUI_GTK
|
|
4593 gdk_im_end();
|
|
4594 #else
|
|
4595 XUnsetICFocus(xic);
|
|
4596 #endif
|
|
4597 }
|
|
4598 }
|
|
4599 }
|
|
4600
|
|
4601 /*ARGSUSED*/
|
|
4602 void
|
|
4603 im_set_position(row, col)
|
|
4604 int row;
|
|
4605 int col;
|
|
4606 {
|
|
4607 xim_set_preedit();
|
|
4608 }
|
|
4609
|
|
4610 /*
|
|
4611 * Set the XIM to the current cursor position.
|
|
4612 */
|
|
4613 void
|
|
4614 xim_set_preedit()
|
|
4615 {
|
|
4616 if (xic == NULL)
|
|
4617 return;
|
|
4618
|
|
4619 xim_set_focus(TRUE);
|
|
4620
|
|
4621 #ifdef FEAT_GUI_GTK
|
|
4622 if (gdk_im_ready())
|
|
4623 {
|
|
4624 int attrmask;
|
|
4625 GdkICAttr *attr;
|
|
4626
|
|
4627 if (!xic_attr)
|
|
4628 return;
|
|
4629
|
|
4630 attr = xic_attr;
|
|
4631 attrmask = 0;
|
|
4632
|
|
4633 # ifdef FEAT_XFONTSET
|
|
4634 if ((xim_input_style & (int)GDK_IM_PREEDIT_POSITION)
|
|
4635 && gui.fontset != NOFONTSET
|
|
4636 && gui.fontset->type == GDK_FONT_FONTSET)
|
|
4637 {
|
|
4638 if (!xim_has_focus)
|
|
4639 {
|
|
4640 if (attr->spot_location.y >= 0)
|
|
4641 {
|
|
4642 attr->spot_location.x = 0;
|
|
4643 attr->spot_location.y = -100;
|
|
4644 attrmask |= (int)GDK_IC_SPOT_LOCATION;
|
|
4645 }
|
|
4646 }
|
|
4647 else
|
|
4648 {
|
|
4649 gint width, height;
|
|
4650
|
|
4651 if (attr->spot_location.x != TEXT_X(gui.col)
|
|
4652 || attr->spot_location.y != TEXT_Y(gui.row))
|
|
4653 {
|
|
4654 attr->spot_location.x = TEXT_X(gui.col);
|
|
4655 attr->spot_location.y = TEXT_Y(gui.row);
|
|
4656 attrmask |= (int)GDK_IC_SPOT_LOCATION;
|
|
4657 }
|
|
4658
|
|
4659 gdk_window_get_size(gui.drawarea->window, &width, &height);
|
|
4660 width -= 2 * gui.border_offset;
|
|
4661 height -= 2 * gui.border_offset;
|
|
4662 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
|
|
4663 height -= gui.char_height;
|
|
4664 if (attr->preedit_area.width != width
|
|
4665 || attr->preedit_area.height != height)
|
|
4666 {
|
|
4667 attr->preedit_area.x = gui.border_offset;
|
|
4668 attr->preedit_area.y = gui.border_offset;
|
|
4669 attr->preedit_area.width = width;
|
|
4670 attr->preedit_area.height = height;
|
|
4671 attrmask |= (int)GDK_IC_PREEDIT_AREA;
|
|
4672 }
|
|
4673
|
|
4674 if (attr->preedit_fontset != gui.current_font)
|
|
4675 {
|
|
4676 attr->preedit_fontset = gui.current_font;
|
|
4677 attrmask |= (int)GDK_IC_PREEDIT_FONTSET;
|
|
4678 }
|
|
4679 }
|
|
4680 }
|
|
4681 # endif /* FEAT_XFONTSET */
|
|
4682
|
|
4683 if (xim_fg_color == INVALCOLOR)
|
|
4684 {
|
|
4685 xim_fg_color = gui.def_norm_pixel;
|
|
4686 xim_bg_color = gui.def_back_pixel;
|
|
4687 }
|
|
4688 if (attr->preedit_foreground.pixel != xim_fg_color)
|
|
4689 {
|
|
4690 attr->preedit_foreground.pixel = xim_fg_color;
|
|
4691 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
|
|
4692 }
|
|
4693 if (attr->preedit_background.pixel != xim_bg_color)
|
|
4694 {
|
|
4695 attr->preedit_background.pixel = xim_bg_color;
|
|
4696 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
|
|
4697 }
|
|
4698
|
|
4699 if (attrmask != 0)
|
|
4700 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
|
|
4701 }
|
|
4702 #else /* FEAT_GUI_GTK */
|
|
4703 {
|
|
4704 XVaNestedList attr_list;
|
|
4705 XRectangle spot_area;
|
|
4706 XPoint over_spot;
|
|
4707 int line_space;
|
|
4708
|
|
4709 if (!xim_has_focus)
|
|
4710 {
|
|
4711 /* hide XIM cursor */
|
|
4712 over_spot.x = 0;
|
|
4713 over_spot.y = -100; /* arbitrary invisible position */
|
|
4714 attr_list = (XVaNestedList) XVaCreateNestedList(0,
|
|
4715 XNSpotLocation,
|
|
4716 &over_spot,
|
|
4717 NULL);
|
|
4718 XSetICValues(xic, XNPreeditAttributes, attr_list, NULL);
|
|
4719 XFree(attr_list);
|
|
4720 return;
|
|
4721 }
|
|
4722
|
|
4723 if (input_style & XIMPreeditPosition)
|
|
4724 {
|
|
4725 if (xim_fg_color == INVALCOLOR)
|
|
4726 {
|
|
4727 xim_fg_color = gui.def_norm_pixel;
|
|
4728 xim_bg_color = gui.def_back_pixel;
|
|
4729 }
|
|
4730 over_spot.x = TEXT_X(gui.col);
|
|
4731 over_spot.y = TEXT_Y(gui.row);
|
|
4732 spot_area.x = 0;
|
|
4733 spot_area.y = 0;
|
|
4734 spot_area.height = gui.char_height * Rows;
|
|
4735 spot_area.width = gui.char_width * Columns;
|
|
4736 line_space = gui.char_height;
|
|
4737 attr_list = (XVaNestedList) XVaCreateNestedList(0,
|
|
4738 XNSpotLocation, &over_spot,
|
|
4739 XNForeground, (Pixel) xim_fg_color,
|
|
4740 XNBackground, (Pixel) xim_bg_color,
|
|
4741 XNArea, &spot_area,
|
|
4742 XNLineSpace, line_space,
|
|
4743 NULL);
|
|
4744 if (XSetICValues(xic, XNPreeditAttributes, attr_list, NULL))
|
|
4745 EMSG(_("E284: Cannot set IC values"));
|
|
4746 XFree(attr_list);
|
|
4747 }
|
|
4748 }
|
|
4749 #endif /* FEAT_GUI_GTK */
|
|
4750 }
|
|
4751
|
|
4752 /*
|
|
4753 * Set up the status area.
|
|
4754 *
|
|
4755 * This should use a separate Widget, but that seems not possible, because
|
|
4756 * preedit_area and status_area should be set to the same window as for the
|
|
4757 * text input. Unfortunately this means the status area pollutes the text
|
|
4758 * window...
|
|
4759 */
|
|
4760 void
|
|
4761 xim_set_status_area()
|
|
4762 {
|
|
4763 if (xic == NULL)
|
|
4764 return;
|
|
4765
|
|
4766 #ifdef FEAT_GUI_GTK
|
|
4767 # if defined(FEAT_XFONTSET)
|
|
4768 if (use_status_area)
|
|
4769 {
|
|
4770 GdkICAttr *attr;
|
|
4771 int style;
|
|
4772 gint width, height;
|
|
4773 GtkWidget *widget;
|
|
4774 int attrmask;
|
|
4775
|
|
4776 if (!xic_attr)
|
|
4777 return;
|
|
4778
|
|
4779 attr = xic_attr;
|
|
4780 attrmask = 0;
|
|
4781 style = (int)gdk_ic_get_style(xic);
|
|
4782 if ((style & (int)GDK_IM_STATUS_MASK) == (int)GDK_IM_STATUS_AREA)
|
|
4783 {
|
|
4784 if (gui.fontset != NOFONTSET
|
|
4785 && gui.fontset->type == GDK_FONT_FONTSET)
|
|
4786 {
|
|
4787 widget = gui.mainwin;
|
|
4788 gdk_window_get_size(widget->window, &width, &height);
|
|
4789
|
|
4790 attrmask |= (int)GDK_IC_STATUS_AREA;
|
|
4791 attr->status_area.x = 0;
|
|
4792 attr->status_area.y = height - gui.char_height - 1;
|
|
4793 attr->status_area.width = width;
|
|
4794 attr->status_area.height = gui.char_height;
|
|
4795 }
|
|
4796 }
|
|
4797 if (attrmask != 0)
|
|
4798 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
|
|
4799 }
|
|
4800 # endif
|
|
4801 #else
|
|
4802 {
|
|
4803 XVaNestedList preedit_list = 0, status_list = 0, list = 0;
|
|
4804 XRectangle pre_area, status_area;
|
|
4805
|
|
4806 if (input_style & XIMStatusArea)
|
|
4807 {
|
|
4808 if (input_style & XIMPreeditArea)
|
|
4809 {
|
|
4810 XRectangle *needed_rect;
|
|
4811
|
|
4812 /* to get status_area width */
|
|
4813 status_list = XVaCreateNestedList(0, XNAreaNeeded,
|
|
4814 &needed_rect, NULL);
|
|
4815 XGetICValues(xic, XNStatusAttributes, status_list, NULL);
|
|
4816 XFree(status_list);
|
|
4817
|
|
4818 status_area.width = needed_rect->width;
|
|
4819 }
|
|
4820 else
|
|
4821 status_area.width = gui.char_width * Columns;
|
|
4822
|
|
4823 status_area.x = 0;
|
|
4824 status_area.y = gui.char_height * Rows + gui.border_offset;
|
|
4825 if (gui.which_scrollbars[SBAR_BOTTOM])
|
|
4826 status_area.y += gui.scrollbar_height;
|
|
4827 #ifdef FEAT_MENU
|
|
4828 if (gui.menu_is_active)
|
|
4829 status_area.y += gui.menu_height;
|
|
4830 #endif
|
|
4831 status_area.height = gui.char_height;
|
|
4832 status_list = XVaCreateNestedList(0, XNArea, &status_area, NULL);
|
|
4833 }
|
|
4834 else
|
|
4835 {
|
|
4836 status_area.x = 0;
|
|
4837 status_area.y = gui.char_height * Rows + gui.border_offset;
|
|
4838 if (gui.which_scrollbars[SBAR_BOTTOM])
|
|
4839 status_area.y += gui.scrollbar_height;
|
|
4840 #ifdef FEAT_MENU
|
|
4841 if (gui.menu_is_active)
|
|
4842 status_area.y += gui.menu_height;
|
|
4843 #endif
|
|
4844 status_area.width = 0;
|
|
4845 status_area.height = gui.char_height;
|
|
4846 }
|
|
4847
|
|
4848 if (input_style & XIMPreeditArea) /* off-the-spot */
|
|
4849 {
|
|
4850 pre_area.x = status_area.x + status_area.width;
|
|
4851 pre_area.y = gui.char_height * Rows + gui.border_offset;
|
|
4852 pre_area.width = gui.char_width * Columns - pre_area.x;
|
|
4853 if (gui.which_scrollbars[SBAR_BOTTOM])
|
|
4854 pre_area.y += gui.scrollbar_height;
|
|
4855 #ifdef FEAT_MENU
|
|
4856 if (gui.menu_is_active)
|
|
4857 pre_area.y += gui.menu_height;
|
|
4858 #endif
|
|
4859 pre_area.height = gui.char_height;
|
|
4860 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
|
|
4861 }
|
|
4862 else if (input_style & XIMPreeditPosition) /* over-the-spot */
|
|
4863 {
|
|
4864 pre_area.x = 0;
|
|
4865 pre_area.y = 0;
|
|
4866 pre_area.height = gui.char_height * Rows;
|
|
4867 pre_area.width = gui.char_width * Columns;
|
|
4868 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
|
|
4869 }
|
|
4870
|
|
4871 if (preedit_list && status_list)
|
|
4872 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
|
|
4873 XNStatusAttributes, status_list, NULL);
|
|
4874 else if (preedit_list)
|
|
4875 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
|
|
4876 NULL);
|
|
4877 else if (status_list)
|
|
4878 list = XVaCreateNestedList(0, XNStatusAttributes, status_list,
|
|
4879 NULL);
|
|
4880 else
|
|
4881 list = NULL;
|
|
4882
|
|
4883 if (list)
|
|
4884 {
|
|
4885 XSetICValues(xic, XNVaNestedList, list, NULL);
|
|
4886 XFree(list);
|
|
4887 }
|
|
4888 if (status_list)
|
|
4889 XFree(status_list);
|
|
4890 if (preedit_list)
|
|
4891 XFree(preedit_list);
|
|
4892 }
|
|
4893 #endif
|
|
4894 }
|
|
4895
|
574
|
4896 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
|
7
|
4897 static char e_xim[] = N_("E285: Failed to create input context");
|
|
4898 #endif
|
|
4899
|
|
4900 #if defined(FEAT_GUI_X11) || defined(PROTO)
|
|
4901 # if defined(XtSpecificationRelease) && XtSpecificationRelease >= 6 && !defined(sun)
|
|
4902 # define USE_X11R6_XIM
|
|
4903 # endif
|
|
4904
|
|
4905 static int xim_real_init __ARGS((Window x11_window, Display *x11_display));
|
|
4906
|
|
4907
|
|
4908 #ifdef USE_X11R6_XIM
|
|
4909 static void xim_instantiate_cb __ARGS((Display *display, XPointer client_data, XPointer call_data));
|
|
4910 static void xim_destroy_cb __ARGS((XIM im, XPointer client_data, XPointer call_data));
|
|
4911
|
|
4912 /*ARGSUSED*/
|
|
4913 static void
|
|
4914 xim_instantiate_cb(display, client_data, call_data)
|
|
4915 Display *display;
|
|
4916 XPointer client_data;
|
|
4917 XPointer call_data;
|
|
4918 {
|
|
4919 Window x11_window;
|
|
4920 Display *x11_display;
|
|
4921
|
|
4922 #ifdef XIM_DEBUG
|
|
4923 xim_log("xim_instantiate_cb()\n");
|
|
4924 #endif
|
|
4925
|
|
4926 gui_get_x11_windis(&x11_window, &x11_display);
|
|
4927 if (display != x11_display)
|
|
4928 return;
|
|
4929
|
|
4930 xim_real_init(x11_window, x11_display);
|
811
|
4931 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
|
7
|
4932 if (xic != NULL)
|
|
4933 XUnregisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
|
|
4934 xim_instantiate_cb, NULL);
|
|
4935 }
|
|
4936
|
|
4937 /*ARGSUSED*/
|
|
4938 static void
|
|
4939 xim_destroy_cb(im, client_data, call_data)
|
|
4940 XIM im;
|
|
4941 XPointer client_data;
|
|
4942 XPointer call_data;
|
|
4943 {
|
|
4944 Window x11_window;
|
|
4945 Display *x11_display;
|
|
4946
|
|
4947 #ifdef XIM_DEBUG
|
|
4948 xim_log("xim_destroy_cb()\n");
|
|
4949 #endif
|
|
4950 gui_get_x11_windis(&x11_window, &x11_display);
|
|
4951
|
|
4952 xic = NULL;
|
|
4953 status_area_enabled = FALSE;
|
|
4954
|
811
|
4955 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
|
7
|
4956
|
|
4957 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
|
|
4958 xim_instantiate_cb, NULL);
|
|
4959 }
|
|
4960 #endif
|
|
4961
|
|
4962 void
|
|
4963 xim_init()
|
|
4964 {
|
|
4965 Window x11_window;
|
|
4966 Display *x11_display;
|
|
4967
|
|
4968 #ifdef XIM_DEBUG
|
|
4969 xim_log("xim_init()\n");
|
|
4970 #endif
|
|
4971
|
|
4972 gui_get_x11_windis(&x11_window, &x11_display);
|
|
4973
|
|
4974 xic = NULL;
|
|
4975
|
|
4976 if (xim_real_init(x11_window, x11_display))
|
|
4977 return;
|
|
4978
|
811
|
4979 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
|
7
|
4980
|
|
4981 #ifdef USE_X11R6_XIM
|
|
4982 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
|
|
4983 xim_instantiate_cb, NULL);
|
|
4984 #endif
|
|
4985 }
|
|
4986
|
|
4987 static int
|
|
4988 xim_real_init(x11_window, x11_display)
|
|
4989 Window x11_window;
|
|
4990 Display *x11_display;
|
|
4991 {
|
|
4992 int i;
|
|
4993 char *p,
|
|
4994 *s,
|
|
4995 *ns,
|
|
4996 *end,
|
|
4997 tmp[1024];
|
|
4998 #define IMLEN_MAX 40
|
|
4999 char buf[IMLEN_MAX + 7];
|
|
5000 XIM xim = NULL;
|
|
5001 XIMStyles *xim_styles;
|
|
5002 XIMStyle this_input_style = 0;
|
|
5003 Boolean found;
|
|
5004 XPoint over_spot;
|
|
5005 XVaNestedList preedit_list, status_list;
|
|
5006
|
|
5007 input_style = 0;
|
|
5008 status_area_enabled = FALSE;
|
|
5009
|
|
5010 if (xic != NULL)
|
|
5011 return FALSE;
|
|
5012
|
|
5013 if (gui.rsrc_input_method != NULL && *gui.rsrc_input_method != NUL)
|
|
5014 {
|
|
5015 strcpy(tmp, gui.rsrc_input_method);
|
|
5016 for (ns = s = tmp; ns != NULL && *s != NUL;)
|
|
5017 {
|
|
5018 s = (char *)skipwhite((char_u *)s);
|
|
5019 if (*s == NUL)
|
|
5020 break;
|
|
5021 if ((ns = end = strchr(s, ',')) == NULL)
|
|
5022 end = s + strlen(s);
|
|
5023 while (isspace(((char_u *)end)[-1]))
|
|
5024 end--;
|
|
5025 *end = NUL;
|
|
5026
|
|
5027 if (strlen(s) <= IMLEN_MAX)
|
|
5028 {
|
|
5029 strcpy(buf, "@im=");
|
|
5030 strcat(buf, s);
|
|
5031 if ((p = XSetLocaleModifiers(buf)) != NULL && *p != NUL
|
|
5032 && (xim = XOpenIM(x11_display, NULL, NULL, NULL))
|
|
5033 != NULL)
|
|
5034 break;
|
|
5035 }
|
|
5036
|
|
5037 s = ns + 1;
|
|
5038 }
|
|
5039 }
|
|
5040
|
|
5041 if (xim == NULL && (p = XSetLocaleModifiers("")) != NULL && *p != NUL)
|
|
5042 xim = XOpenIM(x11_display, NULL, NULL, NULL);
|
|
5043
|
|
5044 /* This is supposed to be useful to obtain characters through
|
|
5045 * XmbLookupString() without really using a XIM. */
|
|
5046 if (xim == NULL && (p = XSetLocaleModifiers("@im=none")) != NULL
|
|
5047 && *p != NUL)
|
|
5048 xim = XOpenIM(x11_display, NULL, NULL, NULL);
|
|
5049
|
|
5050 if (xim == NULL)
|
|
5051 {
|
|
5052 /* Only give this message when verbose is set, because too many people
|
|
5053 * got this message when they didn't want to use a XIM. */
|
|
5054 if (p_verbose > 0)
|
292
|
5055 {
|
|
5056 verbose_enter();
|
7
|
5057 EMSG(_("E286: Failed to open input method"));
|
292
|
5058 verbose_leave();
|
|
5059 }
|
7
|
5060 return FALSE;
|
|
5061 }
|
|
5062
|
|
5063 #ifdef USE_X11R6_XIM
|
|
5064 {
|
|
5065 XIMCallback destroy_cb;
|
|
5066
|
|
5067 destroy_cb.callback = xim_destroy_cb;
|
|
5068 destroy_cb.client_data = NULL;
|
|
5069 if (XSetIMValues(xim, XNDestroyCallback, &destroy_cb, NULL))
|
|
5070 EMSG(_("E287: Warning: Could not set destroy callback to IM"));
|
|
5071 }
|
|
5072 #endif
|
|
5073
|
|
5074 if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, NULL) || !xim_styles)
|
|
5075 {
|
|
5076 EMSG(_("E288: input method doesn't support any style"));
|
|
5077 XCloseIM(xim);
|
|
5078 return FALSE;
|
|
5079 }
|
|
5080
|
|
5081 found = False;
|
|
5082 strcpy(tmp, gui.rsrc_preedit_type_name);
|
|
5083 for (s = tmp; s && !found; )
|
|
5084 {
|
|
5085 while (*s && isspace((unsigned char)*s))
|
|
5086 s++;
|
|
5087 if (!*s)
|
|
5088 break;
|
|
5089 if ((ns = end = strchr(s, ',')) != 0)
|
|
5090 ns++;
|
|
5091 else
|
|
5092 end = s + strlen(s);
|
|
5093 while (isspace((unsigned char)*end))
|
|
5094 end--;
|
|
5095 *end = '\0';
|
|
5096
|
|
5097 if (!strcmp(s, "OverTheSpot"))
|
|
5098 this_input_style = (XIMPreeditPosition | XIMStatusArea);
|
|
5099 else if (!strcmp(s, "OffTheSpot"))
|
|
5100 this_input_style = (XIMPreeditArea | XIMStatusArea);
|
|
5101 else if (!strcmp(s, "Root"))
|
|
5102 this_input_style = (XIMPreeditNothing | XIMStatusNothing);
|
|
5103
|
|
5104 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
|
|
5105 {
|
|
5106 if (this_input_style == xim_styles->supported_styles[i])
|
|
5107 {
|
|
5108 found = True;
|
|
5109 break;
|
|
5110 }
|
|
5111 }
|
|
5112 if (!found)
|
|
5113 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
|
|
5114 {
|
|
5115 if ((xim_styles->supported_styles[i] & this_input_style)
|
|
5116 == (this_input_style & ~XIMStatusArea))
|
|
5117 {
|
|
5118 this_input_style &= ~XIMStatusArea;
|
|
5119 found = True;
|
|
5120 break;
|
|
5121 }
|
|
5122 }
|
|
5123
|
|
5124 s = ns;
|
|
5125 }
|
|
5126 XFree(xim_styles);
|
|
5127
|
|
5128 if (!found)
|
|
5129 {
|
|
5130 /* Only give this message when verbose is set, because too many people
|
|
5131 * got this message when they didn't want to use a XIM. */
|
|
5132 if (p_verbose > 0)
|
292
|
5133 {
|
|
5134 verbose_enter();
|
7
|
5135 EMSG(_("E289: input method doesn't support my preedit type"));
|
292
|
5136 verbose_leave();
|
|
5137 }
|
7
|
5138 XCloseIM(xim);
|
|
5139 return FALSE;
|
|
5140 }
|
|
5141
|
|
5142 over_spot.x = TEXT_X(gui.col);
|
|
5143 over_spot.y = TEXT_Y(gui.row);
|
|
5144 input_style = this_input_style;
|
|
5145
|
|
5146 /* A crash was reported when trying to pass gui.norm_font as XNFontSet,
|
|
5147 * thus that has been removed. Hopefully the default works... */
|
|
5148 #ifdef FEAT_XFONTSET
|
|
5149 if (gui.fontset != NOFONTSET)
|
|
5150 {
|
|
5151 preedit_list = XVaCreateNestedList(0,
|
|
5152 XNSpotLocation, &over_spot,
|
|
5153 XNForeground, (Pixel)gui.def_norm_pixel,
|
|
5154 XNBackground, (Pixel)gui.def_back_pixel,
|
|
5155 XNFontSet, (XFontSet)gui.fontset,
|
|
5156 NULL);
|
|
5157 status_list = XVaCreateNestedList(0,
|
|
5158 XNForeground, (Pixel)gui.def_norm_pixel,
|
|
5159 XNBackground, (Pixel)gui.def_back_pixel,
|
|
5160 XNFontSet, (XFontSet)gui.fontset,
|
|
5161 NULL);
|
|
5162 }
|
|
5163 else
|
|
5164 #endif
|
|
5165 {
|
|
5166 preedit_list = XVaCreateNestedList(0,
|
|
5167 XNSpotLocation, &over_spot,
|
|
5168 XNForeground, (Pixel)gui.def_norm_pixel,
|
|
5169 XNBackground, (Pixel)gui.def_back_pixel,
|
|
5170 NULL);
|
|
5171 status_list = XVaCreateNestedList(0,
|
|
5172 XNForeground, (Pixel)gui.def_norm_pixel,
|
|
5173 XNBackground, (Pixel)gui.def_back_pixel,
|
|
5174 NULL);
|
|
5175 }
|
|
5176
|
|
5177 xic = XCreateIC(xim,
|
|
5178 XNInputStyle, input_style,
|
|
5179 XNClientWindow, x11_window,
|
|
5180 XNFocusWindow, gui.wid,
|
|
5181 XNPreeditAttributes, preedit_list,
|
|
5182 XNStatusAttributes, status_list,
|
|
5183 NULL);
|
|
5184 XFree(status_list);
|
|
5185 XFree(preedit_list);
|
|
5186 if (xic != NULL)
|
|
5187 {
|
|
5188 if (input_style & XIMStatusArea)
|
|
5189 {
|
|
5190 xim_set_status_area();
|
|
5191 status_area_enabled = TRUE;
|
|
5192 }
|
|
5193 else
|
811
|
5194 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
|
7
|
5195 }
|
|
5196 else
|
|
5197 {
|
|
5198 EMSG(_(e_xim));
|
|
5199 XCloseIM(xim);
|
|
5200 return FALSE;
|
|
5201 }
|
|
5202
|
|
5203 return TRUE;
|
|
5204 }
|
|
5205
|
|
5206 #endif /* FEAT_GUI_X11 */
|
|
5207
|
|
5208 #if defined(FEAT_GUI_GTK) || defined(PROTO)
|
|
5209
|
|
5210 # ifdef FEAT_XFONTSET
|
|
5211 static char e_overthespot[] = N_("E290: over-the-spot style requires fontset");
|
|
5212 # endif
|
|
5213
|
|
5214 # ifdef PROTO
|
|
5215 typedef int GdkIC;
|
|
5216 # endif
|
|
5217
|
|
5218 void
|
|
5219 xim_decide_input_style()
|
|
5220 {
|
|
5221 /* GDK_IM_STATUS_CALLBACKS was disabled, enabled it to allow Japanese
|
|
5222 * OverTheSpot. */
|
|
5223 int supported_style = (int)GDK_IM_PREEDIT_NONE |
|
|
5224 (int)GDK_IM_PREEDIT_NOTHING |
|
|
5225 (int)GDK_IM_PREEDIT_POSITION |
|
|
5226 (int)GDK_IM_PREEDIT_CALLBACKS |
|
|
5227 (int)GDK_IM_STATUS_CALLBACKS |
|
|
5228 (int)GDK_IM_STATUS_AREA |
|
|
5229 (int)GDK_IM_STATUS_NONE |
|
|
5230 (int)GDK_IM_STATUS_NOTHING;
|
|
5231
|
|
5232 #ifdef XIM_DEBUG
|
|
5233 xim_log("xim_decide_input_style()\n");
|
|
5234 #endif
|
|
5235
|
|
5236 if (!gdk_im_ready())
|
|
5237 xim_input_style = 0;
|
|
5238 else
|
|
5239 {
|
|
5240 if (gtk_major_version > 1
|
|
5241 || (gtk_major_version == 1
|
|
5242 && (gtk_minor_version > 2
|
|
5243 || (gtk_minor_version == 2 && gtk_micro_version >= 3))))
|
|
5244 use_status_area = TRUE;
|
|
5245 else
|
|
5246 {
|
|
5247 EMSG(_("E291: Your GTK+ is older than 1.2.3. Status area disabled"));
|
|
5248 use_status_area = FALSE;
|
|
5249 }
|
|
5250 #ifdef FEAT_XFONTSET
|
|
5251 if (gui.fontset == NOFONTSET || gui.fontset->type != GDK_FONT_FONTSET)
|
|
5252 #endif
|
|
5253 supported_style &= ~((int)GDK_IM_PREEDIT_POSITION
|
|
5254 | (int)GDK_IM_STATUS_AREA);
|
|
5255 if (!use_status_area)
|
|
5256 supported_style &= ~(int)GDK_IM_STATUS_AREA;
|
|
5257 xim_input_style = (int)gdk_im_decide_style((GdkIMStyle)supported_style);
|
|
5258 }
|
|
5259 }
|
|
5260
|
|
5261 /*ARGSUSED*/
|
|
5262 static void
|
|
5263 preedit_start_cbproc(XIC xic, XPointer client_data, XPointer call_data)
|
|
5264 {
|
|
5265 #ifdef XIM_DEBUG
|
|
5266 xim_log("xim_decide_input_style()\n");
|
|
5267 #endif
|
|
5268
|
|
5269 draw_feedback = NULL;
|
|
5270 xim_can_preediting = TRUE;
|
|
5271 xim_has_preediting = TRUE;
|
|
5272 gui_update_cursor(TRUE, FALSE);
|
|
5273 if (showmode() > 0)
|
|
5274 {
|
|
5275 setcursor();
|
|
5276 out_flush();
|
|
5277 }
|
|
5278 }
|
|
5279
|
|
5280 static void
|
|
5281 xim_back_delete(int n)
|
|
5282 {
|
|
5283 char_u str[3];
|
|
5284
|
|
5285 str[0] = CSI;
|
|
5286 str[1] = 'k';
|
|
5287 str[2] = 'b';
|
|
5288 while (n-- > 0)
|
|
5289 add_to_input_buf(str, 3);
|
|
5290 }
|
|
5291
|
|
5292 static GSList *key_press_event_queue = NULL;
|
|
5293 static gboolean processing_queued_event = FALSE;
|
|
5294
|
|
5295 /*ARGSUSED*/
|
|
5296 static void
|
|
5297 preedit_draw_cbproc(XIC xic, XPointer client_data, XPointer call_data)
|
|
5298 {
|
|
5299 XIMPreeditDrawCallbackStruct *draw_data;
|
|
5300 XIMText *text;
|
|
5301 char *src;
|
|
5302 GSList *event_queue;
|
|
5303
|
|
5304 #ifdef XIM_DEBUG
|
|
5305 xim_log("preedit_draw_cbproc()\n");
|
|
5306 #endif
|
|
5307
|
|
5308 draw_data = (XIMPreeditDrawCallbackStruct *) call_data;
|
|
5309 text = (XIMText *) draw_data->text;
|
|
5310
|
|
5311 if ((text == NULL && draw_data->chg_length == preedit_buf_len)
|
|
5312 || preedit_buf_len == 0)
|
|
5313 {
|
|
5314 init_preedit_start_col();
|
|
5315 vim_free(draw_feedback);
|
|
5316 draw_feedback = NULL;
|
|
5317 }
|
|
5318 if (draw_data->chg_length > 0)
|
|
5319 {
|
|
5320 int bs_cnt;
|
|
5321
|
|
5322 if (draw_data->chg_length > preedit_buf_len)
|
|
5323 bs_cnt = preedit_buf_len;
|
|
5324 else
|
|
5325 bs_cnt = draw_data->chg_length;
|
|
5326 xim_back_delete(bs_cnt);
|
|
5327 preedit_buf_len -= bs_cnt;
|
|
5328 }
|
|
5329 if (text != NULL)
|
|
5330 {
|
|
5331 int len;
|
|
5332 #ifdef FEAT_MBYTE
|
|
5333 char_u *buf = NULL;
|
|
5334 unsigned int nfeedback = 0;
|
|
5335 #endif
|
|
5336 char_u *ptr;
|
|
5337
|
|
5338 src = text->string.multi_byte;
|
|
5339 if (src != NULL && !text->encoding_is_wchar)
|
|
5340 {
|
|
5341 len = strlen(src);
|
|
5342 ptr = (char_u *)src;
|
|
5343 /* Avoid the enter for decision */
|
|
5344 if (*ptr == '\n')
|
|
5345 return;
|
|
5346
|
|
5347 #ifdef FEAT_MBYTE
|
|
5348 if (input_conv.vc_type != CONV_NONE
|
|
5349 && (buf = string_convert(&input_conv,
|
|
5350 (char_u *)src, &len)) != NULL)
|
|
5351 {
|
|
5352 /* Converted from 'termencoding' to 'encoding'. */
|
|
5353 add_to_input_buf_csi(buf, len);
|
|
5354 ptr = buf;
|
|
5355 }
|
|
5356 else
|
|
5357 #endif
|
|
5358 add_to_input_buf_csi((char_u *)src, len);
|
|
5359 /* Add count of character to preedit_buf_len */
|
|
5360 while (*ptr != NUL)
|
|
5361 {
|
|
5362 #ifdef FEAT_MBYTE
|
|
5363 if (draw_data->text->feedback != NULL)
|
|
5364 {
|
|
5365 if (draw_feedback == NULL)
|
|
5366 draw_feedback = (char *)alloc(draw_data->chg_first
|
|
5367 + text->length);
|
|
5368 else
|
|
5369 draw_feedback = realloc(draw_feedback,
|
|
5370 draw_data->chg_first + text->length);
|
|
5371 if (draw_feedback != NULL)
|
|
5372 {
|
|
5373 draw_feedback[nfeedback + draw_data->chg_first]
|
|
5374 = draw_data->text->feedback[nfeedback];
|
|
5375 nfeedback++;
|
|
5376 }
|
|
5377 }
|
|
5378 if (has_mbyte)
|
474
|
5379 ptr += (*mb_ptr2len)(ptr);
|
7
|
5380 else
|
|
5381 #endif
|
|
5382 ptr++;
|
|
5383 preedit_buf_len++;
|
|
5384 }
|
|
5385 #ifdef FEAT_MBYTE
|
|
5386 vim_free(buf);
|
|
5387 #endif
|
|
5388 preedit_end_col = MAXCOL;
|
|
5389 }
|
|
5390 }
|
|
5391 if (text != NULL || draw_data->chg_length > 0)
|
|
5392 {
|
|
5393 event_queue = key_press_event_queue;
|
|
5394 processing_queued_event = TRUE;
|
|
5395 while (event_queue != NULL && processing_queued_event)
|
|
5396 {
|
|
5397 GdkEvent *ev = event_queue->data;
|
|
5398
|
|
5399 gboolean *ret;
|
|
5400 gtk_signal_emit_by_name((GtkObject*)gui.mainwin, "key_press_event",
|
|
5401 ev, &ret);
|
|
5402 gdk_event_free(ev);
|
|
5403 event_queue = event_queue->next;
|
|
5404 }
|
|
5405 processing_queued_event = FALSE;
|
|
5406 if (key_press_event_queue)
|
|
5407 {
|
|
5408 g_slist_free(key_press_event_queue);
|
|
5409 key_press_event_queue = NULL;
|
|
5410 }
|
|
5411 }
|
|
5412 if (gtk_main_level() > 0)
|
|
5413 gtk_main_quit();
|
|
5414 }
|
|
5415
|
|
5416 /*
|
|
5417 * Retrieve the highlighting attributes at column col in the preedit string.
|
|
5418 * Return -1 if not in preediting mode or if col is out of range.
|
|
5419 */
|
|
5420 int
|
|
5421 im_get_feedback_attr(int col)
|
|
5422 {
|
|
5423 if (draw_feedback != NULL && col < preedit_buf_len)
|
|
5424 {
|
|
5425 if (draw_feedback[col] & XIMReverse)
|
|
5426 return HL_INVERSE;
|
|
5427 else if (draw_feedback[col] & XIMUnderline)
|
|
5428 return HL_UNDERLINE;
|
|
5429 else
|
|
5430 return hl_attr(HLF_V);
|
|
5431 }
|
|
5432
|
|
5433 return -1;
|
|
5434 }
|
|
5435
|
|
5436 /*ARGSUSED*/
|
|
5437 static void
|
|
5438 preedit_caret_cbproc(XIC xic, XPointer client_data, XPointer call_data)
|
|
5439 {
|
|
5440 #ifdef XIM_DEBUG
|
|
5441 xim_log("preedit_caret_cbproc()\n");
|
|
5442 #endif
|
|
5443 }
|
|
5444
|
|
5445 /*ARGSUSED*/
|
|
5446 static void
|
|
5447 preedit_done_cbproc(XIC xic, XPointer client_data, XPointer call_data)
|
|
5448 {
|
|
5449 #ifdef XIM_DEBUG
|
|
5450 xim_log("preedit_done_cbproc()\n");
|
|
5451 #endif
|
|
5452
|
|
5453 vim_free(draw_feedback);
|
|
5454 draw_feedback = NULL;
|
|
5455 xim_can_preediting = FALSE;
|
|
5456 xim_has_preediting = FALSE;
|
|
5457 gui_update_cursor(TRUE, FALSE);
|
|
5458 if (showmode() > 0)
|
|
5459 {
|
|
5460 setcursor();
|
|
5461 out_flush();
|
|
5462 }
|
|
5463 }
|
|
5464
|
|
5465 void
|
|
5466 xim_reset(void)
|
|
5467 {
|
|
5468 char *text;
|
|
5469
|
|
5470 #ifdef XIM_DEBUG
|
|
5471 xim_log("xim_reset()\n");
|
|
5472 #endif
|
|
5473
|
|
5474 if (xic != NULL)
|
|
5475 {
|
|
5476 text = XmbResetIC(((GdkICPrivate *)xic)->xic);
|
|
5477 if (text != NULL && !(xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS))
|
|
5478 add_to_input_buf_csi((char_u *)text, strlen(text));
|
|
5479 else
|
|
5480 preedit_buf_len = 0;
|
|
5481 if (text != NULL)
|
|
5482 XFree(text);
|
|
5483 }
|
|
5484 }
|
|
5485
|
|
5486 /*ARGSUSED*/
|
|
5487 int
|
|
5488 xim_queue_key_press_event(GdkEventKey *event, int down)
|
|
5489 {
|
|
5490 #ifdef XIM_DEBUG
|
|
5491 xim_log("xim_queue_key_press_event()\n");
|
|
5492 #endif
|
|
5493
|
|
5494 if (preedit_buf_len <= 0)
|
|
5495 return FALSE;
|
|
5496 if (processing_queued_event)
|
|
5497 processing_queued_event = FALSE;
|
|
5498
|
|
5499 key_press_event_queue = g_slist_append(key_press_event_queue,
|
|
5500 gdk_event_copy((GdkEvent *)event));
|
|
5501 return TRUE;
|
|
5502 }
|
|
5503
|
|
5504 /*ARGSUSED*/
|
|
5505 static void
|
|
5506 preedit_callback_setup(GdkIC *ic)
|
|
5507 {
|
|
5508 XIC xxic;
|
|
5509 XVaNestedList preedit_attr;
|
|
5510 XIMCallback preedit_start_cb;
|
|
5511 XIMCallback preedit_draw_cb;
|
|
5512 XIMCallback preedit_caret_cb;
|
|
5513 XIMCallback preedit_done_cb;
|
|
5514
|
|
5515 xxic = ((GdkICPrivate*)xic)->xic;
|
|
5516 preedit_start_cb.callback = (XIMProc)preedit_start_cbproc;
|
|
5517 preedit_draw_cb.callback = (XIMProc)preedit_draw_cbproc;
|
|
5518 preedit_caret_cb.callback = (XIMProc)preedit_caret_cbproc;
|
|
5519 preedit_done_cb.callback = (XIMProc)preedit_done_cbproc;
|
|
5520 preedit_attr
|
|
5521 = XVaCreateNestedList (0,
|
|
5522 XNPreeditStartCallback, &preedit_start_cb,
|
|
5523 XNPreeditDrawCallback, &preedit_draw_cb,
|
|
5524 XNPreeditCaretCallback, &preedit_caret_cb,
|
|
5525 XNPreeditDoneCallback, &preedit_done_cb,
|
|
5526 0);
|
|
5527 XSetICValues (xxic, XNPreeditAttributes, preedit_attr, 0);
|
|
5528 XFree(preedit_attr);
|
|
5529 }
|
|
5530
|
|
5531 /*ARGSUSED*/
|
|
5532 static void
|
|
5533 reset_state_setup(GdkIC *ic)
|
|
5534 {
|
|
5535 #ifdef USE_X11R6_XIM
|
|
5536 /* don't change the input context when we call reset */
|
|
5537 XSetICValues(((GdkICPrivate*)ic)->xic, XNResetState, XIMPreserveState, 0);
|
|
5538 #endif
|
|
5539 }
|
|
5540
|
|
5541 void
|
|
5542 xim_init(void)
|
|
5543 {
|
|
5544 #ifdef XIM_DEBUG
|
|
5545 xim_log("xim_init()\n");
|
|
5546 #endif
|
|
5547
|
|
5548 xic = NULL;
|
|
5549 xic_attr = NULL;
|
|
5550
|
|
5551 if (!gdk_im_ready())
|
|
5552 {
|
|
5553 if (p_verbose > 0)
|
292
|
5554 {
|
|
5555 verbose_enter();
|
7
|
5556 EMSG(_("E292: Input Method Server is not running"));
|
292
|
5557 verbose_leave();
|
|
5558 }
|
7
|
5559 return;
|
|
5560 }
|
|
5561 if ((xic_attr = gdk_ic_attr_new()) != NULL)
|
|
5562 {
|
|
5563 #ifdef FEAT_XFONTSET
|
|
5564 gint width, height;
|
|
5565 #endif
|
|
5566 int mask;
|
|
5567 GdkColormap *colormap;
|
|
5568 GdkICAttr *attr = xic_attr;
|
|
5569 int attrmask = (int)GDK_IC_ALL_REQ;
|
|
5570 GtkWidget *widget = gui.drawarea;
|
|
5571
|
|
5572 attr->style = (GdkIMStyle)xim_input_style;
|
|
5573 attr->client_window = gui.mainwin->window;
|
|
5574
|
|
5575 if ((colormap = gtk_widget_get_colormap(widget)) !=
|
|
5576 gtk_widget_get_default_colormap())
|
|
5577 {
|
|
5578 attrmask |= (int)GDK_IC_PREEDIT_COLORMAP;
|
|
5579 attr->preedit_colormap = colormap;
|
|
5580 }
|
|
5581 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
|
|
5582 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
|
|
5583 attr->preedit_foreground = widget->style->fg[GTK_STATE_NORMAL];
|
|
5584 attr->preedit_background = widget->style->base[GTK_STATE_NORMAL];
|
|
5585
|
|
5586 #ifdef FEAT_XFONTSET
|
|
5587 if ((xim_input_style & (int)GDK_IM_PREEDIT_MASK)
|
|
5588 == (int)GDK_IM_PREEDIT_POSITION)
|
|
5589 {
|
|
5590 if (gui.fontset == NOFONTSET
|
|
5591 || gui.fontset->type != GDK_FONT_FONTSET)
|
|
5592 {
|
|
5593 EMSG(_(e_overthespot));
|
|
5594 }
|
|
5595 else
|
|
5596 {
|
|
5597 gdk_window_get_size(widget->window, &width, &height);
|
|
5598
|
|
5599 attrmask |= (int)GDK_IC_PREEDIT_POSITION_REQ;
|
|
5600 attr->spot_location.x = TEXT_X(0);
|
|
5601 attr->spot_location.y = TEXT_Y(0);
|
|
5602 attr->preedit_area.x = gui.border_offset;
|
|
5603 attr->preedit_area.y = gui.border_offset;
|
|
5604 attr->preedit_area.width = width - 2*gui.border_offset;
|
|
5605 attr->preedit_area.height = height - 2*gui.border_offset;
|
|
5606 attr->preedit_fontset = gui.fontset;
|
|
5607 }
|
|
5608 }
|
|
5609
|
|
5610 if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
|
|
5611 == (int)GDK_IM_STATUS_AREA)
|
|
5612 {
|
|
5613 if (gui.fontset == NOFONTSET
|
|
5614 || gui.fontset->type != GDK_FONT_FONTSET)
|
|
5615 {
|
|
5616 EMSG(_(e_overthespot));
|
|
5617 }
|
|
5618 else
|
|
5619 {
|
|
5620 gdk_window_get_size(gui.mainwin->window, &width, &height);
|
|
5621 attrmask |= (int)GDK_IC_STATUS_AREA_REQ;
|
|
5622 attr->status_area.x = 0;
|
|
5623 attr->status_area.y = height - gui.char_height - 1;
|
|
5624 attr->status_area.width = width;
|
|
5625 attr->status_area.height = gui.char_height;
|
|
5626 attr->status_fontset = gui.fontset;
|
|
5627 }
|
|
5628 }
|
|
5629 else if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
|
|
5630 == (int)GDK_IM_STATUS_CALLBACKS)
|
|
5631 {
|
|
5632 /* FIXME */
|
|
5633 }
|
|
5634 #endif
|
|
5635
|
|
5636 xic = gdk_ic_new(attr, (GdkICAttributesType)attrmask);
|
|
5637
|
|
5638 if (xic == NULL)
|
|
5639 EMSG(_(e_xim));
|
|
5640 else
|
|
5641 {
|
|
5642 mask = (int)gdk_window_get_events(widget->window);
|
|
5643 mask |= (int)gdk_ic_get_events(xic);
|
|
5644 gdk_window_set_events(widget->window, (GdkEventMask)mask);
|
|
5645 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
|
|
5646 preedit_callback_setup(xic);
|
|
5647 reset_state_setup(xic);
|
|
5648 }
|
|
5649 }
|
|
5650 }
|
|
5651
|
|
5652 void
|
|
5653 im_shutdown(void)
|
|
5654 {
|
|
5655 #ifdef XIM_DEBUG
|
|
5656 xim_log("im_shutdown()\n");
|
|
5657 #endif
|
|
5658
|
|
5659 if (xic != NULL)
|
|
5660 {
|
|
5661 gdk_im_end();
|
|
5662 gdk_ic_destroy(xic);
|
|
5663 xic = NULL;
|
|
5664 }
|
|
5665 xim_is_active = FALSE;
|
|
5666 xim_can_preediting = FALSE;
|
|
5667 preedit_start_col = MAXCOL;
|
|
5668 xim_has_preediting = FALSE;
|
|
5669 }
|
|
5670
|
|
5671 #endif /* FEAT_GUI_GTK */
|
|
5672
|
|
5673 int
|
|
5674 xim_get_status_area_height()
|
|
5675 {
|
|
5676 #ifdef FEAT_GUI_GTK
|
|
5677 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
|
|
5678 return gui.char_height;
|
129
|
5679 #else
|
7
|
5680 if (status_area_enabled)
|
|
5681 return gui.char_height;
|
|
5682 #endif
|
|
5683 return 0;
|
|
5684 }
|
|
5685
|
|
5686 /*
|
|
5687 * Get IM status. When IM is on, return TRUE. Else return FALSE.
|
|
5688 * FIXME: This doesn't work correctly: Having focus doesn't always mean XIM is
|
|
5689 * active, when not having focus XIM may still be active (e.g., when using a
|
|
5690 * tear-off menu item).
|
|
5691 */
|
|
5692 int
|
|
5693 im_get_status()
|
|
5694 {
|
|
5695 # ifdef FEAT_GUI_GTK
|
|
5696 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
|
|
5697 return xim_can_preediting;
|
|
5698 # endif
|
|
5699 return xim_has_focus;
|
|
5700 }
|
|
5701
|
|
5702 # endif /* !HAVE_GTK2 */
|
|
5703
|
|
5704 # if defined(FEAT_GUI_GTK) || defined(PROTO)
|
|
5705 int
|
|
5706 im_is_preediting()
|
|
5707 {
|
|
5708 return xim_has_preediting;
|
|
5709 }
|
|
5710 # endif
|
|
5711 #endif /* FEAT_XIM */
|
|
5712
|
|
5713 #if defined(FEAT_MBYTE) || defined(PROTO)
|
|
5714
|
|
5715 /*
|
|
5716 * Setup "vcp" for conversion from "from" to "to".
|
|
5717 * The names must have been made canonical with enc_canonize().
|
|
5718 * vcp->vc_type must have been initialized to CONV_NONE.
|
|
5719 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
|
|
5720 * instead).
|
|
5721 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
|
|
5722 * Return FAIL when conversion is not supported, OK otherwise.
|
|
5723 */
|
|
5724 int
|
|
5725 convert_setup(vcp, from, to)
|
|
5726 vimconv_T *vcp;
|
|
5727 char_u *from;
|
|
5728 char_u *to;
|
|
5729 {
|
|
5730 int from_prop;
|
|
5731 int to_prop;
|
|
5732
|
|
5733 /* Reset to no conversion. */
|
|
5734 # ifdef USE_ICONV
|
|
5735 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
|
|
5736 iconv_close(vcp->vc_fd);
|
|
5737 # endif
|
|
5738 vcp->vc_type = CONV_NONE;
|
|
5739 vcp->vc_factor = 1;
|
|
5740 vcp->vc_fail = FALSE;
|
|
5741
|
|
5742 /* No conversion when one of the names is empty or they are equal. */
|
|
5743 if (from == NULL || *from == NUL || to == NULL || *to == NUL
|
|
5744 || STRCMP(from, to) == 0)
|
|
5745 return OK;
|
|
5746
|
|
5747 from_prop = enc_canon_props(from);
|
|
5748 to_prop = enc_canon_props(to);
|
|
5749 if ((from_prop & ENC_LATIN1) && (to_prop & ENC_UNICODE))
|
|
5750 {
|
|
5751 /* Internal latin1 -> utf-8 conversion. */
|
|
5752 vcp->vc_type = CONV_TO_UTF8;
|
|
5753 vcp->vc_factor = 2; /* up to twice as long */
|
|
5754 }
|
26
|
5755 else if ((from_prop & ENC_LATIN9) && (to_prop & ENC_UNICODE))
|
|
5756 {
|
|
5757 /* Internal latin9 -> utf-8 conversion. */
|
|
5758 vcp->vc_type = CONV_9_TO_UTF8;
|
|
5759 vcp->vc_factor = 3; /* up to three as long (euro sign) */
|
|
5760 }
|
7
|
5761 else if ((from_prop & ENC_UNICODE) && (to_prop & ENC_LATIN1))
|
|
5762 {
|
|
5763 /* Internal utf-8 -> latin1 conversion. */
|
|
5764 vcp->vc_type = CONV_TO_LATIN1;
|
|
5765 }
|
26
|
5766 else if ((from_prop & ENC_UNICODE) && (to_prop & ENC_LATIN9))
|
|
5767 {
|
|
5768 /* Internal utf-8 -> latin9 conversion. */
|
|
5769 vcp->vc_type = CONV_TO_LATIN9;
|
|
5770 }
|
7
|
5771 #ifdef WIN3264
|
|
5772 /* Win32-specific codepage <-> codepage conversion without iconv. */
|
|
5773 else if (((from_prop & ENC_UNICODE) || encname2codepage(from) > 0)
|
|
5774 && ((to_prop & ENC_UNICODE) || encname2codepage(to) > 0))
|
|
5775 {
|
|
5776 vcp->vc_type = CONV_CODEPAGE;
|
|
5777 vcp->vc_factor = 2; /* up to twice as long */
|
|
5778 vcp->vc_cpfrom = (from_prop & ENC_UNICODE) ? 0 : encname2codepage(from);
|
|
5779 vcp->vc_cpto = (to_prop & ENC_UNICODE) ? 0 : encname2codepage(to);
|
|
5780 }
|
|
5781 #endif
|
|
5782 #ifdef MACOS_X
|
|
5783 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
|
|
5784 {
|
|
5785 vcp->vc_type = CONV_MAC_LATIN1;
|
|
5786 }
|
|
5787 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_UNICODE))
|
|
5788 {
|
|
5789 vcp->vc_type = CONV_MAC_UTF8;
|
|
5790 vcp->vc_factor = 2; /* up to twice as long */
|
|
5791 }
|
|
5792 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
|
|
5793 {
|
|
5794 vcp->vc_type = CONV_LATIN1_MAC;
|
|
5795 }
|
|
5796 else if ((from_prop & ENC_UNICODE) && (to_prop & ENC_MACROMAN))
|
|
5797 {
|
|
5798 vcp->vc_type = CONV_UTF8_MAC;
|
|
5799 }
|
|
5800 #endif
|
|
5801 # ifdef USE_ICONV
|
|
5802 else
|
|
5803 {
|
|
5804 /* Use iconv() for conversion. */
|
|
5805 vcp->vc_fd = (iconv_t)my_iconv_open(
|
|
5806 (to_prop & ENC_UNICODE) ? (char_u *)"utf-8" : to,
|
|
5807 (from_prop & ENC_UNICODE) ? (char_u *)"utf-8" : from);
|
|
5808 if (vcp->vc_fd != (iconv_t)-1)
|
|
5809 {
|
|
5810 vcp->vc_type = CONV_ICONV;
|
|
5811 vcp->vc_factor = 4; /* could be longer too... */
|
|
5812 }
|
|
5813 }
|
|
5814 # endif
|
|
5815 if (vcp->vc_type == CONV_NONE)
|
|
5816 return FAIL;
|
167
|
5817
|
7
|
5818 return OK;
|
|
5819 }
|
|
5820
|
|
5821 #if defined(FEAT_GUI) || defined(AMIGA) || defined(WIN3264) \
|
|
5822 || defined(MSDOS) || defined(PROTO)
|
|
5823 /*
|
|
5824 * Do conversion on typed input characters in-place.
|
|
5825 * The input and output are not NUL terminated!
|
|
5826 * Returns the length after conversion.
|
|
5827 */
|
|
5828 int
|
|
5829 convert_input(ptr, len, maxlen)
|
|
5830 char_u *ptr;
|
|
5831 int len;
|
|
5832 int maxlen;
|
|
5833 {
|
|
5834 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
|
|
5835 }
|
|
5836 #endif
|
|
5837
|
|
5838 /*
|
|
5839 * Like convert_input(), but when there is an incomplete byte sequence at the
|
|
5840 * end return that as an allocated string in "restp" and set "*restlenp" to
|
|
5841 * the length. If "restp" is NULL it is not used.
|
|
5842 */
|
|
5843 int
|
|
5844 convert_input_safe(ptr, len, maxlen, restp, restlenp)
|
|
5845 char_u *ptr;
|
|
5846 int len;
|
|
5847 int maxlen;
|
|
5848 char_u **restp;
|
|
5849 int *restlenp;
|
|
5850 {
|
|
5851 char_u *d;
|
|
5852 int dlen = len;
|
|
5853 int unconvertlen = 0;
|
|
5854
|
|
5855 d = string_convert_ext(&input_conv, ptr, &dlen,
|
|
5856 restp == NULL ? NULL : &unconvertlen);
|
|
5857 if (d != NULL)
|
|
5858 {
|
|
5859 if (dlen <= maxlen)
|
|
5860 {
|
|
5861 if (unconvertlen > 0)
|
|
5862 {
|
|
5863 /* Move the unconverted characters to allocated memory. */
|
|
5864 *restp = alloc(unconvertlen);
|
|
5865 if (*restp != NULL)
|
|
5866 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
|
|
5867 *restlenp = unconvertlen;
|
|
5868 }
|
|
5869 mch_memmove(ptr, d, dlen);
|
|
5870 }
|
|
5871 else
|
|
5872 /* result is too long, keep the unconverted text (the caller must
|
|
5873 * have done something wrong!) */
|
|
5874 dlen = len;
|
|
5875 vim_free(d);
|
|
5876 }
|
|
5877 return dlen;
|
|
5878 }
|
|
5879
|
|
5880 /*
|
|
5881 * Convert text "ptr[*lenp]" according to "vcp".
|
|
5882 * Returns the result in allocated memory and sets "*lenp".
|
|
5883 * When "lenp" is NULL, use NUL terminated strings.
|
|
5884 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
|
|
5885 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
|
|
5886 */
|
|
5887 char_u *
|
|
5888 string_convert(vcp, ptr, lenp)
|
|
5889 vimconv_T *vcp;
|
|
5890 char_u *ptr;
|
|
5891 int *lenp;
|
|
5892 {
|
|
5893 return string_convert_ext(vcp, ptr, lenp, NULL);
|
|
5894 }
|
|
5895
|
|
5896 /*
|
|
5897 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
|
|
5898 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
|
|
5899 * set to the number of remaining bytes.
|
|
5900 */
|
|
5901 char_u *
|
|
5902 string_convert_ext(vcp, ptr, lenp, unconvlenp)
|
|
5903 vimconv_T *vcp;
|
|
5904 char_u *ptr;
|
|
5905 int *lenp;
|
|
5906 int *unconvlenp;
|
|
5907 {
|
|
5908 char_u *retval = NULL;
|
|
5909 char_u *d;
|
|
5910 int len;
|
|
5911 int i;
|
|
5912 int l;
|
|
5913 int c;
|
|
5914
|
|
5915 if (lenp == NULL)
|
|
5916 len = (int)STRLEN(ptr);
|
|
5917 else
|
|
5918 len = *lenp;
|
|
5919 if (len == 0)
|
|
5920 return vim_strsave((char_u *)"");
|
|
5921
|
|
5922 switch (vcp->vc_type)
|
|
5923 {
|
|
5924 case CONV_TO_UTF8: /* latin1 to utf-8 conversion */
|
|
5925 retval = alloc(len * 2 + 1);
|
|
5926 if (retval == NULL)
|
|
5927 break;
|
|
5928 d = retval;
|
|
5929 for (i = 0; i < len; ++i)
|
|
5930 {
|
26
|
5931 c = ptr[i];
|
|
5932 if (c < 0x80)
|
|
5933 *d++ = c;
|
7
|
5934 else
|
|
5935 {
|
26
|
5936 *d++ = 0xc0 + ((unsigned)c >> 6);
|
|
5937 *d++ = 0x80 + (c & 0x3f);
|
7
|
5938 }
|
|
5939 }
|
|
5940 *d = NUL;
|
|
5941 if (lenp != NULL)
|
|
5942 *lenp = (int)(d - retval);
|
|
5943 break;
|
|
5944
|
26
|
5945 case CONV_9_TO_UTF8: /* latin9 to utf-8 conversion */
|
|
5946 retval = alloc(len * 3 + 1);
|
|
5947 if (retval == NULL)
|
|
5948 break;
|
|
5949 d = retval;
|
|
5950 for (i = 0; i < len; ++i)
|
|
5951 {
|
|
5952 c = ptr[i];
|
|
5953 switch (c)
|
|
5954 {
|
|
5955 case 0xa4: c = 0x20ac; break; /* euro */
|
|
5956 case 0xa6: c = 0x0160; break; /* S hat */
|
|
5957 case 0xa8: c = 0x0161; break; /* S -hat */
|
|
5958 case 0xb4: c = 0x017d; break; /* Z hat */
|
|
5959 case 0xb8: c = 0x017e; break; /* Z -hat */
|
|
5960 case 0xbc: c = 0x0152; break; /* OE */
|
|
5961 case 0xbd: c = 0x0153; break; /* oe */
|
|
5962 case 0xbe: c = 0x0178; break; /* Y */
|
|
5963 }
|
|
5964 d += utf_char2bytes(c, d);
|
|
5965 }
|
|
5966 *d = NUL;
|
|
5967 if (lenp != NULL)
|
|
5968 *lenp = (int)(d - retval);
|
|
5969 break;
|
|
5970
|
7
|
5971 case CONV_TO_LATIN1: /* utf-8 to latin1 conversion */
|
26
|
5972 case CONV_TO_LATIN9: /* utf-8 to latin9 conversion */
|
7
|
5973 retval = alloc(len + 1);
|
|
5974 if (retval == NULL)
|
|
5975 break;
|
|
5976 d = retval;
|
|
5977 for (i = 0; i < len; ++i)
|
|
5978 {
|
474
|
5979 l = utf_ptr2len(ptr + i);
|
7
|
5980 if (l == 0)
|
|
5981 *d++ = NUL;
|
|
5982 else if (l == 1)
|
|
5983 {
|
|
5984 if (unconvlenp != NULL && utf8len_tab[ptr[i]] > len - i)
|
|
5985 {
|
|
5986 /* Incomplete sequence at the end. */
|
|
5987 *unconvlenp = len - i;
|
|
5988 break;
|
|
5989 }
|
|
5990 *d++ = ptr[i];
|
|
5991 }
|
|
5992 else
|
|
5993 {
|
|
5994 c = utf_ptr2char(ptr + i);
|
26
|
5995 if (vcp->vc_type == CONV_TO_LATIN9)
|
|
5996 switch (c)
|
|
5997 {
|
|
5998 case 0x20ac: c = 0xa4; break; /* euro */
|
|
5999 case 0x0160: c = 0xa6; break; /* S hat */
|
|
6000 case 0x0161: c = 0xa8; break; /* S -hat */
|
|
6001 case 0x017d: c = 0xb4; break; /* Z hat */
|
|
6002 case 0x017e: c = 0xb8; break; /* Z -hat */
|
|
6003 case 0x0152: c = 0xbc; break; /* OE */
|
|
6004 case 0x0153: c = 0xbd; break; /* oe */
|
|
6005 case 0x0178: c = 0xbe; break; /* Y */
|
|
6006 case 0xa4:
|
|
6007 case 0xa6:
|
|
6008 case 0xa8:
|
|
6009 case 0xb4:
|
|
6010 case 0xb8:
|
|
6011 case 0xbc:
|
|
6012 case 0xbd:
|
|
6013 case 0xbe: c = 0x100; break; /* not in latin9 */
|
|
6014 }
|
7
|
6015 if (!utf_iscomposing(c)) /* skip composing chars */
|
|
6016 {
|
|
6017 if (c < 0x100)
|
|
6018 *d++ = c;
|
|
6019 else if (vcp->vc_fail)
|
|
6020 {
|
|
6021 vim_free(retval);
|
|
6022 return NULL;
|
|
6023 }
|
|
6024 else
|
|
6025 {
|
|
6026 *d++ = 0xbf;
|
|
6027 if (utf_char2cells(c) > 1)
|
|
6028 *d++ = '?';
|
|
6029 }
|
|
6030 }
|
|
6031 i += l - 1;
|
|
6032 }
|
|
6033 }
|
|
6034 *d = NUL;
|
|
6035 if (lenp != NULL)
|
|
6036 *lenp = (int)(d - retval);
|
|
6037 break;
|
|
6038
|
765
|
6039 # ifdef MACOS_CONVERT
|
7
|
6040 case CONV_MAC_LATIN1:
|
|
6041 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
|
18
|
6042 'm', 'l', unconvlenp);
|
7
|
6043 break;
|
|
6044
|
|
6045 case CONV_LATIN1_MAC:
|
|
6046 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
|
18
|
6047 'l', 'm', unconvlenp);
|
7
|
6048 break;
|
|
6049
|
|
6050 case CONV_MAC_UTF8:
|
|
6051 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
|
18
|
6052 'm', 'u', unconvlenp);
|
7
|
6053 break;
|
|
6054
|
|
6055 case CONV_UTF8_MAC:
|
|
6056 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
|
18
|
6057 'u', 'm', unconvlenp);
|
7
|
6058 break;
|
|
6059 # endif
|
|
6060
|
|
6061 # ifdef USE_ICONV
|
|
6062 case CONV_ICONV: /* conversion with output_conv.vc_fd */
|
|
6063 retval = iconv_string(vcp, ptr, len, unconvlenp);
|
|
6064 if (retval != NULL && lenp != NULL)
|
|
6065 *lenp = (int)STRLEN(retval);
|
|
6066 break;
|
|
6067 # endif
|
|
6068 # ifdef WIN3264
|
|
6069 case CONV_CODEPAGE: /* codepage -> codepage */
|
|
6070 {
|
|
6071 int retlen;
|
|
6072 int tmp_len;
|
|
6073 short_u *tmp;
|
|
6074
|
|
6075 /* 1. codepage/UTF-8 -> ucs-2. */
|
|
6076 if (vcp->vc_cpfrom == 0)
|
|
6077 tmp_len = utf8_to_ucs2(ptr, len, NULL, NULL);
|
|
6078 else
|
|
6079 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom, 0,
|
|
6080 ptr, len, 0, 0);
|
|
6081 tmp = (short_u *)alloc(sizeof(short_u) * tmp_len);
|
|
6082 if (tmp == NULL)
|
|
6083 break;
|
|
6084 if (vcp->vc_cpfrom == 0)
|
|
6085 utf8_to_ucs2(ptr, len, tmp, unconvlenp);
|
|
6086 else
|
|
6087 MultiByteToWideChar(vcp->vc_cpfrom, 0, ptr, len, tmp, tmp_len);
|
|
6088
|
|
6089 /* 2. ucs-2 -> codepage/UTF-8. */
|
|
6090 if (vcp->vc_cpto == 0)
|
|
6091 retlen = ucs2_to_utf8(tmp, tmp_len, NULL);
|
|
6092 else
|
|
6093 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
|
|
6094 tmp, tmp_len, 0, 0, 0, 0);
|
|
6095 retval = alloc(retlen + 1);
|
|
6096 if (retval != NULL)
|
|
6097 {
|
|
6098 if (vcp->vc_cpto == 0)
|
|
6099 ucs2_to_utf8(tmp, tmp_len, retval);
|
|
6100 else
|
|
6101 WideCharToMultiByte(vcp->vc_cpto, 0,
|
|
6102 tmp, tmp_len, retval, retlen, 0, 0);
|
|
6103 retval[retlen] = NUL;
|
|
6104 if (lenp != NULL)
|
|
6105 *lenp = retlen;
|
|
6106 }
|
|
6107 vim_free(tmp);
|
|
6108 break;
|
|
6109 }
|
|
6110 # endif
|
|
6111 }
|
|
6112
|
|
6113 return retval;
|
|
6114 }
|
|
6115 #endif
|