autoconf 2.64
[MacVim/KaoriYa.git] / src / mbyte.c
blob5b3a126bee1d795c65933fb238b460bcd6f137c4
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * Multibyte extensions partly by Sung-Hoon Baek
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 */
11 * mbyte.c: Code specifically for handling multi-byte characters.
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:
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.
39 * "has_mbyte" is set when "enc_dbcs" or "enc_utf8" is non-zero.
41 * If none of these is TRUE, 8-bit bytes are used for a character. The
42 * encoding isn't currently specified (TODO).
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:
48 * clipboard
49 * ^
50 * | (2)
51 * V
52 * +---------------+
53 * (1) | | (3)
54 * keyboard ----->| core |-----> display
55 * | |
56 * +---------------+
57 * ^
58 * | (4)
59 * V
60 * file
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'.
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"
80 #include "vim.h"
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
92 #if (defined(WIN3264) || defined(WIN32UNIX)) && !defined(__MINGW32__)
93 # include <winnls.h>
94 #endif
96 #ifdef FEAT_GUI_X11
97 # include <X11/Intrinsic.h>
98 #endif
99 #ifdef X_LOCALE
100 #include <X11/Xlocale.h>
101 #endif
103 #if defined(FEAT_GUI_GTK) && defined(FEAT_XIM) && defined(HAVE_GTK2)
104 # include <gdk/gdkkeysyms.h>
105 # ifdef WIN3264
106 # include <gdk/gdkwin32.h>
107 # else
108 # include <gdk/gdkx.h>
109 # endif
110 #endif
112 #ifdef HAVE_WCHAR_H
113 # include <wchar.h>
114 #endif
116 #if defined(FEAT_UIMFEP) || defined(PROTO)
117 static int uimfep_lastmode = 1;
118 static void uimfep_set_active __ARGS((int active));
119 static int uimfep_get_status __ARGS((void));
120 #endif
122 #if 0
123 /* This has been disabled, because several people reported problems with the
124 * wcwidth() and iswprint() library functions, esp. for Hebrew. */
125 # ifdef __STDC_ISO_10646__
126 # define USE_WCHAR_FUNCTIONS
127 # endif
128 #endif
130 #if defined(FEAT_MBYTE) || defined(PROTO)
132 static int enc_canon_search __ARGS((char_u *name));
133 static int dbcs_char2len __ARGS((int c));
134 static int dbcs_char2bytes __ARGS((int c, char_u *buf));
135 static int dbcs_ptr2len __ARGS((char_u *p));
136 static int dbcs_ptr2len_len __ARGS((char_u *p, int size));
137 static int utf_ptr2cells_len __ARGS((char_u *p, int size));
138 static int dbcs_char2cells __ARGS((int c));
139 static int dbcs_ptr2cells_len __ARGS((char_u *p, int size));
140 static int dbcs_ptr2char __ARGS((char_u *p));
142 /* Lookup table to quickly get the length in bytes of a UTF-8 character from
143 * the first byte of a UTF-8 string. Bytes which are illegal when used as the
144 * first byte have a one, because these will be used separately. */
145 static char utf8len_tab[256] =
147 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,
148 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,
149 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,
150 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,
151 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*/
152 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*/
153 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,
154 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,
158 * XIM often causes trouble. Define XIM_DEBUG to get a log of XIM callbacks
159 * in the "xim.log" file.
161 /* #define XIM_DEBUG */
162 #ifdef XIM_DEBUG
163 static void
164 xim_log(char *s, ...)
166 va_list arglist;
167 static FILE *fd = NULL;
169 if (fd == (FILE *)-1)
170 return;
171 if (fd == NULL)
173 fd = mch_fopen("xim.log", "w");
174 if (fd == NULL)
176 EMSG("Cannot open xim.log");
177 fd = (FILE *)-1;
178 return;
182 va_start(arglist, s);
183 vfprintf(fd, s, arglist);
184 va_end(arglist);
186 #endif
188 #endif
190 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
192 * Canonical encoding names and their properties.
193 * "iso-8859-n" is handled by enc_canonize() directly.
195 static struct
196 { char *name; int prop; int codepage;}
197 enc_canon_table[] =
199 #define IDX_LATIN_1 0
200 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
201 #define IDX_ISO_2 1
202 {"iso-8859-2", ENC_8BIT, 0},
203 #define IDX_ISO_3 2
204 {"iso-8859-3", ENC_8BIT, 0},
205 #define IDX_ISO_4 3
206 {"iso-8859-4", ENC_8BIT, 0},
207 #define IDX_ISO_5 4
208 {"iso-8859-5", ENC_8BIT, 0},
209 #define IDX_ISO_6 5
210 {"iso-8859-6", ENC_8BIT, 0},
211 #define IDX_ISO_7 6
212 {"iso-8859-7", ENC_8BIT, 0},
213 #define IDX_ISO_8 7
214 {"iso-8859-8", ENC_8BIT, 0},
215 #define IDX_ISO_9 8
216 {"iso-8859-9", ENC_8BIT, 0},
217 #define IDX_ISO_10 9
218 {"iso-8859-10", ENC_8BIT, 0},
219 #define IDX_ISO_11 10
220 {"iso-8859-11", ENC_8BIT, 0},
221 #define IDX_ISO_13 11
222 {"iso-8859-13", ENC_8BIT, 0},
223 #define IDX_ISO_14 12
224 {"iso-8859-14", ENC_8BIT, 0},
225 #define IDX_ISO_15 13
226 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
227 #define IDX_KOI8_R 14
228 {"koi8-r", ENC_8BIT, 0},
229 #define IDX_KOI8_U 15
230 {"koi8-u", ENC_8BIT, 0},
231 #define IDX_UTF8 16
232 {"utf-8", ENC_UNICODE, 0},
233 #define IDX_UCS2 17
234 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
235 #define IDX_UCS2LE 18
236 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
237 #define IDX_UTF16 19
238 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
239 #define IDX_UTF16LE 20
240 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
241 #define IDX_UCS4 21
242 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
243 #define IDX_UCS4LE 22
244 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
246 /* For debugging DBCS encoding on Unix. */
247 #define IDX_DEBUG 23
248 {"debug", ENC_DBCS, DBCS_DEBUG},
249 #define IDX_EUC_JP 24
250 {"euc-jp", ENC_DBCS, DBCS_JPNU},
251 #define IDX_SJIS 25
252 {"sjis", ENC_DBCS, DBCS_JPN},
253 #define IDX_EUC_KR 26
254 {"euc-kr", ENC_DBCS, DBCS_KORU},
255 #define IDX_EUC_CN 27
256 {"euc-cn", ENC_DBCS, DBCS_CHSU},
257 #define IDX_EUC_TW 28
258 {"euc-tw", ENC_DBCS, DBCS_CHTU},
259 #define IDX_BIG5 29
260 {"big5", ENC_DBCS, DBCS_CHT},
262 /* MS-DOS and MS-Windows codepages are included here, so that they can be
263 * used on Unix too. Most of them are similar to ISO-8859 encodings, but
264 * not exactly the same. */
265 #define IDX_CP437 30
266 {"cp437", ENC_8BIT, 437}, /* like iso-8859-1 */
267 #define IDX_CP737 31
268 {"cp737", ENC_8BIT, 737}, /* like iso-8859-7 */
269 #define IDX_CP775 32
270 {"cp775", ENC_8BIT, 775}, /* Baltic */
271 #define IDX_CP850 33
272 {"cp850", ENC_8BIT, 850}, /* like iso-8859-4 */
273 #define IDX_CP852 34
274 {"cp852", ENC_8BIT, 852}, /* like iso-8859-1 */
275 #define IDX_CP855 35
276 {"cp855", ENC_8BIT, 855}, /* like iso-8859-2 */
277 #define IDX_CP857 36
278 {"cp857", ENC_8BIT, 857}, /* like iso-8859-5 */
279 #define IDX_CP860 37
280 {"cp860", ENC_8BIT, 860}, /* like iso-8859-9 */
281 #define IDX_CP861 38
282 {"cp861", ENC_8BIT, 861}, /* like iso-8859-1 */
283 #define IDX_CP862 39
284 {"cp862", ENC_8BIT, 862}, /* like iso-8859-1 */
285 #define IDX_CP863 40
286 {"cp863", ENC_8BIT, 863}, /* like iso-8859-8 */
287 #define IDX_CP865 41
288 {"cp865", ENC_8BIT, 865}, /* like iso-8859-1 */
289 #define IDX_CP866 42
290 {"cp866", ENC_8BIT, 866}, /* like iso-8859-5 */
291 #define IDX_CP869 43
292 {"cp869", ENC_8BIT, 869}, /* like iso-8859-7 */
293 #define IDX_CP874 44
294 {"cp874", ENC_8BIT, 874}, /* Thai */
295 #define IDX_CP932 45
296 {"cp932", ENC_DBCS, DBCS_JPN},
297 #define IDX_CP936 46
298 {"cp936", ENC_DBCS, DBCS_CHS},
299 #define IDX_CP949 47
300 {"cp949", ENC_DBCS, DBCS_KOR},
301 #define IDX_CP950 48
302 {"cp950", ENC_DBCS, DBCS_CHT},
303 #define IDX_CP1250 49
304 {"cp1250", ENC_8BIT, 1250}, /* Czech, Polish, etc. */
305 #define IDX_CP1251 50
306 {"cp1251", ENC_8BIT, 1251}, /* Cyrillic */
307 /* cp1252 is considered to be equal to latin1 */
308 #define IDX_CP1253 51
309 {"cp1253", ENC_8BIT, 1253}, /* Greek */
310 #define IDX_CP1254 52
311 {"cp1254", ENC_8BIT, 1254}, /* Turkish */
312 #define IDX_CP1255 53
313 {"cp1255", ENC_8BIT, 1255}, /* Hebrew */
314 #define IDX_CP1256 54
315 {"cp1256", ENC_8BIT, 1256}, /* Arabic */
316 #define IDX_CP1257 55
317 {"cp1257", ENC_8BIT, 1257}, /* Baltic */
318 #define IDX_CP1258 56
319 {"cp1258", ENC_8BIT, 1258}, /* Vietnamese */
321 #define IDX_MACROMAN 57
322 {"macroman", ENC_8BIT + ENC_MACROMAN, 0}, /* Mac OS */
323 #define IDX_DECMCS 58
324 {"dec-mcs", ENC_8BIT, 0}, /* DEC MCS */
325 #define IDX_HPROMAN8 59
326 {"hp-roman8", ENC_8BIT, 0}, /* HP Roman8 */
327 #define IDX_COUNT 60
331 * Aliases for encoding names.
333 static struct
334 { char *name; int canon;}
335 enc_alias_table[] =
337 {"ansi", IDX_LATIN_1},
338 {"iso-8859-1", IDX_LATIN_1},
339 {"latin2", IDX_ISO_2},
340 {"latin3", IDX_ISO_3},
341 {"latin4", IDX_ISO_4},
342 {"cyrillic", IDX_ISO_5},
343 {"arabic", IDX_ISO_6},
344 {"greek", IDX_ISO_7},
345 #ifdef WIN3264
346 {"hebrew", IDX_CP1255},
347 #else
348 {"hebrew", IDX_ISO_8},
349 #endif
350 {"latin5", IDX_ISO_9},
351 {"turkish", IDX_ISO_9}, /* ? */
352 {"latin6", IDX_ISO_10},
353 {"nordic", IDX_ISO_10}, /* ? */
354 {"thai", IDX_ISO_11}, /* ? */
355 {"latin7", IDX_ISO_13},
356 {"latin8", IDX_ISO_14},
357 {"latin9", IDX_ISO_15},
358 {"utf8", IDX_UTF8},
359 {"unicode", IDX_UCS2},
360 {"ucs2", IDX_UCS2},
361 {"ucs2be", IDX_UCS2},
362 {"ucs-2be", IDX_UCS2},
363 {"ucs2le", IDX_UCS2LE},
364 {"utf16", IDX_UTF16},
365 {"utf16be", IDX_UTF16},
366 {"utf-16be", IDX_UTF16},
367 {"utf16le", IDX_UTF16LE},
368 {"ucs4", IDX_UCS4},
369 {"ucs4be", IDX_UCS4},
370 {"ucs-4be", IDX_UCS4},
371 {"ucs4le", IDX_UCS4LE},
372 {"utf32", IDX_UCS4},
373 {"utf-32", IDX_UCS4},
374 {"utf32be", IDX_UCS4},
375 {"utf-32be", IDX_UCS4},
376 {"utf32le", IDX_UCS4LE},
377 {"utf-32le", IDX_UCS4LE},
378 {"932", IDX_CP932},
379 {"949", IDX_CP949},
380 {"936", IDX_CP936},
381 {"gbk", IDX_CP936},
382 {"950", IDX_CP950},
383 {"eucjp", IDX_EUC_JP},
384 {"unix-jis", IDX_EUC_JP},
385 {"ujis", IDX_EUC_JP},
386 {"shift-jis", IDX_SJIS},
387 {"euckr", IDX_EUC_KR},
388 {"5601", IDX_EUC_KR}, /* Sun: KS C 5601 */
389 {"euccn", IDX_EUC_CN},
390 {"gb2312", IDX_EUC_CN},
391 {"euctw", IDX_EUC_TW},
392 #if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
393 {"japan", IDX_CP932},
394 {"korea", IDX_CP949},
395 {"prc", IDX_CP936},
396 {"chinese", IDX_CP936},
397 {"taiwan", IDX_CP950},
398 {"big5", IDX_CP950},
399 #else
400 {"japan", IDX_EUC_JP},
401 {"korea", IDX_EUC_KR},
402 {"prc", IDX_EUC_CN},
403 {"chinese", IDX_EUC_CN},
404 {"taiwan", IDX_EUC_TW},
405 {"cp950", IDX_BIG5},
406 {"950", IDX_BIG5},
407 #endif
408 {"mac", IDX_MACROMAN},
409 {"mac-roman", IDX_MACROMAN},
410 {NULL, 0}
413 #ifndef CP_UTF8
414 # define CP_UTF8 65001 /* magic number from winnls.h */
415 #endif
418 * Find encoding "name" in the list of canonical encoding names.
419 * Returns -1 if not found.
421 static int
422 enc_canon_search(name)
423 char_u *name;
425 int i;
427 for (i = 0; i < IDX_COUNT; ++i)
428 if (STRCMP(name, enc_canon_table[i].name) == 0)
429 return i;
430 return -1;
433 #endif
435 #if defined(FEAT_MBYTE) || defined(PROTO)
438 * Find canonical encoding "name" in the list and return its properties.
439 * Returns 0 if not found.
442 enc_canon_props(name)
443 char_u *name;
445 int i;
447 i = enc_canon_search(name);
448 if (i >= 0)
449 return enc_canon_table[i].prop;
450 #ifdef WIN3264
451 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
453 CPINFO cpinfo;
455 /* Get info on this codepage to find out what it is. */
456 if (GetCPInfo(atoi(name + 2), &cpinfo) != 0)
458 if (cpinfo.MaxCharSize == 1) /* some single-byte encoding */
459 return ENC_8BIT;
460 if (cpinfo.MaxCharSize == 2
461 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
462 /* must be a DBCS encoding */
463 return ENC_DBCS;
465 return 0;
467 #endif
468 if (STRNCMP(name, "2byte-", 6) == 0)
469 return ENC_DBCS;
470 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
471 return ENC_8BIT;
472 return 0;
476 * Set up for using multi-byte characters.
477 * Called in three cases:
478 * - by main() to initialize (p_enc == NULL)
479 * - by set_init_1() after 'encoding' was set to its default.
480 * - by do_set() when 'encoding' has been set.
481 * p_enc must have been passed through enc_canonize() already.
482 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
483 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
484 * When there is something wrong: Returns an error message and doesn't change
485 * anything.
487 char_u *
488 mb_init()
490 int i;
491 int idx;
492 int n;
493 int enc_dbcs_new = 0;
494 #if defined(USE_ICONV) && !defined(WIN3264) && !defined(WIN32UNIX) \
495 && !defined(MACOS)
496 # define LEN_FROM_CONV
497 vimconv_T vimconv;
498 char_u *p;
499 #endif
501 if (p_enc == NULL)
503 /* Just starting up: set the whole table to one's. */
504 for (i = 0; i < 256; ++i)
505 mb_bytelen_tab[i] = 1;
506 input_conv.vc_type = CONV_NONE;
507 input_conv.vc_factor = 1;
508 output_conv.vc_type = CONV_NONE;
509 return NULL;
512 #ifdef WIN3264
513 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
515 CPINFO cpinfo;
517 /* Get info on this codepage to find out what it is. */
518 if (GetCPInfo(atoi(p_enc + 2), &cpinfo) != 0)
520 if (cpinfo.MaxCharSize == 1)
522 /* some single-byte encoding */
523 enc_unicode = 0;
524 enc_utf8 = FALSE;
526 else if (cpinfo.MaxCharSize == 2
527 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
529 /* must be a DBCS encoding, check below */
530 enc_dbcs_new = atoi(p_enc + 2);
532 else
533 goto codepage_invalid;
535 else if (GetLastError() == ERROR_INVALID_PARAMETER)
537 codepage_invalid:
538 return (char_u *)N_("E543: Not a valid codepage");
541 #endif
542 else if (STRNCMP(p_enc, "8bit-", 5) == 0
543 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
545 /* Accept any "8bit-" or "iso-8859-" name. */
546 enc_unicode = 0;
547 enc_utf8 = FALSE;
549 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
551 #ifdef WIN3264
552 /* Windows: accept only valid codepage numbers, check below. */
553 if (p_enc[6] != 'c' || p_enc[7] != 'p'
554 || (enc_dbcs_new = atoi(p_enc + 8)) == 0)
555 return e_invarg;
556 #else
557 /* Unix: accept any "2byte-" name, assume current locale. */
558 enc_dbcs_new = DBCS_2BYTE;
559 #endif
561 else if ((idx = enc_canon_search(p_enc)) >= 0)
563 i = enc_canon_table[idx].prop;
564 if (i & ENC_UNICODE)
566 /* Unicode */
567 enc_utf8 = TRUE;
568 if (i & (ENC_2BYTE | ENC_2WORD))
569 enc_unicode = 2;
570 else if (i & ENC_4BYTE)
571 enc_unicode = 4;
572 else
573 enc_unicode = 0;
575 else if (i & ENC_DBCS)
577 /* 2byte, handle below */
578 enc_dbcs_new = enc_canon_table[idx].codepage;
580 else
582 /* Must be 8-bit. */
583 enc_unicode = 0;
584 enc_utf8 = FALSE;
587 else /* Don't know what encoding this is, reject it. */
588 return e_invarg;
590 if (enc_dbcs_new != 0)
592 #ifdef WIN3264
593 /* Check if the DBCS code page is OK. */
594 if (!IsValidCodePage(enc_dbcs_new))
595 goto codepage_invalid;
596 #endif
597 enc_unicode = 0;
598 enc_utf8 = FALSE;
600 enc_dbcs = enc_dbcs_new;
601 has_mbyte = (enc_dbcs != 0 || enc_utf8);
603 #ifdef WIN3264
604 enc_codepage = encname2codepage(p_enc);
605 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
606 #endif
608 /* Detect an encoding that uses latin1 characters. */
609 enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0
610 || STRCMP(p_enc, "iso-8859-15") == 0);
613 * Set the function pointers.
615 if (enc_utf8)
617 mb_ptr2len = utfc_ptr2len;
618 mb_ptr2len_len = utfc_ptr2len_len;
619 mb_char2len = utf_char2len;
620 mb_char2bytes = utf_char2bytes;
621 mb_ptr2cells = utf_ptr2cells;
622 mb_ptr2cells_len = utf_ptr2cells_len;
623 mb_char2cells = utf_char2cells;
624 mb_off2cells = utf_off2cells;
625 mb_ptr2char = utf_ptr2char;
626 mb_head_off = utf_head_off;
628 else if (enc_dbcs != 0)
630 mb_ptr2len = dbcs_ptr2len;
631 mb_ptr2len_len = dbcs_ptr2len_len;
632 mb_char2len = dbcs_char2len;
633 mb_char2bytes = dbcs_char2bytes;
634 mb_ptr2cells = dbcs_ptr2cells;
635 mb_ptr2cells_len = dbcs_ptr2cells_len;
636 mb_char2cells = dbcs_char2cells;
637 mb_off2cells = dbcs_off2cells;
638 mb_ptr2char = dbcs_ptr2char;
639 mb_head_off = dbcs_head_off;
641 else
643 mb_ptr2len = latin_ptr2len;
644 mb_ptr2len_len = latin_ptr2len_len;
645 mb_char2len = latin_char2len;
646 mb_char2bytes = latin_char2bytes;
647 mb_ptr2cells = latin_ptr2cells;
648 mb_ptr2cells_len = latin_ptr2cells_len;
649 mb_char2cells = latin_char2cells;
650 mb_off2cells = latin_off2cells;
651 mb_ptr2char = latin_ptr2char;
652 mb_head_off = latin_head_off;
656 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
658 #ifdef LEN_FROM_CONV
659 /* When 'encoding' is different from the current locale mblen() won't
660 * work. Use conversion to "utf-8" instead. */
661 vimconv.vc_type = CONV_NONE;
662 if (enc_dbcs)
664 p = enc_locale();
665 if (p == NULL || STRCMP(p, p_enc) != 0)
667 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
668 vimconv.vc_fail = TRUE;
670 vim_free(p);
672 #endif
674 for (i = 0; i < 256; ++i)
676 /* Our own function to reliably check the length of UTF-8 characters,
677 * independent of mblen(). */
678 if (enc_utf8)
679 n = utf8len_tab[i];
680 else if (enc_dbcs == 0)
681 n = 1;
682 else
684 #if defined(WIN3264) || defined(WIN32UNIX)
685 /* enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
686 * CodePage identifier, which we can pass directly in to Windows
687 * API */
688 n = IsDBCSLeadByteEx(enc_dbcs, (BYTE)i) ? 2 : 1;
689 #else
690 # if defined(MACOS) || defined(__amigaos4__)
692 * if mblen() is not available, character which MSB is turned on
693 * are treated as leading byte character. (note : This assumption
694 * is not always true.)
696 n = (i & 0x80) ? 2 : 1;
697 # else
698 char buf[MB_MAXBYTES];
699 # ifdef X_LOCALE
700 # ifndef mblen
701 # define mblen _Xmblen
702 # endif
703 # endif
704 if (i == NUL) /* just in case mblen() can't handle "" */
705 n = 1;
706 else
708 buf[0] = i;
709 buf[1] = 0;
710 #ifdef LEN_FROM_CONV
711 if (vimconv.vc_type != CONV_NONE)
714 * string_convert() should fail when converting the first
715 * byte of a double-byte character.
717 p = string_convert(&vimconv, (char_u *)buf, NULL);
718 if (p != NULL)
720 vim_free(p);
721 n = 1;
723 else
724 n = 2;
726 else
727 #endif
730 * mblen() should return -1 for invalid (means the leading
731 * multibyte) character. However there are some platforms
732 * where mblen() returns 0 for invalid character.
733 * Therefore, following condition includes 0.
735 ignored = mblen(NULL, 0); /* First reset the state. */
736 if (mblen(buf, (size_t)1) <= 0)
737 n = 2;
738 else
739 n = 1;
742 # endif
743 #endif
746 mb_bytelen_tab[i] = n;
749 #ifdef LEN_FROM_CONV
750 convert_setup(&vimconv, NULL, NULL);
751 #endif
753 /* The cell width depends on the type of multi-byte characters. */
754 (void)init_chartab();
756 /* When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[] */
757 screenalloc(FALSE);
759 /* When using Unicode, set default for 'fileencodings'. */
760 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
761 set_string_option_direct((char_u *)"fencs", -1,
762 (char_u *)"ucs-bom,utf-8,default,latin1", OPT_FREE, 0);
764 #if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
765 /* GNU gettext 0.10.37 supports this feature: set the codeset used for
766 * translated messages independently from the current locale. */
767 (void)bind_textdomain_codeset(VIMPACKAGE,
768 enc_utf8 ? "utf-8" : (char *)p_enc);
769 #endif
771 #ifdef WIN32
772 /* When changing 'encoding' while starting up, then convert the command
773 * line arguments from the active codepage to 'encoding'. */
774 if (starting != 0)
775 fix_arg_enc();
776 #endif
778 #ifdef FEAT_AUTOCMD
779 /* Fire an autocommand to let people do custom font setup. This must be
780 * after Vim has been setup for the new encoding. */
781 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
782 #endif
784 #ifdef FEAT_SPELL
785 /* Need to reload spell dictionaries */
786 spell_reload();
787 #endif
789 return NULL;
793 * Return the size of the BOM for the current buffer:
794 * 0 - no BOM
795 * 2 - UCS-2 or UTF-16 BOM
796 * 4 - UCS-4 BOM
797 * 3 - UTF-8 BOM
800 bomb_size()
802 int n = 0;
804 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
806 if (*curbuf->b_p_fenc == NUL)
808 if (enc_utf8)
810 if (enc_unicode != 0)
811 n = enc_unicode;
812 else
813 n = 3;
816 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
817 n = 3;
818 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
819 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
820 n = 2;
821 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
822 n = 4;
824 return n;
828 * Get class of pointer:
829 * 0 for blank or NUL
830 * 1 for punctuation
831 * 2 for an (ASCII) word character
832 * >2 for other word characters
835 mb_get_class(p)
836 char_u *p;
838 if (MB_BYTE2LEN(p[0]) == 1)
840 if (p[0] == NUL || vim_iswhite(p[0]))
841 return 0;
842 if (vim_iswordc(p[0]))
843 return 2;
844 return 1;
846 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
847 return dbcs_class(p[0], p[1]);
848 if (enc_utf8)
849 return utf_class(utf_ptr2char(p));
850 return 0;
854 * Get class of a double-byte character. This always returns 3 or bigger.
855 * TODO: Should return 1 for punctuation.
858 dbcs_class(lead, trail)
859 unsigned lead;
860 unsigned trail;
862 switch (enc_dbcs)
864 /* please add classfy routine for your language in here */
866 case DBCS_JPNU: /* ? */
867 case DBCS_JPN:
869 /* JIS code classification */
870 unsigned char lb = lead;
871 unsigned char tb = trail;
873 /* convert process code to JIS */
874 # if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
875 /* process code is SJIS */
876 if (lb <= 0x9f)
877 lb = (lb - 0x81) * 2 + 0x21;
878 else
879 lb = (lb - 0xc1) * 2 + 0x21;
880 if (tb <= 0x7e)
881 tb -= 0x1f;
882 else if (tb <= 0x9e)
883 tb -= 0x20;
884 else
886 tb -= 0x7e;
887 lb += 1;
889 # else
891 * XXX: Code page identification can not use with all
892 * system! So, some other encoding information
893 * will be needed.
894 * In japanese: SJIS,EUC,UNICODE,(JIS)
895 * Note that JIS-code system don't use as
896 * process code in most system because it uses
897 * escape sequences(JIS is context depend encoding).
899 /* assume process code is JAPANESE-EUC */
900 lb &= 0x7f;
901 tb &= 0x7f;
902 # endif
903 /* exceptions */
904 switch (lb << 8 | tb)
906 case 0x2121: /* ZENKAKU space */
907 return 0;
908 case 0x2122: /* KU-TEN (Japanese comma) */
909 case 0x2123: /* TOU-TEN (Japanese period) */
910 case 0x2124: /* ZENKAKU comma */
911 case 0x2125: /* ZENKAKU period */
912 return 1;
913 case 0x213c: /* prolongedsound handled as KATAKANA */
914 return 13;
916 /* sieved by KU code */
917 switch (lb)
919 case 0x21:
920 case 0x22:
921 /* special symbols */
922 return 10;
923 case 0x23:
924 /* alpha-numeric */
925 return 11;
926 case 0x24:
927 /* hiragana */
928 return 12;
929 case 0x25:
930 /* katakana */
931 return 13;
932 case 0x26:
933 /* greek */
934 return 14;
935 case 0x27:
936 /* russian */
937 return 15;
938 case 0x28:
939 /* lines */
940 return 16;
941 default:
942 /* kanji */
943 return 17;
947 case DBCS_KORU: /* ? */
948 case DBCS_KOR:
950 /* KS code classification */
951 unsigned char c1 = lead;
952 unsigned char c2 = trail;
955 * 20 : Hangul
956 * 21 : Hanja
957 * 22 : Symbols
958 * 23 : Alpha-numeric/Roman Letter (Full width)
959 * 24 : Hangul Letter(Alphabet)
960 * 25 : Roman Numeral/Greek Letter
961 * 26 : Box Drawings
962 * 27 : Unit Symbols
963 * 28 : Circled/Parenthesized Letter
964 * 29 : Hirigana/Katakana
965 * 30 : Cyrillic Letter
968 if (c1 >= 0xB0 && c1 <= 0xC8)
969 /* Hangul */
970 return 20;
971 #if defined(WIN3264) || defined(WIN32UNIX)
972 else if (c1 <= 0xA0 || c2 <= 0xA0)
973 /* Extended Hangul Region : MS UHC(Unified Hangul Code) */
974 /* c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
975 * c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
977 return 20;
978 #endif
980 else if (c1 >= 0xCA && c1 <= 0xFD)
981 /* Hanja */
982 return 21;
983 else switch (c1)
985 case 0xA1:
986 case 0xA2:
987 /* Symbols */
988 return 22;
989 case 0xA3:
990 /* Alpha-numeric */
991 return 23;
992 case 0xA4:
993 /* Hangul Letter(Alphabet) */
994 return 24;
995 case 0xA5:
996 /* Roman Numeral/Greek Letter */
997 return 25;
998 case 0xA6:
999 /* Box Drawings */
1000 return 26;
1001 case 0xA7:
1002 /* Unit Symbols */
1003 return 27;
1004 case 0xA8:
1005 case 0xA9:
1006 if (c2 <= 0xAF)
1007 return 25; /* Roman Letter */
1008 else if (c2 >= 0xF6)
1009 return 22; /* Symbols */
1010 else
1011 /* Circled/Parenthesized Letter */
1012 return 28;
1013 case 0xAA:
1014 case 0xAB:
1015 /* Hirigana/Katakana */
1016 return 29;
1017 case 0xAC:
1018 /* Cyrillic Letter */
1019 return 30;
1022 default:
1023 break;
1025 return 3;
1029 * mb_char2len() function pointer.
1030 * Return length in bytes of character "c".
1031 * Returns 1 for a single-byte character.
1034 latin_char2len(c)
1035 int c UNUSED;
1037 return 1;
1040 static int
1041 dbcs_char2len(c)
1042 int c;
1044 if (c >= 0x100)
1045 return 2;
1046 return 1;
1050 * mb_char2bytes() function pointer.
1051 * Convert a character to its bytes.
1052 * Returns the length in bytes.
1055 latin_char2bytes(c, buf)
1056 int c;
1057 char_u *buf;
1059 buf[0] = c;
1060 return 1;
1063 static int
1064 dbcs_char2bytes(c, buf)
1065 int c;
1066 char_u *buf;
1068 if (c >= 0x100)
1070 buf[0] = (unsigned)c >> 8;
1071 buf[1] = c;
1072 /* Never use a NUL byte, it causes lots of trouble. It's an invalid
1073 * character anyway. */
1074 if (buf[1] == NUL)
1075 buf[1] = '\n';
1076 return 2;
1078 buf[0] = c;
1079 return 1;
1083 * mb_ptr2len() function pointer.
1084 * Get byte length of character at "*p" but stop at a NUL.
1085 * For UTF-8 this includes following composing characters.
1086 * Returns 0 when *p is NUL.
1089 latin_ptr2len(p)
1090 char_u *p;
1092 return MB_BYTE2LEN(*p);
1095 static int
1096 dbcs_ptr2len(p)
1097 char_u *p;
1099 int len;
1101 /* Check if second byte is not missing. */
1102 len = MB_BYTE2LEN(*p);
1103 if (len == 2 && p[1] == NUL)
1104 len = 1;
1105 return len;
1109 * mb_ptr2len_len() function pointer.
1110 * Like mb_ptr2len(), but limit to read "size" bytes.
1111 * Returns 0 for an empty string.
1112 * Returns 1 for an illegal char or an incomplete byte sequence.
1115 latin_ptr2len_len(p, size)
1116 char_u *p;
1117 int size;
1119 if (size < 1 || *p == NUL)
1120 return 0;
1121 return 1;
1124 static int
1125 dbcs_ptr2len_len(p, size)
1126 char_u *p;
1127 int size;
1129 int len;
1131 if (size < 1 || *p == NUL)
1132 return 0;
1133 if (size == 1)
1134 return 1;
1135 /* Check that second byte is not missing. */
1136 len = MB_BYTE2LEN(*p);
1137 if (len == 2 && p[1] == NUL)
1138 len = 1;
1139 return len;
1142 struct interval
1144 unsigned short first;
1145 unsigned short last;
1147 static int intable __ARGS((struct interval *table, size_t size, int c));
1150 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
1152 static int
1153 intable(table, size, c)
1154 struct interval *table;
1155 size_t size;
1156 int c;
1158 int mid, bot, top;
1160 /* first quick check for Latin1 etc. characters */
1161 if (c < table[0].first)
1162 return FALSE;
1164 /* binary search in table */
1165 bot = 0;
1166 top = (int)(size / sizeof(struct interval) - 1);
1167 while (top >= bot)
1169 mid = (bot + top) / 2;
1170 if (table[mid].last < c)
1171 bot = mid + 1;
1172 else if (table[mid].first > c)
1173 top = mid - 1;
1174 else
1175 return TRUE;
1177 return FALSE;
1181 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
1182 * Returns 4 or 6 for an unprintable character.
1183 * Is only correct for characters >= 0x80.
1184 * When p_ambw is "double", return 2 for a character with East Asian Width
1185 * class 'A'(mbiguous).
1188 utf_char2cells(c)
1189 int c;
1191 /* sorted list of non-overlapping intervals of East Asian Ambiguous
1192 * characters, generated with:
1193 * "uniset +WIDTH-A -cat=Me -cat=Mn -cat=Cf c" */
1194 static struct interval ambiguous[] = {
1195 {0x00A1, 0x00A1}, {0x00A4, 0x00A4}, {0x00A7, 0x00A8},
1196 {0x00AA, 0x00AA}, {0x00AE, 0x00AE}, {0x00B0, 0x00B4},
1197 {0x00B6, 0x00BA}, {0x00BC, 0x00BF}, {0x00C6, 0x00C6},
1198 {0x00D0, 0x00D0}, {0x00D7, 0x00D8}, {0x00DE, 0x00E1},
1199 {0x00E6, 0x00E6}, {0x00E8, 0x00EA}, {0x00EC, 0x00ED},
1200 {0x00F0, 0x00F0}, {0x00F2, 0x00F3}, {0x00F7, 0x00FA},
1201 {0x00FC, 0x00FC}, {0x00FE, 0x00FE}, {0x0101, 0x0101},
1202 {0x0111, 0x0111}, {0x0113, 0x0113}, {0x011B, 0x011B},
1203 {0x0126, 0x0127}, {0x012B, 0x012B}, {0x0131, 0x0133},
1204 {0x0138, 0x0138}, {0x013F, 0x0142}, {0x0144, 0x0144},
1205 {0x0148, 0x014B}, {0x014D, 0x014D}, {0x0152, 0x0153},
1206 {0x0166, 0x0167}, {0x016B, 0x016B}, {0x01CE, 0x01CE},
1207 {0x01D0, 0x01D0}, {0x01D2, 0x01D2}, {0x01D4, 0x01D4},
1208 {0x01D6, 0x01D6}, {0x01D8, 0x01D8}, {0x01DA, 0x01DA},
1209 {0x01DC, 0x01DC}, {0x0251, 0x0251}, {0x0261, 0x0261},
1210 {0x02C4, 0x02C4}, {0x02C7, 0x02C7}, {0x02C9, 0x02CB},
1211 {0x02CD, 0x02CD}, {0x02D0, 0x02D0}, {0x02D8, 0x02DB},
1212 {0x02DD, 0x02DD}, {0x02DF, 0x02DF}, {0x0391, 0x03A1},
1213 {0x03A3, 0x03A9}, {0x03B1, 0x03C1}, {0x03C3, 0x03C9},
1214 {0x0401, 0x0401}, {0x0410, 0x044F}, {0x0451, 0x0451},
1215 {0x2010, 0x2010}, {0x2013, 0x2016}, {0x2018, 0x2019},
1216 {0x201C, 0x201D}, {0x2020, 0x2022}, {0x2024, 0x2027},
1217 {0x2030, 0x2030}, {0x2032, 0x2033}, {0x2035, 0x2035},
1218 {0x203B, 0x203B}, {0x203E, 0x203E}, {0x2074, 0x2074},
1219 {0x207F, 0x207F}, {0x2081, 0x2084}, {0x20AC, 0x20AC},
1220 {0x2103, 0x2103}, {0x2105, 0x2105}, {0x2109, 0x2109},
1221 {0x2113, 0x2113}, {0x2116, 0x2116}, {0x2121, 0x2122},
1222 {0x2126, 0x2126}, {0x212B, 0x212B}, {0x2153, 0x2154},
1223 {0x215B, 0x215E}, {0x2160, 0x216B}, {0x2170, 0x2179},
1224 {0x2190, 0x2199}, {0x21B8, 0x21B9}, {0x21D2, 0x21D2},
1225 {0x21D4, 0x21D4}, {0x21E7, 0x21E7}, {0x2200, 0x2200},
1226 {0x2202, 0x2203}, {0x2207, 0x2208}, {0x220B, 0x220B},
1227 {0x220F, 0x220F}, {0x2211, 0x2211}, {0x2215, 0x2215},
1228 {0x221A, 0x221A}, {0x221D, 0x2220}, {0x2223, 0x2223},
1229 {0x2225, 0x2225}, {0x2227, 0x222C}, {0x222E, 0x222E},
1230 {0x2234, 0x2237}, {0x223C, 0x223D}, {0x2248, 0x2248},
1231 {0x224C, 0x224C}, {0x2252, 0x2252}, {0x2260, 0x2261},
1232 {0x2264, 0x2267}, {0x226A, 0x226B}, {0x226E, 0x226F},
1233 {0x2282, 0x2283}, {0x2286, 0x2287}, {0x2295, 0x2295},
1234 {0x2299, 0x2299}, {0x22A5, 0x22A5}, {0x22BF, 0x22BF},
1235 {0x2312, 0x2312}, {0x2460, 0x24E9}, {0x24EB, 0x254B},
1236 {0x2550, 0x2573}, {0x2580, 0x258F}, {0x2592, 0x2595},
1237 {0x25A0, 0x25A1}, {0x25A3, 0x25A9}, {0x25B2, 0x25B3},
1238 {0x25B6, 0x25B7}, {0x25BC, 0x25BD}, {0x25C0, 0x25C1},
1239 {0x25C6, 0x25C8}, {0x25CB, 0x25CB}, {0x25CE, 0x25D1},
1240 {0x25E2, 0x25E5}, {0x25EF, 0x25EF}, {0x2605, 0x2606},
1241 {0x2609, 0x2609}, {0x260E, 0x260F}, {0x2614, 0x2615},
1242 {0x261C, 0x261C}, {0x261E, 0x261E}, {0x2640, 0x2640},
1243 {0x2642, 0x2642}, {0x2660, 0x2661}, {0x2663, 0x2665},
1244 {0x2667, 0x266A}, {0x266C, 0x266D}, {0x266F, 0x266F},
1245 {0x273D, 0x273D}, {0x2776, 0x277F}, {0xE000, 0xF8FF},
1246 {0xFFFD, 0xFFFD}, /* {0xF0000, 0xFFFFD}, {0x100000, 0x10FFFD} */
1249 #ifdef USE_AMBIWIDTH_AUTO
1250 if (gui.in_use && *p_ambw == 'a')
1252 int cell;
1254 /* This is required by screen.c implicitly. */
1255 if (c == 0)
1256 return 1;
1257 if ((cell = gui_mch_get_charwidth(c)) > 0)
1258 return cell;
1260 #endif
1262 if (c >= 0x100)
1264 #ifdef USE_WCHAR_FUNCTIONS
1266 * Assume the library function wcwidth() works better than our own
1267 * stuff. It should return 1 for ambiguous width chars!
1269 int n = wcwidth(c);
1271 if (n < 0)
1272 return 6; /* unprintable, displays <xxxx> */
1273 if (n > 1)
1274 return n;
1275 #else
1276 if (!utf_printable(c))
1277 return 6; /* unprintable, displays <xxxx> */
1278 if (c >= 0x1100
1279 && (c <= 0x115f /* Hangul Jamo */
1280 || c == 0x2329
1281 || c == 0x232a
1282 || (c >= 0x2e80 && c <= 0xa4cf
1283 && c != 0x303f) /* CJK ... Yi */
1284 || (c >= 0xac00 && c <= 0xd7a3) /* Hangul Syllables */
1285 || (c >= 0xf900 && c <= 0xfaff) /* CJK Compatibility
1286 Ideographs */
1287 || (c >= 0xfe30 && c <= 0xfe6f) /* CJK Compatibility Forms */
1288 || (c >= 0xff00 && c <= 0xff60) /* Fullwidth Forms */
1289 || (c >= 0xffe0 && c <= 0xffe6)
1290 || (c >= 0x20000 && c <= 0x2fffd)
1291 || (c >= 0x30000 && c <= 0x3fffd)))
1292 return 2;
1293 #endif
1296 /* Characters below 0x100 are influenced by 'isprint' option */
1297 else if (c >= 0x80 && !vim_isprintc(c))
1298 return 4; /* unprintable, displays <xx> */
1300 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
1301 return 2;
1303 return 1;
1307 * mb_ptr2cells() function pointer.
1308 * Return the number of display cells character at "*p" occupies.
1309 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1312 latin_ptr2cells(p)
1313 char_u *p UNUSED;
1315 return 1;
1319 utf_ptr2cells(p)
1320 char_u *p;
1322 int c;
1324 /* Need to convert to a wide character. */
1325 if (*p >= 0x80)
1327 c = utf_ptr2char(p);
1328 /* An illegal byte is displayed as <xx>. */
1329 if (utf_ptr2len(p) == 1 || c == NUL)
1330 return 4;
1331 /* If the char is ASCII it must be an overlong sequence. */
1332 if (c < 0x80)
1333 return char2cells(c);
1334 return utf_char2cells(c);
1336 return 1;
1340 dbcs_ptr2cells(p)
1341 char_u *p;
1343 /* Number of cells is equal to number of bytes, except for euc-jp when
1344 * the first byte is 0x8e. */
1345 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
1346 return 1;
1347 return MB_BYTE2LEN(*p);
1351 * mb_ptr2cells_len() function pointer.
1352 * Like mb_ptr2cells(), but limit string length to "size".
1353 * For an empty string or truncated character returns 1.
1356 latin_ptr2cells_len(p, size)
1357 char_u *p UNUSED;
1358 int size UNUSED;
1360 return 1;
1363 static int
1364 utf_ptr2cells_len(p, size)
1365 char_u *p;
1366 int size;
1368 int c;
1370 /* Need to convert to a wide character. */
1371 if (size > 0 && *p >= 0x80)
1373 if (utf_ptr2len_len(p, size) < utf8len_tab[*p])
1374 return 1;
1375 c = utf_ptr2char(p);
1376 /* An illegal byte is displayed as <xx>. */
1377 if (utf_ptr2len(p) == 1 || c == NUL)
1378 return 4;
1379 /* If the char is ASCII it must be an overlong sequence. */
1380 if (c < 0x80)
1381 return char2cells(c);
1382 return utf_char2cells(c);
1384 return 1;
1387 static int
1388 dbcs_ptr2cells_len(p, size)
1389 char_u *p;
1390 int size;
1392 /* Number of cells is equal to number of bytes, except for euc-jp when
1393 * the first byte is 0x8e. */
1394 if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e))
1395 return 1;
1396 return MB_BYTE2LEN(*p);
1400 * mb_char2cells() function pointer.
1401 * Return the number of display cells character "c" occupies.
1402 * Only takes care of multi-byte chars, not "^C" and such.
1405 latin_char2cells(c)
1406 int c UNUSED;
1408 return 1;
1411 static int
1412 dbcs_char2cells(c)
1413 int c;
1415 /* Number of cells is equal to number of bytes, except for euc-jp when
1416 * the first byte is 0x8e. */
1417 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
1418 return 1;
1419 /* use the first byte */
1420 return MB_BYTE2LEN((unsigned)c >> 8);
1424 * mb_off2cells() function pointer.
1425 * Return number of display cells for char at ScreenLines[off].
1426 * We make sure that the offset used is less than "max_off".
1429 latin_off2cells(off, max_off)
1430 unsigned off UNUSED;
1431 unsigned max_off UNUSED;
1433 return 1;
1437 dbcs_off2cells(off, max_off)
1438 unsigned off;
1439 unsigned max_off;
1441 /* never check beyond end of the line */
1442 if (off >= max_off)
1443 return 1;
1445 /* Number of cells is equal to number of bytes, except for euc-jp when
1446 * the first byte is 0x8e. */
1447 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1448 return 1;
1449 return MB_BYTE2LEN(ScreenLines[off]);
1453 utf_off2cells(off, max_off)
1454 unsigned off;
1455 unsigned max_off;
1457 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1;
1461 * mb_ptr2char() function pointer.
1462 * Convert a byte sequence into a character.
1465 latin_ptr2char(p)
1466 char_u *p;
1468 return *p;
1471 static int
1472 dbcs_ptr2char(p)
1473 char_u *p;
1475 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
1476 return (p[0] << 8) + p[1];
1477 return *p;
1481 * Convert a UTF-8 byte sequence to a wide character.
1482 * If the sequence is illegal or truncated by a NUL the first byte is
1483 * returned.
1484 * Does not include composing characters, of course.
1487 utf_ptr2char(p)
1488 char_u *p;
1490 int len;
1492 if (p[0] < 0x80) /* be quick for ASCII */
1493 return p[0];
1495 len = utf8len_tab[p[0]];
1496 if (len > 1 && (p[1] & 0xc0) == 0x80)
1498 if (len == 2)
1499 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
1500 if ((p[2] & 0xc0) == 0x80)
1502 if (len == 3)
1503 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
1504 + (p[2] & 0x3f);
1505 if ((p[3] & 0xc0) == 0x80)
1507 if (len == 4)
1508 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
1509 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
1510 if ((p[4] & 0xc0) == 0x80)
1512 if (len == 5)
1513 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
1514 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
1515 + (p[4] & 0x3f);
1516 if ((p[5] & 0xc0) == 0x80 && len == 6)
1517 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
1518 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
1519 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
1524 /* Illegal value, just return the first byte */
1525 return p[0];
1529 * Get character at **pp and advance *pp to the next character.
1530 * Note: composing characters are skipped!
1533 mb_ptr2char_adv(pp)
1534 char_u **pp;
1536 int c;
1538 c = (*mb_ptr2char)(*pp);
1539 *pp += (*mb_ptr2len)(*pp);
1540 return c;
1544 * Get character at **pp and advance *pp to the next character.
1545 * Note: composing characters are returned as separate characters.
1548 mb_cptr2char_adv(pp)
1549 char_u **pp;
1551 int c;
1553 c = (*mb_ptr2char)(*pp);
1554 if (enc_utf8)
1555 *pp += utf_ptr2len(*pp);
1556 else
1557 *pp += (*mb_ptr2len)(*pp);
1558 return c;
1561 #if defined(FEAT_ARABIC) || defined(PROTO)
1563 * Check whether we are dealing with Arabic combining characters.
1564 * Note: these are NOT really composing characters!
1567 arabic_combine(one, two)
1568 int one; /* first character */
1569 int two; /* character just after "one" */
1571 if (one == a_LAM)
1572 return arabic_maycombine(two);
1573 return FALSE;
1577 * Check whether we are dealing with a character that could be regarded as an
1578 * Arabic combining character, need to check the character before this.
1581 arabic_maycombine(two)
1582 int two;
1584 if (p_arshape && !p_tbidi)
1585 return (two == a_ALEF_MADDA
1586 || two == a_ALEF_HAMZA_ABOVE
1587 || two == a_ALEF_HAMZA_BELOW
1588 || two == a_ALEF);
1589 return FALSE;
1593 * Check if the character pointed to by "p2" is a composing character when it
1594 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1595 * behaves like a composing character.
1598 utf_composinglike(p1, p2)
1599 char_u *p1;
1600 char_u *p2;
1602 int c2;
1604 c2 = utf_ptr2char(p2);
1605 if (utf_iscomposing(c2))
1606 return TRUE;
1607 if (!arabic_maycombine(c2))
1608 return FALSE;
1609 return arabic_combine(utf_ptr2char(p1), c2);
1611 #endif
1614 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1615 * composing characters.
1618 utfc_ptr2char(p, pcc)
1619 char_u *p;
1620 int *pcc; /* return: composing chars, last one is 0 */
1622 int len;
1623 int c;
1624 int cc;
1625 int i = 0;
1627 c = utf_ptr2char(p);
1628 len = utf_ptr2len(p);
1630 /* Only accept a composing char when the first char isn't illegal. */
1631 if ((len > 1 || *p < 0x80)
1632 && p[len] >= 0x80
1633 && UTF_COMPOSINGLIKE(p, p + len))
1635 cc = utf_ptr2char(p + len);
1636 for (;;)
1638 pcc[i++] = cc;
1639 if (i == MAX_MCO)
1640 break;
1641 len += utf_ptr2len(p + len);
1642 if (p[len] < 0x80 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1643 break;
1647 if (i < MAX_MCO) /* last composing char must be 0 */
1648 pcc[i] = 0;
1650 return c;
1654 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1655 * composing characters. Use no more than p[maxlen].
1658 utfc_ptr2char_len(p, pcc, maxlen)
1659 char_u *p;
1660 int *pcc; /* return: composing chars, last one is 0 */
1661 int maxlen;
1663 int len;
1664 int c;
1665 int cc;
1666 int i = 0;
1668 c = utf_ptr2char(p);
1669 len = utf_ptr2len_len(p, maxlen);
1670 /* Only accept a composing char when the first char isn't illegal. */
1671 if ((len > 1 || *p < 0x80)
1672 && len < maxlen
1673 && p[len] >= 0x80
1674 && UTF_COMPOSINGLIKE(p, p + len))
1676 cc = utf_ptr2char(p + len);
1677 for (;;)
1679 pcc[i++] = cc;
1680 if (i == MAX_MCO)
1681 break;
1682 len += utf_ptr2len_len(p + len, maxlen - len);
1683 if (len >= maxlen
1684 || p[len] < 0x80
1685 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1686 break;
1690 if (i < MAX_MCO) /* last composing char must be 0 */
1691 pcc[i] = 0;
1693 return c;
1697 * Convert the character at screen position "off" to a sequence of bytes.
1698 * Includes the composing characters.
1699 * "buf" must at least have the length MB_MAXBYTES.
1700 * Returns the produced number of bytes.
1703 utfc_char2bytes(off, buf)
1704 int off;
1705 char_u *buf;
1707 int len;
1708 int i;
1710 len = utf_char2bytes(ScreenLinesUC[off], buf);
1711 for (i = 0; i < Screen_mco; ++i)
1713 if (ScreenLinesC[i][off] == 0)
1714 break;
1715 len += utf_char2bytes(ScreenLinesC[i][off], buf + len);
1717 return len;
1721 * Get the length of a UTF-8 byte sequence, not including any following
1722 * composing characters.
1723 * Returns 0 for "".
1724 * Returns 1 for an illegal byte sequence.
1727 utf_ptr2len(p)
1728 char_u *p;
1730 int len;
1731 int i;
1733 if (*p == NUL)
1734 return 0;
1735 len = utf8len_tab[*p];
1736 for (i = 1; i < len; ++i)
1737 if ((p[i] & 0xc0) != 0x80)
1738 return 1;
1739 return len;
1743 * Return length of UTF-8 character, obtained from the first byte.
1744 * "b" must be between 0 and 255!
1747 utf_byte2len(b)
1748 int b;
1750 return utf8len_tab[b];
1754 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
1755 * following composing characters.
1756 * Returns 1 for "".
1757 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
1758 * Returns number > "size" for an incomplete byte sequence.
1761 utf_ptr2len_len(p, size)
1762 char_u *p;
1763 int size;
1765 int len;
1766 int i;
1767 int m;
1769 if (*p == NUL)
1770 return 1;
1771 m = len = utf8len_tab[*p];
1772 if (len > size)
1773 m = size; /* incomplete byte sequence. */
1774 for (i = 1; i < m; ++i)
1775 if ((p[i] & 0xc0) != 0x80)
1776 return 1;
1777 return len;
1781 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
1782 * This includes following composing characters.
1785 utfc_ptr2len(p)
1786 char_u *p;
1788 int len;
1789 int b0 = *p;
1790 #ifdef FEAT_ARABIC
1791 int prevlen;
1792 #endif
1794 if (b0 == NUL)
1795 return 0;
1796 if (b0 < 0x80 && p[1] < 0x80) /* be quick for ASCII */
1797 return 1;
1799 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1800 len = utf_ptr2len(p);
1802 /* Check for illegal byte. */
1803 if (len == 1 && b0 >= 0x80)
1804 return 1;
1807 * Check for composing characters. We can handle only the first two, but
1808 * skip all of them (otherwise the cursor would get stuck).
1810 #ifdef FEAT_ARABIC
1811 prevlen = 0;
1812 #endif
1813 for (;;)
1815 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
1816 return len;
1818 /* Skip over composing char */
1819 #ifdef FEAT_ARABIC
1820 prevlen = len;
1821 #endif
1822 len += utf_ptr2len(p + len);
1827 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
1828 * takes. This includes following composing characters.
1829 * Returns 0 for an empty string.
1830 * Returns 1 for an illegal char or an incomplete byte sequence.
1833 utfc_ptr2len_len(p, size)
1834 char_u *p;
1835 int size;
1837 int len;
1838 #ifdef FEAT_ARABIC
1839 int prevlen;
1840 #endif
1842 if (size < 1 || *p == NUL)
1843 return 0;
1844 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) /* be quick for ASCII */
1845 return 1;
1847 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1848 len = utf_ptr2len_len(p, size);
1850 /* Check for illegal byte and incomplete byte sequence. */
1851 if ((len == 1 && p[0] >= 0x80) || len > size)
1852 return 1;
1855 * Check for composing characters. We can handle only the first two, but
1856 * skip all of them (otherwise the cursor would get stuck).
1858 #ifdef FEAT_ARABIC
1859 prevlen = 0;
1860 #endif
1861 while (len < size)
1863 int len_next_char;
1865 if (p[len] < 0x80)
1866 break;
1869 * Next character length should not go beyond size to ensure that
1870 * UTF_COMPOSINGLIKE(...) does not read beyond size.
1872 len_next_char = utf_ptr2len_len(p + len, size - len);
1873 if (len_next_char > size - len)
1874 break;
1876 if (!UTF_COMPOSINGLIKE(p + prevlen, p + len))
1877 break;
1879 /* Skip over composing char */
1880 #ifdef FEAT_ARABIC
1881 prevlen = len;
1882 #endif
1883 len += len_next_char;
1885 return len;
1889 * Return the number of bytes the UTF-8 encoding of character "c" takes.
1890 * This does not include composing characters.
1893 utf_char2len(c)
1894 int c;
1896 if (c < 0x80)
1897 return 1;
1898 if (c < 0x800)
1899 return 2;
1900 if (c < 0x10000)
1901 return 3;
1902 if (c < 0x200000)
1903 return 4;
1904 if (c < 0x4000000)
1905 return 5;
1906 return 6;
1910 * Convert Unicode character "c" to UTF-8 string in "buf[]".
1911 * Returns the number of bytes.
1912 * This does not include composing characters.
1915 utf_char2bytes(c, buf)
1916 int c;
1917 char_u *buf;
1919 if (c < 0x80) /* 7 bits */
1921 buf[0] = c;
1922 return 1;
1924 if (c < 0x800) /* 11 bits */
1926 buf[0] = 0xc0 + ((unsigned)c >> 6);
1927 buf[1] = 0x80 + (c & 0x3f);
1928 return 2;
1930 if (c < 0x10000) /* 16 bits */
1932 buf[0] = 0xe0 + ((unsigned)c >> 12);
1933 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1934 buf[2] = 0x80 + (c & 0x3f);
1935 return 3;
1937 if (c < 0x200000) /* 21 bits */
1939 buf[0] = 0xf0 + ((unsigned)c >> 18);
1940 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
1941 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1942 buf[3] = 0x80 + (c & 0x3f);
1943 return 4;
1945 if (c < 0x4000000) /* 26 bits */
1947 buf[0] = 0xf8 + ((unsigned)c >> 24);
1948 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
1949 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
1950 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1951 buf[4] = 0x80 + (c & 0x3f);
1952 return 5;
1954 /* 31 bits */
1955 buf[0] = 0xfc + ((unsigned)c >> 30);
1956 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
1957 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
1958 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
1959 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1960 buf[5] = 0x80 + (c & 0x3f);
1961 return 6;
1965 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
1966 * drawn on top of the preceding character.
1967 * Based on code from Markus Kuhn.
1970 utf_iscomposing(c)
1971 int c;
1973 /* sorted list of non-overlapping intervals */
1974 static struct interval combining[] =
1976 {0x0300, 0x034f}, {0x0360, 0x036f}, {0x0483, 0x0486}, {0x0488, 0x0489},
1977 {0x0591, 0x05a1}, {0x05a3, 0x05b9}, {0x05bb, 0x05bd}, {0x05bf, 0x05bf},
1978 {0x05c1, 0x05c2}, {0x05c4, 0x05c4}, {0x0610, 0x0615}, {0x064b, 0x0658},
1979 {0x0670, 0x0670}, {0x06d6, 0x06dc}, {0x06de, 0x06e4}, {0x06e7, 0x06e8},
1980 {0x06ea, 0x06ed}, {0x0711, 0x0711}, {0x0730, 0x074a}, {0x07a6, 0x07b0},
1981 {0x0901, 0x0903}, {0x093c, 0x093c}, {0x093e, 0x094d}, {0x0951, 0x0954},
1982 {0x0962, 0x0963}, {0x0981, 0x0983}, {0x09bc, 0x09bc}, {0x09be, 0x09c4},
1983 {0x09c7, 0x09c8}, {0x09cb, 0x09cd}, {0x09d7, 0x09d7}, {0x09e2, 0x09e3},
1984 {0x0a01, 0x0a03}, {0x0a3c, 0x0a3c}, {0x0a3e, 0x0a42}, {0x0a47, 0x0a48},
1985 {0x0a4b, 0x0a4d}, {0x0a70, 0x0a71}, {0x0a81, 0x0a83}, {0x0abc, 0x0abc},
1986 {0x0abe, 0x0ac5}, {0x0ac7, 0x0ac9}, {0x0acb, 0x0acd}, {0x0ae2, 0x0ae3},
1987 {0x0b01, 0x0b03}, {0x0b3c, 0x0b3c}, {0x0b3e, 0x0b43}, {0x0b47, 0x0b48},
1988 {0x0b4b, 0x0b4d}, {0x0b56, 0x0b57}, {0x0b82, 0x0b82}, {0x0bbe, 0x0bc2},
1989 {0x0bc6, 0x0bc8}, {0x0bca, 0x0bcd}, {0x0bd7, 0x0bd7}, {0x0c01, 0x0c03},
1990 {0x0c3e, 0x0c44}, {0x0c46, 0x0c48}, {0x0c4a, 0x0c4d}, {0x0c55, 0x0c56},
1991 {0x0c82, 0x0c83}, {0x0cbc, 0x0cbc}, {0x0cbe, 0x0cc4}, {0x0cc6, 0x0cc8},
1992 {0x0cca, 0x0ccd}, {0x0cd5, 0x0cd6}, {0x0d02, 0x0d03}, {0x0d3e, 0x0d43},
1993 {0x0d46, 0x0d48}, {0x0d4a, 0x0d4d}, {0x0d57, 0x0d57}, {0x0d82, 0x0d83},
1994 {0x0dca, 0x0dca}, {0x0dcf, 0x0dd4}, {0x0dd6, 0x0dd6}, {0x0dd8, 0x0ddf},
1995 {0x0df2, 0x0df3}, {0x0e31, 0x0e31}, {0x0e34, 0x0e3a}, {0x0e47, 0x0e4e},
1996 {0x0eb1, 0x0eb1}, {0x0eb4, 0x0eb9}, {0x0ebb, 0x0ebc}, {0x0ec8, 0x0ecd},
1997 {0x0f18, 0x0f19}, {0x0f35, 0x0f35}, {0x0f37, 0x0f37}, {0x0f39, 0x0f39},
1998 {0x0f3e, 0x0f3f}, {0x0f71, 0x0f84}, {0x0f86, 0x0f87}, {0x0f90, 0x0f97},
1999 {0x0f99, 0x0fbc}, {0x0fc6, 0x0fc6}, {0x102c, 0x1032}, {0x1036, 0x1039},
2000 {0x1056, 0x1059}, {0x1712, 0x1714}, {0x1732, 0x1734}, {0x1752, 0x1753},
2001 {0x1772, 0x1773}, {0x17b6, 0x17d3}, {0x17dd, 0x17dd}, {0x180b, 0x180d},
2002 {0x18a9, 0x18a9}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x20d0, 0x20ea},
2003 {0x302a, 0x302f}, {0x3099, 0x309a}, {0xfb1e, 0xfb1e}, {0xfe00, 0xfe0f},
2004 {0xfe20, 0xfe23},
2007 return intable(combining, sizeof(combining), c);
2011 * Return TRUE for characters that can be displayed in a normal way.
2012 * Only for characters of 0x100 and above!
2015 utf_printable(c)
2016 int c;
2018 #ifdef USE_WCHAR_FUNCTIONS
2020 * Assume the iswprint() library function works better than our own stuff.
2022 return iswprint(c);
2023 #else
2024 /* Sorted list of non-overlapping intervals.
2025 * 0xd800-0xdfff is reserved for UTF-16, actually illegal. */
2026 static struct interval nonprint[] =
2028 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
2029 {0x206a, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
2030 {0xfffe, 0xffff}
2033 return !intable(nonprint, sizeof(nonprint), c);
2034 #endif
2038 * Get class of a Unicode character.
2039 * 0: white space
2040 * 1: punctuation
2041 * 2 or bigger: some class of word character.
2044 utf_class(c)
2045 int c;
2047 /* sorted list of non-overlapping intervals */
2048 static struct clinterval
2050 unsigned short first;
2051 unsigned short last;
2052 unsigned short class;
2053 } classes[] =
2055 {0x037e, 0x037e, 1}, /* Greek question mark */
2056 {0x0387, 0x0387, 1}, /* Greek ano teleia */
2057 {0x055a, 0x055f, 1}, /* Armenian punctuation */
2058 {0x0589, 0x0589, 1}, /* Armenian full stop */
2059 {0x05be, 0x05be, 1},
2060 {0x05c0, 0x05c0, 1},
2061 {0x05c3, 0x05c3, 1},
2062 {0x05f3, 0x05f4, 1},
2063 {0x060c, 0x060c, 1},
2064 {0x061b, 0x061b, 1},
2065 {0x061f, 0x061f, 1},
2066 {0x066a, 0x066d, 1},
2067 {0x06d4, 0x06d4, 1},
2068 {0x0700, 0x070d, 1}, /* Syriac punctuation */
2069 {0x0964, 0x0965, 1},
2070 {0x0970, 0x0970, 1},
2071 {0x0df4, 0x0df4, 1},
2072 {0x0e4f, 0x0e4f, 1},
2073 {0x0e5a, 0x0e5b, 1},
2074 {0x0f04, 0x0f12, 1},
2075 {0x0f3a, 0x0f3d, 1},
2076 {0x0f85, 0x0f85, 1},
2077 {0x104a, 0x104f, 1}, /* Myanmar punctuation */
2078 {0x10fb, 0x10fb, 1}, /* Georgian punctuation */
2079 {0x1361, 0x1368, 1}, /* Ethiopic punctuation */
2080 {0x166d, 0x166e, 1}, /* Canadian Syl. punctuation */
2081 {0x1680, 0x1680, 0},
2082 {0x169b, 0x169c, 1},
2083 {0x16eb, 0x16ed, 1},
2084 {0x1735, 0x1736, 1},
2085 {0x17d4, 0x17dc, 1}, /* Khmer punctuation */
2086 {0x1800, 0x180a, 1}, /* Mongolian punctuation */
2087 {0x2000, 0x200b, 0}, /* spaces */
2088 {0x200c, 0x2027, 1}, /* punctuation and symbols */
2089 {0x2028, 0x2029, 0},
2090 {0x202a, 0x202e, 1}, /* punctuation and symbols */
2091 {0x202f, 0x202f, 0},
2092 {0x2030, 0x205e, 1}, /* punctuation and symbols */
2093 {0x205f, 0x205f, 0},
2094 {0x2060, 0x27ff, 1}, /* punctuation and symbols */
2095 {0x2070, 0x207f, 0x2070}, /* superscript */
2096 {0x2080, 0x2094, 0x2080}, /* subscript */
2097 {0x20a0, 0x27ff, 1}, /* all kinds of symbols */
2098 {0x2800, 0x28ff, 0x2800}, /* braille */
2099 {0x2900, 0x2998, 1}, /* arrows, brackets, etc. */
2100 {0x29d8, 0x29db, 1},
2101 {0x29fc, 0x29fd, 1},
2102 {0x3000, 0x3000, 0}, /* ideographic space */
2103 {0x3001, 0x3020, 1}, /* ideographic punctuation */
2104 {0x3030, 0x3030, 1},
2105 {0x303d, 0x303d, 1},
2106 {0x3040, 0x309f, 0x3040}, /* Hiragana */
2107 {0x30a0, 0x30ff, 0x30a0}, /* Katakana */
2108 {0x3300, 0x9fff, 0x4e00}, /* CJK Ideographs */
2109 {0xac00, 0xd7a3, 0xac00}, /* Hangul Syllables */
2110 {0xf900, 0xfaff, 0x4e00}, /* CJK Ideographs */
2111 {0xfd3e, 0xfd3f, 1},
2112 {0xfe30, 0xfe6b, 1}, /* punctuation forms */
2113 {0xff00, 0xff0f, 1}, /* half/fullwidth ASCII */
2114 {0xff1a, 0xff20, 1}, /* half/fullwidth ASCII */
2115 {0xff3b, 0xff40, 1}, /* half/fullwidth ASCII */
2116 {0xff5b, 0xff65, 1}, /* half/fullwidth ASCII */
2118 int bot = 0;
2119 int top = sizeof(classes) / sizeof(struct clinterval) - 1;
2120 int mid;
2122 /* First quick check for Latin1 characters, use 'iskeyword'. */
2123 if (c < 0x100)
2125 if (c == ' ' || c == '\t' || c == NUL || c == 0xa0)
2126 return 0; /* blank */
2127 if (vim_iswordc(c))
2128 return 2; /* word character */
2129 return 1; /* punctuation */
2132 /* binary search in table */
2133 while (top >= bot)
2135 mid = (bot + top) / 2;
2136 if (classes[mid].last < c)
2137 bot = mid + 1;
2138 else if (classes[mid].first > c)
2139 top = mid - 1;
2140 else
2141 return (int)classes[mid].class;
2144 /* most other characters are "word" characters */
2145 return 2;
2149 * Code for Unicode case-dependent operations. Based on notes in
2150 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
2151 * This code uses simple case folding, not full case folding.
2155 * The following table is built by foldExtract.pl < CaseFolding.txt .
2156 * It must be in numeric order, because we use binary search on it.
2157 * An entry such as {0x41,0x5a,1,32} means that UCS-4 characters in the range
2158 * from 0x41 to 0x5a inclusive, stepping by 1, are folded by adding 32.
2161 typedef struct
2163 int rangeStart;
2164 int rangeEnd;
2165 int step;
2166 int offset;
2167 } convertStruct;
2169 static convertStruct foldCase[] =
2171 {0x41,0x5a,1,32}, {0xc0,0xd6,1,32}, {0xd8,0xde,1,32},
2172 {0x100,0x12e,2,1}, {0x130,0x130,-1,-199}, {0x132,0x136,2,1},
2173 {0x139,0x147,2,1}, {0x14a,0x176,2,1}, {0x178,0x178,-1,-121},
2174 {0x179,0x17d,2,1}, {0x181,0x181,-1,210}, {0x182,0x184,2,1},
2175 {0x186,0x186,-1,206}, {0x187,0x187,-1,1}, {0x189,0x18a,1,205},
2176 {0x18b,0x18b,-1,1}, {0x18e,0x18e,-1,79}, {0x18f,0x18f,-1,202},
2177 {0x190,0x190,-1,203}, {0x191,0x191,-1,1}, {0x193,0x193,-1,205},
2178 {0x194,0x194,-1,207}, {0x196,0x196,-1,211}, {0x197,0x197,-1,209},
2179 {0x198,0x198,-1,1}, {0x19c,0x19c,-1,211}, {0x19d,0x19d,-1,213},
2180 {0x19f,0x19f,-1,214}, {0x1a0,0x1a4,2,1}, {0x1a6,0x1a6,-1,218},
2181 {0x1a7,0x1a7,-1,1}, {0x1a9,0x1a9,-1,218}, {0x1ac,0x1ac,-1,1},
2182 {0x1ae,0x1ae,-1,218}, {0x1af,0x1af,-1,1}, {0x1b1,0x1b2,1,217},
2183 {0x1b3,0x1b5,2,1}, {0x1b7,0x1b7,-1,219}, {0x1b8,0x1bc,4,1},
2184 {0x1c4,0x1c4,-1,2}, {0x1c5,0x1c5,-1,1}, {0x1c7,0x1c7,-1,2},
2185 {0x1c8,0x1c8,-1,1}, {0x1ca,0x1ca,-1,2}, {0x1cb,0x1db,2,1},
2186 {0x1de,0x1ee,2,1}, {0x1f1,0x1f1,-1,2}, {0x1f2,0x1f4,2,1},
2187 {0x1f6,0x1f6,-1,-97}, {0x1f7,0x1f7,-1,-56}, {0x1f8,0x21e,2,1},
2188 {0x220,0x220,-1,-130}, {0x222,0x232,2,1}, {0x386,0x386,-1,38},
2189 {0x388,0x38a,1,37}, {0x38c,0x38c,-1,64}, {0x38e,0x38f,1,63},
2190 {0x391,0x3a1,1,32}, {0x3a3,0x3ab,1,32}, {0x3d8,0x3ee,2,1},
2191 {0x3f4,0x3f4,-1,-60}, {0x3f7,0x3f7,-1,1}, {0x3f9,0x3f9,-1,-7},
2192 {0x3fa,0x3fa,-1,1}, {0x400,0x40f,1,80}, {0x410,0x42f,1,32},
2193 {0x460,0x480,2,1}, {0x48a,0x4be,2,1}, {0x4c1,0x4cd,2,1},
2194 {0x4d0,0x4f4,2,1}, {0x4f8,0x500,8,1}, {0x502,0x50e,2,1},
2195 {0x531,0x556,1,48}, {0x1e00,0x1e94,2,1}, {0x1ea0,0x1ef8,2,1},
2196 {0x1f08,0x1f0f,1,-8}, {0x1f18,0x1f1d,1,-8}, {0x1f28,0x1f2f,1,-8},
2197 {0x1f38,0x1f3f,1,-8}, {0x1f48,0x1f4d,1,-8}, {0x1f59,0x1f5f,2,-8},
2198 {0x1f68,0x1f6f,1,-8}, {0x1f88,0x1f8f,1,-8}, {0x1f98,0x1f9f,1,-8},
2199 {0x1fa8,0x1faf,1,-8}, {0x1fb8,0x1fb9,1,-8}, {0x1fba,0x1fbb,1,-74},
2200 {0x1fbc,0x1fbc,-1,-9}, {0x1fc8,0x1fcb,1,-86}, {0x1fcc,0x1fcc,-1,-9},
2201 {0x1fd8,0x1fd9,1,-8}, {0x1fda,0x1fdb,1,-100}, {0x1fe8,0x1fe9,1,-8},
2202 {0x1fea,0x1feb,1,-112}, {0x1fec,0x1fec,-1,-7}, {0x1ff8,0x1ff9,1,-128},
2203 {0x1ffa,0x1ffb,1,-126}, {0x1ffc,0x1ffc,-1,-9}, {0x2126,0x2126,-1,-7517},
2204 {0x212a,0x212a,-1,-8383}, {0x212b,0x212b,-1,-8262},
2205 {0x2160,0x216f,1,16}, {0x24b6,0x24cf,1,26}, {0xff21,0xff3a,1,32},
2206 {0x10400,0x10427,1,40}
2209 static int utf_convert(int a, convertStruct table[], int tableSize);
2212 * Generic conversion function for case operations.
2213 * Return the converted equivalent of "a", which is a UCS-4 character. Use
2214 * the given conversion "table". Uses binary search on "table".
2216 static int
2217 utf_convert(a, table, tableSize)
2218 int a;
2219 convertStruct table[];
2220 int tableSize;
2222 int start, mid, end; /* indices into table */
2224 start = 0;
2225 end = tableSize / sizeof(convertStruct);
2226 while (start < end)
2228 /* need to search further */
2229 mid = (end + start) /2;
2230 if (table[mid].rangeEnd < a)
2231 start = mid + 1;
2232 else
2233 end = mid;
2235 if (table[start].rangeStart <= a && a <= table[start].rangeEnd
2236 && (a - table[start].rangeStart) % table[start].step == 0)
2237 return (a + table[start].offset);
2238 else
2239 return a;
2243 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
2244 * simple case folding.
2247 utf_fold(a)
2248 int a;
2250 return utf_convert(a, foldCase, sizeof(foldCase));
2254 * The following tables are built by upperLowerExtract.pl < UnicodeData.txt .
2255 * They must be in numeric order, because we use binary search on them.
2256 * An entry such as {0x41,0x5a,1,32} means that UCS-4 characters in the range
2257 * from 0x41 to 0x5a inclusive, stepping by 1, are switched to lower (for
2258 * example) by adding 32.
2260 static convertStruct toLower[] =
2262 {0x41,0x5a,1,32}, {0xc0,0xd6,1,32}, {0xd8,0xde,1,32},
2263 {0x100,0x12e,2,1}, {0x130,0x130,-1,-199}, {0x132,0x136,2,1},
2264 {0x139,0x147,2,1}, {0x14a,0x176,2,1}, {0x178,0x178,-1,-121},
2265 {0x179,0x17d,2,1}, {0x181,0x181,-1,210}, {0x182,0x184,2,1},
2266 {0x186,0x186,-1,206}, {0x187,0x187,-1,1}, {0x189,0x18a,1,205},
2267 {0x18b,0x18b,-1,1}, {0x18e,0x18e,-1,79}, {0x18f,0x18f,-1,202},
2268 {0x190,0x190,-1,203}, {0x191,0x191,-1,1}, {0x193,0x193,-1,205},
2269 {0x194,0x194,-1,207}, {0x196,0x196,-1,211}, {0x197,0x197,-1,209},
2270 {0x198,0x198,-1,1}, {0x19c,0x19c,-1,211}, {0x19d,0x19d,-1,213},
2271 {0x19f,0x19f,-1,214}, {0x1a0,0x1a4,2,1}, {0x1a6,0x1a6,-1,218},
2272 {0x1a7,0x1a7,-1,1}, {0x1a9,0x1a9,-1,218}, {0x1ac,0x1ac,-1,1},
2273 {0x1ae,0x1ae,-1,218}, {0x1af,0x1af,-1,1}, {0x1b1,0x1b2,1,217},
2274 {0x1b3,0x1b5,2,1}, {0x1b7,0x1b7,-1,219}, {0x1b8,0x1bc,4,1},
2275 {0x1c4,0x1ca,3,2}, {0x1cd,0x1db,2,1}, {0x1de,0x1ee,2,1},
2276 {0x1f1,0x1f1,-1,2}, {0x1f4,0x1f4,-1,1}, {0x1f6,0x1f6,-1,-97},
2277 {0x1f7,0x1f7,-1,-56}, {0x1f8,0x21e,2,1}, {0x220,0x220,-1,-130},
2278 {0x222,0x232,2,1}, {0x386,0x386,-1,38}, {0x388,0x38a,1,37},
2279 {0x38c,0x38c,-1,64}, {0x38e,0x38f,1,63}, {0x391,0x3a1,1,32},
2280 {0x3a3,0x3ab,1,32}, {0x3d8,0x3ee,2,1}, {0x3f4,0x3f4,-1,-60},
2281 {0x3f7,0x3f7,-1,1}, {0x3f9,0x3f9,-1,-7}, {0x3fa,0x3fa,-1,1},
2282 {0x400,0x40f,1,80}, {0x410,0x42f,1,32}, {0x460,0x480,2,1},
2283 {0x48a,0x4be,2,1}, {0x4c1,0x4cd,2,1}, {0x4d0,0x4f4,2,1},
2284 {0x4f8,0x500,8,1}, {0x502,0x50e,2,1}, {0x531,0x556,1,48},
2285 {0x1e00,0x1e94,2,1}, {0x1ea0,0x1ef8,2,1}, {0x1f08,0x1f0f,1,-8},
2286 {0x1f18,0x1f1d,1,-8}, {0x1f28,0x1f2f,1,-8}, {0x1f38,0x1f3f,1,-8},
2287 {0x1f48,0x1f4d,1,-8}, {0x1f59,0x1f5f,2,-8}, {0x1f68,0x1f6f,1,-8},
2288 {0x1fb8,0x1fb9,1,-8}, {0x1fba,0x1fbb,1,-74}, {0x1fc8,0x1fcb,1,-86},
2289 {0x1fd8,0x1fd9,1,-8}, {0x1fda,0x1fdb,1,-100}, {0x1fe8,0x1fe9,1,-8},
2290 {0x1fea,0x1feb,1,-112}, {0x1fec,0x1fec,-1,-7}, {0x1ff8,0x1ff9,1,-128},
2291 {0x1ffa,0x1ffb,1,-126}, {0x2126,0x2126,-1,-7517}, {0x212a,0x212a,-1,-8383},
2292 {0x212b,0x212b,-1,-8262}, {0xff21,0xff3a,1,32}, {0x10400,0x10427,1,40}
2295 static convertStruct toUpper[] =
2297 {0x61,0x7a,1,-32}, {0xb5,0xb5,-1,743}, {0xe0,0xf6,1,-32},
2298 {0xf8,0xfe,1,-32}, {0xff,0xff,-1,121}, {0x101,0x12f,2,-1},
2299 {0x131,0x131,-1,-232}, {0x133,0x137,2,-1}, {0x13a,0x148,2,-1},
2300 {0x14b,0x177,2,-1}, {0x17a,0x17e,2,-1}, {0x17f,0x17f,-1,-300},
2301 {0x183,0x185,2,-1}, {0x188,0x18c,4,-1}, {0x192,0x192,-1,-1},
2302 {0x195,0x195,-1,97}, {0x199,0x199,-1,-1}, {0x19e,0x19e,-1,130},
2303 {0x1a1,0x1a5,2,-1}, {0x1a8,0x1ad,5,-1}, {0x1b0,0x1b4,4,-1},
2304 {0x1b6,0x1b9,3,-1}, {0x1bd,0x1bd,-1,-1}, {0x1bf,0x1bf,-1,56},
2305 {0x1c5,0x1c6,1,-1}, {0x1c8,0x1c9,1,-1}, {0x1cb,0x1cc,1,-1},
2306 {0x1ce,0x1dc,2,-1}, {0x1dd,0x1dd,-1,-79}, {0x1df,0x1ef,2,-1},
2307 {0x1f2,0x1f3,1,-1}, {0x1f5,0x1f9,4,-1}, {0x1fb,0x21f,2,-1},
2308 {0x223,0x233,2,-1}, {0x253,0x253,-1,-210}, {0x254,0x254,-1,-206},
2309 {0x256,0x257,1,-205}, {0x259,0x259,-1,-202}, {0x25b,0x25b,-1,-203},
2310 {0x260,0x260,-1,-205}, {0x263,0x263,-1,-207}, {0x268,0x268,-1,-209},
2311 {0x269,0x26f,6,-211}, {0x272,0x272,-1,-213}, {0x275,0x275,-1,-214},
2312 {0x280,0x283,3,-218}, {0x288,0x288,-1,-218}, {0x28a,0x28b,1,-217},
2313 {0x292,0x292,-1,-219}, {0x3ac,0x3ac,-1,-38}, {0x3ad,0x3af,1,-37},
2314 {0x3b1,0x3c1,1,-32}, {0x3c2,0x3c2,-1,-31}, {0x3c3,0x3cb,1,-32},
2315 {0x3cc,0x3cc,-1,-64}, {0x3cd,0x3ce,1,-63}, {0x3d0,0x3d0,-1,-62},
2316 {0x3d1,0x3d1,-1,-57}, {0x3d5,0x3d5,-1,-47}, {0x3d6,0x3d6,-1,-54},
2317 {0x3d9,0x3ef,2,-1}, {0x3f0,0x3f0,-1,-86}, {0x3f1,0x3f1,-1,-80},
2318 {0x3f2,0x3f2,-1,7}, {0x3f5,0x3f5,-1,-96}, {0x3f8,0x3fb,3,-1},
2319 {0x430,0x44f,1,-32}, {0x450,0x45f,1,-80}, {0x461,0x481,2,-1},
2320 {0x48b,0x4bf,2,-1}, {0x4c2,0x4ce,2,-1}, {0x4d1,0x4f5,2,-1},
2321 {0x4f9,0x501,8,-1}, {0x503,0x50f,2,-1}, {0x561,0x586,1,-48},
2322 {0x1e01,0x1e95,2,-1}, {0x1e9b,0x1e9b,-1,-59}, {0x1ea1,0x1ef9,2,-1},
2323 {0x1f00,0x1f07,1,8}, {0x1f10,0x1f15,1,8}, {0x1f20,0x1f27,1,8},
2324 {0x1f30,0x1f37,1,8}, {0x1f40,0x1f45,1,8}, {0x1f51,0x1f57,2,8},
2325 {0x1f60,0x1f67,1,8}, {0x1f70,0x1f71,1,74}, {0x1f72,0x1f75,1,86},
2326 {0x1f76,0x1f77,1,100}, {0x1f78,0x1f79,1,128}, {0x1f7a,0x1f7b,1,112},
2327 {0x1f7c,0x1f7d,1,126}, {0x1f80,0x1f87,1,8}, {0x1f90,0x1f97,1,8},
2328 {0x1fa0,0x1fa7,1,8}, {0x1fb0,0x1fb1,1,8}, {0x1fb3,0x1fb3,-1,9},
2329 {0x1fbe,0x1fbe,-1,-7205}, {0x1fc3,0x1fc3,-1,9}, {0x1fd0,0x1fd1,1,8},
2330 {0x1fe0,0x1fe1,1,8}, {0x1fe5,0x1fe5,-1,7}, {0x1ff3,0x1ff3,-1,9},
2331 {0xff41,0xff5a,1,-32}, {0x10428,0x1044f,1,-40}
2335 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
2336 * simple case folding.
2339 utf_toupper(a)
2340 int a;
2342 /* If 'casemap' contains "keepascii" use ASCII style toupper(). */
2343 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
2344 return TOUPPER_ASC(a);
2346 #if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
2347 /* If towupper() is available and handles Unicode, use it. */
2348 if (!(cmp_flags & CMP_INTERNAL))
2349 return towupper(a);
2350 #endif
2352 /* For characters below 128 use locale sensitive toupper(). */
2353 if (a < 128)
2354 return TOUPPER_LOC(a);
2356 /* For any other characters use the above mapping table. */
2357 return utf_convert(a, toUpper, sizeof(toUpper));
2361 utf_islower(a)
2362 int a;
2364 return (utf_toupper(a) != a);
2368 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
2369 * simple case folding.
2372 utf_tolower(a)
2373 int a;
2375 /* If 'casemap' contains "keepascii" use ASCII style tolower(). */
2376 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
2377 return TOLOWER_ASC(a);
2379 #if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
2380 /* If towlower() is available and handles Unicode, use it. */
2381 if (!(cmp_flags & CMP_INTERNAL))
2382 return towlower(a);
2383 #endif
2385 /* For characters below 128 use locale sensitive tolower(). */
2386 if (a < 128)
2387 return TOLOWER_LOC(a);
2389 /* For any other characters use the above mapping table. */
2390 return utf_convert(a, toLower, sizeof(toLower));
2394 utf_isupper(a)
2395 int a;
2397 return (utf_tolower(a) != a);
2401 * Version of strnicmp() that handles multi-byte characters.
2402 * Needed for Big5, Sjift-JIS and UTF-8 encoding. Other DBCS encodings can
2403 * probably use strnicmp(), because there are no ASCII characters in the
2404 * second byte.
2405 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
2406 * two characters otherwise.
2409 mb_strnicmp(s1, s2, nn)
2410 char_u *s1, *s2;
2411 size_t nn;
2413 int i, j, l;
2414 int cdiff;
2415 int incomplete = FALSE;
2416 int n = (int)nn;
2418 for (i = 0; i < n; i += l)
2420 if (s1[i] == NUL && s2[i] == NUL) /* both strings end */
2421 return 0;
2422 if (enc_utf8)
2424 l = utf_byte2len(s1[i]);
2425 if (l > n - i)
2427 l = n - i; /* incomplete character */
2428 incomplete = TRUE;
2430 /* Check directly first, it's faster. */
2431 for (j = 0; j < l; ++j)
2433 if (s1[i + j] != s2[i + j])
2434 break;
2435 if (s1[i + j] == 0)
2436 /* Both stings have the same bytes but are incomplete or
2437 * have illegal bytes, accept them as equal. */
2438 l = j;
2440 if (j < l)
2442 /* If one of the two characters is incomplete return -1. */
2443 if (incomplete || i + utf_byte2len(s2[i]) > n)
2444 return -1;
2445 cdiff = utf_fold(utf_ptr2char(s1 + i))
2446 - utf_fold(utf_ptr2char(s2 + i));
2447 if (cdiff != 0)
2448 return cdiff;
2451 else
2453 l = (*mb_ptr2len)(s1 + i);
2454 if (l <= 1)
2456 /* Single byte: first check normally, then with ignore case. */
2457 if (s1[i] != s2[i])
2459 cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
2460 if (cdiff != 0)
2461 return cdiff;
2464 else
2466 /* For non-Unicode multi-byte don't ignore case. */
2467 if (l > n - i)
2468 l = n - i;
2469 cdiff = STRNCMP(s1 + i, s2 + i, l);
2470 if (cdiff != 0)
2471 return cdiff;
2475 return 0;
2479 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
2480 * 'encoding' has been set to.
2482 void
2483 show_utf8()
2485 int len;
2486 int rlen = 0;
2487 char_u *line;
2488 int clen;
2489 int i;
2491 /* Get the byte length of the char under the cursor, including composing
2492 * characters. */
2493 line = ml_get_cursor();
2494 len = utfc_ptr2len(line);
2495 if (len == 0)
2497 MSG("NUL");
2498 return;
2501 clen = 0;
2502 for (i = 0; i < len; ++i)
2504 if (clen == 0)
2506 /* start of (composing) character, get its length */
2507 if (i > 0)
2509 STRCPY(IObuff + rlen, "+ ");
2510 rlen += 2;
2512 clen = utf_ptr2len(line + i);
2514 sprintf((char *)IObuff + rlen, "%02x ", line[i]);
2515 --clen;
2516 rlen += (int)STRLEN(IObuff + rlen);
2517 if (rlen > IOSIZE - 20)
2518 break;
2521 msg(IObuff);
2525 * mb_head_off() function pointer.
2526 * Return offset from "p" to the first byte of the character it points into.
2527 * Returns 0 when already at the first byte of a character.
2530 latin_head_off(base, p)
2531 char_u *base UNUSED;
2532 char_u *p UNUSED;
2534 return 0;
2538 dbcs_head_off(base, p)
2539 char_u *base;
2540 char_u *p;
2542 char_u *q;
2544 /* It can't be a trailing byte when not using DBCS, at the start of the
2545 * string or the previous byte can't start a double-byte. */
2546 if (p <= base || MB_BYTE2LEN(p[-1]) == 1)
2547 return 0;
2549 /* This is slow: need to start at the base and go forward until the
2550 * byte we are looking for. Return 1 when we went past it, 0 otherwise. */
2551 q = base;
2552 while (q < p)
2553 q += dbcs_ptr2len(q);
2554 return (q == p) ? 0 : 1;
2558 * Special version of dbcs_head_off() that works for ScreenLines[], where
2559 * single-width DBCS_JPNU characters are stored separately.
2562 dbcs_screen_head_off(base, p)
2563 char_u *base;
2564 char_u *p;
2566 char_u *q;
2568 /* It can't be a trailing byte when not using DBCS, at the start of the
2569 * string or the previous byte can't start a double-byte.
2570 * For euc-jp an 0x8e byte in the previous cell always means we have a
2571 * lead byte in the current cell. */
2572 if (p <= base
2573 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
2574 || MB_BYTE2LEN(p[-1]) == 1)
2575 return 0;
2577 /* This is slow: need to start at the base and go forward until the
2578 * byte we are looking for. Return 1 when we went past it, 0 otherwise.
2579 * For DBCS_JPNU look out for 0x8e, which means the second byte is not
2580 * stored as the next byte. */
2581 q = base;
2582 while (q < p)
2584 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
2585 ++q;
2586 else
2587 q += dbcs_ptr2len(q);
2589 return (q == p) ? 0 : 1;
2593 utf_head_off(base, p)
2594 char_u *base;
2595 char_u *p;
2597 char_u *q;
2598 char_u *s;
2599 int c;
2600 #ifdef FEAT_ARABIC
2601 char_u *j;
2602 #endif
2604 if (*p < 0x80) /* be quick for ASCII */
2605 return 0;
2607 /* Skip backwards over trailing bytes: 10xx.xxxx
2608 * Skip backwards again if on a composing char. */
2609 for (q = p; ; --q)
2611 /* Move s to the last byte of this char. */
2612 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
2614 /* Move q to the first byte of this char. */
2615 while (q > base && (*q & 0xc0) == 0x80)
2616 --q;
2617 /* Check for illegal sequence. Do allow an illegal byte after where we
2618 * started. */
2619 if (utf8len_tab[*q] != (int)(s - q + 1)
2620 && utf8len_tab[*q] != (int)(p - q + 1))
2621 return 0;
2623 if (q <= base)
2624 break;
2626 c = utf_ptr2char(q);
2627 if (utf_iscomposing(c))
2628 continue;
2630 #ifdef FEAT_ARABIC
2631 if (arabic_maycombine(c))
2633 /* Advance to get a sneak-peak at the next char */
2634 j = q;
2635 --j;
2636 /* Move j to the first byte of this char. */
2637 while (j > base && (*j & 0xc0) == 0x80)
2638 --j;
2639 if (arabic_combine(utf_ptr2char(j), c))
2640 continue;
2642 #endif
2643 break;
2646 return (int)(p - q);
2650 * Copy a character from "*fp" to "*tp" and advance the pointers.
2652 void
2653 mb_copy_char(fp, tp)
2654 char_u **fp;
2655 char_u **tp;
2657 int l = (*mb_ptr2len)(*fp);
2659 mch_memmove(*tp, *fp, (size_t)l);
2660 *tp += l;
2661 *fp += l;
2665 * Return the offset from "p" to the first byte of a character. When "p" is
2666 * at the start of a character 0 is returned, otherwise the offset to the next
2667 * character. Can start anywhere in a stream of bytes.
2670 mb_off_next(base, p)
2671 char_u *base;
2672 char_u *p;
2674 int i;
2675 int j;
2677 if (enc_utf8)
2679 if (*p < 0x80) /* be quick for ASCII */
2680 return 0;
2682 /* Find the next character that isn't 10xx.xxxx */
2683 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
2685 if (i > 0)
2687 /* Check for illegal sequence. */
2688 for (j = 0; p - j > base; ++j)
2689 if ((p[-j] & 0xc0) != 0x80)
2690 break;
2691 if (utf8len_tab[p[-j]] != i + j)
2692 return 0;
2694 return i;
2697 /* Only need to check if we're on a trail byte, it doesn't matter if we
2698 * want the offset to the next or current character. */
2699 return (*mb_head_off)(base, p);
2703 * Return the offset from "p" to the last byte of the character it points
2704 * into. Can start anywhere in a stream of bytes.
2707 mb_tail_off(base, p)
2708 char_u *base;
2709 char_u *p;
2711 int i;
2712 int j;
2714 if (*p == NUL)
2715 return 0;
2717 if (enc_utf8)
2719 /* Find the last character that is 10xx.xxxx */
2720 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
2722 /* Check for illegal sequence. */
2723 for (j = 0; p - j > base; ++j)
2724 if ((p[-j] & 0xc0) != 0x80)
2725 break;
2726 if (utf8len_tab[p[-j]] != i + j + 1)
2727 return 0;
2728 return i;
2731 /* It can't be the first byte if a double-byte when not using DBCS, at the
2732 * end of the string or the byte can't start a double-byte. */
2733 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
2734 return 0;
2736 /* Return 1 when on the lead byte, 0 when on the tail byte. */
2737 return 1 - dbcs_head_off(base, p);
2741 * Find the next illegal byte sequence.
2743 void
2744 utf_find_illegal()
2746 pos_T pos = curwin->w_cursor;
2747 char_u *p;
2748 int len;
2749 vimconv_T vimconv;
2750 char_u *tofree = NULL;
2752 vimconv.vc_type = CONV_NONE;
2753 if (enc_utf8 && (enc_canon_props(curbuf->b_p_fenc) & ENC_8BIT))
2755 /* 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
2756 * possibly a utf-8 file with illegal bytes. Setup for conversion
2757 * from utf-8 to 'fileencoding'. */
2758 convert_setup(&vimconv, p_enc, curbuf->b_p_fenc);
2761 #ifdef FEAT_VIRTUALEDIT
2762 curwin->w_cursor.coladd = 0;
2763 #endif
2764 for (;;)
2766 p = ml_get_cursor();
2767 if (vimconv.vc_type != CONV_NONE)
2769 vim_free(tofree);
2770 tofree = string_convert(&vimconv, p, NULL);
2771 if (tofree == NULL)
2772 break;
2773 p = tofree;
2776 while (*p != NUL)
2778 /* Illegal means that there are not enough trail bytes (checked by
2779 * utf_ptr2len()) or too many of them (overlong sequence). */
2780 len = utf_ptr2len(p);
2781 if (*p >= 0x80 && (len == 1
2782 || utf_char2len(utf_ptr2char(p)) != len))
2784 if (vimconv.vc_type == CONV_NONE)
2785 curwin->w_cursor.col += (colnr_T)(p - ml_get_cursor());
2786 else
2788 int l;
2790 len = (int)(p - tofree);
2791 for (p = ml_get_cursor(); *p != NUL && len-- > 0; p += l)
2793 l = utf_ptr2len(p);
2794 curwin->w_cursor.col += l;
2797 goto theend;
2799 p += len;
2801 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2802 break;
2803 ++curwin->w_cursor.lnum;
2804 curwin->w_cursor.col = 0;
2807 /* didn't find it: don't move and beep */
2808 curwin->w_cursor = pos;
2809 beep_flush();
2811 theend:
2812 vim_free(tofree);
2813 convert_setup(&vimconv, NULL, NULL);
2816 #if defined(HAVE_GTK2) || defined(PROTO)
2818 * Return TRUE if string "s" is a valid utf-8 string.
2819 * When "end" is NULL stop at the first NUL.
2820 * When "end" is positive stop there.
2823 utf_valid_string(s, end)
2824 char_u *s;
2825 char_u *end;
2827 int l;
2828 char_u *p = s;
2830 while (end == NULL ? *p != NUL : p < end)
2832 if ((*p & 0xc0) == 0x80)
2833 return FALSE; /* invalid lead byte */
2834 l = utf8len_tab[*p];
2835 if (end != NULL && p + l > end)
2836 return FALSE; /* incomplete byte sequence */
2837 ++p;
2838 while (--l > 0)
2839 if ((*p++ & 0xc0) != 0x80)
2840 return FALSE; /* invalid trail byte */
2842 return TRUE;
2844 #endif
2846 #if defined(FEAT_GUI) || defined(PROTO)
2848 * Special version of mb_tail_off() for use in ScreenLines[].
2851 dbcs_screen_tail_off(base, p)
2852 char_u *base;
2853 char_u *p;
2855 /* It can't be the first byte if a double-byte when not using DBCS, at the
2856 * end of the string or the byte can't start a double-byte.
2857 * For euc-jp an 0x8e byte always means we have a lead byte in the current
2858 * cell. */
2859 if (*p == NUL || p[1] == NUL
2860 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
2861 || MB_BYTE2LEN(*p) == 1)
2862 return 0;
2864 /* Return 1 when on the lead byte, 0 when on the tail byte. */
2865 return 1 - dbcs_screen_head_off(base, p);
2867 #endif
2870 * If the cursor moves on an trail byte, set the cursor on the lead byte.
2871 * Thus it moves left if necessary.
2872 * Return TRUE when the cursor was adjusted.
2874 void
2875 mb_adjust_cursor()
2877 mb_adjustpos(&curwin->w_cursor);
2881 * Adjust position "*lp" to point to the first byte of a multi-byte character.
2882 * If it points to a tail byte it's moved backwards to the head byte.
2884 void
2885 mb_adjustpos(lp)
2886 pos_T *lp;
2888 char_u *p;
2890 if (lp->col > 0
2891 #ifdef FEAT_VIRTUALEDIT
2892 || lp->coladd > 1
2893 #endif
2896 p = ml_get(lp->lnum);
2897 lp->col -= (*mb_head_off)(p, p + lp->col);
2898 #ifdef FEAT_VIRTUALEDIT
2899 /* Reset "coladd" when the cursor would be on the right half of a
2900 * double-wide character. */
2901 if (lp->coladd == 1
2902 && p[lp->col] != TAB
2903 && vim_isprintc((*mb_ptr2char)(p + lp->col))
2904 && ptr2cells(p + lp->col) > 1)
2905 lp->coladd = 0;
2906 #endif
2911 * Return a pointer to the character before "*p", if there is one.
2913 char_u *
2914 mb_prevptr(line, p)
2915 char_u *line; /* start of the string */
2916 char_u *p;
2918 if (p > line)
2919 mb_ptr_back(line, p);
2920 return p;
2924 * Return the character length of "str". Each multi-byte character (with
2925 * following composing characters) counts as one.
2928 mb_charlen(str)
2929 char_u *str;
2931 char_u *p = str;
2932 int count;
2934 if (p == NULL)
2935 return 0;
2937 for (count = 0; *p != NUL; count++)
2938 p += (*mb_ptr2len)(p);
2940 return count;
2943 #if defined(FEAT_SPELL) || defined(PROTO)
2945 * Like mb_charlen() but for a string with specified length.
2948 mb_charlen_len(str, len)
2949 char_u *str;
2950 int len;
2952 char_u *p = str;
2953 int count;
2955 for (count = 0; *p != NUL && p < str + len; count++)
2956 p += (*mb_ptr2len)(p);
2958 return count;
2960 #endif
2963 * Try to un-escape a multi-byte character.
2964 * Used for the "to" and "from" part of a mapping.
2965 * Return the un-escaped string if it is a multi-byte character, and advance
2966 * "pp" to just after the bytes that formed it.
2967 * Return NULL if no multi-byte char was found.
2969 char_u *
2970 mb_unescape(pp)
2971 char_u **pp;
2973 static char_u buf[MB_MAXBYTES + 1];
2974 int n, m = 0;
2975 char_u *str = *pp;
2977 /* Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
2978 * KS_EXTRA KE_CSI to CSI. */
2979 for (n = 0; str[n] != NUL && m <= MB_MAXBYTES; ++n)
2981 if (str[n] == K_SPECIAL
2982 && str[n + 1] == KS_SPECIAL
2983 && str[n + 2] == KE_FILLER)
2985 buf[m++] = K_SPECIAL;
2986 n += 2;
2988 else if ((str[n] == K_SPECIAL
2989 # ifdef FEAT_GUI
2990 || str[n] == CSI
2991 # endif
2993 && str[n + 1] == KS_EXTRA
2994 && str[n + 2] == (int)KE_CSI)
2996 buf[m++] = CSI;
2997 n += 2;
2999 else if (str[n] == K_SPECIAL
3000 # ifdef FEAT_GUI
3001 || str[n] == CSI
3002 # endif
3004 break; /* a special key can't be a multibyte char */
3005 else
3006 buf[m++] = str[n];
3007 buf[m] = NUL;
3009 /* Return a multi-byte character if it's found. An illegal sequence
3010 * will result in a 1 here. */
3011 if ((*mb_ptr2len)(buf) > 1)
3013 *pp = str + n + 1;
3014 return buf;
3017 return NULL;
3021 * Return TRUE if the character at "row"/"col" on the screen is the left side
3022 * of a double-width character.
3023 * Caller must make sure "row" and "col" are not invalid!
3026 mb_lefthalve(row, col)
3027 int row;
3028 int col;
3030 #ifdef FEAT_HANGULIN
3031 if (composing_hangul)
3032 return TRUE;
3033 #endif
3034 return (*mb_off2cells)(LineOffset[row] + col,
3035 LineOffset[row] + screen_Columns) > 1;
3039 * Correct a position on the screen, if it's the right half of a double-wide
3040 * char move it to the left half. Returns the corrected column.
3043 mb_fix_col(col, row)
3044 int col;
3045 int row;
3047 col = check_col(col);
3048 row = check_row(row);
3049 if (has_mbyte && ScreenLines != NULL && col > 0
3050 && ((enc_dbcs
3051 && ScreenLines[LineOffset[row] + col] != NUL
3052 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
3053 ScreenLines + LineOffset[row] + col))
3054 || (enc_utf8 && ScreenLines[LineOffset[row] + col] == 0)))
3055 return col - 1;
3056 return col;
3058 #endif
3060 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
3061 static int enc_alias_search __ARGS((char_u *name));
3064 * Skip the Vim specific head of a 'encoding' name.
3066 char_u *
3067 enc_skip(p)
3068 char_u *p;
3070 if (STRNCMP(p, "2byte-", 6) == 0)
3071 return p + 6;
3072 if (STRNCMP(p, "8bit-", 5) == 0)
3073 return p + 5;
3074 return p;
3078 * Find the canonical name for encoding "enc".
3079 * When the name isn't recognized, returns "enc" itself, but with all lower
3080 * case characters and '_' replaced with '-'.
3081 * Returns an allocated string. NULL for out-of-memory.
3083 char_u *
3084 enc_canonize(enc)
3085 char_u *enc;
3087 char_u *r;
3088 char_u *p, *s;
3089 int i;
3091 # ifdef FEAT_MBYTE
3092 if (STRCMP(enc, "default") == 0)
3094 /* Use the default encoding as it's found by set_init_1(). */
3095 r = get_encoding_default();
3096 if (r == NULL)
3097 r = (char_u *)"latin1";
3098 return vim_strsave(r);
3100 # endif
3102 /* copy "enc" to allocated memory, with room for two '-' */
3103 r = alloc((unsigned)(STRLEN(enc) + 3));
3104 if (r != NULL)
3106 /* Make it all lower case and replace '_' with '-'. */
3107 p = r;
3108 for (s = enc; *s != NUL; ++s)
3110 if (*s == '_')
3111 *p++ = '-';
3112 else
3113 *p++ = TOLOWER_ASC(*s);
3115 *p = NUL;
3117 /* Skip "2byte-" and "8bit-". */
3118 p = enc_skip(r);
3120 /* Change "microsoft-cp" to "cp". Used in some spell files. */
3121 if (STRNCMP(p, "microsoft-cp", 12) == 0)
3122 STRMOVE(p, p + 10);
3124 /* "iso8859" -> "iso-8859" */
3125 if (STRNCMP(p, "iso8859", 7) == 0)
3127 STRMOVE(p + 4, p + 3);
3128 p[3] = '-';
3131 /* "iso-8859n" -> "iso-8859-n" */
3132 if (STRNCMP(p, "iso-8859", 8) == 0 && p[8] != '-')
3134 STRMOVE(p + 9, p + 8);
3135 p[8] = '-';
3138 /* "latin-N" -> "latinN" */
3139 if (STRNCMP(p, "latin-", 6) == 0)
3140 STRMOVE(p + 5, p + 6);
3142 if (enc_canon_search(p) >= 0)
3144 /* canonical name can be used unmodified */
3145 if (p != r)
3146 STRMOVE(r, p);
3148 else if ((i = enc_alias_search(p)) >= 0)
3150 /* alias recognized, get canonical name */
3151 vim_free(r);
3152 r = vim_strsave((char_u *)enc_canon_table[i].name);
3155 return r;
3159 * Search for an encoding alias of "name".
3160 * Returns -1 when not found.
3162 static int
3163 enc_alias_search(name)
3164 char_u *name;
3166 int i;
3168 for (i = 0; enc_alias_table[i].name != NULL; ++i)
3169 if (STRCMP(name, enc_alias_table[i].name) == 0)
3170 return enc_alias_table[i].canon;
3171 return -1;
3173 #endif
3175 #if defined(FEAT_MBYTE) || defined(PROTO)
3177 #ifdef HAVE_LANGINFO_H
3178 # include <langinfo.h>
3179 #endif
3182 * Get the canonicalized encoding of the current locale.
3183 * Returns an allocated string when successful, NULL when not.
3185 char_u *
3186 enc_locale()
3188 #ifndef WIN3264
3189 char *s;
3190 char *p;
3191 int i;
3192 #endif
3193 char buf[50];
3194 #ifdef WIN3264
3195 long acp = GetACP();
3197 if (acp == 1200)
3198 STRCPY(buf, "ucs-2le");
3199 else if (acp == 1252) /* cp1252 is used as latin1 */
3200 STRCPY(buf, "latin1");
3201 else
3202 sprintf(buf, "cp%ld", acp);
3203 #else
3204 # ifdef HAVE_NL_LANGINFO_CODESET
3205 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
3206 # endif
3207 # if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
3208 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
3209 # endif
3210 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
3211 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
3212 s = getenv("LANG");
3214 if (s == NULL || *s == NUL)
3215 return FAIL;
3217 /* The most generic locale format is:
3218 * language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
3219 * If there is a '.' remove the part before it.
3220 * if there is something after the codeset, remove it.
3221 * Make the name lowercase and replace '_' with '-'.
3222 * Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
3223 * "ko_KR.EUC" == "euc-kr"
3225 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
3227 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
3228 && !isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
3230 /* copy "XY.EUC" to "euc-XY" to buf[10] */
3231 STRCPY(buf + 10, "euc-");
3232 buf[14] = p[-2];
3233 buf[15] = p[-1];
3234 buf[16] = 0;
3235 s = buf + 10;
3237 else
3238 s = p + 1;
3240 for (i = 0; s[i] != NUL && i < (int)sizeof(buf) - 1; ++i)
3242 if (s[i] == '_' || s[i] == '-')
3243 buf[i] = '-';
3244 else if (isalnum((int)s[i]))
3245 buf[i] = TOLOWER_ASC(s[i]);
3246 else
3247 break;
3249 buf[i] = NUL;
3250 #endif
3252 return enc_canonize((char_u *)buf);
3255 #if defined(WIN3264) || defined(PROTO)
3257 * Convert an encoding name to an MS-Windows codepage.
3258 * Returns zero if no codepage can be figured out.
3261 encname2codepage(name)
3262 char_u *name;
3264 int cp;
3265 char_u *p = name;
3266 int idx;
3268 if (STRNCMP(p, "8bit-", 5) == 0)
3269 p += 5;
3270 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
3271 p += 6;
3273 if (p[0] == 'c' && p[1] == 'p')
3274 cp = atoi(p + 2);
3275 else if ((idx = enc_canon_search(p)) >= 0)
3276 cp = enc_canon_table[idx].codepage;
3277 else
3278 return 0;
3279 if (IsValidCodePage(cp))
3280 return cp;
3281 return 0;
3283 #endif
3285 # if defined(USE_ICONV) || defined(PROTO)
3287 static char_u *iconv_string __ARGS((vimconv_T *vcp, char_u *str, int slen, int *unconvlenp, int *resultlenp));
3290 * Call iconv_open() with a check if iconv() works properly (there are broken
3291 * versions).
3292 * Returns (void *)-1 if failed.
3293 * (should return iconv_t, but that causes problems with prototypes).
3295 void *
3296 my_iconv_open(to, from)
3297 char_u *to;
3298 char_u *from;
3300 iconv_t fd;
3301 #define ICONV_TESTLEN 400
3302 char_u tobuf[ICONV_TESTLEN];
3303 char *p;
3304 size_t tolen;
3305 static int iconv_ok = -1;
3307 if (iconv_ok == FALSE)
3308 return (void *)-1; /* detected a broken iconv() previously */
3310 #ifdef DYNAMIC_ICONV
3311 /* Check if the iconv.dll can be found. */
3312 if (!iconv_enabled(TRUE))
3313 return (void *)-1;
3314 #endif
3316 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
3318 if (fd != (iconv_t)-1 && iconv_ok == -1)
3321 * Do a dummy iconv() call to check if it actually works. There is a
3322 * version of iconv() on Linux that is broken. We can't ignore it,
3323 * because it's wide-spread. The symptoms are that after outputting
3324 * the initial shift state the "to" pointer is NULL and conversion
3325 * stops for no apparent reason after about 8160 characters.
3327 p = (char *)tobuf;
3328 tolen = ICONV_TESTLEN;
3329 (void)iconv(fd, NULL, NULL, &p, &tolen);
3330 if (p == NULL)
3332 iconv_ok = FALSE;
3333 iconv_close(fd);
3334 fd = (iconv_t)-1;
3336 else
3337 iconv_ok = TRUE;
3340 return (void *)fd;
3344 * Convert the string "str[slen]" with iconv().
3345 * If "unconvlenp" is not NULL handle the string ending in an incomplete
3346 * sequence and set "*unconvlenp" to the length of it.
3347 * Returns the converted string in allocated memory. NULL for an error.
3348 * If resultlenp is not NULL, sets it to the result length in bytes.
3350 static char_u *
3351 iconv_string(vcp, str, slen, unconvlenp, resultlenp)
3352 vimconv_T *vcp;
3353 char_u *str;
3354 int slen;
3355 int *unconvlenp;
3356 int *resultlenp;
3358 const char *from;
3359 size_t fromlen;
3360 char *to;
3361 size_t tolen;
3362 size_t len = 0;
3363 size_t done = 0;
3364 char_u *result = NULL;
3365 char_u *p;
3366 int l;
3368 from = (char *)str;
3369 fromlen = slen;
3370 for (;;)
3372 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
3374 /* Allocate enough room for most conversions. When re-allocating
3375 * increase the buffer size. */
3376 len = len + fromlen * 2 + 40;
3377 p = alloc((unsigned)len);
3378 if (p != NULL && done > 0)
3379 mch_memmove(p, result, done);
3380 vim_free(result);
3381 result = p;
3382 if (result == NULL) /* out of memory */
3383 break;
3386 to = (char *)result + done;
3387 tolen = len - done - 2;
3388 /* Avoid a warning for systems with a wrong iconv() prototype by
3389 * casting the second argument to void *. */
3390 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
3391 != (size_t)-1)
3393 /* Finished, append a NUL. */
3394 *to = NUL;
3395 break;
3398 /* Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
3399 * iconv library may use one of them. */
3400 if (!vcp->vc_fail && unconvlenp != NULL
3401 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
3403 /* Handle an incomplete sequence at the end. */
3404 *to = NUL;
3405 *unconvlenp = (int)fromlen;
3406 break;
3409 /* Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
3410 * iconv library may use one of them. */
3411 else if (!vcp->vc_fail
3412 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
3413 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
3415 /* Can't convert: insert a '?' and skip a character. This assumes
3416 * conversion from 'encoding' to something else. In other
3417 * situations we don't know what to skip anyway. */
3418 *to++ = '?';
3419 if ((*mb_ptr2cells)((char_u *)from) > 1)
3420 *to++ = '?';
3421 if (enc_utf8)
3422 l = utfc_ptr2len_len((char_u *)from, (int)fromlen);
3423 else
3425 l = (*mb_ptr2len)((char_u *)from);
3426 if (l > (int)fromlen)
3427 l = (int)fromlen;
3429 from += l;
3430 fromlen -= l;
3432 else if (ICONV_ERRNO != ICONV_E2BIG)
3434 /* conversion failed */
3435 vim_free(result);
3436 result = NULL;
3437 break;
3439 /* Not enough room or skipping illegal sequence. */
3440 done = to - (char *)result;
3443 if (resultlenp != NULL)
3444 *resultlenp = (int)(to - (char *)result);
3445 return result;
3448 # if defined(DYNAMIC_ICONV) || defined(PROTO)
3450 * Dynamically load the "iconv.dll" on Win32.
3453 #ifndef DYNAMIC_ICONV /* just generating prototypes */
3454 # define HINSTANCE int
3455 #endif
3456 static HINSTANCE hIconvDLL = 0;
3457 static HINSTANCE hMsvcrtDLL = 0;
3459 # ifndef DYNAMIC_ICONV_DLL
3460 # define DYNAMIC_ICONV_DLL "iconv.dll"
3461 # define DYNAMIC_ICONV_DLL_ALT "libiconv.dll"
3462 # endif
3463 # ifndef DYNAMIC_MSVCRT_DLL
3464 # define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
3465 # endif
3468 * Try opening the iconv.dll and return TRUE if iconv() can be used.
3471 iconv_enabled(verbose)
3472 int verbose;
3474 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
3475 return TRUE;
3476 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL);
3477 if (hIconvDLL == 0) /* sometimes it's called libiconv.dll */
3478 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL_ALT);
3479 if (hIconvDLL != 0)
3480 hMsvcrtDLL = LoadLibrary(DYNAMIC_MSVCRT_DLL);
3481 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
3483 /* Only give the message when 'verbose' is set, otherwise it might be
3484 * done whenever a conversion is attempted. */
3485 if (verbose && p_verbose > 0)
3487 verbose_enter();
3488 EMSG2(_(e_loadlib),
3489 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL);
3490 verbose_leave();
3492 iconv_end();
3493 return FALSE;
3496 iconv = (void *)GetProcAddress(hIconvDLL, "libiconv");
3497 iconv_open = (void *)GetProcAddress(hIconvDLL, "libiconv_open");
3498 iconv_close = (void *)GetProcAddress(hIconvDLL, "libiconv_close");
3499 iconvctl = (void *)GetProcAddress(hIconvDLL, "libiconvctl");
3500 iconv_errno = (void *)GetProcAddress(hMsvcrtDLL, "_errno");
3501 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
3502 || iconvctl == NULL || iconv_errno == NULL)
3504 iconv_end();
3505 if (verbose && p_verbose > 0)
3507 verbose_enter();
3508 EMSG2(_(e_loadfunc), "for libiconv");
3509 verbose_leave();
3511 return FALSE;
3513 return TRUE;
3516 void
3517 iconv_end()
3519 /* Don't use iconv() when inputting or outputting characters. */
3520 if (input_conv.vc_type == CONV_ICONV)
3521 convert_setup(&input_conv, NULL, NULL);
3522 if (output_conv.vc_type == CONV_ICONV)
3523 convert_setup(&output_conv, NULL, NULL);
3525 if (hIconvDLL != 0)
3526 FreeLibrary(hIconvDLL);
3527 if (hMsvcrtDLL != 0)
3528 FreeLibrary(hMsvcrtDLL);
3529 hIconvDLL = 0;
3530 hMsvcrtDLL = 0;
3532 # endif /* DYNAMIC_ICONV */
3533 # endif /* USE_ICONV */
3535 #endif /* FEAT_MBYTE */
3537 #if defined(FEAT_XIM) || defined(PROTO)
3539 # ifdef FEAT_GUI_MACVIM
3540 typedef int GtkIMContext;
3541 typedef int * gpointer;
3542 typedef char gchar;
3543 # define g_return_if_fail(x) if (!(x)) return;
3544 # endif
3546 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)
3547 static int xim_has_preediting INIT(= FALSE); /* IM current status */
3550 * Set preedit_start_col to the current cursor position.
3552 static void
3553 init_preedit_start_col(void)
3555 if (State & CMDLINE)
3556 preedit_start_col = cmdline_getvcol_cursor();
3557 else if (curwin != NULL)
3558 getvcol(curwin, &curwin->w_cursor, &preedit_start_col, NULL, NULL);
3559 /* Prevent that preediting marks the buffer as changed. */
3560 xim_changed_while_preediting = curbuf->b_changed;
3562 # endif
3564 # if (defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM)) && !defined(PROTO)
3566 static int im_is_active = FALSE; /* IM is enabled for current mode */
3567 static int preedit_is_active = FALSE;
3568 static int im_preedit_cursor = 0; /* cursor offset in characters */
3569 static int im_preedit_trailing = 0; /* number of characters after cursor */
3571 static unsigned long im_commit_handler_id = 0;
3572 # ifndef FEAT_GUI_MACVIM
3573 static unsigned int im_activatekey_keyval = GDK_VoidSymbol;
3574 static unsigned int im_activatekey_state = 0;
3575 # endif
3577 # ifndef FEAT_GUI_MACVIM
3578 void
3579 im_set_active(int active)
3581 int was_active;
3583 #ifdef FEAT_UIMFEP
3584 if (!gui.in_use)
3586 uimfep_set_active(active);
3587 return;
3589 #endif
3591 was_active = !!im_is_active;
3592 im_is_active = (active && !p_imdisable);
3594 if (im_is_active != was_active)
3595 xim_reset();
3597 # else /* FEAT_GUI_MACVIM */
3598 void
3599 im_set_active(int active)
3601 if (gui.in_use)
3602 gui_im_set_active(active);
3603 else
3604 uimfep_set_active(active);
3606 # endif
3608 void
3609 xim_set_focus(int focus)
3611 # ifndef FEAT_GUI_MACVIM
3612 if (xic != NULL)
3614 if (focus)
3615 gtk_im_context_focus_in(xic);
3616 else
3617 gtk_im_context_focus_out(xic);
3619 # endif
3622 # ifndef FEAT_GUI_MACVIM
3623 void
3624 im_set_position(int row, int col)
3626 if (xic != NULL)
3628 GdkRectangle area;
3630 area.x = FILL_X(col);
3631 area.y = FILL_Y(row);
3632 area.width = gui.char_width * (mb_lefthalve(row, col) ? 2 : 1);
3633 area.height = gui.char_height;
3635 gtk_im_context_set_cursor_location(xic, &area);
3638 # endif
3640 # if 0 || defined(PROTO) /* apparently only used in gui_x11.c */
3641 void
3642 xim_set_preedit(void)
3644 im_set_position(gui.row, gui.col);
3646 # endif
3648 static void
3649 im_add_to_input(char_u *str, int len)
3651 /* Convert from 'termencoding' (always "utf-8") to 'encoding' */
3652 if (input_conv.vc_type != CONV_NONE)
3654 str = string_convert(&input_conv, str, &len);
3655 g_return_if_fail(str != NULL);
3658 add_to_input_buf_csi(str, len);
3660 if (input_conv.vc_type != CONV_NONE)
3661 vim_free(str);
3663 # ifndef FEAT_GUI_MACVIM
3664 if (p_mh) /* blank out the pointer if necessary */
3665 gui_mch_mousehide(TRUE);
3666 # endif
3669 static void
3670 im_delete_preedit(void)
3672 char_u bskey[] = {CSI, 'k', 'b'};
3673 char_u delkey[] = {CSI, 'k', 'D'};
3675 if (State & NORMAL)
3677 im_preedit_cursor = 0;
3678 return;
3680 for (; im_preedit_cursor > 0; --im_preedit_cursor)
3681 add_to_input_buf(bskey, (int)sizeof(bskey));
3683 for (; im_preedit_trailing > 0; --im_preedit_trailing)
3684 add_to_input_buf(delkey, (int)sizeof(delkey));
3688 * Move the cursor left by "num_move_back" characters.
3689 * Note that ins_left() checks im_is_preediting() to avoid breaking undo for
3690 * these K_LEFT keys.
3692 static void
3693 im_correct_cursor(int num_move_back)
3695 char_u backkey[] = {CSI, 'k', 'l'};
3697 if (State & NORMAL)
3698 return;
3699 # ifdef FEAT_RIGHTLEFT
3700 if ((State & CMDLINE) == 0 && curwin != NULL && curwin->w_p_rl)
3701 backkey[2] = 'r';
3702 # endif
3703 for (; num_move_back > 0; --num_move_back)
3704 add_to_input_buf(backkey, (int)sizeof(backkey));
3707 # ifndef FEAT_GUI_MACVIM
3708 static int xim_expected_char = NUL;
3709 static int xim_ignored_char = FALSE;
3710 # endif
3713 * Update the mode and cursor while in an IM callback.
3715 static void
3716 im_show_info(void)
3718 int old_vgetc_busy;
3720 old_vgetc_busy = vgetc_busy;
3721 vgetc_busy = TRUE;
3722 showmode();
3723 vgetc_busy = old_vgetc_busy;
3724 setcursor();
3725 out_flush();
3728 # ifndef FEAT_GUI_MACVIM
3730 * Callback invoked when the user finished preediting.
3731 * Put the final string into the input buffer.
3733 static void
3734 im_commit_cb(GtkIMContext *context UNUSED,
3735 const gchar *str,
3736 gpointer data UNUSED)
3738 int slen = (int)STRLEN(str);
3739 int add_to_input = TRUE;
3740 int clen;
3741 int len = slen;
3742 int commit_with_preedit = TRUE;
3743 char_u *im_str, *p;
3745 #ifdef XIM_DEBUG
3746 xim_log("im_commit_cb(): %s\n", str);
3747 #endif
3749 /* The imhangul module doesn't reset the preedit string before
3750 * committing. Call im_delete_preedit() to work around that. */
3751 im_delete_preedit();
3753 /* Indicate that preediting has finished. */
3754 if (preedit_start_col == MAXCOL)
3756 init_preedit_start_col();
3757 commit_with_preedit = FALSE;
3760 /* The thing which setting "preedit_start_col" to MAXCOL means that
3761 * "preedit_start_col" will be set forcely when calling
3762 * preedit_changed_cb() next time.
3763 * "preedit_start_col" should not reset with MAXCOL on this part. Vim
3764 * is simulating the preediting by using add_to_input_str(). when
3765 * preedit begin immediately before committed, the typebuf is not
3766 * flushed to screen, then it can't get correct "preedit_start_col".
3767 * Thus, it should calculate the cells by adding cells of the committed
3768 * string. */
3769 if (input_conv.vc_type != CONV_NONE)
3771 im_str = string_convert(&input_conv, (char_u *)str, &len);
3772 g_return_if_fail(im_str != NULL);
3774 else
3775 im_str = (char_u *)str;
3776 clen = 0;
3777 for (p = im_str; p < im_str + len; p += (*mb_ptr2len)(p))
3778 clen += (*mb_ptr2cells)(p);
3779 if (input_conv.vc_type != CONV_NONE)
3780 vim_free(im_str);
3781 preedit_start_col += clen;
3783 /* Is this a single character that matches a keypad key that's just
3784 * been pressed? If so, we don't want it to be entered as such - let
3785 * us carry on processing the raw keycode so that it may be used in
3786 * mappings as <kSomething>. */
3787 if (xim_expected_char != NUL)
3789 /* We're currently processing a keypad or other special key */
3790 if (slen == 1 && str[0] == xim_expected_char)
3792 /* It's a match - don't do it here */
3793 xim_ignored_char = TRUE;
3794 add_to_input = FALSE;
3796 else
3798 /* Not a match */
3799 xim_ignored_char = FALSE;
3803 if (add_to_input)
3804 im_add_to_input((char_u *)str, slen);
3806 /* Inserting chars while "im_is_active" is set does not cause a change of
3807 * buffer. When the chars are committed the buffer must be marked as
3808 * changed. */
3809 if (!commit_with_preedit)
3810 preedit_start_col = MAXCOL;
3812 /* This flag is used in changed() at next call. */
3813 xim_changed_while_preediting = TRUE;
3815 if (gtk_main_level() > 0)
3816 gtk_main_quit();
3818 # endif
3821 * Callback invoked after start to the preedit.
3823 # ifndef FEAT_GUI_MACVIM
3824 static void
3825 im_preedit_start_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
3826 # else
3827 void
3828 im_preedit_start_macvim()
3829 # endif
3831 #ifdef XIM_DEBUG
3832 xim_log("im_preedit_start_cb()\n");
3833 #endif
3835 im_is_active = TRUE;
3836 preedit_is_active = TRUE;
3837 gui_update_cursor(TRUE, FALSE);
3838 im_show_info();
3842 * Callback invoked after end to the preedit.
3844 # ifndef FEAT_GUI_MACVIM
3845 static void
3846 im_preedit_end_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
3847 # else
3848 void
3849 im_preedit_end_macvim()
3850 # endif
3852 #ifdef XIM_DEBUG
3853 xim_log("im_preedit_end_cb()\n");
3854 #endif
3855 im_delete_preedit();
3857 /* Indicate that preediting has finished */
3858 preedit_start_col = MAXCOL;
3859 xim_has_preediting = FALSE;
3861 #if 0
3862 /* Removal of this line suggested by Takuhiro Nishioka. Fixes that IM was
3863 * switched off unintentionally. We now use preedit_is_active (added by
3864 * SungHyun Nam). */
3865 im_is_active = FALSE;
3866 #endif
3867 preedit_is_active = FALSE;
3868 gui_update_cursor(TRUE, FALSE);
3869 im_show_info();
3873 * Callback invoked after changes to the preedit string. If the preedit
3874 * string was empty before, remember the preedit start column so we know
3875 * where to apply feedback attributes. Delete the previous preedit string
3876 * if there was one, save the new preedit cursor offset, and put the new
3877 * string into the input buffer.
3879 * TODO: The pragmatic "put into input buffer" approach used here has
3880 * several fundamental problems:
3882 * - The characters in the preedit string are subject to remapping.
3883 * That's broken, only the finally committed string should be remapped.
3885 * - There is a race condition involved: The retrieved value for the
3886 * current cursor position will be wrong if any unprocessed characters
3887 * are still queued in the input buffer.
3889 * - Due to the lack of synchronization between the file buffer in memory
3890 * and any typed characters, it's practically impossible to implement the
3891 * "retrieve_surrounding" and "delete_surrounding" signals reliably. IM
3892 * modules for languages such as Thai are likely to rely on this feature
3893 * for proper operation.
3895 * Conclusions: I think support for preediting needs to be moved to the
3896 * core parts of Vim. Ideally, until it has been committed, the preediting
3897 * string should only be displayed and not affect the buffer content at all.
3898 * The question how to deal with the synchronization issue still remains.
3899 * Circumventing the input buffer is probably not desirable. Anyway, I think
3900 * implementing "retrieve_surrounding" is the only hard problem.
3902 * One way to solve all of this in a clean manner would be to queue all key
3903 * press/release events "as is" in the input buffer, and apply the IM filtering
3904 * at the receiving end of the queue. This, however, would have a rather large
3905 * impact on the code base. If there is an easy way to force processing of all
3906 * remaining input from within the "retrieve_surrounding" signal handler, this
3907 * might not be necessary. Gotta ask on vim-dev for opinions.
3909 # ifndef FEAT_GUI_MACVIM
3910 static void
3911 im_preedit_changed_cb(GtkIMContext *context, gpointer data UNUSED)
3912 # else
3913 void
3914 im_preedit_changed_macvim(char *preedit_string, int cursor_index)
3915 # endif
3917 # ifndef FEAT_GUI_MACVIM
3918 char *preedit_string = NULL;
3919 int cursor_index = 0;
3920 # endif
3921 int num_move_back = 0;
3922 char_u *str;
3923 char_u *p;
3924 int i;
3926 # ifndef FEAT_GUI_MACVIM
3927 gtk_im_context_get_preedit_string(context,
3928 &preedit_string, NULL,
3929 &cursor_index);
3930 # endif
3932 #ifdef XIM_DEBUG
3933 xim_log("im_preedit_changed_cb(): %s\n", preedit_string);
3934 #endif
3936 g_return_if_fail(preedit_string != NULL); /* just in case */
3938 /* If preedit_start_col is MAXCOL set it to the current cursor position. */
3939 if (preedit_start_col == MAXCOL && preedit_string[0] != '\0')
3941 xim_has_preediting = TRUE;
3943 /* Urgh, this breaks if the input buffer isn't empty now */
3944 init_preedit_start_col();
3946 else if (cursor_index == 0 && preedit_string[0] == '\0')
3948 xim_has_preediting = FALSE;
3950 /* If at the start position (after typing backspace)
3951 * preedit_start_col must be reset. */
3952 preedit_start_col = MAXCOL;
3955 im_delete_preedit();
3958 * Compute the end of the preediting area: "preedit_end_col".
3959 * According to the documentation of gtk_im_context_get_preedit_string(),
3960 * the cursor_pos output argument returns the offset in bytes. This is
3961 * unfortunately not true -- real life shows the offset is in characters,
3962 * and the GTK+ source code agrees with me. Will file a bug later.
3964 if (preedit_start_col != MAXCOL)
3965 preedit_end_col = preedit_start_col;
3966 str = (char_u *)preedit_string;
3967 for (p = str, i = 0; *p != NUL; p += utf_byte2len(*p), ++i)
3969 int is_composing;
3971 is_composing = ((*p & 0x80) != 0 && utf_iscomposing(utf_ptr2char(p)));
3973 * These offsets are used as counters when generating <BS> and <Del>
3974 * to delete the preedit string. So don't count composing characters
3975 * unless 'delcombine' is enabled.
3977 if (!is_composing || p_deco)
3979 if (i < cursor_index)
3980 ++im_preedit_cursor;
3981 else
3982 ++im_preedit_trailing;
3984 if (!is_composing && i >= cursor_index)
3986 /* This is essentially the same as im_preedit_trailing, except
3987 * composing characters are not counted even if p_deco is set. */
3988 ++num_move_back;
3990 if (preedit_start_col != MAXCOL)
3991 preedit_end_col += utf_ptr2cells(p);
3994 if (p > str)
3996 im_add_to_input(str, (int)(p - str));
3997 im_correct_cursor(num_move_back);
4000 # ifndef FEAT_GUI_MACVIM
4001 g_free(preedit_string);
4003 if (gtk_main_level() > 0)
4004 gtk_main_quit();
4005 # endif
4008 # ifndef FEAT_GUI_MACVIM
4010 * Translate the Pango attributes at iter to Vim highlighting attributes.
4011 * Ignore attributes not supported by Vim highlighting. This shouldn't have
4012 * too much impact -- right now we handle even more attributes than necessary
4013 * for the IM modules I tested with.
4015 static int
4016 translate_pango_attributes(PangoAttrIterator *iter)
4018 PangoAttribute *attr;
4019 int char_attr = HL_NORMAL;
4021 attr = pango_attr_iterator_get(iter, PANGO_ATTR_UNDERLINE);
4022 if (attr != NULL && ((PangoAttrInt *)attr)->value
4023 != (int)PANGO_UNDERLINE_NONE)
4024 char_attr |= HL_UNDERLINE;
4026 attr = pango_attr_iterator_get(iter, PANGO_ATTR_WEIGHT);
4027 if (attr != NULL && ((PangoAttrInt *)attr)->value >= (int)PANGO_WEIGHT_BOLD)
4028 char_attr |= HL_BOLD;
4030 attr = pango_attr_iterator_get(iter, PANGO_ATTR_STYLE);
4031 if (attr != NULL && ((PangoAttrInt *)attr)->value
4032 != (int)PANGO_STYLE_NORMAL)
4033 char_attr |= HL_ITALIC;
4035 attr = pango_attr_iterator_get(iter, PANGO_ATTR_BACKGROUND);
4036 if (attr != NULL)
4038 const PangoColor *color = &((PangoAttrColor *)attr)->color;
4040 /* Assume inverse if black background is requested */
4041 if ((color->red | color->green | color->blue) == 0)
4042 char_attr |= HL_INVERSE;
4045 return char_attr;
4047 # endif
4050 * Retrieve the highlighting attributes at column col in the preedit string.
4051 * Return -1 if not in preediting mode or if col is out of range.
4054 im_get_feedback_attr(int col)
4056 # ifndef FEAT_GUI_MACVIM
4057 char *preedit_string = NULL;
4058 PangoAttrList *attr_list = NULL;
4059 int char_attr = -1;
4061 if (xic == NULL)
4062 return char_attr;
4064 gtk_im_context_get_preedit_string(xic, &preedit_string, &attr_list, NULL);
4066 if (preedit_string != NULL && attr_list != NULL)
4068 int idx;
4070 /* Get the byte index as used by PangoAttrIterator */
4071 for (idx = 0; col > 0 && preedit_string[idx] != '\0'; --col)
4072 idx += utfc_ptr2len((char_u *)preedit_string + idx);
4074 if (preedit_string[idx] != '\0')
4076 PangoAttrIterator *iter;
4077 int start, end;
4079 char_attr = HL_NORMAL;
4080 iter = pango_attr_list_get_iterator(attr_list);
4082 /* Extract all relevant attributes from the list. */
4085 pango_attr_iterator_range(iter, &start, &end);
4087 if (idx >= start && idx < end)
4088 char_attr |= translate_pango_attributes(iter);
4090 while (pango_attr_iterator_next(iter));
4092 pango_attr_iterator_destroy(iter);
4096 if (attr_list != NULL)
4097 pango_attr_list_unref(attr_list);
4098 g_free(preedit_string);
4100 return char_attr;
4101 # else
4102 return HL_UNDERLINE;
4103 # endif
4106 void
4107 xim_init(void)
4109 #ifdef XIM_DEBUG
4110 xim_log("xim_init()\n");
4111 #endif
4113 # ifndef FEAT_GUI_MACVIM
4114 g_return_if_fail(gui.drawarea != NULL);
4115 g_return_if_fail(gui.drawarea->window != NULL);
4117 xic = gtk_im_multicontext_new();
4118 g_object_ref(xic);
4120 im_commit_handler_id = g_signal_connect(G_OBJECT(xic), "commit",
4121 G_CALLBACK(&im_commit_cb), NULL);
4122 g_signal_connect(G_OBJECT(xic), "preedit_changed",
4123 G_CALLBACK(&im_preedit_changed_cb), NULL);
4124 g_signal_connect(G_OBJECT(xic), "preedit_start",
4125 G_CALLBACK(&im_preedit_start_cb), NULL);
4126 g_signal_connect(G_OBJECT(xic), "preedit_end",
4127 G_CALLBACK(&im_preedit_end_cb), NULL);
4129 gtk_im_context_set_client_window(xic, gui.drawarea->window);
4130 # endif
4133 void
4134 im_shutdown(void)
4136 #ifdef XIM_DEBUG
4137 xim_log("im_shutdown()\n");
4138 #endif
4140 # ifndef FEAT_GUI_MACVIM
4141 if (xic != NULL)
4143 gtk_im_context_focus_out(xic);
4144 g_object_unref(xic);
4145 xic = NULL;
4147 # endif
4148 im_is_active = FALSE;
4149 im_commit_handler_id = 0;
4150 preedit_start_col = MAXCOL;
4151 xim_has_preediting = FALSE;
4154 # ifndef FEAT_GUI_MACVIM
4156 * Convert the string argument to keyval and state for GdkEventKey.
4157 * If str is valid return TRUE, otherwise FALSE.
4159 * See 'imactivatekey' for documentation of the format.
4161 static int
4162 im_string_to_keyval(const char *str, unsigned int *keyval, unsigned int *state)
4164 const char *mods_end;
4165 unsigned tmp_keyval;
4166 unsigned tmp_state = 0;
4168 mods_end = strrchr(str, '-');
4169 mods_end = (mods_end != NULL) ? mods_end + 1 : str;
4171 /* Parse modifier keys */
4172 while (str < mods_end)
4173 switch (*str++)
4175 case '-': break;
4176 case 'S': case 's': tmp_state |= (unsigned)GDK_SHIFT_MASK; break;
4177 case 'L': case 'l': tmp_state |= (unsigned)GDK_LOCK_MASK; break;
4178 case 'C': case 'c': tmp_state |= (unsigned)GDK_CONTROL_MASK;break;
4179 case '1': tmp_state |= (unsigned)GDK_MOD1_MASK; break;
4180 case '2': tmp_state |= (unsigned)GDK_MOD2_MASK; break;
4181 case '3': tmp_state |= (unsigned)GDK_MOD3_MASK; break;
4182 case '4': tmp_state |= (unsigned)GDK_MOD4_MASK; break;
4183 case '5': tmp_state |= (unsigned)GDK_MOD5_MASK; break;
4184 default:
4185 return FALSE;
4188 tmp_keyval = gdk_keyval_from_name(str);
4190 if (tmp_keyval == 0 || tmp_keyval == GDK_VoidSymbol)
4191 return FALSE;
4193 if (keyval != NULL)
4194 *keyval = tmp_keyval;
4195 if (state != NULL)
4196 *state = tmp_state;
4198 return TRUE;
4202 * Return TRUE if p_imak is valid, otherwise FALSE. As a special case, an
4203 * empty string is also regarded as valid.
4205 * Note: The numerical key value of p_imak is cached if it was valid; thus
4206 * boldly assuming im_xim_isvalid_imactivate() will always be called whenever
4207 * 'imak' changes. This is currently the case but not obvious -- should
4208 * probably rename the function for clarity.
4211 im_xim_isvalid_imactivate(void)
4213 if (p_imak[0] == NUL)
4215 im_activatekey_keyval = GDK_VoidSymbol;
4216 im_activatekey_state = 0;
4217 return TRUE;
4220 return im_string_to_keyval((const char *)p_imak,
4221 &im_activatekey_keyval,
4222 &im_activatekey_state);
4225 static void
4226 im_synthesize_keypress(unsigned int keyval, unsigned int state)
4228 GdkEventKey *event;
4230 # ifdef HAVE_GTK_MULTIHEAD
4231 event = (GdkEventKey *)gdk_event_new(GDK_KEY_PRESS);
4232 g_object_ref(gui.drawarea->window); /* unreffed by gdk_event_free() */
4233 # else
4234 event = (GdkEventKey *)g_malloc0((gulong)sizeof(GdkEvent));
4235 event->type = GDK_KEY_PRESS;
4236 # endif
4237 event->window = gui.drawarea->window;
4238 event->send_event = TRUE;
4239 event->time = GDK_CURRENT_TIME;
4240 event->state = state;
4241 event->keyval = keyval;
4242 event->hardware_keycode = /* needed for XIM */
4243 XKeysymToKeycode(GDK_WINDOW_XDISPLAY(event->window), (KeySym)keyval);
4244 event->length = 0;
4245 event->string = NULL;
4247 gtk_im_context_filter_keypress(xic, event);
4249 /* For consistency, also send the corresponding release event. */
4250 event->type = GDK_KEY_RELEASE;
4251 event->send_event = FALSE;
4252 gtk_im_context_filter_keypress(xic, event);
4254 # ifdef HAVE_GTK_MULTIHEAD
4255 gdk_event_free((GdkEvent *)event);
4256 # else
4257 g_free(event);
4258 # endif
4260 # endif // FEAT_GUI_MACVIM
4262 void
4263 xim_reset(void)
4265 # ifndef FEAT_GUI_MACVIM
4266 if (xic != NULL)
4269 * The third-party imhangul module (and maybe others too) ignores
4270 * gtk_im_context_reset() or at least doesn't reset the active state.
4271 * Thus sending imactivatekey would turn it off if it was on before,
4272 * which is clearly not what we want. Fortunately we can work around
4273 * that for imhangul by sending GDK_Escape, but I don't know if it
4274 * works with all IM modules that support an activation key :/
4276 * An alternative approach would be to destroy the IM context and
4277 * recreate it. But that means loading/unloading the IM module on
4278 * every mode switch, which causes a quite noticable delay even on
4279 * my rather fast box...
4281 * Moreover, there are some XIM which cannot respond to
4282 * im_synthesize_keypress(). we hope that they reset by
4283 * xim_shutdown().
4285 if (im_activatekey_keyval != GDK_VoidSymbol && im_is_active)
4286 im_synthesize_keypress(GDK_Escape, 0U);
4288 gtk_im_context_reset(xic);
4291 * HACK for Ami: This sequence of function calls makes Ami handle
4292 * the IM reset graciously, without breaking loads of other stuff.
4293 * It seems to force English mode as well, which is exactly what we
4294 * want because it makes the Ami status display work reliably.
4296 gtk_im_context_set_use_preedit(xic, FALSE);
4298 if (p_imdisable)
4299 im_shutdown();
4300 else
4302 gtk_im_context_set_use_preedit(xic, TRUE);
4303 xim_set_focus(gui.in_focus);
4305 if (im_activatekey_keyval != GDK_VoidSymbol)
4307 if (im_is_active)
4309 g_signal_handler_block(xic, im_commit_handler_id);
4310 im_synthesize_keypress(im_activatekey_keyval,
4311 im_activatekey_state);
4312 g_signal_handler_unblock(xic, im_commit_handler_id);
4315 else
4317 im_shutdown();
4318 xim_init();
4319 xim_set_focus(gui.in_focus);
4323 # endif
4325 preedit_start_col = MAXCOL;
4326 xim_has_preediting = FALSE;
4329 # ifndef FEAT_GUI_MACVIM
4331 xim_queue_key_press_event(GdkEventKey *event, int down)
4333 if (down)
4336 * Workaround GTK2 XIM 'feature' that always converts keypad keys to
4337 * chars., even when not part of an IM sequence (ref. feature of
4338 * gdk/gdkkeyuni.c).
4339 * Flag any keypad keys that might represent a single char.
4340 * If this (on its own - i.e., not part of an IM sequence) is
4341 * committed while we're processing one of these keys, we can ignore
4342 * that commit and go ahead & process it ourselves. That way we can
4343 * still distinguish keypad keys for use in mappings.
4344 * Also add GDK_space to make <S-Space> work.
4346 switch (event->keyval)
4348 case GDK_KP_Add: xim_expected_char = '+'; break;
4349 case GDK_KP_Subtract: xim_expected_char = '-'; break;
4350 case GDK_KP_Divide: xim_expected_char = '/'; break;
4351 case GDK_KP_Multiply: xim_expected_char = '*'; break;
4352 case GDK_KP_Decimal: xim_expected_char = '.'; break;
4353 case GDK_KP_Equal: xim_expected_char = '='; break;
4354 case GDK_KP_0: xim_expected_char = '0'; break;
4355 case GDK_KP_1: xim_expected_char = '1'; break;
4356 case GDK_KP_2: xim_expected_char = '2'; break;
4357 case GDK_KP_3: xim_expected_char = '3'; break;
4358 case GDK_KP_4: xim_expected_char = '4'; break;
4359 case GDK_KP_5: xim_expected_char = '5'; break;
4360 case GDK_KP_6: xim_expected_char = '6'; break;
4361 case GDK_KP_7: xim_expected_char = '7'; break;
4362 case GDK_KP_8: xim_expected_char = '8'; break;
4363 case GDK_KP_9: xim_expected_char = '9'; break;
4364 case GDK_space: xim_expected_char = ' '; break;
4365 default: xim_expected_char = NUL;
4367 xim_ignored_char = FALSE;
4371 * When typing fFtT, XIM may be activated. Thus it must pass
4372 * gtk_im_context_filter_keypress() in Normal mode.
4373 * And while doing :sh too.
4375 if (xic != NULL && !p_imdisable
4376 && (State & (INSERT | CMDLINE | NORMAL | EXTERNCMD)) != 0)
4379 * Filter 'imactivatekey' and map it to CTRL-^. This way, Vim is
4380 * always aware of the current status of IM, and can even emulate
4381 * the activation key for modules that don't support one.
4383 if (event->keyval == im_activatekey_keyval
4384 && (event->state & im_activatekey_state) == im_activatekey_state)
4386 unsigned int state_mask;
4388 /* Require the state of the 3 most used modifiers to match exactly.
4389 * Otherwise e.g. <S-C-space> would be unusable for other purposes
4390 * if the IM activate key is <S-space>. */
4391 state_mask = im_activatekey_state;
4392 state_mask |= ((int)GDK_SHIFT_MASK | (int)GDK_CONTROL_MASK
4393 | (int)GDK_MOD1_MASK);
4395 if ((event->state & state_mask) != im_activatekey_state)
4396 return FALSE;
4398 /* Don't send it a second time on GDK_KEY_RELEASE. */
4399 if (event->type != GDK_KEY_PRESS)
4400 return TRUE;
4402 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
4404 im_set_active(FALSE);
4406 /* ":lmap" mappings exists, toggle use of mappings. */
4407 State ^= LANGMAP;
4408 if (State & LANGMAP)
4410 curbuf->b_p_iminsert = B_IMODE_NONE;
4411 State &= ~LANGMAP;
4413 else
4415 curbuf->b_p_iminsert = B_IMODE_LMAP;
4416 State |= LANGMAP;
4418 return TRUE;
4421 return gtk_im_context_filter_keypress(xic, event);
4424 /* Don't filter events through the IM context if IM isn't active
4425 * right now. Unlike with GTK+ 1.2 we cannot rely on the IM module
4426 * not doing anything before the activation key was sent. */
4427 if (im_activatekey_keyval == GDK_VoidSymbol || im_is_active)
4429 int imresult = gtk_im_context_filter_keypress(xic, event);
4431 /* Some XIM send following sequence:
4432 * 1. preedited string.
4433 * 2. committed string.
4434 * 3. line changed key.
4435 * 4. preedited string.
4436 * 5. remove preedited string.
4437 * if 3, Vim can't move back the above line for 5.
4438 * thus, this part should not parse the key. */
4439 if (!imresult && preedit_start_col != MAXCOL
4440 && event->keyval == GDK_Return)
4442 im_synthesize_keypress(GDK_Return, 0U);
4443 return FALSE;
4446 /* If XIM tried to commit a keypad key as a single char.,
4447 * ignore it so we can use the keypad key 'raw', for mappings. */
4448 if (xim_expected_char != NUL && xim_ignored_char)
4449 /* We had a keypad key, and XIM tried to thieve it */
4450 return FALSE;
4452 /* Normal processing */
4453 return imresult;
4457 return FALSE;
4459 # endif
4461 # ifndef FEAT_GUI_MACVIM
4463 im_get_status(void)
4465 #ifdef FEAT_UIMFEP
4466 if (!gui.in_use)
4467 return uimfep_get_status();
4468 #endif
4469 return im_is_active;
4471 # else /* FEAT_GUI_MACVIM */
4473 im_get_status(void)
4475 if (gui.in_use)
4476 return gui_im_get_status();
4477 else
4478 return uimfep_get_status();
4480 # endif
4482 # else /* !HAVE_GTK2 */
4484 static int xim_is_active = FALSE; /* XIM should be active in the current
4485 mode */
4486 static int xim_has_focus = FALSE; /* XIM is really being used for Vim */
4487 #ifdef FEAT_GUI_X11
4488 static XIMStyle input_style;
4489 static int status_area_enabled = TRUE;
4490 #endif
4492 #ifdef FEAT_GUI_GTK
4493 # ifdef WIN3264
4494 # include <gdk/gdkwin32.h>
4495 # else
4496 # include <gdk/gdkx.h>
4497 # endif
4498 #else
4499 # ifdef PROTO
4500 /* Define a few things to be able to generate prototypes while not configured
4501 * for GTK. */
4502 # define GSList int
4503 # define gboolean int
4504 typedef int GdkEvent;
4505 typedef int GdkEventKey;
4506 # define GdkIC int
4507 # endif
4508 #endif
4510 #if defined(FEAT_GUI_GTK) || defined(PROTO)
4511 static int preedit_buf_len = 0;
4512 static int xim_can_preediting INIT(= FALSE); /* XIM in showmode() */
4513 static int xim_input_style;
4514 #ifndef FEAT_GUI_GTK
4515 # define gboolean int
4516 #endif
4517 static gboolean use_status_area = 0;
4519 static int im_xim_str2keycode __ARGS((unsigned int *code, unsigned int *state));
4520 static void im_xim_send_event_imactivate __ARGS((void));
4523 * Convert string to keycode and state for XKeyEvent.
4524 * When string is valid return OK, when invalid return FAIL.
4526 * See 'imactivatekey' documentation for the format.
4528 static int
4529 im_xim_str2keycode(code, state)
4530 unsigned int *code;
4531 unsigned int *state;
4533 int retval = OK;
4534 int len;
4535 unsigned keycode = 0, keystate = 0;
4536 Window window;
4537 Display *display;
4538 char_u *flag_end;
4539 char_u *str;
4541 if (*p_imak != NUL)
4543 len = STRLEN(p_imak);
4544 for (flag_end = p_imak + len - 1;
4545 flag_end > p_imak && *flag_end != '-'; --flag_end)
4548 /* Parse modifier keys */
4549 for (str = p_imak; str < flag_end; ++str)
4551 switch (*str)
4553 case 's': case 'S':
4554 keystate |= ShiftMask;
4555 break;
4556 case 'l': case 'L':
4557 keystate |= LockMask;
4558 break;
4559 case 'c': case 'C':
4560 keystate |= ControlMask;
4561 break;
4562 case '1':
4563 keystate |= Mod1Mask;
4564 break;
4565 case '2':
4566 keystate |= Mod2Mask;
4567 break;
4568 case '3':
4569 keystate |= Mod3Mask;
4570 break;
4571 case '4':
4572 keystate |= Mod4Mask;
4573 break;
4574 case '5':
4575 keystate |= Mod5Mask;
4576 break;
4577 case '-':
4578 break;
4579 default:
4580 retval = FAIL;
4583 if (*str == '-')
4584 ++str;
4586 /* Get keycode from string. */
4587 gui_get_x11_windis(&window, &display);
4588 if (display)
4589 keycode = XKeysymToKeycode(display, XStringToKeysym((char *)str));
4590 if (keycode == 0)
4591 retval = FAIL;
4593 if (code != NULL)
4594 *code = keycode;
4595 if (state != NULL)
4596 *state = keystate;
4598 return retval;
4601 static void
4602 im_xim_send_event_imactivate()
4604 /* Force turn on preedit state by symulate keypress event.
4605 * Keycode and state is specified by 'imactivatekey'.
4607 XKeyEvent ev;
4609 gui_get_x11_windis(&ev.window, &ev.display);
4610 ev.root = RootWindow(ev.display, DefaultScreen(ev.display));
4611 ev.subwindow = None;
4612 ev.time = CurrentTime;
4613 ev.x = 1;
4614 ev.y = 1;
4615 ev.x_root = 1;
4616 ev.y_root = 1;
4617 ev.same_screen = 1;
4618 ev.type = KeyPress;
4619 if (im_xim_str2keycode(&ev.keycode, &ev.state) == OK)
4620 XSendEvent(ev.display, ev.window, 1, KeyPressMask, (XEvent*)&ev);
4624 * Return TRUE if 'imactivatekey' has a valid value.
4627 im_xim_isvalid_imactivate()
4629 return im_xim_str2keycode(NULL, NULL) == OK;
4631 #endif /* FEAT_GUI_GTK */
4634 * Switch using XIM on/off. This is used by the code that changes "State".
4636 void
4637 im_set_active(active)
4638 int active;
4640 if (xic == NULL)
4642 #ifdef FEAT_UIMFEP
4643 if (!gui.in_use)
4644 uimfep_set_active(active);
4645 #endif
4646 return;
4649 /* If 'imdisable' is set, XIM is never active. */
4650 if (p_imdisable)
4651 active = FALSE;
4652 #if !defined (FEAT_GUI_GTK)
4653 else if (input_style & XIMPreeditPosition)
4654 /* There is a problem in switching XIM off when preediting is used,
4655 * and it is not clear how this can be solved. For now, keep XIM on
4656 * all the time, like it was done in Vim 5.8. */
4657 active = TRUE;
4658 #endif
4660 /* Remember the active state, it is needed when Vim gets keyboard focus. */
4661 xim_is_active = active;
4663 #ifdef FEAT_GUI_GTK
4664 /* When 'imactivatekey' has valid key-string, try to control XIM preedit
4665 * state. When 'imactivatekey' has no or invalid string, try old XIM
4666 * focus control.
4668 if (*p_imak != NUL)
4670 /* BASIC STRATEGY:
4671 * Destroy old Input Context (XIC), and create new one. New XIC
4672 * would have a state of preedit that is off. When argument:active
4673 * is false, that's all. Else argument:active is true, send a key
4674 * event specified by 'imactivatekey' to activate XIM preedit state.
4677 xim_is_active = TRUE; /* Disable old XIM focus control */
4678 /* If we can monitor preedit state with preedit callback functions,
4679 * try least creation of new XIC.
4681 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
4683 if (xim_can_preediting && !active)
4685 /* Force turn off preedit state. With some IM
4686 * implementations, we cannot turn off preedit state by
4687 * symulate keypress event. It is why using such a method
4688 * that destroy old IC (input context), and create new one.
4689 * When create new IC, its preedit state is usually off.
4691 xim_reset();
4692 xim_set_focus(FALSE);
4693 gdk_ic_destroy(xic);
4694 xim_init();
4695 xim_can_preediting = FALSE;
4697 else if (!xim_can_preediting && active)
4698 im_xim_send_event_imactivate();
4700 else
4702 /* First, force destroy old IC, and create new one. It
4703 * symulates "turning off preedit state".
4705 xim_set_focus(FALSE);
4706 gdk_ic_destroy(xic);
4707 xim_init();
4708 xim_can_preediting = FALSE;
4710 /* 2nd, when requested to activate IM, symulate this by sending
4711 * the event.
4713 if (active)
4715 im_xim_send_event_imactivate();
4716 xim_can_preediting = TRUE;
4720 else
4722 # ifndef XIMPreeditUnKnown
4723 /* X11R5 doesn't have these, it looks safe enough to define here. */
4724 typedef unsigned long XIMPreeditState;
4725 # define XIMPreeditUnKnown 0L
4726 # define XIMPreeditEnable 1L
4727 # define XIMPreeditDisable (1L<<1)
4728 # define XNPreeditState "preeditState"
4729 # endif
4730 XIMPreeditState preedit_state = XIMPreeditUnKnown;
4731 XVaNestedList preedit_attr;
4732 XIC pxic;
4734 preedit_attr = XVaCreateNestedList(0,
4735 XNPreeditState, &preedit_state,
4736 NULL);
4737 pxic = ((GdkICPrivate *)xic)->xic;
4739 if (!XGetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL))
4741 XFree(preedit_attr);
4742 preedit_attr = XVaCreateNestedList(0,
4743 XNPreeditState,
4744 active ? XIMPreeditEnable : XIMPreeditDisable,
4745 NULL);
4746 XSetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL);
4747 xim_can_preediting = active;
4748 xim_is_active = active;
4750 XFree(preedit_attr);
4752 if (xim_input_style & XIMPreeditCallbacks)
4754 preedit_buf_len = 0;
4755 init_preedit_start_col();
4757 #else
4758 # if 0
4759 /* When had tested kinput2 + canna + Athena GUI version with
4760 * 'imactivatekey' is "s-space", im_xim_send_event_imactivate() did not
4761 * work correctly. It just inserted one space. I don't know why we
4762 * couldn't switch state of XIM preediting. This is reason why these
4763 * codes are commented out.
4765 /* First, force destroy old IC, and create new one. It symulates
4766 * "turning off preedit state".
4768 xim_set_focus(FALSE);
4769 XDestroyIC(xic);
4770 xic = NULL;
4771 xim_init();
4773 /* 2nd, when requested to activate IM, symulate this by sending the
4774 * event.
4776 if (active)
4777 im_xim_send_event_imactivate();
4778 # endif
4779 #endif
4780 xim_set_preedit();
4784 * Adjust using XIM for gaining or losing keyboard focus. Also called when
4785 * "xim_is_active" changes.
4787 void
4788 xim_set_focus(focus)
4789 int focus;
4791 if (xic == NULL)
4792 return;
4795 * XIM only gets focus when the Vim window has keyboard focus and XIM has
4796 * been set active for the current mode.
4798 if (focus && xim_is_active)
4800 if (!xim_has_focus)
4802 xim_has_focus = TRUE;
4803 #ifdef FEAT_GUI_GTK
4804 gdk_im_begin(xic, gui.drawarea->window);
4805 #else
4806 XSetICFocus(xic);
4807 #endif
4810 else
4812 if (xim_has_focus)
4814 xim_has_focus = FALSE;
4815 #ifdef FEAT_GUI_GTK
4816 gdk_im_end();
4817 #else
4818 XUnsetICFocus(xic);
4819 #endif
4824 void
4825 im_set_position(row, col)
4826 int row UNUSED;
4827 int col UNUSED;
4829 xim_set_preedit();
4833 * Set the XIM to the current cursor position.
4835 void
4836 xim_set_preedit()
4838 if (xic == NULL)
4839 return;
4841 xim_set_focus(TRUE);
4843 #ifdef FEAT_GUI_GTK
4844 if (gdk_im_ready())
4846 int attrmask;
4847 GdkICAttr *attr;
4849 if (!xic_attr)
4850 return;
4852 attr = xic_attr;
4853 attrmask = 0;
4855 # ifdef FEAT_XFONTSET
4856 if ((xim_input_style & (int)GDK_IM_PREEDIT_POSITION)
4857 && gui.fontset != NOFONTSET
4858 && gui.fontset->type == GDK_FONT_FONTSET)
4860 if (!xim_has_focus)
4862 if (attr->spot_location.y >= 0)
4864 attr->spot_location.x = 0;
4865 attr->spot_location.y = -100;
4866 attrmask |= (int)GDK_IC_SPOT_LOCATION;
4869 else
4871 gint width, height;
4873 if (attr->spot_location.x != TEXT_X(gui.col)
4874 || attr->spot_location.y != TEXT_Y(gui.row))
4876 attr->spot_location.x = TEXT_X(gui.col);
4877 attr->spot_location.y = TEXT_Y(gui.row);
4878 attrmask |= (int)GDK_IC_SPOT_LOCATION;
4881 gdk_window_get_size(gui.drawarea->window, &width, &height);
4882 width -= 2 * gui.border_offset;
4883 height -= 2 * gui.border_offset;
4884 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
4885 height -= gui.char_height;
4886 if (attr->preedit_area.width != width
4887 || attr->preedit_area.height != height)
4889 attr->preedit_area.x = gui.border_offset;
4890 attr->preedit_area.y = gui.border_offset;
4891 attr->preedit_area.width = width;
4892 attr->preedit_area.height = height;
4893 attrmask |= (int)GDK_IC_PREEDIT_AREA;
4896 if (attr->preedit_fontset != gui.current_font)
4898 attr->preedit_fontset = gui.current_font;
4899 attrmask |= (int)GDK_IC_PREEDIT_FONTSET;
4903 # endif /* FEAT_XFONTSET */
4905 if (xim_fg_color == INVALCOLOR)
4907 xim_fg_color = gui.def_norm_pixel;
4908 xim_bg_color = gui.def_back_pixel;
4910 if (attr->preedit_foreground.pixel != xim_fg_color)
4912 attr->preedit_foreground.pixel = xim_fg_color;
4913 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
4915 if (attr->preedit_background.pixel != xim_bg_color)
4917 attr->preedit_background.pixel = xim_bg_color;
4918 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
4921 if (attrmask != 0)
4922 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
4924 #else /* FEAT_GUI_GTK */
4926 XVaNestedList attr_list;
4927 XRectangle spot_area;
4928 XPoint over_spot;
4929 int line_space;
4931 if (!xim_has_focus)
4933 /* hide XIM cursor */
4934 over_spot.x = 0;
4935 over_spot.y = -100; /* arbitrary invisible position */
4936 attr_list = (XVaNestedList) XVaCreateNestedList(0,
4937 XNSpotLocation,
4938 &over_spot,
4939 NULL);
4940 XSetICValues(xic, XNPreeditAttributes, attr_list, NULL);
4941 XFree(attr_list);
4942 return;
4945 if (input_style & XIMPreeditPosition)
4947 if (xim_fg_color == INVALCOLOR)
4949 xim_fg_color = gui.def_norm_pixel;
4950 xim_bg_color = gui.def_back_pixel;
4952 over_spot.x = TEXT_X(gui.col);
4953 over_spot.y = TEXT_Y(gui.row);
4954 spot_area.x = 0;
4955 spot_area.y = 0;
4956 spot_area.height = gui.char_height * Rows;
4957 spot_area.width = gui.char_width * Columns;
4958 line_space = gui.char_height;
4959 attr_list = (XVaNestedList) XVaCreateNestedList(0,
4960 XNSpotLocation, &over_spot,
4961 XNForeground, (Pixel) xim_fg_color,
4962 XNBackground, (Pixel) xim_bg_color,
4963 XNArea, &spot_area,
4964 XNLineSpace, line_space,
4965 NULL);
4966 if (XSetICValues(xic, XNPreeditAttributes, attr_list, NULL))
4967 EMSG(_("E284: Cannot set IC values"));
4968 XFree(attr_list);
4971 #endif /* FEAT_GUI_GTK */
4975 * Set up the status area.
4977 * This should use a separate Widget, but that seems not possible, because
4978 * preedit_area and status_area should be set to the same window as for the
4979 * text input. Unfortunately this means the status area pollutes the text
4980 * window...
4982 void
4983 xim_set_status_area()
4985 if (xic == NULL)
4986 return;
4988 #ifdef FEAT_GUI_GTK
4989 # if defined(FEAT_XFONTSET)
4990 if (use_status_area)
4992 GdkICAttr *attr;
4993 int style;
4994 gint width, height;
4995 GtkWidget *widget;
4996 int attrmask;
4998 if (!xic_attr)
4999 return;
5001 attr = xic_attr;
5002 attrmask = 0;
5003 style = (int)gdk_ic_get_style(xic);
5004 if ((style & (int)GDK_IM_STATUS_MASK) == (int)GDK_IM_STATUS_AREA)
5006 if (gui.fontset != NOFONTSET
5007 && gui.fontset->type == GDK_FONT_FONTSET)
5009 widget = gui.mainwin;
5010 gdk_window_get_size(widget->window, &width, &height);
5012 attrmask |= (int)GDK_IC_STATUS_AREA;
5013 attr->status_area.x = 0;
5014 attr->status_area.y = height - gui.char_height - 1;
5015 attr->status_area.width = width;
5016 attr->status_area.height = gui.char_height;
5019 if (attrmask != 0)
5020 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
5022 # endif
5023 #else
5025 XVaNestedList preedit_list = 0, status_list = 0, list = 0;
5026 XRectangle pre_area, status_area;
5028 if (input_style & XIMStatusArea)
5030 if (input_style & XIMPreeditArea)
5032 XRectangle *needed_rect;
5034 /* to get status_area width */
5035 status_list = XVaCreateNestedList(0, XNAreaNeeded,
5036 &needed_rect, NULL);
5037 XGetICValues(xic, XNStatusAttributes, status_list, NULL);
5038 XFree(status_list);
5040 status_area.width = needed_rect->width;
5042 else
5043 status_area.width = gui.char_width * Columns;
5045 status_area.x = 0;
5046 status_area.y = gui.char_height * Rows + gui.border_offset;
5047 if (gui.which_scrollbars[SBAR_BOTTOM])
5048 status_area.y += gui.scrollbar_height;
5049 #ifdef FEAT_MENU
5050 if (gui.menu_is_active)
5051 status_area.y += gui.menu_height;
5052 #endif
5053 status_area.height = gui.char_height;
5054 status_list = XVaCreateNestedList(0, XNArea, &status_area, NULL);
5056 else
5058 status_area.x = 0;
5059 status_area.y = gui.char_height * Rows + gui.border_offset;
5060 if (gui.which_scrollbars[SBAR_BOTTOM])
5061 status_area.y += gui.scrollbar_height;
5062 #ifdef FEAT_MENU
5063 if (gui.menu_is_active)
5064 status_area.y += gui.menu_height;
5065 #endif
5066 status_area.width = 0;
5067 status_area.height = gui.char_height;
5070 if (input_style & XIMPreeditArea) /* off-the-spot */
5072 pre_area.x = status_area.x + status_area.width;
5073 pre_area.y = gui.char_height * Rows + gui.border_offset;
5074 pre_area.width = gui.char_width * Columns - pre_area.x;
5075 if (gui.which_scrollbars[SBAR_BOTTOM])
5076 pre_area.y += gui.scrollbar_height;
5077 #ifdef FEAT_MENU
5078 if (gui.menu_is_active)
5079 pre_area.y += gui.menu_height;
5080 #endif
5081 pre_area.height = gui.char_height;
5082 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5084 else if (input_style & XIMPreeditPosition) /* over-the-spot */
5086 pre_area.x = 0;
5087 pre_area.y = 0;
5088 pre_area.height = gui.char_height * Rows;
5089 pre_area.width = gui.char_width * Columns;
5090 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5093 if (preedit_list && status_list)
5094 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5095 XNStatusAttributes, status_list, NULL);
5096 else if (preedit_list)
5097 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5098 NULL);
5099 else if (status_list)
5100 list = XVaCreateNestedList(0, XNStatusAttributes, status_list,
5101 NULL);
5102 else
5103 list = NULL;
5105 if (list)
5107 XSetICValues(xic, XNVaNestedList, list, NULL);
5108 XFree(list);
5110 if (status_list)
5111 XFree(status_list);
5112 if (preedit_list)
5113 XFree(preedit_list);
5115 #endif
5118 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
5119 static char e_xim[] = N_("E285: Failed to create input context");
5120 #endif
5122 #if defined(FEAT_GUI_X11) || defined(PROTO)
5123 # if defined(XtSpecificationRelease) && XtSpecificationRelease >= 6 && !defined(sun)
5124 # define USE_X11R6_XIM
5125 # endif
5127 static int xim_real_init __ARGS((Window x11_window, Display *x11_display));
5130 #ifdef USE_X11R6_XIM
5131 static void xim_instantiate_cb __ARGS((Display *display, XPointer client_data, XPointer call_data));
5132 static void xim_destroy_cb __ARGS((XIM im, XPointer client_data, XPointer call_data));
5134 static void
5135 xim_instantiate_cb(display, client_data, call_data)
5136 Display *display;
5137 XPointer client_data UNUSED;
5138 XPointer call_data UNUSED;
5140 Window x11_window;
5141 Display *x11_display;
5143 #ifdef XIM_DEBUG
5144 xim_log("xim_instantiate_cb()\n");
5145 #endif
5147 gui_get_x11_windis(&x11_window, &x11_display);
5148 if (display != x11_display)
5149 return;
5151 xim_real_init(x11_window, x11_display);
5152 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5153 if (xic != NULL)
5154 XUnregisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5155 xim_instantiate_cb, NULL);
5158 static void
5159 xim_destroy_cb(im, client_data, call_data)
5160 XIM im UNUSED;
5161 XPointer client_data UNUSED;
5162 XPointer call_data UNUSED;
5164 Window x11_window;
5165 Display *x11_display;
5167 #ifdef XIM_DEBUG
5168 xim_log("xim_destroy_cb()\n");
5169 #endif
5170 gui_get_x11_windis(&x11_window, &x11_display);
5172 xic = NULL;
5173 status_area_enabled = FALSE;
5175 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5177 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5178 xim_instantiate_cb, NULL);
5180 #endif
5182 void
5183 xim_init()
5185 Window x11_window;
5186 Display *x11_display;
5188 #ifdef XIM_DEBUG
5189 xim_log("xim_init()\n");
5190 #endif
5192 gui_get_x11_windis(&x11_window, &x11_display);
5194 xic = NULL;
5196 if (xim_real_init(x11_window, x11_display))
5197 return;
5199 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5201 #ifdef USE_X11R6_XIM
5202 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5203 xim_instantiate_cb, NULL);
5204 #endif
5207 static int
5208 xim_real_init(x11_window, x11_display)
5209 Window x11_window;
5210 Display *x11_display;
5212 int i;
5213 char *p,
5215 *ns,
5216 *end,
5217 tmp[1024];
5218 #define IMLEN_MAX 40
5219 char buf[IMLEN_MAX + 7];
5220 XIM xim = NULL;
5221 XIMStyles *xim_styles;
5222 XIMStyle this_input_style = 0;
5223 Boolean found;
5224 XPoint over_spot;
5225 XVaNestedList preedit_list, status_list;
5227 input_style = 0;
5228 status_area_enabled = FALSE;
5230 if (xic != NULL)
5231 return FALSE;
5233 if (gui.rsrc_input_method != NULL && *gui.rsrc_input_method != NUL)
5235 strcpy(tmp, gui.rsrc_input_method);
5236 for (ns = s = tmp; ns != NULL && *s != NUL;)
5238 s = (char *)skipwhite((char_u *)s);
5239 if (*s == NUL)
5240 break;
5241 if ((ns = end = strchr(s, ',')) == NULL)
5242 end = s + strlen(s);
5243 while (isspace(((char_u *)end)[-1]))
5244 end--;
5245 *end = NUL;
5247 if (strlen(s) <= IMLEN_MAX)
5249 strcpy(buf, "@im=");
5250 strcat(buf, s);
5251 if ((p = XSetLocaleModifiers(buf)) != NULL && *p != NUL
5252 && (xim = XOpenIM(x11_display, NULL, NULL, NULL))
5253 != NULL)
5254 break;
5257 s = ns + 1;
5261 if (xim == NULL && (p = XSetLocaleModifiers("")) != NULL && *p != NUL)
5262 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5264 /* This is supposed to be useful to obtain characters through
5265 * XmbLookupString() without really using a XIM. */
5266 if (xim == NULL && (p = XSetLocaleModifiers("@im=none")) != NULL
5267 && *p != NUL)
5268 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5270 if (xim == NULL)
5272 /* Only give this message when verbose is set, because too many people
5273 * got this message when they didn't want to use a XIM. */
5274 if (p_verbose > 0)
5276 verbose_enter();
5277 EMSG(_("E286: Failed to open input method"));
5278 verbose_leave();
5280 return FALSE;
5283 #ifdef USE_X11R6_XIM
5285 XIMCallback destroy_cb;
5287 destroy_cb.callback = xim_destroy_cb;
5288 destroy_cb.client_data = NULL;
5289 if (XSetIMValues(xim, XNDestroyCallback, &destroy_cb, NULL))
5290 EMSG(_("E287: Warning: Could not set destroy callback to IM"));
5292 #endif
5294 if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, NULL) || !xim_styles)
5296 EMSG(_("E288: input method doesn't support any style"));
5297 XCloseIM(xim);
5298 return FALSE;
5301 found = False;
5302 strcpy(tmp, gui.rsrc_preedit_type_name);
5303 for (s = tmp; s && !found; )
5305 while (*s && isspace((unsigned char)*s))
5306 s++;
5307 if (!*s)
5308 break;
5309 if ((ns = end = strchr(s, ',')) != 0)
5310 ns++;
5311 else
5312 end = s + strlen(s);
5313 while (isspace((unsigned char)*end))
5314 end--;
5315 *end = '\0';
5317 if (!strcmp(s, "OverTheSpot"))
5318 this_input_style = (XIMPreeditPosition | XIMStatusArea);
5319 else if (!strcmp(s, "OffTheSpot"))
5320 this_input_style = (XIMPreeditArea | XIMStatusArea);
5321 else if (!strcmp(s, "Root"))
5322 this_input_style = (XIMPreeditNothing | XIMStatusNothing);
5324 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5326 if (this_input_style == xim_styles->supported_styles[i])
5328 found = True;
5329 break;
5332 if (!found)
5333 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5335 if ((xim_styles->supported_styles[i] & this_input_style)
5336 == (this_input_style & ~XIMStatusArea))
5338 this_input_style &= ~XIMStatusArea;
5339 found = True;
5340 break;
5344 s = ns;
5346 XFree(xim_styles);
5348 if (!found)
5350 /* Only give this message when verbose is set, because too many people
5351 * got this message when they didn't want to use a XIM. */
5352 if (p_verbose > 0)
5354 verbose_enter();
5355 EMSG(_("E289: input method doesn't support my preedit type"));
5356 verbose_leave();
5358 XCloseIM(xim);
5359 return FALSE;
5362 over_spot.x = TEXT_X(gui.col);
5363 over_spot.y = TEXT_Y(gui.row);
5364 input_style = this_input_style;
5366 /* A crash was reported when trying to pass gui.norm_font as XNFontSet,
5367 * thus that has been removed. Hopefully the default works... */
5368 #ifdef FEAT_XFONTSET
5369 if (gui.fontset != NOFONTSET)
5371 preedit_list = XVaCreateNestedList(0,
5372 XNSpotLocation, &over_spot,
5373 XNForeground, (Pixel)gui.def_norm_pixel,
5374 XNBackground, (Pixel)gui.def_back_pixel,
5375 XNFontSet, (XFontSet)gui.fontset,
5376 NULL);
5377 status_list = XVaCreateNestedList(0,
5378 XNForeground, (Pixel)gui.def_norm_pixel,
5379 XNBackground, (Pixel)gui.def_back_pixel,
5380 XNFontSet, (XFontSet)gui.fontset,
5381 NULL);
5383 else
5384 #endif
5386 preedit_list = XVaCreateNestedList(0,
5387 XNSpotLocation, &over_spot,
5388 XNForeground, (Pixel)gui.def_norm_pixel,
5389 XNBackground, (Pixel)gui.def_back_pixel,
5390 NULL);
5391 status_list = XVaCreateNestedList(0,
5392 XNForeground, (Pixel)gui.def_norm_pixel,
5393 XNBackground, (Pixel)gui.def_back_pixel,
5394 NULL);
5397 xic = XCreateIC(xim,
5398 XNInputStyle, input_style,
5399 XNClientWindow, x11_window,
5400 XNFocusWindow, gui.wid,
5401 XNPreeditAttributes, preedit_list,
5402 XNStatusAttributes, status_list,
5403 NULL);
5404 XFree(status_list);
5405 XFree(preedit_list);
5406 if (xic != NULL)
5408 if (input_style & XIMStatusArea)
5410 xim_set_status_area();
5411 status_area_enabled = TRUE;
5413 else
5414 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5416 else
5418 EMSG(_(e_xim));
5419 XCloseIM(xim);
5420 return FALSE;
5423 return TRUE;
5426 #endif /* FEAT_GUI_X11 */
5428 #if defined(FEAT_GUI_GTK) || defined(PROTO)
5430 # ifdef FEAT_XFONTSET
5431 static char e_overthespot[] = N_("E290: over-the-spot style requires fontset");
5432 # endif
5434 # ifdef PROTO
5435 typedef int GdkIC;
5436 # endif
5438 void
5439 xim_decide_input_style()
5441 /* GDK_IM_STATUS_CALLBACKS was disabled, enabled it to allow Japanese
5442 * OverTheSpot. */
5443 int supported_style = (int)GDK_IM_PREEDIT_NONE |
5444 (int)GDK_IM_PREEDIT_NOTHING |
5445 (int)GDK_IM_PREEDIT_POSITION |
5446 (int)GDK_IM_PREEDIT_CALLBACKS |
5447 (int)GDK_IM_STATUS_CALLBACKS |
5448 (int)GDK_IM_STATUS_AREA |
5449 (int)GDK_IM_STATUS_NONE |
5450 (int)GDK_IM_STATUS_NOTHING;
5452 #ifdef XIM_DEBUG
5453 xim_log("xim_decide_input_style()\n");
5454 #endif
5456 if (!gdk_im_ready())
5457 xim_input_style = 0;
5458 else
5460 if (gtk_major_version > 1
5461 || (gtk_major_version == 1
5462 && (gtk_minor_version > 2
5463 || (gtk_minor_version == 2 && gtk_micro_version >= 3))))
5464 use_status_area = TRUE;
5465 else
5467 EMSG(_("E291: Your GTK+ is older than 1.2.3. Status area disabled"));
5468 use_status_area = FALSE;
5470 #ifdef FEAT_XFONTSET
5471 if (gui.fontset == NOFONTSET || gui.fontset->type != GDK_FONT_FONTSET)
5472 #endif
5473 supported_style &= ~((int)GDK_IM_PREEDIT_POSITION
5474 | (int)GDK_IM_STATUS_AREA);
5475 if (!use_status_area)
5476 supported_style &= ~(int)GDK_IM_STATUS_AREA;
5477 xim_input_style = (int)gdk_im_decide_style((GdkIMStyle)supported_style);
5481 static void
5482 preedit_start_cbproc(XIC thexic UNUSED,
5483 XPointer client_data UNUSED,
5484 XPointer call_data UNUSED)
5486 #ifdef XIM_DEBUG
5487 xim_log("xim_decide_input_style()\n");
5488 #endif
5490 draw_feedback = NULL;
5491 xim_can_preediting = TRUE;
5492 xim_has_preediting = TRUE;
5493 gui_update_cursor(TRUE, FALSE);
5494 if (showmode() > 0)
5496 setcursor();
5497 out_flush();
5501 static void
5502 xim_back_delete(int n)
5504 char_u str[3];
5506 str[0] = CSI;
5507 str[1] = 'k';
5508 str[2] = 'b';
5509 while (n-- > 0)
5510 add_to_input_buf(str, 3);
5513 static GSList *key_press_event_queue = NULL;
5514 static gboolean processing_queued_event = FALSE;
5516 static void
5517 preedit_draw_cbproc(XIC thexic UNUSED,
5518 XPointer client_data UNUSED,
5519 XPointer call_data)
5521 XIMPreeditDrawCallbackStruct *draw_data;
5522 XIMText *text;
5523 char *src;
5524 GSList *event_queue;
5526 #ifdef XIM_DEBUG
5527 xim_log("preedit_draw_cbproc()\n");
5528 #endif
5530 draw_data = (XIMPreeditDrawCallbackStruct *) call_data;
5531 text = (XIMText *) draw_data->text;
5533 if ((text == NULL && draw_data->chg_length == preedit_buf_len)
5534 || preedit_buf_len == 0)
5536 init_preedit_start_col();
5537 vim_free(draw_feedback);
5538 draw_feedback = NULL;
5540 if (draw_data->chg_length > 0)
5542 int bs_cnt;
5544 if (draw_data->chg_length > preedit_buf_len)
5545 bs_cnt = preedit_buf_len;
5546 else
5547 bs_cnt = draw_data->chg_length;
5548 xim_back_delete(bs_cnt);
5549 preedit_buf_len -= bs_cnt;
5551 if (text != NULL)
5553 int len;
5554 #ifdef FEAT_MBYTE
5555 char_u *buf = NULL;
5556 unsigned int nfeedback = 0;
5557 #endif
5558 char_u *ptr;
5560 src = text->string.multi_byte;
5561 if (src != NULL && !text->encoding_is_wchar)
5563 len = strlen(src);
5564 ptr = (char_u *)src;
5565 /* Avoid the enter for decision */
5566 if (*ptr == '\n')
5567 return;
5569 #ifdef FEAT_MBYTE
5570 if (input_conv.vc_type != CONV_NONE
5571 && (buf = string_convert(&input_conv,
5572 (char_u *)src, &len)) != NULL)
5574 /* Converted from 'termencoding' to 'encoding'. */
5575 add_to_input_buf_csi(buf, len);
5576 ptr = buf;
5578 else
5579 #endif
5580 add_to_input_buf_csi((char_u *)src, len);
5581 /* Add count of character to preedit_buf_len */
5582 while (*ptr != NUL)
5584 #ifdef FEAT_MBYTE
5585 if (draw_data->text->feedback != NULL)
5587 if (draw_feedback == NULL)
5588 draw_feedback = (char *)alloc(draw_data->chg_first
5589 + text->length);
5590 else
5591 draw_feedback = vim_realloc(draw_feedback,
5592 draw_data->chg_first + text->length);
5593 if (draw_feedback != NULL)
5595 draw_feedback[nfeedback + draw_data->chg_first]
5596 = draw_data->text->feedback[nfeedback];
5597 nfeedback++;
5600 if (has_mbyte)
5601 ptr += (*mb_ptr2len)(ptr);
5602 else
5603 #endif
5604 ptr++;
5605 preedit_buf_len++;
5607 #ifdef FEAT_MBYTE
5608 vim_free(buf);
5609 #endif
5610 preedit_end_col = MAXCOL;
5613 if (text != NULL || draw_data->chg_length > 0)
5615 event_queue = key_press_event_queue;
5616 processing_queued_event = TRUE;
5617 while (event_queue != NULL && processing_queued_event)
5619 GdkEvent *ev = event_queue->data;
5621 gboolean *ret;
5622 gtk_signal_emit_by_name((GtkObject*)gui.mainwin, "key_press_event",
5623 ev, &ret);
5624 gdk_event_free(ev);
5625 event_queue = event_queue->next;
5627 processing_queued_event = FALSE;
5628 if (key_press_event_queue)
5630 g_slist_free(key_press_event_queue);
5631 key_press_event_queue = NULL;
5634 if (gtk_main_level() > 0)
5635 gtk_main_quit();
5639 * Retrieve the highlighting attributes at column col in the preedit string.
5640 * Return -1 if not in preediting mode or if col is out of range.
5643 im_get_feedback_attr(int col)
5645 if (draw_feedback != NULL && col < preedit_buf_len)
5647 if (draw_feedback[col] & XIMReverse)
5648 return HL_INVERSE;
5649 else if (draw_feedback[col] & XIMUnderline)
5650 return HL_UNDERLINE;
5651 else
5652 return hl_attr(HLF_V);
5655 return -1;
5658 static void
5659 preedit_caret_cbproc(XIC thexic UNUSED,
5660 XPointer client_data UNUSED,
5661 XPointer call_data UNUSED)
5663 #ifdef XIM_DEBUG
5664 xim_log("preedit_caret_cbproc()\n");
5665 #endif
5668 static void
5669 preedit_done_cbproc(XIC thexic UNUSED,
5670 XPointer client_data UNUSED,
5671 XPointer call_data UNUSED)
5673 #ifdef XIM_DEBUG
5674 xim_log("preedit_done_cbproc()\n");
5675 #endif
5677 vim_free(draw_feedback);
5678 draw_feedback = NULL;
5679 xim_can_preediting = FALSE;
5680 xim_has_preediting = FALSE;
5681 gui_update_cursor(TRUE, FALSE);
5682 if (showmode() > 0)
5684 setcursor();
5685 out_flush();
5689 void
5690 xim_reset(void)
5692 char *text;
5694 #ifdef XIM_DEBUG
5695 xim_log("xim_reset()\n");
5696 #endif
5698 if (xic != NULL)
5700 text = XmbResetIC(((GdkICPrivate *)xic)->xic);
5701 if (text != NULL && !(xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS))
5702 add_to_input_buf_csi((char_u *)text, strlen(text));
5703 else
5704 preedit_buf_len = 0;
5705 if (text != NULL)
5706 XFree(text);
5711 xim_queue_key_press_event(GdkEventKey *event, int down UNUSED)
5713 #ifdef XIM_DEBUG
5714 xim_log("xim_queue_key_press_event()\n");
5715 #endif
5717 if (preedit_buf_len <= 0)
5718 return FALSE;
5719 if (processing_queued_event)
5720 processing_queued_event = FALSE;
5722 key_press_event_queue = g_slist_append(key_press_event_queue,
5723 gdk_event_copy((GdkEvent *)event));
5724 return TRUE;
5727 static void
5728 preedit_callback_setup(GdkIC *ic UNUSED)
5730 XIC xxic;
5731 XVaNestedList preedit_attr;
5732 XIMCallback preedit_start_cb;
5733 XIMCallback preedit_draw_cb;
5734 XIMCallback preedit_caret_cb;
5735 XIMCallback preedit_done_cb;
5737 xxic = ((GdkICPrivate*)xic)->xic;
5738 preedit_start_cb.callback = (XIMProc)preedit_start_cbproc;
5739 preedit_draw_cb.callback = (XIMProc)preedit_draw_cbproc;
5740 preedit_caret_cb.callback = (XIMProc)preedit_caret_cbproc;
5741 preedit_done_cb.callback = (XIMProc)preedit_done_cbproc;
5742 preedit_attr
5743 = XVaCreateNestedList(0,
5744 XNPreeditStartCallback, &preedit_start_cb,
5745 XNPreeditDrawCallback, &preedit_draw_cb,
5746 XNPreeditCaretCallback, &preedit_caret_cb,
5747 XNPreeditDoneCallback, &preedit_done_cb,
5748 NULL);
5749 XSetICValues(xxic, XNPreeditAttributes, preedit_attr, NULL);
5750 XFree(preedit_attr);
5753 static void
5754 reset_state_setup(GdkIC *ic UNUSED)
5756 #ifdef USE_X11R6_XIM
5757 /* don't change the input context when we call reset */
5758 XSetICValues(((GdkICPrivate *)ic)->xic, XNResetState, XIMPreserveState,
5759 NULL);
5760 #endif
5763 void
5764 xim_init(void)
5766 #ifdef XIM_DEBUG
5767 xim_log("xim_init()\n");
5768 #endif
5770 xic = NULL;
5771 xic_attr = NULL;
5773 if (!gdk_im_ready())
5775 if (p_verbose > 0)
5777 verbose_enter();
5778 EMSG(_("E292: Input Method Server is not running"));
5779 verbose_leave();
5781 return;
5783 if ((xic_attr = gdk_ic_attr_new()) != NULL)
5785 #ifdef FEAT_XFONTSET
5786 gint width, height;
5787 #endif
5788 int mask;
5789 GdkColormap *colormap;
5790 GdkICAttr *attr = xic_attr;
5791 int attrmask = (int)GDK_IC_ALL_REQ;
5792 GtkWidget *widget = gui.drawarea;
5794 attr->style = (GdkIMStyle)xim_input_style;
5795 attr->client_window = gui.mainwin->window;
5797 if ((colormap = gtk_widget_get_colormap(widget)) !=
5798 gtk_widget_get_default_colormap())
5800 attrmask |= (int)GDK_IC_PREEDIT_COLORMAP;
5801 attr->preedit_colormap = colormap;
5803 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
5804 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
5805 attr->preedit_foreground = widget->style->fg[GTK_STATE_NORMAL];
5806 attr->preedit_background = widget->style->base[GTK_STATE_NORMAL];
5808 #ifdef FEAT_XFONTSET
5809 if ((xim_input_style & (int)GDK_IM_PREEDIT_MASK)
5810 == (int)GDK_IM_PREEDIT_POSITION)
5812 if (gui.fontset == NOFONTSET
5813 || gui.fontset->type != GDK_FONT_FONTSET)
5815 EMSG(_(e_overthespot));
5817 else
5819 gdk_window_get_size(widget->window, &width, &height);
5821 attrmask |= (int)GDK_IC_PREEDIT_POSITION_REQ;
5822 attr->spot_location.x = TEXT_X(0);
5823 attr->spot_location.y = TEXT_Y(0);
5824 attr->preedit_area.x = gui.border_offset;
5825 attr->preedit_area.y = gui.border_offset;
5826 attr->preedit_area.width = width - 2*gui.border_offset;
5827 attr->preedit_area.height = height - 2*gui.border_offset;
5828 attr->preedit_fontset = gui.fontset;
5832 if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
5833 == (int)GDK_IM_STATUS_AREA)
5835 if (gui.fontset == NOFONTSET
5836 || gui.fontset->type != GDK_FONT_FONTSET)
5838 EMSG(_(e_overthespot));
5840 else
5842 gdk_window_get_size(gui.mainwin->window, &width, &height);
5843 attrmask |= (int)GDK_IC_STATUS_AREA_REQ;
5844 attr->status_area.x = 0;
5845 attr->status_area.y = height - gui.char_height - 1;
5846 attr->status_area.width = width;
5847 attr->status_area.height = gui.char_height;
5848 attr->status_fontset = gui.fontset;
5851 else if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
5852 == (int)GDK_IM_STATUS_CALLBACKS)
5854 /* FIXME */
5856 #endif
5858 xic = gdk_ic_new(attr, (GdkICAttributesType)attrmask);
5860 if (xic == NULL)
5861 EMSG(_(e_xim));
5862 else
5864 mask = (int)gdk_window_get_events(widget->window);
5865 mask |= (int)gdk_ic_get_events(xic);
5866 gdk_window_set_events(widget->window, (GdkEventMask)mask);
5867 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
5868 preedit_callback_setup(xic);
5869 reset_state_setup(xic);
5874 void
5875 im_shutdown(void)
5877 #ifdef XIM_DEBUG
5878 xim_log("im_shutdown()\n");
5879 #endif
5881 if (xic != NULL)
5883 gdk_im_end();
5884 gdk_ic_destroy(xic);
5885 xic = NULL;
5887 xim_is_active = FALSE;
5888 xim_can_preediting = FALSE;
5889 preedit_start_col = MAXCOL;
5890 xim_has_preediting = FALSE;
5893 #endif /* FEAT_GUI_GTK */
5896 xim_get_status_area_height()
5898 #ifdef FEAT_GUI_GTK
5899 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
5900 return gui.char_height;
5901 #else
5902 if (status_area_enabled)
5903 return gui.char_height;
5904 #endif
5905 return 0;
5909 * Get IM status. When IM is on, return TRUE. Else return FALSE.
5910 * FIXME: This doesn't work correctly: Having focus doesn't always mean XIM is
5911 * active, when not having focus XIM may still be active (e.g., when using a
5912 * tear-off menu item).
5915 im_get_status()
5917 #ifdef FEAT_UIMFEP
5918 if (!gui.in_use)
5919 return uimfep_get_status();
5920 #endif
5921 # ifdef FEAT_GUI_GTK
5922 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
5923 return xim_can_preediting;
5924 # endif
5925 return xim_has_focus;
5928 # endif /* !HAVE_GTK2 */
5930 # if (defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM)) || defined(PROTO)
5932 preedit_get_status(void)
5934 return preedit_is_active;
5936 # endif
5938 # if (defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)) || defined(PROTO)
5940 im_is_preediting()
5942 return xim_has_preediting;
5944 # endif
5945 #endif /* FEAT_XIM */
5947 #if defined(FEAT_MBYTE) || defined(PROTO)
5950 * Setup "vcp" for conversion from "from" to "to".
5951 * The names must have been made canonical with enc_canonize().
5952 * vcp->vc_type must have been initialized to CONV_NONE.
5953 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
5954 * instead).
5955 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
5956 * Return FAIL when conversion is not supported, OK otherwise.
5959 convert_setup(vcp, from, to)
5960 vimconv_T *vcp;
5961 char_u *from;
5962 char_u *to;
5964 return convert_setup_ext(vcp, from, TRUE, to, TRUE);
5968 * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all
5969 * "from" unicode charsets be considered utf-8. Same for "to".
5972 convert_setup_ext(vcp, from, from_unicode_is_utf8, to, to_unicode_is_utf8)
5973 vimconv_T *vcp;
5974 char_u *from;
5975 int from_unicode_is_utf8;
5976 char_u *to;
5977 int to_unicode_is_utf8;
5979 int from_prop;
5980 int to_prop;
5981 int from_is_utf8;
5982 int to_is_utf8;
5984 /* Reset to no conversion. */
5985 # ifdef USE_ICONV
5986 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
5987 iconv_close(vcp->vc_fd);
5988 # endif
5989 vcp->vc_type = CONV_NONE;
5990 vcp->vc_factor = 1;
5991 vcp->vc_fail = FALSE;
5993 /* No conversion when one of the names is empty or they are equal. */
5994 if (from == NULL || *from == NUL || to == NULL || *to == NUL
5995 || STRCMP(from, to) == 0)
5996 return OK;
5998 from_prop = enc_canon_props(from);
5999 to_prop = enc_canon_props(to);
6000 if (from_unicode_is_utf8)
6001 from_is_utf8 = from_prop & ENC_UNICODE;
6002 else
6003 from_is_utf8 = from_prop == ENC_UNICODE;
6004 if (to_unicode_is_utf8)
6005 to_is_utf8 = to_prop & ENC_UNICODE;
6006 else
6007 to_is_utf8 = to_prop == ENC_UNICODE;
6009 if ((from_prop & ENC_LATIN1) && to_is_utf8)
6011 /* Internal latin1 -> utf-8 conversion. */
6012 vcp->vc_type = CONV_TO_UTF8;
6013 vcp->vc_factor = 2; /* up to twice as long */
6015 else if ((from_prop & ENC_LATIN9) && to_is_utf8)
6017 /* Internal latin9 -> utf-8 conversion. */
6018 vcp->vc_type = CONV_9_TO_UTF8;
6019 vcp->vc_factor = 3; /* up to three as long (euro sign) */
6021 else if (from_is_utf8 && (to_prop & ENC_LATIN1))
6023 /* Internal utf-8 -> latin1 conversion. */
6024 vcp->vc_type = CONV_TO_LATIN1;
6026 else if (from_is_utf8 && (to_prop & ENC_LATIN9))
6028 /* Internal utf-8 -> latin9 conversion. */
6029 vcp->vc_type = CONV_TO_LATIN9;
6031 #ifdef WIN3264
6032 /* Win32-specific codepage <-> codepage conversion without iconv. */
6033 else if ((from_is_utf8 || encname2codepage(from) > 0)
6034 && (to_is_utf8 || encname2codepage(to) > 0))
6036 vcp->vc_type = CONV_CODEPAGE;
6037 vcp->vc_factor = 2; /* up to twice as long */
6038 vcp->vc_cpfrom = from_is_utf8 ? 0 : encname2codepage(from);
6039 vcp->vc_cpto = to_is_utf8 ? 0 : encname2codepage(to);
6041 #endif
6042 #ifdef MACOS_X
6043 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
6045 vcp->vc_type = CONV_MAC_LATIN1;
6047 else if ((from_prop & ENC_MACROMAN) && to_is_utf8)
6049 vcp->vc_type = CONV_MAC_UTF8;
6050 vcp->vc_factor = 2; /* up to twice as long */
6052 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
6054 vcp->vc_type = CONV_LATIN1_MAC;
6056 else if (from_is_utf8 && (to_prop & ENC_MACROMAN))
6058 vcp->vc_type = CONV_UTF8_MAC;
6060 #endif
6061 # ifdef USE_ICONV
6062 else
6064 /* Use iconv() for conversion. */
6065 vcp->vc_fd = (iconv_t)my_iconv_open(
6066 to_is_utf8 ? (char_u *)"utf-8" : to,
6067 from_is_utf8 ? (char_u *)"utf-8" : from);
6068 if (vcp->vc_fd != (iconv_t)-1)
6070 vcp->vc_type = CONV_ICONV;
6071 vcp->vc_factor = 4; /* could be longer too... */
6074 # endif
6075 if (vcp->vc_type == CONV_NONE)
6076 return FAIL;
6078 return OK;
6081 #if defined(FEAT_GUI) || defined(AMIGA) || defined(WIN3264) \
6082 || defined(MSDOS) || defined(PROTO)
6084 * Do conversion on typed input characters in-place.
6085 * The input and output are not NUL terminated!
6086 * Returns the length after conversion.
6089 convert_input(ptr, len, maxlen)
6090 char_u *ptr;
6091 int len;
6092 int maxlen;
6094 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
6096 #endif
6099 * Like convert_input(), but when there is an incomplete byte sequence at the
6100 * end return that as an allocated string in "restp" and set "*restlenp" to
6101 * the length. If "restp" is NULL it is not used.
6104 convert_input_safe(ptr, len, maxlen, restp, restlenp)
6105 char_u *ptr;
6106 int len;
6107 int maxlen;
6108 char_u **restp;
6109 int *restlenp;
6111 char_u *d;
6112 int dlen = len;
6113 int unconvertlen = 0;
6115 d = string_convert_ext(&input_conv, ptr, &dlen,
6116 restp == NULL ? NULL : &unconvertlen);
6117 if (d != NULL)
6119 if (dlen <= maxlen)
6121 if (unconvertlen > 0)
6123 /* Move the unconverted characters to allocated memory. */
6124 *restp = alloc(unconvertlen);
6125 if (*restp != NULL)
6126 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
6127 *restlenp = unconvertlen;
6129 mch_memmove(ptr, d, dlen);
6131 else
6132 /* result is too long, keep the unconverted text (the caller must
6133 * have done something wrong!) */
6134 dlen = len;
6135 vim_free(d);
6137 return dlen;
6141 * Convert text "ptr[*lenp]" according to "vcp".
6142 * Returns the result in allocated memory and sets "*lenp".
6143 * When "lenp" is NULL, use NUL terminated strings.
6144 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
6145 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
6147 char_u *
6148 string_convert(vcp, ptr, lenp)
6149 vimconv_T *vcp;
6150 char_u *ptr;
6151 int *lenp;
6153 return string_convert_ext(vcp, ptr, lenp, NULL);
6157 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
6158 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
6159 * set to the number of remaining bytes.
6161 char_u *
6162 string_convert_ext(vcp, ptr, lenp, unconvlenp)
6163 vimconv_T *vcp;
6164 char_u *ptr;
6165 int *lenp;
6166 int *unconvlenp;
6168 char_u *retval = NULL;
6169 char_u *d;
6170 int len;
6171 int i;
6172 int l;
6173 int c;
6175 if (lenp == NULL)
6176 len = (int)STRLEN(ptr);
6177 else
6178 len = *lenp;
6179 if (len == 0)
6180 return vim_strsave((char_u *)"");
6182 switch (vcp->vc_type)
6184 case CONV_TO_UTF8: /* latin1 to utf-8 conversion */
6185 retval = alloc(len * 2 + 1);
6186 if (retval == NULL)
6187 break;
6188 d = retval;
6189 for (i = 0; i < len; ++i)
6191 c = ptr[i];
6192 if (c < 0x80)
6193 *d++ = c;
6194 else
6196 *d++ = 0xc0 + ((unsigned)c >> 6);
6197 *d++ = 0x80 + (c & 0x3f);
6200 *d = NUL;
6201 if (lenp != NULL)
6202 *lenp = (int)(d - retval);
6203 break;
6205 case CONV_9_TO_UTF8: /* latin9 to utf-8 conversion */
6206 retval = alloc(len * 3 + 1);
6207 if (retval == NULL)
6208 break;
6209 d = retval;
6210 for (i = 0; i < len; ++i)
6212 c = ptr[i];
6213 switch (c)
6215 case 0xa4: c = 0x20ac; break; /* euro */
6216 case 0xa6: c = 0x0160; break; /* S hat */
6217 case 0xa8: c = 0x0161; break; /* S -hat */
6218 case 0xb4: c = 0x017d; break; /* Z hat */
6219 case 0xb8: c = 0x017e; break; /* Z -hat */
6220 case 0xbc: c = 0x0152; break; /* OE */
6221 case 0xbd: c = 0x0153; break; /* oe */
6222 case 0xbe: c = 0x0178; break; /* Y */
6224 d += utf_char2bytes(c, d);
6226 *d = NUL;
6227 if (lenp != NULL)
6228 *lenp = (int)(d - retval);
6229 break;
6231 case CONV_TO_LATIN1: /* utf-8 to latin1 conversion */
6232 case CONV_TO_LATIN9: /* utf-8 to latin9 conversion */
6233 retval = alloc(len + 1);
6234 if (retval == NULL)
6235 break;
6236 d = retval;
6237 for (i = 0; i < len; ++i)
6239 l = utf_ptr2len(ptr + i);
6240 if (l == 0)
6241 *d++ = NUL;
6242 else if (l == 1)
6244 if (unconvlenp != NULL && utf8len_tab[ptr[i]] > len - i)
6246 /* Incomplete sequence at the end. */
6247 *unconvlenp = len - i;
6248 break;
6250 *d++ = ptr[i];
6252 else
6254 c = utf_ptr2char(ptr + i);
6255 if (vcp->vc_type == CONV_TO_LATIN9)
6256 switch (c)
6258 case 0x20ac: c = 0xa4; break; /* euro */
6259 case 0x0160: c = 0xa6; break; /* S hat */
6260 case 0x0161: c = 0xa8; break; /* S -hat */
6261 case 0x017d: c = 0xb4; break; /* Z hat */
6262 case 0x017e: c = 0xb8; break; /* Z -hat */
6263 case 0x0152: c = 0xbc; break; /* OE */
6264 case 0x0153: c = 0xbd; break; /* oe */
6265 case 0x0178: c = 0xbe; break; /* Y */
6266 case 0xa4:
6267 case 0xa6:
6268 case 0xa8:
6269 case 0xb4:
6270 case 0xb8:
6271 case 0xbc:
6272 case 0xbd:
6273 case 0xbe: c = 0x100; break; /* not in latin9 */
6275 if (!utf_iscomposing(c)) /* skip composing chars */
6277 if (c < 0x100)
6278 *d++ = c;
6279 else if (vcp->vc_fail)
6281 vim_free(retval);
6282 return NULL;
6284 else
6286 *d++ = 0xbf;
6287 if (utf_char2cells(c) > 1)
6288 *d++ = '?';
6291 i += l - 1;
6294 *d = NUL;
6295 if (lenp != NULL)
6296 *lenp = (int)(d - retval);
6297 break;
6299 # ifdef MACOS_CONVERT
6300 case CONV_MAC_LATIN1:
6301 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6302 'm', 'l', unconvlenp);
6303 break;
6305 case CONV_LATIN1_MAC:
6306 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6307 'l', 'm', unconvlenp);
6308 break;
6310 case CONV_MAC_UTF8:
6311 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6312 'm', 'u', unconvlenp);
6313 break;
6315 case CONV_UTF8_MAC:
6316 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6317 'u', 'm', unconvlenp);
6318 break;
6319 # endif
6321 # ifdef USE_ICONV
6322 case CONV_ICONV: /* conversion with output_conv.vc_fd */
6323 retval = iconv_string(vcp, ptr, len, unconvlenp, lenp);
6324 break;
6325 # endif
6326 # ifdef WIN3264
6327 case CONV_CODEPAGE: /* codepage -> codepage */
6329 int retlen;
6330 int tmp_len;
6331 short_u *tmp;
6333 /* 1. codepage/UTF-8 -> ucs-2. */
6334 if (vcp->vc_cpfrom == 0)
6335 tmp_len = utf8_to_utf16(ptr, len, NULL, NULL);
6336 else
6337 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom, 0,
6338 ptr, len, 0, 0);
6339 tmp = (short_u *)alloc(sizeof(short_u) * tmp_len);
6340 if (tmp == NULL)
6341 break;
6342 if (vcp->vc_cpfrom == 0)
6343 utf8_to_utf16(ptr, len, tmp, unconvlenp);
6344 else
6345 MultiByteToWideChar(vcp->vc_cpfrom, 0, ptr, len, tmp, tmp_len);
6347 /* 2. ucs-2 -> codepage/UTF-8. */
6348 if (vcp->vc_cpto == 0)
6349 retlen = utf16_to_utf8(tmp, tmp_len, NULL);
6350 else
6351 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
6352 tmp, tmp_len, 0, 0, 0, 0);
6353 retval = alloc(retlen + 1);
6354 if (retval != NULL)
6356 if (vcp->vc_cpto == 0)
6357 utf16_to_utf8(tmp, tmp_len, retval);
6358 else
6359 WideCharToMultiByte(vcp->vc_cpto, 0,
6360 tmp, tmp_len, retval, retlen, 0, 0);
6361 retval[retlen] = NUL;
6362 if (lenp != NULL)
6363 *lenp = retlen;
6365 vim_free(tmp);
6366 break;
6368 # endif
6371 return retval;
6373 #endif
6375 #if defined(FEAT_UIMFEP)
6376 static void
6377 uimfep_set_active(int active)
6379 int mustfree = 0;
6380 char_u *setmode;
6381 setmode = vim_getenv("UIM_FEP_SETMODE", &mustfree);
6382 if (setmode != NULL)
6384 FILE *fp = fopen(setmode, "w");
6385 if (fp)
6387 fprintf(fp, "%d\n", active ? uimfep_lastmode : 0);
6388 fflush(fp);
6389 fclose(fp);
6392 if (mustfree)
6393 vim_free(setmode);
6396 static int
6397 uimfep_get_status(void)
6399 int mustfree = 0;
6400 int mode = 0;
6401 char_u *getmode;
6402 getmode = vim_getenv("UIM_FEP_GETMODE", &mustfree);
6403 if (getmode != NULL)
6405 FILE *fp = fopen(getmode, "r");
6406 if (fp)
6408 char_u buf[99];
6409 if (fgets(buf, sizeof(buf), fp))
6410 mode = atoi(buf);
6411 fclose(fp);
6414 if (mustfree)
6415 vim_free(getmode);
6416 if (mode != 0)
6417 uimfep_lastmode = mode;
6418 return mode != 0;
6421 # if defined(USE_IM_CONTROL) && (!defined(FEAT_XIM) \
6422 && !defined(FEAT_MBYTE_IME) && !defined(GLOBAL_IME))
6423 void
6424 im_set_active(int active)
6426 # if defined(FEAT_GUI_MAC) || defined(FEAT_GUI_MACVIM)
6427 if (gui.in_use)
6428 gui_im_set_active(active);
6429 else
6430 uimfep_set_active(active);
6431 # else // FEAT_GUI_MAC || FEAT_GUI_MACVIM
6432 uimfep_set_active(active);
6433 # endif // FEAT_GUI_MAC || FEAT_GUI_MACVIM
6437 im_get_status(void)
6439 # if defined(FEAT_GUI_MAC) || defined(FEAT_GUI_MACVIM)
6440 if (gui.in_use)
6441 return gui_im_get_status();
6442 else
6443 return uimfep_get_status();
6444 # else // FEAT_GUI_MAC || FEAT_GUI_MACVIM
6445 return uimfep_get_status();
6446 # endif // FEAT_GUI_MAC || FEAT_GUI_MACVIM
6448 # endif
6450 #endif /* defined(FEAT_UIMFEP) */