diff options
author | rmax <rmax> | 2005-12-05 17:02:00 (GMT) |
---|---|---|
committer | rmax <rmax> | 2005-12-05 17:02:00 (GMT) |
commit | 86480885c74b45e5064b4b9fe7ef7fa8a5d5bf0f (patch) | |
tree | 16b942623c898b58fece56aa6f0ce18962b9c7bc /unix | |
parent | c96bb297382ca81f2babbd35850fdb47b965d091 (diff) | |
download | tk-86480885c74b45e5064b4b9fe7ef7fa8a5d5bf0f.zip tk-86480885c74b45e5064b4b9fe7ef7fa8a5d5bf0f.tar.gz tk-86480885c74b45e5064b4b9fe7ef7fa8a5d5bf0f.tar.bz2 |
* unix/tkUnixEvent.c (OpenIM): Added a workaround to allow at
least ASCII and the Compose key when typing into text and entry
widgets on a system that uses SCIM. This has to be taken out again
once the SCIM problems have been fixed.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixEvent.c | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/unix/tkUnixEvent.c b/unix/tkUnixEvent.c index 1ce015c..463db3a 100644 --- a/unix/tkUnixEvent.c +++ b/unix/tkUnixEvent.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixEvent.c,v 1.17 2005/11/13 21:00:17 dkf Exp $ + * RCS: @(#) $Id: tkUnixEvent.c,v 1.18 2005/12/05 17:02:02 rmax Exp $ */ #include "tkInt.h" @@ -636,10 +636,31 @@ OpenIM( { unsigned short i; XIMStyles *stylePtr; + char *modifiers; - if (XSetLocaleModifiers("") == NULL) { + modifiers = XSetLocaleModifiers(""); + if (modifiers == NULL) { goto error; } +#if 1 + /* + * This is a temporary hack that can be taken back out again + * once Tk has learned how to deal with SCIM + */ + while ((modifiers = strchr(modifiers, '@')) != NULL) { + if (strncmp(modifiers, "@im=", 4) == 0) { + /* The first "@im=" entry wins */ + const char const *scim = "@im=SCIM"; + if (strncmp(modifiers, scim, strlen(scim)) == 0) { + /* If it is SCIM, we override it */ + if (XSetLocaleModifiers("@im=local") == NULL) { + goto error; + } + } + break; + } + } +#endif dispPtr->inputMethod = XOpenIM(dispPtr->display, NULL, NULL, NULL); if (dispPtr->inputMethod == NULL) { |