shell32: Fix the Chinese translations.
[wine.git] / dlls / winex11.drv / xim.c
blob851258363596c8f1a85017f637fa1bde558f0ad3
1 /*
2 * Functions for further XIM control
4 * Copyright 2003 CodeWeavers, Aric Stewart
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "wingdi.h"
30 #include "winnls.h"
31 #include "x11drv.h"
32 #include "imm.h"
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
37 #ifndef HAVE_XICCALLBACK_CALLBACK
38 #define XICCallback XIMCallback
39 #define XICProc XIMProc
40 #endif
42 BOOL ximInComposeMode=FALSE;
44 /* moved here from imm32 for dll separation */
45 static DWORD dwCompStringLength = 0;
46 static LPBYTE CompositionString = NULL;
47 static DWORD dwCompStringSize = 0;
48 static LPBYTE ResultString = NULL;
49 static DWORD dwResultStringSize = 0;
51 #define STYLE_OFFTHESPOT (XIMPreeditArea | XIMStatusArea)
52 #define STYLE_OVERTHESPOT (XIMPreeditPosition | XIMStatusNothing)
53 #define STYLE_ROOT (XIMPreeditNothing | XIMStatusNothing)
54 /* this uses all the callbacks to utilize full IME support */
55 #define STYLE_CALLBACK (XIMPreeditCallbacks | XIMStatusNothing)
56 /* inorder to enable deadkey support */
57 #define STYLE_NONE (XIMPreeditNothing | XIMStatusNothing)
59 static XIMStyle ximStyle = 0;
60 static XIMStyle ximStyleRoot = 0;
61 static XIMStyle ximStyleRequest = STYLE_CALLBACK;
63 static BOOL X11DRV_ImmSetInternalString(DWORD dwIndex, DWORD dwOffset,
64 DWORD selLength, LPWSTR lpComp, DWORD dwCompLen)
66 /* Composition strings are edited in chunks */
67 unsigned int byte_length = dwCompLen * sizeof(WCHAR);
68 unsigned int byte_offset = dwOffset * sizeof(WCHAR);
69 unsigned int byte_selection = selLength * sizeof(WCHAR);
70 BOOL rc = FALSE;
72 TRACE("( %i, %i, %d, %p, %d):\n", dwOffset, selLength, dwIndex, lpComp, dwCompLen );
74 if (dwIndex == GCS_COMPSTR)
76 unsigned int i,j;
77 LPBYTE ptr_new;
78 LPBYTE ptr_old;
80 if ((dwCompLen == 0) && (selLength == 0))
82 /* DO Nothing */
84 /* deletion occurred */
85 else if ((dwCompLen== 0) && (selLength != 0))
87 if (dwCompStringLength)
89 for (i = 0; i < byte_selection; i++)
91 if (byte_offset+byte_selection+i <
92 dwCompStringLength)
94 CompositionString[byte_offset + i] =
95 CompositionString[byte_offset + byte_selection + i];
97 else
98 CompositionString[byte_offset + i] = 0;
100 /* clean up the end */
101 dwCompStringLength -= byte_selection;
103 i = dwCompStringLength;
104 while (i < dwCompStringSize)
106 CompositionString[i++] = 0;
110 else
112 int byte_expansion = byte_length - byte_selection;
114 if (byte_expansion + dwCompStringLength >= dwCompStringSize)
116 if (CompositionString)
117 CompositionString =
118 HeapReAlloc(GetProcessHeap(), 0,
119 CompositionString,
120 dwCompStringSize +
121 byte_expansion);
122 else
123 CompositionString =
124 HeapAlloc(GetProcessHeap(), 0, dwCompStringSize +
125 byte_expansion);
127 memset(&(CompositionString[dwCompStringSize]), 0,
128 byte_expansion);
130 dwCompStringSize += byte_expansion;
133 ptr_new = ((LPBYTE)lpComp);
134 ptr_old = CompositionString + byte_offset + byte_selection;
136 dwCompStringLength += byte_expansion;
138 for (j=0,i = byte_offset; i < dwCompStringSize; i++)
140 if (j < byte_length)
142 CompositionString[i] = ptr_new[j++];
144 else
146 if (ptr_old < CompositionString + dwCompStringSize)
148 CompositionString[i] = *ptr_old;
149 ptr_old++;
151 else
152 CompositionString[i] = 0;
157 rc = IME_SetCompositionString(SCS_SETSTR, (LPWSTR)CompositionString,
158 dwCompStringLength, NULL, 0);
160 else if ((dwIndex == GCS_RESULTSTR) && (lpComp) && (dwCompLen))
162 if (dwResultStringSize)
163 HeapFree(GetProcessHeap(),0,ResultString);
164 dwResultStringSize= byte_length;
165 ResultString= HeapAlloc(GetProcessHeap(),0,byte_length);
166 memcpy(ResultString,lpComp,byte_length);
168 rc = IME_SetCompositionString(SCS_SETSTR, (LPWSTR)ResultString,
169 dwResultStringSize, NULL, 0);
171 IME_NotifyIME( NI_COMPOSITIONSTR, CPS_COMPLETE, 0);
174 return rc;
177 void X11DRV_XIMLookupChars( const char *str, DWORD count )
179 DWORD dwOutput;
180 WCHAR wcOutput[64];
181 HWND focus;
183 dwOutput = MultiByteToWideChar(CP_UNIXCP, 0, str, count, wcOutput, sizeof(wcOutput)/sizeof(WCHAR));
185 if ((focus = GetFocus()))
186 IME_UpdateAssociation(focus);
188 X11DRV_ImmSetInternalString(GCS_RESULTSTR,0,0,wcOutput,dwOutput);
191 static void X11DRV_ImmSetOpenStatus(BOOL fOpen)
193 if (fOpen == FALSE)
195 if (dwCompStringSize)
196 HeapFree(GetProcessHeap(),0,CompositionString);
198 dwCompStringSize = 0;
199 dwCompStringLength = 0;
200 CompositionString = NULL;
202 if (dwResultStringSize)
203 HeapFree(GetProcessHeap(),0,ResultString);
205 dwResultStringSize = 0;
206 ResultString = NULL;
209 IME_SetOpenStatus(fOpen);
212 static int XIMPreEditStartCallback(XIC ic, XPointer client_data, XPointer call_data)
214 TRACE("PreEditStartCallback %p\n",ic);
215 X11DRV_ImmSetOpenStatus(TRUE);
216 ximInComposeMode = TRUE;
217 return -1;
220 static void XIMPreEditDoneCallback(XIC ic, XPointer client_data, XPointer call_data)
222 TRACE("PreeditDoneCallback %p\n",ic);
223 ximInComposeMode = FALSE;
224 X11DRV_ImmSetOpenStatus(FALSE);
227 static void XIMPreEditDrawCallback(XIM ic, XPointer client_data,
228 XIMPreeditDrawCallbackStruct *P_DR)
230 TRACE("PreEditDrawCallback %p\n",ic);
232 if (P_DR)
234 int sel = P_DR->chg_first;
235 int len = P_DR->chg_length;
236 if (P_DR->text)
238 if (! P_DR->text->encoding_is_wchar)
240 DWORD dwOutput;
241 WCHAR *wcOutput;
243 TRACE("multibyte\n");
244 dwOutput = MultiByteToWideChar(CP_UNIXCP, 0,
245 P_DR->text->string.multi_byte, -1,
246 NULL, 0);
247 wcOutput = HeapAlloc(GetProcessHeap(), 0, sizeof (WCHAR) * dwOutput);
248 if (wcOutput)
250 dwOutput = MultiByteToWideChar(CP_UNIXCP, 0,
251 P_DR->text->string.multi_byte, -1,
252 wcOutput, dwOutput);
254 /* ignore null */
255 dwOutput --;
256 X11DRV_ImmSetInternalString (GCS_COMPSTR, sel, len, wcOutput, dwOutput);
257 HeapFree(GetProcessHeap(), 0, wcOutput);
260 else
262 FIXME("wchar PROBIBILY WRONG\n");
263 X11DRV_ImmSetInternalString (GCS_COMPSTR, sel, len,
264 (LPWSTR)P_DR->text->string.wide_char,
265 P_DR->text->length);
268 else
269 X11DRV_ImmSetInternalString (GCS_COMPSTR, sel, len, NULL, 0);
270 IME_SetCursorPos(P_DR->caret);
272 TRACE("Finished\n");
275 static void XIMPreEditCaretCallback(XIC ic, XPointer client_data,
276 XIMPreeditCaretCallbackStruct *P_C)
278 TRACE("PreeditCaretCallback %p\n",ic);
280 if (P_C)
282 int pos = IME_GetCursorPos();
283 TRACE("pos: %d\n", pos);
284 switch(P_C->direction)
286 case XIMForwardChar:
287 case XIMForwardWord:
288 pos++;
289 break;
290 case XIMBackwardChar:
291 case XIMBackwardWord:
292 pos--;
293 break;
294 case XIMLineStart:
295 pos = 0;
296 break;
297 case XIMAbsolutePosition:
298 pos = P_C->position;
299 break;
300 case XIMDontChange:
301 P_C->position = pos;
302 return;
303 case XIMCaretUp:
304 case XIMCaretDown:
305 case XIMPreviousLine:
306 case XIMNextLine:
307 case XIMLineEnd:
308 FIXME("Not implemented\n");
309 break;
311 IME_SetCursorPos(pos);
312 P_C->position = pos;
314 TRACE("Finished\n");
317 void X11DRV_ForceXIMReset(HWND hwnd)
319 XIC ic = X11DRV_get_ic(hwnd);
320 if (ic)
322 char* leftover;
323 TRACE("Forcing Reset %p\n",ic);
324 wine_tsx11_lock();
325 leftover = XmbResetIC(ic);
326 XFree(leftover);
327 wine_tsx11_unlock();
331 /***********************************************************************
332 * X11DRV_InitXIM
334 * Process-wide XIM initialization.
336 BOOL X11DRV_InitXIM( const char *input_style )
338 BOOL ret;
340 if (!strcasecmp(input_style, "offthespot"))
341 ximStyleRequest = STYLE_OFFTHESPOT;
342 else if (!strcasecmp(input_style, "overthespot"))
343 ximStyleRequest = STYLE_OVERTHESPOT;
344 else if (!strcasecmp(input_style, "root"))
345 ximStyleRequest = STYLE_ROOT;
347 wine_tsx11_lock();
348 if (!(ret = XSupportsLocale()))
350 WARN("X does not support locale.\n");
352 else if (XSetLocaleModifiers("") == NULL)
354 WARN("Could not set locale modifiers.\n");
355 ret = FALSE;
357 wine_tsx11_unlock();
358 return ret;
362 static void X11DRV_OpenIM(Display *display, XPointer p, XPointer data);
364 static void X11DRV_DestroyIM(XIM xim, XPointer p, XPointer data)
366 struct x11drv_thread_data *thread_data = x11drv_thread_data();
368 TRACE("xim = %p, p = %p\n", xim, p);
369 thread_data->xim = NULL;
370 ximStyle = 0;
371 wine_tsx11_lock();
372 XRegisterIMInstantiateCallback( thread_data->display, NULL, NULL, NULL, X11DRV_OpenIM, NULL );
373 wine_tsx11_unlock();
376 /***********************************************************************
377 * X11DRV Ime creation
379 * Should always be called with the x11 lock held
381 static void X11DRV_OpenIM(Display *display, XPointer ptr, XPointer data)
383 struct x11drv_thread_data *thread_data = x11drv_thread_data();
384 XIMStyle ximStyleCallback, ximStyleNone;
385 XIMStyles *ximStyles = NULL;
386 INT i;
387 XIM xim;
388 XIMCallback destroy;
390 xim = XOpenIM(display, NULL, NULL, NULL);
391 if (xim == NULL)
393 WARN("Could not open input method.\n");
394 return;
397 destroy.client_data = NULL;
398 destroy.callback = X11DRV_DestroyIM;
399 if (XSetIMValues(xim, XNDestroyCallback, &destroy, NULL))
401 WARN("Could not set destroy callback.\n");
404 TRACE("xim = %p\n", xim);
405 TRACE("X display of IM = %p\n", XDisplayOfIM(xim));
406 TRACE("Using %s locale of Input Method\n", XLocaleOfIM(xim));
408 XGetIMValues(xim, XNQueryInputStyle, &ximStyles, NULL);
409 if (ximStyles == 0)
411 WARN("Could not find supported input style.\n");
412 XCloseIM(xim);
413 return;
415 else
417 TRACE("ximStyles->count_styles = %d\n", ximStyles->count_styles);
419 ximStyleRoot = 0;
420 ximStyleNone = 0;
421 ximStyleCallback = 0;
423 for (i = 0; i < ximStyles->count_styles; ++i)
425 int style = ximStyles->supported_styles[i];
426 TRACE("ximStyles[%d] = %s%s%s%s%s\n", i,
427 (style&XIMPreeditArea)?"XIMPreeditArea ":"",
428 (style&XIMPreeditCallbacks)?"XIMPreeditCallbacks ":"",
429 (style&XIMPreeditPosition)?"XIMPreeditPosition ":"",
430 (style&XIMPreeditNothing)?"XIMPreeditNothing ":"",
431 (style&XIMPreeditNone)?"XIMPreeditNone ":"");
432 if (!ximStyle && (ximStyles->supported_styles[i] ==
433 ximStyleRequest))
435 ximStyle = ximStyleRequest;
436 TRACE("Setting Style: ximStyle = ximStyleRequest\n");
438 else if (!ximStyleRoot &&(ximStyles->supported_styles[i] ==
439 STYLE_ROOT))
441 ximStyleRoot = STYLE_ROOT;
442 TRACE("Setting Style: ximStyleRoot = STYLE_ROOT\n");
444 else if (!ximStyleCallback &&(ximStyles->supported_styles[i] ==
445 STYLE_CALLBACK))
447 ximStyleCallback = STYLE_CALLBACK;
448 TRACE("Setting Style: ximStyleCallback = STYLE_CALLBACK\n");
450 else if (!ximStyleNone && (ximStyles->supported_styles[i] ==
451 STYLE_NONE))
453 TRACE("Setting Style: ximStyleNone = STYLE_NONE\n");
454 ximStyleNone = STYLE_NONE;
457 XFree(ximStyles);
459 if (ximStyle == 0)
460 ximStyle = ximStyleRoot;
462 if (ximStyle == 0)
463 ximStyle = ximStyleNone;
465 if (ximStyleCallback == 0)
467 TRACE("No callback style avalable\n");
468 ximStyleCallback = ximStyle;
473 thread_data->xim = xim;
474 XUnregisterIMInstantiateCallback(display, NULL, NULL, NULL, X11DRV_OpenIM, NULL);
476 wine_tsx11_unlock();
477 IME_UpdateAssociation(NULL);
478 wine_tsx11_lock();
482 void X11DRV_SetupXIM(void)
484 wine_tsx11_lock();
485 XRegisterIMInstantiateCallback(thread_display(), NULL, NULL, NULL, X11DRV_OpenIM, NULL);
486 wine_tsx11_unlock();
489 static BOOL X11DRV_DestroyIC(XIC xic, XPointer p, XPointer data)
491 struct x11drv_win_data *win_data = (struct x11drv_win_data *)p;
492 TRACE("xic = %p, win = %lx\n", xic, win_data->whole_window);
493 win_data->xic = NULL;
494 return TRUE;
498 XIC X11DRV_CreateIC(XIM xim, struct x11drv_win_data *data)
500 XPoint spot = {0};
501 XVaNestedList preedit = NULL;
502 XVaNestedList status = NULL;
503 XIC xic;
504 XICCallback destroy = {(XPointer)data, (XICProc)X11DRV_DestroyIC};
505 XICCallback P_StartCB, P_DoneCB, P_DrawCB, P_CaretCB;
506 LANGID langid = PRIMARYLANGID(LANGIDFROMLCID(GetThreadLocale()));
507 Window win = data->whole_window;
509 TRACE("xim = %p\n", xim);
511 wine_tsx11_lock();
513 /* use complex and slow XIC initialization method only for CJK */
514 if (langid != LANG_CHINESE &&
515 langid != LANG_JAPANESE &&
516 langid != LANG_KOREAN)
518 xic = XCreateIC(xim,
519 XNInputStyle, XIMPreeditNothing | XIMStatusNothing,
520 XNClientWindow, win,
521 XNFocusWindow, win,
522 XNDestroyCallback, &destroy,
523 NULL);
524 wine_tsx11_unlock();
525 data->xic = xic;
526 return xic;
529 /* create callbacks */
530 P_StartCB.client_data = NULL;
531 P_DoneCB.client_data = NULL;
532 P_DrawCB.client_data = NULL;
533 P_CaretCB.client_data = NULL;
534 P_StartCB.callback = (XICProc)XIMPreEditStartCallback;
535 P_DoneCB.callback = (XICProc)XIMPreEditDoneCallback;
536 P_DrawCB.callback = (XICProc)XIMPreEditDrawCallback;
537 P_CaretCB.callback = (XICProc)XIMPreEditCaretCallback;
539 if ((ximStyle & (XIMPreeditNothing | XIMPreeditNone)) == 0)
541 preedit = XVaCreateNestedList(0,
542 XNSpotLocation, &spot,
543 XNPreeditStartCallback, &P_StartCB,
544 XNPreeditDoneCallback, &P_DoneCB,
545 XNPreeditDrawCallback, &P_DrawCB,
546 XNPreeditCaretCallback, &P_CaretCB,
547 NULL);
548 TRACE("preedit = %p\n", preedit);
550 else
552 preedit = XVaCreateNestedList(0,
553 XNPreeditStartCallback, &P_StartCB,
554 XNPreeditDoneCallback, &P_DoneCB,
555 XNPreeditDrawCallback, &P_DrawCB,
556 XNPreeditCaretCallback, &P_CaretCB,
557 NULL);
559 TRACE("preedit = %p\n", preedit);
562 if ((ximStyle & (XIMStatusNothing | XIMStatusNone)) == 0)
564 status = XVaCreateNestedList(0,
565 NULL);
566 TRACE("status = %p\n", status);
569 if (preedit != NULL && status != NULL)
571 xic = XCreateIC(xim,
572 XNInputStyle, ximStyle,
573 XNPreeditAttributes, preedit,
574 XNStatusAttributes, status,
575 XNClientWindow, win,
576 XNFocusWindow, win,
577 XNDestroyCallback, &destroy,
578 NULL);
580 else if (preedit != NULL)
582 xic = XCreateIC(xim,
583 XNInputStyle, ximStyle,
584 XNPreeditAttributes, preedit,
585 XNClientWindow, win,
586 XNFocusWindow, win,
587 XNDestroyCallback, &destroy,
588 NULL);
590 else if (status != NULL)
592 xic = XCreateIC(xim,
593 XNInputStyle, ximStyle,
594 XNStatusAttributes, status,
595 XNClientWindow, win,
596 XNFocusWindow, win,
597 XNDestroyCallback, &destroy,
598 NULL);
600 else
602 xic = XCreateIC(xim,
603 XNInputStyle, ximStyle,
604 XNClientWindow, win,
605 XNFocusWindow, win,
606 XNDestroyCallback, &destroy,
607 NULL);
610 TRACE("xic = %p\n", xic);
611 data->xic = xic;
613 if (preedit != NULL)
614 XFree(preedit);
615 if (status != NULL)
616 XFree(status);
618 wine_tsx11_unlock();
620 return xic;