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
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(x11drv
);
37 #ifndef HAVE_XICCALLBACK_CALLBACK
38 #define XICCallback XIMCallback
39 #define XICProc XIMProc
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
);
72 TRACE("( %i, %i, %d, %p, %d):\n", dwOffset
, selLength
, dwIndex
, lpComp
, dwCompLen
);
74 if (dwIndex
== GCS_COMPSTR
)
80 if ((dwCompLen
== 0) && (selLength
== 0))
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
<
94 CompositionString
[byte_offset
+ i
] =
95 CompositionString
[byte_offset
+ byte_selection
+ i
];
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;
112 int byte_expansion
= byte_length
- byte_selection
;
114 if (byte_expansion
+ dwCompStringLength
>= dwCompStringSize
)
116 if (CompositionString
)
118 HeapReAlloc(GetProcessHeap(), 0,
124 HeapAlloc(GetProcessHeap(), 0, dwCompStringSize
+
127 memset(&(CompositionString
[dwCompStringSize
]), 0,
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
++)
142 CompositionString
[i
] = ptr_new
[j
++];
146 if (ptr_old
< CompositionString
+ dwCompStringSize
)
148 CompositionString
[i
] = *ptr_old
;
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);
177 void X11DRV_XIMLookupChars( const char *str
, DWORD count
)
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
)
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;
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
;
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
);
234 int sel
= P_DR
->chg_first
;
235 int len
= P_DR
->chg_length
;
238 if (! P_DR
->text
->encoding_is_wchar
)
243 TRACE("multibyte\n");
244 dwOutput
= MultiByteToWideChar(CP_UNIXCP
, 0,
245 P_DR
->text
->string
.multi_byte
, -1,
247 wcOutput
= HeapAlloc(GetProcessHeap(), 0, sizeof (WCHAR
) * dwOutput
);
250 dwOutput
= MultiByteToWideChar(CP_UNIXCP
, 0,
251 P_DR
->text
->string
.multi_byte
, -1,
256 X11DRV_ImmSetInternalString (GCS_COMPSTR
, sel
, len
, wcOutput
, dwOutput
);
257 HeapFree(GetProcessHeap(), 0, wcOutput
);
262 FIXME("wchar PROBIBILY WRONG\n");
263 X11DRV_ImmSetInternalString (GCS_COMPSTR
, sel
, len
,
264 (LPWSTR
)P_DR
->text
->string
.wide_char
,
269 X11DRV_ImmSetInternalString (GCS_COMPSTR
, sel
, len
, NULL
, 0);
270 IME_SetCursorPos(P_DR
->caret
);
275 static void XIMPreEditCaretCallback(XIC ic
, XPointer client_data
,
276 XIMPreeditCaretCallbackStruct
*P_C
)
278 TRACE("PreeditCaretCallback %p\n",ic
);
282 int pos
= IME_GetCursorPos();
283 TRACE("pos: %d\n", pos
);
284 switch(P_C
->direction
)
290 case XIMBackwardChar
:
291 case XIMBackwardWord
:
297 case XIMAbsolutePosition
:
305 case XIMPreviousLine
:
308 FIXME("Not implemented\n");
311 IME_SetCursorPos(pos
);
317 void X11DRV_ForceXIMReset(HWND hwnd
)
319 XIC ic
= X11DRV_get_ic(hwnd
);
323 TRACE("Forcing Reset %p\n",ic
);
325 leftover
= XmbResetIC(ic
);
331 /***********************************************************************
334 * Process-wide XIM initialization.
336 BOOL
X11DRV_InitXIM( const char *input_style
)
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
;
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");
362 static void open_xim_callback( Display
*display
, XPointer ptr
, 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
;
372 XRegisterIMInstantiateCallback( thread_data
->display
, NULL
, NULL
, NULL
, open_xim_callback
, NULL
);
376 /***********************************************************************
377 * X11DRV Ime creation
379 * Should always be called with the x11 lock held
381 static BOOL
open_xim( Display
*display
)
383 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
384 XIMStyle ximStyleCallback
, ximStyleNone
;
385 XIMStyles
*ximStyles
= NULL
;
390 xim
= XOpenIM(display
, NULL
, NULL
, NULL
);
393 WARN("Could not open input method.\n");
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
);
411 WARN("Could not find supported input style.\n");
417 TRACE("ximStyles->count_styles = %d\n", ximStyles
->count_styles
);
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
] ==
435 ximStyle
= ximStyleRequest
;
436 TRACE("Setting Style: ximStyle = ximStyleRequest\n");
438 else if (!ximStyleRoot
&&(ximStyles
->supported_styles
[i
] ==
441 ximStyleRoot
= STYLE_ROOT
;
442 TRACE("Setting Style: ximStyleRoot = STYLE_ROOT\n");
444 else if (!ximStyleCallback
&&(ximStyles
->supported_styles
[i
] ==
447 ximStyleCallback
= STYLE_CALLBACK
;
448 TRACE("Setting Style: ximStyleCallback = STYLE_CALLBACK\n");
450 else if (!ximStyleNone
&& (ximStyles
->supported_styles
[i
] ==
453 TRACE("Setting Style: ximStyleNone = STYLE_NONE\n");
454 ximStyleNone
= STYLE_NONE
;
460 ximStyle
= ximStyleRoot
;
463 ximStyle
= ximStyleNone
;
465 if (ximStyleCallback
== 0)
467 TRACE("No callback style avalable\n");
468 ximStyleCallback
= ximStyle
;
473 thread_data
->xim
= xim
;
476 IME_UpdateAssociation(NULL
);
481 static void open_xim_callback( Display
*display
, XPointer ptr
, XPointer data
)
483 if (open_xim( display
))
484 XUnregisterIMInstantiateCallback( display
, NULL
, NULL
, NULL
, open_xim_callback
, NULL
);
487 void X11DRV_SetupXIM(void)
489 Display
*display
= thread_display();
492 if (!open_xim( display
))
493 XRegisterIMInstantiateCallback( display
, NULL
, NULL
, NULL
, open_xim_callback
, NULL
);
497 static BOOL
X11DRV_DestroyIC(XIC xic
, XPointer p
, XPointer data
)
499 struct x11drv_win_data
*win_data
= (struct x11drv_win_data
*)p
;
500 TRACE("xic = %p, win = %lx\n", xic
, win_data
->whole_window
);
501 win_data
->xic
= NULL
;
506 XIC
X11DRV_CreateIC(XIM xim
, struct x11drv_win_data
*data
)
509 XVaNestedList preedit
= NULL
;
510 XVaNestedList status
= NULL
;
512 XICCallback destroy
= {(XPointer
)data
, (XICProc
)X11DRV_DestroyIC
};
513 XICCallback P_StartCB
, P_DoneCB
, P_DrawCB
, P_CaretCB
;
514 LANGID langid
= PRIMARYLANGID(LANGIDFROMLCID(GetThreadLocale()));
515 Window win
= data
->whole_window
;
517 TRACE("xim = %p\n", xim
);
521 /* use complex and slow XIC initialization method only for CJK */
522 if (langid
!= LANG_CHINESE
&&
523 langid
!= LANG_JAPANESE
&&
524 langid
!= LANG_KOREAN
)
527 XNInputStyle
, XIMPreeditNothing
| XIMStatusNothing
,
530 XNDestroyCallback
, &destroy
,
537 /* create callbacks */
538 P_StartCB
.client_data
= NULL
;
539 P_DoneCB
.client_data
= NULL
;
540 P_DrawCB
.client_data
= NULL
;
541 P_CaretCB
.client_data
= NULL
;
542 P_StartCB
.callback
= (XICProc
)XIMPreEditStartCallback
;
543 P_DoneCB
.callback
= (XICProc
)XIMPreEditDoneCallback
;
544 P_DrawCB
.callback
= (XICProc
)XIMPreEditDrawCallback
;
545 P_CaretCB
.callback
= (XICProc
)XIMPreEditCaretCallback
;
547 if ((ximStyle
& (XIMPreeditNothing
| XIMPreeditNone
)) == 0)
549 preedit
= XVaCreateNestedList(0,
550 XNSpotLocation
, &spot
,
551 XNPreeditStartCallback
, &P_StartCB
,
552 XNPreeditDoneCallback
, &P_DoneCB
,
553 XNPreeditDrawCallback
, &P_DrawCB
,
554 XNPreeditCaretCallback
, &P_CaretCB
,
556 TRACE("preedit = %p\n", preedit
);
560 preedit
= XVaCreateNestedList(0,
561 XNPreeditStartCallback
, &P_StartCB
,
562 XNPreeditDoneCallback
, &P_DoneCB
,
563 XNPreeditDrawCallback
, &P_DrawCB
,
564 XNPreeditCaretCallback
, &P_CaretCB
,
567 TRACE("preedit = %p\n", preedit
);
570 if ((ximStyle
& (XIMStatusNothing
| XIMStatusNone
)) == 0)
572 status
= XVaCreateNestedList(0,
574 TRACE("status = %p\n", status
);
577 if (preedit
!= NULL
&& status
!= NULL
)
580 XNInputStyle
, ximStyle
,
581 XNPreeditAttributes
, preedit
,
582 XNStatusAttributes
, status
,
585 XNDestroyCallback
, &destroy
,
588 else if (preedit
!= NULL
)
591 XNInputStyle
, ximStyle
,
592 XNPreeditAttributes
, preedit
,
595 XNDestroyCallback
, &destroy
,
598 else if (status
!= NULL
)
601 XNInputStyle
, ximStyle
,
602 XNStatusAttributes
, status
,
605 XNDestroyCallback
, &destroy
,
611 XNInputStyle
, ximStyle
,
614 XNDestroyCallback
, &destroy
,
618 TRACE("xic = %p\n", xic
);