Commit 1baa27d0 authored by Ulrich Sibiller's avatar Ulrich Sibiller

update files from modules dir of libX11 1.3.4

parent da3e7fd2
...@@ -5,14 +5,14 @@ Copyright 1994 by Sony Corporation ...@@ -5,14 +5,14 @@ Copyright 1994 by Sony Corporation
All Rights Reserved All Rights Reserved
Permission to use, copy, modify, and distribute this software and its Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted, documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Digital, FUJITSU supporting documentation, and that the names of Digital, FUJITSU
LIMITED and Sony Corporation not be used in advertising or publicity LIMITED and Sony Corporation not be used in advertising or publicity
pertaining to distribution of the software without specific, written pertaining to distribution of the software without specific, written
prior permission. prior permission.
DIGITAL, FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL WARRANTIES DIGITAL, FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
...@@ -29,7 +29,7 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -29,7 +29,7 @@ PERFORMANCE OF THIS SOFTWARE.
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
Makoto Wakamatsu Sony Corporation Makoto Wakamatsu Sony Corporation
makoto@sm.sony.co.jp makoto@sm.sony.co.jp
***********************************************************************/ ***********************************************************************/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
...@@ -68,11 +68,11 @@ extern int _Xmblen (); ...@@ -68,11 +68,11 @@ extern int _Xmblen ();
#define sz_ximStatusDone 0 #define sz_ximStatusDone 0
typedef enum { typedef enum {
XimCbSuccess, XimCbSuccess,
XimCbNoCallback, XimCbNoCallback,
XimCbError, XimCbError,
XimCbQueued, XimCbQueued,
XimCbBadContextID, XimCbBadContextID,
XimCbBadOpcode XimCbBadOpcode
} XimCbStatus; } XimCbStatus;
...@@ -111,7 +111,7 @@ Private XimCbStatus _XimPreeditStateNotifyCallback(Xim, Xic, char *, int); ...@@ -111,7 +111,7 @@ Private XimCbStatus _XimPreeditStateNotifyCallback(Xim, Xic, char *, int);
#endif #endif
/* NOTE: /* NOTE:
* the table below depends on the protocol number * the table below depends on the protocol number
* defined in the IM Protocol document. * defined in the IM Protocol document.
*/ */
static RConst XimCb callback_table[] = { static RConst XimCb callback_table[] = {
...@@ -149,11 +149,11 @@ _XimProcessPendingCallbacks(Xic ic) ...@@ -149,11 +149,11 @@ _XimProcessPendingCallbacks(Xic ic)
{ {
XimPendingCallback pcbq; XimPendingCallback pcbq;
while (((pcbq = ic->private.proto.pend_cb_que) != (XimPendingCallback)NULL) while (((pcbq = ic->private.proto.pend_cb_que) != (XimPendingCallback)NULL)
&& _XimIsReadyForProcess(ic)) { && _XimIsReadyForProcess(ic)) {
(void) (*callback_table[pcbq->major_opcode])(pcbq->im, (void) (*callback_table[pcbq->major_opcode])(pcbq->im,
pcbq->ic, pcbq->ic,
pcbq->proto, pcbq->proto,
pcbq->proto_len); pcbq->proto_len);
ic->private.proto.pend_cb_que = pcbq->next; ic->private.proto.pend_cb_que = pcbq->next;
Xfree(pcbq->proto); /* free memory of XimPendingCallback */ Xfree(pcbq->proto); /* free memory of XimPendingCallback */
...@@ -183,9 +183,9 @@ _XimPutCbIntoQueue(Xic ic, XimPendingCallback call_data) ...@@ -183,9 +183,9 @@ _XimPutCbIntoQueue(Xic ic, XimPendingCallback call_data)
} }
Public Bool Public Bool
_XimCbDispatch(Xim xim, _XimCbDispatch(Xim xim,
INT16 len, INT16 len,
XPointer data, XPointer data,
XPointer call_data) XPointer call_data)
{ {
/* `data' points to the beginning of the packet defined in IM Protocol doc. /* `data' points to the beginning of the packet defined in IM Protocol doc.
...@@ -260,16 +260,16 @@ _XimCbDispatch(Xim xim, ...@@ -260,16 +260,16 @@ _XimCbDispatch(Xim xim,
} }
Private XimCbStatus Private XimCbStatus
_XimGeometryCallback(Xim im, _XimGeometryCallback(Xim im,
Xic ic, Xic ic,
char* proto, char* proto,
int len) int len)
{ {
XICCallback* cb = &ic->core.geometry_callback; XICCallback* cb = &ic->core.geometry_callback;
/* invoke the callack /* invoke the callack
*/ */
if (cb && cb->callback) { if (cb && cb->callback) {
(*cb->callback)((XIC)ic, cb->client_data, (XPointer)NULL); (*cb->callback)((XIC)ic, cb->client_data, (XPointer)NULL);
} }
else { else {
...@@ -283,9 +283,9 @@ _XimGeometryCallback(Xim im, ...@@ -283,9 +283,9 @@ _XimGeometryCallback(Xim im,
} }
Private XimCbStatus Private XimCbStatus
_XimStrConversionCallback(Xim im, _XimStrConversionCallback(Xim im,
Xic ic, Xic ic,
char* proto, char* proto,
int len) int len)
{ {
XICCallback* cb = &ic->core.string_conversion_callback; /* check HM */ XICCallback* cb = &ic->core.string_conversion_callback; /* check HM */
...@@ -310,10 +310,10 @@ _XimStrConversionCallback(Xim im, ...@@ -310,10 +310,10 @@ _XimStrConversionCallback(Xim im,
/* no callback registered /* no callback registered
*/ */
_XimError(im, ic, _XimError(im, ic,
(CARD16)XIM_BadSomething, (CARD16)XIM_BadSomething,
(INT16)len, (INT16)len,
(CARD16)XIM_STR_CONVERSION, (CARD16)XIM_STR_CONVERSION,
(char*)proto); /* send XIM_ERROR */ (char*)proto); /* send XIM_ERROR */
return XimCbNoCallback; return XimCbNoCallback;
} }
...@@ -332,9 +332,9 @@ _XimStrConversionCallback(Xim im, ...@@ -332,9 +332,9 @@ _XimStrConversionCallback(Xim im,
length_in_bytes = (cbrec.text->encoding_is_wchar)? length_in_bytes = (cbrec.text->encoding_is_wchar)?
sizeof(wchar_t) * cbrec.text->length: /* wchar */ sizeof(wchar_t) * cbrec.text->length: /* wchar */
strlen(cbrec.text->string.mbs); /* mb */ strlen(cbrec.text->string.mbs); /* mb */
buf_len = XIM_HEADER_SIZE + buf_len = XIM_HEADER_SIZE +
sz_CARD16 + sz_CARD16 +
2 + length_in_bytes + 2 + length_in_bytes +
XIM_PAD(2 + length_in_bytes) + XIM_PAD(2 + length_in_bytes) +
2 + 2 + sz_CARD32 * cbrec.text->length; 2 + 2 + sz_CARD32 * cbrec.text->length;
buf = (CARD8*)Xmalloc(buf_len); buf = (CARD8*)Xmalloc(buf_len);
...@@ -366,9 +366,9 @@ _XimStrConversionCallback(Xim im, ...@@ -366,9 +366,9 @@ _XimStrConversionCallback(Xim im,
} }
Private XimCbStatus Private XimCbStatus
_XimPreeditStartCallback(Xim im, _XimPreeditStartCallback(Xim im,
Xic ic, Xic ic,
char* proto, char* proto,
int len) int len)
{ {
XICCallback* cb = &ic->core.preedit_attr.start_callback; XICCallback* cb = &ic->core.preedit_attr.start_callback;
...@@ -381,12 +381,12 @@ _XimPreeditStartCallback(Xim im, ...@@ -381,12 +381,12 @@ _XimPreeditStartCallback(Xim im,
} }
else { else {
/* no callback registered /* no callback registered
*/ */
_XimError(im, ic, _XimError(im, ic,
(CARD16)XIM_BadSomething, (CARD16)XIM_BadSomething,
(INT16)len, (INT16)len,
(CARD16)XIM_PREEDIT_START, (CARD16)XIM_PREEDIT_START,
(char*)proto); /* send XIM_ERROR */ (char*)proto); /* send XIM_ERROR */
return XimCbNoCallback; return XimCbNoCallback;
} }
...@@ -415,9 +415,9 @@ _XimPreeditStartCallback(Xim im, ...@@ -415,9 +415,9 @@ _XimPreeditStartCallback(Xim im,
} }
Private XimCbStatus Private XimCbStatus
_XimPreeditDoneCallback(Xim im, _XimPreeditDoneCallback(Xim im,
Xic ic, Xic ic,
char* proto, char* proto,
int len) int len)
{ {
XICCallback* cb = &ic->core.preedit_attr.done_callback; XICCallback* cb = &ic->core.preedit_attr.done_callback;
...@@ -438,8 +438,8 @@ _XimPreeditDoneCallback(Xim im, ...@@ -438,8 +438,8 @@ _XimPreeditDoneCallback(Xim im,
} }
Private void Private void
_read_text_from_packet(Xim im, _read_text_from_packet(Xim im,
char* buf, char* buf,
XIMText** text_ptr) XIMText** text_ptr)
{ {
int status; int status;
...@@ -469,8 +469,8 @@ _read_text_from_packet(Xim im, ...@@ -469,8 +469,8 @@ _read_text_from_packet(Xim im,
tmp_buf[tmp_len] = '\0'; tmp_buf[tmp_len] = '\0';
text->encoding_is_wchar = False; text->encoding_is_wchar = False;
text->length = im->methods->ctstombs((XIM)im, text->length = im->methods->ctstombs((XIM)im,
tmp_buf, tmp_len, tmp_buf, tmp_len,
NULL, 0, &s); /* CT? HM */ NULL, 0, &s); /* CT? HM */
if (s != XLookupNone) { if (s != XLookupNone) {
#ifndef NO_DEC_I18N_FIX #ifndef NO_DEC_I18N_FIX
...@@ -487,12 +487,12 @@ _read_text_from_packet(Xim im, ...@@ -487,12 +487,12 @@ _read_text_from_packet(Xim im,
int char_len; int char_len;
#endif #endif
tmp = im->methods->ctstombs((XIM)im, tmp = im->methods->ctstombs((XIM)im,
tmp_buf, tmp_len, tmp_buf, tmp_len,
#ifndef NO_DEC_I18N_FIX #ifndef NO_DEC_I18N_FIX
text->string.multi_byte, text->string.multi_byte,
text->length * XLC_PUBLIC(im->core.lcd,mb_cur_max) + 1, text->length * XLC_PUBLIC(im->core.lcd,mb_cur_max) + 1,
#else #else
text->string.multi_byte, text->length, text->string.multi_byte, text->length,
#endif #endif
&s); &s);
text->string.multi_byte[tmp] = '\0'; text->string.multi_byte[tmp] = '\0';
...@@ -536,7 +536,7 @@ _read_text_from_packet(Xim im, ...@@ -536,7 +536,7 @@ _read_text_from_packet(Xim im,
i -= sz_CARD32; i -= sz_CARD32;
j++; j++;
} }
/* /*
* text->length tells how long both the status string and * text->length tells how long both the status string and
* the feedback array are. If there's "no string" the * the feedback array are. If there's "no string" the
* text->length was set to zero previously. See above. * text->length was set to zero previously. See above.
...@@ -565,9 +565,9 @@ _free_memory_for_text(XIMText* text) ...@@ -565,9 +565,9 @@ _free_memory_for_text(XIMText* text)
} }
Private XimCbStatus Private XimCbStatus
_XimPreeditDrawCallback(Xim im, _XimPreeditDrawCallback(Xim im,
Xic ic, Xic ic,
char* proto, char* proto,
int len) int len)
{ {
XICCallback* cb = &ic->core.preedit_attr.draw_callback; XICCallback* cb = &ic->core.preedit_attr.draw_callback;
...@@ -596,8 +596,8 @@ _XimPreeditDrawCallback(Xim im, ...@@ -596,8 +596,8 @@ _XimPreeditDrawCallback(Xim im,
} }
Private XimCbStatus Private XimCbStatus
_XimPreeditCaretCallback(Xim im, _XimPreeditCaretCallback(Xim im,
Xic ic, Xic ic,
char* proto, char* proto,
int len) int len)
{ {
...@@ -615,12 +615,12 @@ _XimPreeditCaretCallback(Xim im, ...@@ -615,12 +615,12 @@ _XimPreeditCaretCallback(Xim im,
} }
else { else {
/* no callback registered /* no callback registered
*/ */
_XimError(im, ic, _XimError(im, ic,
(CARD16)XIM_BadSomething, (CARD16)XIM_BadSomething,
(INT16)len, (INT16)len,
(CARD16)XIM_PREEDIT_CARET, (CARD16)XIM_PREEDIT_CARET,
(char*)proto); /* send XIM_ERROR */ (char*)proto); /* send XIM_ERROR */
return XimCbNoCallback; return XimCbNoCallback;
} }
...@@ -648,9 +648,9 @@ _XimPreeditCaretCallback(Xim im, ...@@ -648,9 +648,9 @@ _XimPreeditCaretCallback(Xim im,
} }
Private XimCbStatus Private XimCbStatus
_XimStatusStartCallback(Xim im, _XimStatusStartCallback(Xim im,
Xic ic, Xic ic,
char* proto, char* proto,
int len) int len)
{ {
XICCallback* cb = &ic->core.status_attr.start_callback; XICCallback* cb = &ic->core.status_attr.start_callback;
...@@ -671,9 +671,9 @@ _XimStatusStartCallback(Xim im, ...@@ -671,9 +671,9 @@ _XimStatusStartCallback(Xim im,
} }
Private XimCbStatus Private XimCbStatus
_XimStatusDoneCallback(Xim im, _XimStatusDoneCallback(Xim im,
Xic ic, Xic ic,
char* proto, char* proto,
int len) int len)
{ {
XICCallback* cb = &ic->core.status_attr.done_callback; XICCallback* cb = &ic->core.status_attr.done_callback;
...@@ -694,9 +694,9 @@ _XimStatusDoneCallback(Xim im, ...@@ -694,9 +694,9 @@ _XimStatusDoneCallback(Xim im,
} }
Private XimCbStatus Private XimCbStatus
_XimStatusDrawCallback(Xim im, _XimStatusDrawCallback(Xim im,
Xic ic, Xic ic,
char* proto, char* proto,
int len) int len)
{ {
XICCallback* cb = &ic->core.status_attr.draw_callback; XICCallback* cb = &ic->core.status_attr.draw_callback;
...@@ -735,7 +735,7 @@ _XimPreeditStateNotifyCallback( Xim im, Xic ic, char* proto, int len ) ...@@ -735,7 +735,7 @@ _XimPreeditStateNotifyCallback( Xim im, Xic ic, char* proto, int len )
/* invoke the callack /* invoke the callack
*/ */
if( cb && cb->callback ) { if( cb && cb->callback ) {
XIMPreeditStateNotifyCallbackStruct cbrec; XIMPreeditStateNotifyCallbackStruct cbrec;
cbrec.state = *(BITMASK32 *)proto; cbrec.state = *(BITMASK32 *)proto;
......
...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED ...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED
not be used in advertising or publicity pertaining to distribution not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission. of the software without specific, written prior permission.
FUJITSU LIMITED makes no representations about the suitability of FUJITSU LIMITED makes no representations about the suitability of
this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -261,7 +261,7 @@ _XimFilterKeyrelease( ...@@ -261,7 +261,7 @@ _XimFilterKeyrelease(
return _XimProtoKeyreleaseFilter((Xic)client_data, (XKeyEvent *)ev); return _XimProtoKeyreleaseFilter((Xic)client_data, (XKeyEvent *)ev);
} }
Private void Private void
_XimRegisterKeyPressFilter( _XimRegisterKeyPressFilter(
Xic ic) Xic ic)
{ {
...@@ -278,7 +278,7 @@ _XimRegisterKeyPressFilter( ...@@ -278,7 +278,7 @@ _XimRegisterKeyPressFilter(
return; return;
} }
Private void Private void
_XimRegisterKeyReleaseFilter( _XimRegisterKeyReleaseFilter(
Xic ic) Xic ic)
{ {
...@@ -295,7 +295,7 @@ _XimRegisterKeyReleaseFilter( ...@@ -295,7 +295,7 @@ _XimRegisterKeyReleaseFilter(
return; return;
} }
Private void Private void
_XimUnregisterKeyPressFilter( _XimUnregisterKeyPressFilter(
Xic ic) Xic ic)
{ {
...@@ -311,7 +311,7 @@ _XimUnregisterKeyPressFilter( ...@@ -311,7 +311,7 @@ _XimUnregisterKeyPressFilter(
return; return;
} }
Private void Private void
_XimUnregisterKeyReleaseFilter( _XimUnregisterKeyReleaseFilter(
Xic ic) Xic ic)
{ {
...@@ -380,7 +380,7 @@ _XimFilterServerDestroy( ...@@ -380,7 +380,7 @@ _XimFilterServerDestroy(
return True; return True;
} }
Public void Public void
_XimRegisterServerFilter( _XimRegisterServerFilter(
Xim im) Xim im)
{ {
...@@ -399,7 +399,7 @@ _XimRegisterServerFilter( ...@@ -399,7 +399,7 @@ _XimRegisterServerFilter(
return; return;
} }
Public void Public void
_XimUnregisterServerFilter( _XimUnregisterServerFilter(
Xim im) Xim im)
{ {
......
/*
* Copyright 1991, 1992 Sun Microsystems, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/****************************************************************** /******************************************************************
Copyright 1991, 1992 by Sun Microsystems, Inc.
Copyright 1992, 1993, 1994 by FUJITSU LIMITED Copyright 1992, 1993, 1994 by FUJITSU LIMITED
Permission to use, copy, modify, distribute, and sell this software Permission to use, copy, modify, distribute, and sell this software
and its documentation for any purpose is hereby granted without fee, and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies and provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear that both that copyright notice and this permission notice appear
in supporting documentation, and that the name of Sun Microsystems, Inc. in supporting documentation, and that the name of FUJITSU LIMITED
and FUJITSU LIMITED not be used in advertising or publicity pertaining to not be used in advertising or publicity pertaining to distribution
distribution of the software without specific, written prior permission. of the software without specific, written prior permission.
Sun Microsystems, Inc. and FUJITSU LIMITED makes no representations about FUJITSU LIMITED makes no representations about the suitability of
the suitability of this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
Sun Microsystems Inc. AND FUJITSU LIMITED DISCLAIMS ALL WARRANTIES WITH FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
AND FITNESS, IN NO EVENT SHALL Sun Microsystems, Inc. AND FUJITSU LIMITED EVENT SHALL FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR
BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc. Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc.
Takashi Fujiwara FUJITSU LIMITED Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -916,7 +937,7 @@ _XimProtoSetFocus( ...@@ -916,7 +937,7 @@ _XimProtoSetFocus(
CARD8 *buf = (CARD8 *)buf32; CARD8 *buf = (CARD8 *)buf32;
CARD16 *buf_s = (CARD16 *)&buf[XIM_HEADER_SIZE]; CARD16 *buf_s = (CARD16 *)&buf[XIM_HEADER_SIZE];
INT16 len; INT16 len;
#ifndef XIM_CONNECTABLE #ifndef XIM_CONNECTABLE
if (!IS_IC_CONNECTED(ic)) if (!IS_IC_CONNECTED(ic))
return; return;
...@@ -947,6 +968,8 @@ _XimProtoSetFocus( ...@@ -947,6 +968,8 @@ _XimProtoSetFocus(
(void)_XimWrite(im, len, (XPointer)buf); (void)_XimWrite(im, len, (XPointer)buf);
_XimFlush(im); _XimFlush(im);
MARK_FOCUSED(ic);
_XimRegisterFilter(ic); _XimRegisterFilter(ic);
return; return;
} }
...@@ -992,6 +1015,8 @@ _XimProtoUnsetFocus( ...@@ -992,6 +1015,8 @@ _XimProtoUnsetFocus(
(void)_XimWrite(im, len, (XPointer)buf); (void)_XimWrite(im, len, (XPointer)buf);
_XimFlush(im); _XimFlush(im);
UNMARK_FOCUSED(ic);
_XimUnregisterFilter(ic); _XimUnregisterFilter(ic);
return; return;
} }
...@@ -1311,7 +1336,7 @@ _XimDelayModeCreateIC( ...@@ -1311,7 +1336,7 @@ _XimDelayModeCreateIC(
XimDefICValues ic_values; XimDefICValues ic_values;
int len; int len;
XIMStyle input_style; XIMStyle input_style;
bzero((char *)&ic_values, sizeof(XimDefICValues)); bzero((char *)&ic_values, sizeof(XimDefICValues));
_XimGetCurrentICValues(ic, &ic_values); _XimGetCurrentICValues(ic, &ic_values);
if (!(_XimGetInputStyle(values, &input_style))) if (!(_XimGetInputStyle(values, &input_style)))
......
/*
* Copyright 1990, 1991, 1992 Sun Microsystems, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/****************************************************************** /******************************************************************
Copyright 1990, 1991, 1992 by Sun Microsystems, Inc.
Copyright 1992, 1993, 1994 by FUJITSU LIMITED Copyright 1992, 1993, 1994 by FUJITSU LIMITED
Copyright 1993, 1994 by Sony Corporation Copyright 1993, 1994 by Sony Corporation
Permission to use, copy, modify, distribute, and sell this software and its Permission to use, copy, modify, and distribute this software and its
documentation for any purpose is hereby granted without fee, provided that documentation for any purpose and without fee is hereby granted,
the above copyright notice appear in all copies and that both that copyright provided that the above copyright notice appear in all copies and that
notice and this permission notice appear in supporting documentation, and both that copyright notice and this permission notice appear in
that the name of Sun Microsystems, Inc., FUJITSU LIMITED and Sony supporting documentation, and that the names of Digital, FUJITSU
Corporation not be used in advertising or publicity pertaining to LIMITED and Sony Corporation not be used in advertising or publicity
distribution of the software without specific, written prior permission. pertaining to distribution of the software without specific, written
Sun Microsystems, Inc., FUJITSU LIMITED and Sony Corporation makes no prior permission.
representations about the suitability of this software for any purpose. It
is provided "as is" without express or implied warranty. DIGITAL, FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
Sun Microsystems Inc., FUJITSU LIMITED AND SONY CORPORATION DISCLAIMS ALL MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL, FUJITSU LIMITED
WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF AND SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL Sun Microsystems, Inc., CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
FUJITSU LIMITED AND SONY CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER PERFORMANCE OF THIS SOFTWARE.
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
OF THIS SOFTWARE.
Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc. Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc.
Takashi Fujiwara FUJITSU LIMITED Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
Makoto Wakamatsu Sony Corporation Makoto Wakamatsu Sony Corporation
makoto@sm.sony.co.jp makoto@sm.sony.co.jp
...@@ -73,7 +93,7 @@ _XimSetHeader( ...@@ -73,7 +93,7 @@ _XimSetHeader(
return; return;
} }
Private char Public char
_XimGetMyEndian(void) _XimGetMyEndian(void)
{ {
CARD16 test_card = 1; CARD16 test_card = 1;
...@@ -106,7 +126,7 @@ _XimCheckServerName( ...@@ -106,7 +126,7 @@ _XimCheckServerName(
if(strncmp(str, XIM_SERVER_CATEGORY, category_len)) if(strncmp(str, XIM_SERVER_CATEGORY, category_len))
return False; return False;
pp = &str[category_len]; pp = &str[category_len];
for(;;) { for(;;) {
...@@ -142,7 +162,7 @@ _XimCheckLocaleName( ...@@ -142,7 +162,7 @@ _XimCheckLocaleName(
if(strncmp(address, XIM_LOCAL_CATEGORY, category_len)) if(strncmp(address, XIM_LOCAL_CATEGORY, category_len))
return (char*)NULL; return (char*)NULL;
pp = &address[category_len]; pp = &address[category_len];
for(;;) { for(;;) {
...@@ -166,7 +186,7 @@ Private Bool ...@@ -166,7 +186,7 @@ Private Bool
_XimCheckTransport( _XimCheckTransport(
char *address, char *address,
int address_len, int address_len,
char *transport, const char *transport,
int len, int len,
char **trans_addr) char **trans_addr)
{ {
...@@ -179,7 +199,7 @@ _XimCheckTransport( ...@@ -179,7 +199,7 @@ _XimCheckTransport(
if(strncmp(address, XIM_TRANSPORT_CATEGORY, category_len)) if(strncmp(address, XIM_TRANSPORT_CATEGORY, category_len))
return False; return False;
pp = &address[category_len]; pp = &address[category_len];
for(;;) { for(;;) {
...@@ -254,7 +274,7 @@ _XimPreConnectionIM( ...@@ -254,7 +274,7 @@ _XimPreConnectionIM(
Xim im, Xim im,
Atom selection) Atom selection)
{ {
Display *display = im->core.display; Display *display = im->core.display;
Atom locales, transport; Atom locales, transport;
char *address; char *address;
XLCd lcd; XLCd lcd;
...@@ -364,14 +384,14 @@ Error: ...@@ -364,14 +384,14 @@ Error:
if( locale_name[i] != NULL ) if( locale_name[i] != NULL )
XFree( locale_name[i] ); XFree( locale_name[i] );
XDestroyWindow(display, window); XDestroyWindow(display, window);
return False; return False;
} }
Private Bool Private Bool
_XimPreConnect( _XimPreConnect(
Xim im) Xim im)
{ {
Display *display = im->core.display; Display *display = im->core.display;
Atom imserver; Atom imserver;
Atom actual_type; Atom actual_type;
int actual_format; int actual_format;
...@@ -386,7 +406,7 @@ _XimPreConnect( ...@@ -386,7 +406,7 @@ _XimPreConnect(
return False; return False;
if(XGetWindowProperty(display, RootWindow(display, 0), if(XGetWindowProperty(display, RootWindow(display, 0),
imserver, 0L, 1000000L, False, XA_ATOM, &actual_type, imserver, 0L, 1000000L, False, XA_ATOM, &actual_type,
&actual_format, &nitems, &bytes_after, &actual_format, &nitems, &bytes_after,
&prop_return) != Success) &prop_return) != Success)
return False; return False;
...@@ -681,7 +701,7 @@ _XimConnection( ...@@ -681,7 +701,7 @@ _XimConnection(
} }
} }
if (!( buf_s[0] == im->private.proto.protocol_major_version if (!( buf_s[0] == im->private.proto.protocol_major_version
&& buf_s[1] == im->private.proto.protocol_minor_version)) { && buf_s[1] == im->private.proto.protocol_minor_version)) {
if(reply != preply) if(reply != preply)
Xfree(preply); Xfree(preply);
...@@ -915,7 +935,7 @@ _XimClose( ...@@ -915,7 +935,7 @@ _XimClose(
buf_s[1] = 0; /* unused */ buf_s[1] = 0; /* unused */
len = sizeof(CARD16) /* sizeof imid */ len = sizeof(CARD16) /* sizeof imid */
+ sizeof(CARD16); /* sizeof unused */ + sizeof(CARD16); /* sizeof unused */
_XimSetHeader((XPointer)buf, XIM_CLOSE, 0, &len); _XimSetHeader((XPointer)buf, XIM_CLOSE, 0, &len);
if (!(_XimWrite(im, len, (XPointer)buf))) if (!(_XimWrite(im, len, (XPointer)buf)))
return False; return False;
......
...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED ...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED
not be used in advertising or publicity pertaining to distribution not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission. of the software without specific, written prior permission.
FUJITSU LIMITED makes no representations about the suitability of FUJITSU LIMITED makes no representations about the suitability of
this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -213,8 +213,13 @@ _XimRespSyncReply( ...@@ -213,8 +213,13 @@ _XimRespSyncReply(
Xic ic, Xic ic,
BITMASK16 mode) BITMASK16 mode)
{ {
if (mode & XimSYNCHRONUS) /* SYNC Request */ if (mode & XimSYNCHRONUS) /* SYNC Request */ {
MARK_NEED_SYNC_REPLY(ic); if (IS_FOCUSED(ic))
MARK_NEED_SYNC_REPLY(ic);
else
_XimProcSyncReply((Xim)ic->core.im, ic);
}
return True; return True;
} }
...@@ -463,7 +468,7 @@ _XimGetWindowEventmask( ...@@ -463,7 +468,7 @@ _XimGetWindowEventmask(
Xim im = (Xim )ic->core.im; Xim im = (Xim )ic->core.im;
XWindowAttributes atr; XWindowAttributes atr;
if (!_XGetWindowAttributes(im->core.display, ic->core.focus_window, &atr)) if (!XGetWindowAttributes(im->core.display, ic->core.focus_window, &atr))
return 0; return 0;
return (EVENTMASK)atr.your_event_mask; return (EVENTMASK)atr.your_event_mask;
} }
...@@ -885,13 +890,8 @@ _Ximctsconvert( ...@@ -885,13 +890,8 @@ _Ximctsconvert(
} }
Public int Public int
_Ximctstombs(xim, from, from_len, to, to_len, state) _Ximctstombs(XIM xim, char *from, int from_len,
XIM xim; char *to, int to_len, Status *state)
char *from;
int from_len;
char *to;
int to_len;
Status *state;
{ {
return _Ximctsconvert(((Xim)xim)->private.proto.ctom_conv, return _Ximctsconvert(((Xim)xim)->private.proto.ctom_conv,
from, from_len, to, to_len, state); from, from_len, to, to_len, state);
...@@ -930,7 +930,7 @@ _Ximctstowcs( ...@@ -930,7 +930,7 @@ _Ximctstowcs(
/* Reset the converter. The CompoundText at 'from' starts in /* Reset the converter. The CompoundText at 'from' starts in
initial state. */ initial state. */
_XlcResetConverter(conv); _XlcResetConverter(conv);
from_left = from_len; from_left = from_len;
to_left = BUFSIZ; to_left = BUFSIZ;
from_cnvlen = 0; from_cnvlen = 0;
......
...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED ...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED
not be used in advertising or publicity pertaining to distribution not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission. of the software without specific, written prior permission.
FUJITSU LIMITED makes no representations about the suitability of FUJITSU LIMITED makes no representations about the suitability of
this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -61,8 +61,7 @@ _XimRegProtoIntrCallback( ...@@ -61,8 +61,7 @@ _XimRegProtoIntrCallback(
} }
Public void Public void
_XimFreeProtoIntrCallback(im) _XimFreeProtoIntrCallback(Xim im)
Xim im;
{ {
register XimProtoIntrRec *rec, *next; register XimProtoIntrRec *rec, *next;
...@@ -97,8 +96,7 @@ _XimTransportIntr( ...@@ -97,8 +96,7 @@ _XimTransportIntr(
} }
Public Bool Public Bool
_XimDispatchInit(im) _XimDispatchInit(Xim im)
Xim im;
{ {
if (_XimRegisterDispatcher(im, _XimTransportIntr, (XPointer)im)) if (_XimRegisterDispatcher(im, _XimTransportIntr, (XPointer)im))
return True; return True;
......
...@@ -3,13 +3,13 @@ Copyright 1993 by Digital Equipment Corporation, Maynard, Massachusetts, ...@@ -3,13 +3,13 @@ Copyright 1993 by Digital Equipment Corporation, Maynard, Massachusetts,
All Rights Reserved All Rights Reserved
Permission to use, copy, modify, and distribute this software and its Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted, documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in both that copyright notice and this permission notice appear in
supporting documentation, and that the name of Digital not be supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission. software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
...@@ -55,14 +55,14 @@ _XimProtoEventToWire( ...@@ -55,14 +55,14 @@ _XimProtoEventToWire(
event->u.keyButtonPointer.root = sw32(ev->root, sw); event->u.keyButtonPointer.root = sw32(ev->root, sw);
event->u.keyButtonPointer.event = event->u.keyButtonPointer.event =
sw32(ev->window, sw); sw32(ev->window, sw);
event->u.keyButtonPointer.child = event->u.keyButtonPointer.child =
sw32(ev->subwindow, sw); sw32(ev->subwindow, sw);
event->u.keyButtonPointer.time = sw32(ev->time, sw); event->u.keyButtonPointer.time = sw32(ev->time, sw);
event->u.keyButtonPointer.eventX = sw16(ev->x, sw) ; event->u.keyButtonPointer.eventX = sw16(ev->x, sw) ;
event->u.keyButtonPointer.eventY = sw16(ev->y, sw) ; event->u.keyButtonPointer.eventY = sw16(ev->y, sw) ;
event->u.keyButtonPointer.rootX = event->u.keyButtonPointer.rootX =
sw16(ev->x_root, sw); sw16(ev->x_root, sw);
event->u.keyButtonPointer.rootY = event->u.keyButtonPointer.rootY =
sw16(ev->y_root, sw); sw16(ev->y_root, sw);
event->u.keyButtonPointer.state = sw16(ev->state, sw); event->u.keyButtonPointer.state = sw16(ev->state, sw);
event->u.keyButtonPointer.sameScreen = ev->same_screen; event->u.keyButtonPointer.sameScreen = ev->same_screen;
...@@ -139,7 +139,7 @@ _XimProtoEventToWire( ...@@ -139,7 +139,7 @@ _XimProtoEventToWire(
{ {
register XKeymapEvent *ev = (XKeymapEvent *) re; register XKeymapEvent *ev = (XKeymapEvent *) re;
memcpy((char *)(((xKeymapEvent *) event)->map), memcpy((char *)(((xKeymapEvent *) event)->map),
&ev->key_vector[1], &ev->key_vector[1],
sizeof (((xKeymapEvent *) event)->map)); sizeof (((xKeymapEvent *) event)->map));
} }
break; break;
...@@ -356,12 +356,12 @@ _XimProtoEventToWire( ...@@ -356,12 +356,12 @@ _XimProtoEventToWire(
case ClientMessage: case ClientMessage:
{ {
register int i; register int i;
register XClientMessageEvent *ev register XClientMessageEvent *ev
= (XClientMessageEvent *) re; = (XClientMessageEvent *) re;
event->u.clientMessage.window = sw32(ev->window, sw); event->u.clientMessage.window = sw32(ev->window, sw);
event->u.u.detail = ev->format; event->u.u.detail = ev->format;
switch (ev->format) { switch (ev->format) {
case 8: case 8:
event->u.clientMessage.u.b.type = sw32(ev->message_type, sw); event->u.clientMessage.u.b.type = sw32(ev->message_type, sw);
for (i = 0; i < 20; i++) for (i = 0; i < 20; i++)
event->u.clientMessage.u.b.bytes[i] = ev->data.b[i]; event->u.clientMessage.u.b.bytes[i] = ev->data.b[i];
...@@ -401,7 +401,7 @@ _XimProtoEventToWire( ...@@ -401,7 +401,7 @@ _XimProtoEventToWire(
event->u.mappingNotify.count = ev->count; event->u.mappingNotify.count = ev->count;
} }
break; break;
default: default:
return(0); return(0);
} }
...@@ -429,7 +429,7 @@ _XimProtoWireToEvent( ...@@ -429,7 +429,7 @@ _XimProtoWireToEvent(
((XAnyEvent *)re)->serial = sw16(event->u.u.sequenceNumber, sw); ((XAnyEvent *)re)->serial = sw16(event->u.u.sequenceNumber, sw);
((XAnyEvent *)re)->send_event = ((event->u.u.type & 0x80) != 0); ((XAnyEvent *)re)->send_event = ((event->u.u.type & 0x80) != 0);
((XAnyEvent *)re)->display = NULL; ((XAnyEvent *)re)->display = NULL;
/* Ignore the leading bit of the event type since it is set when a /* Ignore the leading bit of the event type since it is set when a
client sends an event rather than the server. */ client sends an event rather than the server. */
...@@ -498,7 +498,7 @@ _XimProtoWireToEvent( ...@@ -498,7 +498,7 @@ _XimProtoWireToEvent(
ev->y_root = cvtINT16toInt(sw16(event->u.enterLeave.rootY, sw)); ev->y_root = cvtINT16toInt(sw16(event->u.enterLeave.rootY, sw));
ev->state = sw16(event->u.enterLeave.state, sw); ev->state = sw16(event->u.enterLeave.state, sw);
ev->mode = event->u.enterLeave.mode; ev->mode = event->u.enterLeave.mode;
ev->same_screen = (event->u.enterLeave.flags & ev->same_screen = (event->u.enterLeave.flags &
ELFlagSameScreen) && True; ELFlagSameScreen) && True;
ev->focus = (event->u.enterLeave.flags & ev->focus = (event->u.enterLeave.flags &
ELFlagFocus) && True; ELFlagFocus) && True;
...@@ -518,7 +518,7 @@ _XimProtoWireToEvent( ...@@ -518,7 +518,7 @@ _XimProtoWireToEvent(
{ {
register XKeymapEvent *ev = (XKeymapEvent *) re; register XKeymapEvent *ev = (XKeymapEvent *) re;
ev->window = None; ev->window = None;
memcpy(&ev->key_vector[1], memcpy(&ev->key_vector[1],
(char *)((xKeymapEvent *) event)->map, (char *)((xKeymapEvent *) event)->map,
sizeof (((xKeymapEvent *) event)->map)); sizeof (((xKeymapEvent *) event)->map));
} }
...@@ -736,14 +736,14 @@ _XimProtoWireToEvent( ...@@ -736,14 +736,14 @@ _XimProtoWireToEvent(
case ClientMessage: case ClientMessage:
{ {
register int i; register int i;
register XClientMessageEvent *ev register XClientMessageEvent *ev
= (XClientMessageEvent *) re; = (XClientMessageEvent *) re;
ev->window = sw32(event->u.clientMessage.window, sw); ev->window = sw32(event->u.clientMessage.window, sw);
ev->format = event->u.u.detail; ev->format = event->u.u.detail;
switch (ev->format) { switch (ev->format) {
case 8: case 8:
ev->message_type = sw32(event->u.clientMessage.u.b.type, sw); ev->message_type = sw32(event->u.clientMessage.u.b.type, sw);
for (i = 0; i < 20; i++) for (i = 0; i < 20; i++)
ev->data.b[i] = event->u.clientMessage.u.b.bytes[i]; ev->data.b[i] = event->u.clientMessage.u.b.bytes[i];
break; break;
case 16: case 16:
......
...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED ...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED
not be used in advertising or publicity pertaining to distribution not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission. of the software without specific, written prior permission.
FUJITSU LIMITED makes no representations about the suitability of FUJITSU LIMITED makes no representations about the suitability of
this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -48,7 +48,7 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -48,7 +48,7 @@ PERFORMANCE OF THIS SOFTWARE.
typedef struct _XIM_QueryExtRec { typedef struct _XIM_QueryExtRec {
Bool is_support; Bool is_support;
char *name; const char *name;
int name_len; int name_len;
CARD16 major_opcode; CARD16 major_opcode;
CARD16 minor_opcode; CARD16 minor_opcode;
...@@ -57,7 +57,7 @@ typedef struct _XIM_QueryExtRec { ...@@ -57,7 +57,7 @@ typedef struct _XIM_QueryExtRec {
Private XIM_QueryExtRec extensions[] = { Private XIM_QueryExtRec extensions[] = {
{False, "XIM_EXT_SET_EVENT_MASK", 0, 0, 0, {False, "XIM_EXT_SET_EVENT_MASK", 0, 0, 0,
XIM_EXT_SET_EVENT_MASK_IDX}, XIM_EXT_SET_EVENT_MASK_IDX},
#ifdef EXT_FORWARD #ifdef EXT_FORWARD
{False, "XIM_EXT_FORWARD_KEYEVENT", 0, 0, 0, {False, "XIM_EXT_FORWARD_KEYEVENT", 0, 0, 0,
XIM_EXT_FORWARD_KEYEVENT_IDX}, XIM_EXT_FORWARD_KEYEVENT_IDX},
...@@ -222,7 +222,7 @@ _XimExtForwardKeyEvent( ...@@ -222,7 +222,7 @@ _XimExtForwardKeyEvent(
Xim im = (Xim) ic->core.im; Xim im = (Xim) ic->core.im;
CARD32 buf32[BUFSIZE/4]; CARD32 buf32[BUFSIZE/4];
CARD8 *buf = (CARD8 *)buf32; CARD8 *buf = (CARD8 *)buf32;
CARD8 *buf_b = &buf[XIM_HEADER_SIZE]; CARD8 *buf_b = &buf[XIM_HEADER_SIZE];
CARD16 *buf_s = (CARD16 *)buf_b; CARD16 *buf_s = (CARD16 *)buf_b;
CARD32 *buf_l = (CARD32 *)buf_b; CARD32 *buf_l = (CARD32 *)buf_b;
CARD32 reply32[BUFSIZE/4]; CARD32 reply32[BUFSIZE/4];
...@@ -382,7 +382,7 @@ _XimParseExtensionList( ...@@ -382,7 +382,7 @@ _XimParseExtensionList(
+ sizeof(CARD8) /* sizeof minor_opcode */ + sizeof(CARD8) /* sizeof minor_opcode */
+ sizeof(INT16) /* sizeof length */ + sizeof(INT16) /* sizeof length */
+ XIM_PAD(len); /* sizeof pad */ + XIM_PAD(len); /* sizeof pad */
buf += len; buf += len;
} }
return True; return True;
......
...@@ -15,17 +15,17 @@ makes no representations about the suitability of this software for ...@@ -15,17 +15,17 @@ makes no representations about the suitability of this software for
any purpose. It is provided "as is" without express or implied any purpose. It is provided "as is" without express or implied
warranty. warranty.
FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR
ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE. THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
Modifier: Franky Ling Digital Equipment Corporation Modifier: Franky Ling Digital Equipment Corporation
frankyling@hgrd01.enet.dec.com frankyling@hgrd01.enet.dec.com
......
...@@ -108,7 +108,7 @@ _XimFilterPropertyNotify( ...@@ -108,7 +108,7 @@ _XimFilterPropertyNotify(
} }
lock = True; lock = True;
for( ii = 0; ii < nitems; ii++ ) { for( ii = 0; ii < nitems; ii++, atoms ) {
if(XGetSelectionOwner (display, atoms[ii])) { if(XGetSelectionOwner (display, atoms[ii])) {
for( icb = callback_list; icb; icb = icb->next ) { for( icb = callback_list; icb; icb = icb->next ) {
if( !icb->call && !icb->destroy ) { if( !icb->call && !icb->destroy ) {
...@@ -268,8 +268,7 @@ _XimUnRegisterIMInstantiateCallback( ...@@ -268,8 +268,7 @@ _XimUnRegisterIMInstantiateCallback(
Public void Public void
_XimResetIMInstantiateCallback( xim ) _XimResetIMInstantiateCallback(Xim xim)
Xim xim;
{ {
char locale[XIM_MAXLCNAMELEN]; char locale[XIM_MAXLCNAMELEN];
XimInstCallback icb; XimInstCallback icb;
......
...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED ...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED
not be used in advertising or publicity pertaining to distribution not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission. of the software without specific, written prior permission.
FUJITSU LIMITED makes no representations about the suitability of FUJITSU LIMITED makes no representations about the suitability of
this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -61,7 +61,7 @@ _XimSetIMStructureList( ...@@ -61,7 +61,7 @@ _XimSetIMStructureList(
} }
} }
if(i >= _XimCurrentIMcount) { if(i >= _XimCurrentIMcount) {
if(!(xim = (Xim *)Xrealloc(_XimCurrentIMlist, if(!(xim = (Xim *)Xrealloc(_XimCurrentIMlist,
((i + 1) * sizeof(Xim))))) ((i + 1) * sizeof(Xim)))))
return False; return False;
_XimCurrentIMlist = xim; _XimCurrentIMlist = xim;
...@@ -73,8 +73,7 @@ _XimSetIMStructureList( ...@@ -73,8 +73,7 @@ _XimSetIMStructureList(
} }
Public void Public void
_XimDestroyIMStructureList(im) _XimDestroyIMStructureList(Xim im)
Xim im;
{ {
register int i; register int i;
...@@ -88,8 +87,7 @@ _XimDestroyIMStructureList(im) ...@@ -88,8 +87,7 @@ _XimDestroyIMStructureList(im)
} }
Public void Public void
_XimServerDestroy(im_2_destroy) _XimServerDestroy(Xim im_2_destroy)
Xim im_2_destroy;
{ {
register int i; register int i;
Xim im; Xim im;
...@@ -123,7 +121,7 @@ _XimServerDestroy(im_2_destroy) ...@@ -123,7 +121,7 @@ _XimServerDestroy(im_2_destroy)
#ifdef XIM_CONNECTABLE #ifdef XIM_CONNECTABLE
Public void Public void
_XimServerReconectableDestroy() _XimServerReconectableDestroy(void)
{ {
register int i; register int i;
Xim im; Xim im;
...@@ -149,13 +147,13 @@ _XimServerReconectableDestroy() ...@@ -149,13 +147,13 @@ _XimServerReconectableDestroy()
} }
#endif /* XIM_CONNECTABLE */ #endif /* XIM_CONNECTABLE */
Private char * Private const char *
_XimStrstr( _XimStrstr(
register char *src, register const char *src,
register char *dest) register const char *dest)
{ {
int len; int len;
len = strlen(dest); len = strlen(dest);
while((src = strchr(src, *dest))) { while((src = strchr(src, *dest))) {
if(!strncmp(src, dest, len)) if(!strncmp(src, dest, len))
...@@ -169,10 +167,10 @@ Private char * ...@@ -169,10 +167,10 @@ Private char *
_XimMakeImName( _XimMakeImName(
XLCd lcd) XLCd lcd)
{ {
char* begin = NULL; const char* begin = NULL;
char* end = NULL; const char* end = NULL;
char* ret = NULL; char* ret = NULL;
char* ximmodifier = XIMMODIFIER; const char* ximmodifier = XIMMODIFIER;
if(lcd->core->modifiers != NULL && *lcd->core->modifiers != '\0') { if(lcd->core->modifiers != NULL && *lcd->core->modifiers != '\0') {
begin = _XimStrstr(lcd->core->modifiers, ximmodifier); begin = _XimStrstr(lcd->core->modifiers, ximmodifier);
...@@ -205,7 +203,7 @@ _XimOpenIM( ...@@ -205,7 +203,7 @@ _XimOpenIM(
{ {
Xim im; Xim im;
register int i; register int i;
if (!(im = (Xim)Xmalloc(sizeof(XimRec)))) if (!(im = (Xim)Xmalloc(sizeof(XimRec))))
return (XIM)NULL; return (XIM)NULL;
bzero(im, sizeof(XimRec)); bzero(im, sizeof(XimRec));
...@@ -257,8 +255,7 @@ Error1: ...@@ -257,8 +255,7 @@ Error1:
} }
Public Bool Public Bool
_XInitIM(lcd) _XInitIM(XLCd lcd)
XLCd lcd;
{ {
if(lcd == (XLCd)NULL) if(lcd == (XLCd)NULL)
return False; return False;
......
...@@ -7,7 +7,7 @@ Permission to use, copy, modify, distribute, and sell this software ...@@ -7,7 +7,7 @@ Permission to use, copy, modify, distribute, and sell this software
and its documentation for any purpose is hereby granted without fee, and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies and provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear that both that copyright notice and this permission notice appear
in supporting documentation, and that the name of Fuji Xerox, in supporting documentation, and that the name of Fuji Xerox,
FUJITSU LIMITED not be used in advertising or publicity pertaining FUJITSU LIMITED not be used in advertising or publicity pertaining
to distribution of the software without specific, written prior to distribution of the software without specific, written prior
permission. Fuji Xerox, FUJITSU LIMITED make no representations permission. Fuji Xerox, FUJITSU LIMITED make no representations
...@@ -24,7 +24,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ...@@ -24,7 +24,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author : Kazunori Nishihara Fuji Xerox Author : Kazunori Nishihara Fuji Xerox
Modifier : Takashi Fujiwara FUJITSU LIMITED Modifier : Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -38,43 +38,67 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -38,43 +38,67 @@ PERFORMANCE OF THIS SOFTWARE.
#include "Ximint.h" #include "Ximint.h"
Bool Bool
_XimLocalFilter(d, w, ev, client_data) _XimLocalFilter(Display *d, Window w, XEvent *ev, XPointer client_data)
Display *d;
Window w;
XEvent *ev;
XPointer client_data;
{ {
Xic ic = (Xic)client_data; Xic ic = (Xic)client_data;
KeySym keysym; KeySym keysym;
static char buf[256]; static char buf[256];
DefTree *p; DefTree *b = ic->private.local.base.tree;
DTIndex t;
if( (ev->type != KeyPress) if(ev->xkey.keycode == 0)
|| (ev->xkey.keycode == 0) return (False);
|| (((Xim)ic->core.im)->private.local.top == (DefTree *)NULL) )
return(False);
XLookupString((XKeyEvent *)ev, buf, sizeof(buf), &keysym, NULL); XLookupString((XKeyEvent *)ev, buf, sizeof(buf), &keysym, NULL);
if(IsModifierKey(keysym)) if(IsModifierKey(keysym))
return (False); return (False);
for(p = ic->private.local.context; p; p = p->next) { if(keysym >= XK_braille_dot_1 && keysym <= XK_braille_dot_8) {
if(((ev->xkey.state & p->modifier_mask) == p->modifier) && if(ev->type == KeyPress) {
(keysym == p->keysym)) { ic->private.local.brl_pressed |=
break; 1<<(keysym-XK_braille_dot_1);
} else {
if(!ic->private.local.brl_committing
|| ev->xkey.time - ic->private.local.brl_release_start > 300) {
ic->private.local.brl_committing = ic->private.local.brl_pressed;
ic->private.local.brl_release_start = ev->xkey.time;
}
ic->private.local.brl_pressed &= ~(1<<(keysym-XK_braille_dot_1));
if(!ic->private.local.brl_pressed) {
if(ic->private.local.brl_committing) {
ic->private.local.brl_committed =
ic->private.local.brl_committing;
ic->private.local.composed = 0;
ev->type = KeyPress;
ev->xkey.keycode = 0;
_XPutBackEvent(d, ev);
}
}
} }
return(True);
}
if( (ev->type != KeyPress)
|| (((Xim)ic->core.im)->private.local.top == 0 ) )
return(False);
for(t = ic->private.local.context; t; t = b[t].next) {
if(((ev->xkey.state & b[t].modifier_mask) == b[t].modifier) &&
(keysym == b[t].keysym))
break;
} }
if(p) { /* Matched */ if(t) { /* Matched */
if(p->succession) { /* Intermediate */ if(b[t].succession) { /* Intermediate */
ic->private.local.context = p->succession; ic->private.local.context = b[t].succession;
return(True); return(True);
} else { /* Terminate (reached to leaf) */ } else { /* Terminate (reached to leaf) */
ic->private.local.composed = p; ic->private.local.composed = t;
ic->private.local.brl_committed = 0;
/* return back to client KeyPressEvent keycode == 0 */ /* return back to client KeyPressEvent keycode == 0 */
ev->xkey.keycode = 0; ev->xkey.keycode = 0;
_XPutBackEvent(d, ev); XPutBackEvent(d, ev);
/* initialize internal state for next key sequence */ /* initialize internal state for next key sequence */
ic->private.local.context = ((Xim)ic->core.im)->private.local.top; ic->private.local.context = ((Xim)ic->core.im)->private.local.top;
return(True); return(True);
......
...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED ...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED
not be used in advertising or publicity pertaining to distribution not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission. of the software without specific, written prior permission.
FUJITSU LIMITED makes no representations about the suitability of FUJITSU LIMITED makes no representations about the suitability of
this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -34,9 +34,7 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -34,9 +34,7 @@ PERFORMANCE OF THIS SOFTWARE.
#include "Ximint.h" #include "Ximint.h"
Public char * Public char *
_XimLocalGetICValues(xic, values) _XimLocalGetICValues(XIC xic, XIMArg *values)
XIC xic;
XIMArg *values;
{ {
Xic ic = (Xic)xic; Xic ic = (Xic)xic;
XimDefICValues ic_values; XimDefICValues ic_values;
......
...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED ...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED
not be used in advertising or publicity pertaining to distribution not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission. of the software without specific, written prior permission.
FUJITSU LIMITED makes no representations about the suitability of FUJITSU LIMITED makes no representations about the suitability of
this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -85,7 +85,7 @@ _XimLocalSetFocus( ...@@ -85,7 +85,7 @@ _XimLocalSetFocus(
if (ic->core.focus_window) if (ic->core.focus_window)
_XRegisterFilterByType(ic->core.im->core.display, _XRegisterFilterByType(ic->core.im->core.display,
ic->core.focus_window, KeyPress, KeyPress, ic->core.focus_window, KeyPress, KeyRelease,
_XimLocalFilter, (XPointer)ic); _XimLocalFilter, (XPointer)ic);
return; return;
} }
...@@ -95,8 +95,11 @@ _XimLocalReset( ...@@ -95,8 +95,11 @@ _XimLocalReset(
XIC xic) XIC xic)
{ {
Xic ic = (Xic)xic; Xic ic = (Xic)xic;
ic->private.local.composed = (DefTree *)NULL; ic->private.local.composed = 0;
ic->private.local.context = ((Xim)ic->core.im)->private.local.top; ic->private.local.context = ((Xim)ic->core.im)->private.local.top;
ic->private.local.brl_pressed = 0;
ic->private.local.brl_committing = 0;
ic->private.local.brl_committed = 0;
} }
Private char * Private char *
...@@ -147,8 +150,12 @@ _XimLocalCreateIC( ...@@ -147,8 +150,12 @@ _XimLocalCreateIC(
ic->methods = &Local_ic_methods; ic->methods = &Local_ic_methods;
ic->core.im = im; ic->core.im = im;
ic->private.local.context = ((Xim)im)->private.local.top; ic->private.local.base = ((Xim)im)->private.local.base;
ic->private.local.composed = (DefTree *)NULL; ic->private.local.context = ((Xim)im)->private.local.top;
ic->private.local.composed = 0;
ic->private.local.brl_pressed = 0;
ic->private.local.brl_committing = 0;
ic->private.local.brl_committed = 0;
num = im->core.ic_num_resources; num = im->core.ic_num_resources;
len = sizeof(XIMResource) * num; len = sizeof(XIMResource) * num;
......
...@@ -16,7 +16,7 @@ It is provided "as is" without express or implied warranty. ...@@ -16,7 +16,7 @@ It is provided "as is" without express or implied warranty.
FUJI XEROX, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH FUJI XEROX, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL FUJI XEROX, MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL FUJI XEROX,
FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
...@@ -24,7 +24,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ...@@ -24,7 +24,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Kazunori Nishihara Fuji Xerox Author: Kazunori Nishihara Fuji Xerox
Takashi Fujiwara FUJITSU LIMITED Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -40,43 +40,59 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -40,43 +40,59 @@ PERFORMANCE OF THIS SOFTWARE.
#include <nx-X11/Xutil.h> #include <nx-X11/Xutil.h>
#include "Xlibint.h" #include "Xlibint.h"
#include "Xlcint.h" #include "Xlcint.h"
#include "XlcPubI.h"
#include "Ximint.h" #include "Ximint.h"
Public int Public int
_XimLocalMbLookupString(xic, ev, buffer, bytes, keysym, status) _XimLocalMbLookupString(XIC xic, XKeyEvent *ev, char *buffer, int bytes,
XIC xic; KeySym *keysym, Status *status)
XKeyEvent *ev;
char *buffer;
int bytes;
KeySym *keysym;
Status *status;
{ {
Xic ic = (Xic)xic; Xic ic = (Xic)xic;
int ret; int ret;
DefTree *b = ic->private.local.base.tree;
char *mb = ic->private.local.base.mb;
if(ev->type != KeyPress) { if(ev->type != KeyPress) {
if(status) *status = XLookupNone; if(status) *status = XLookupNone;
return(0); return(0);
} }
if(ev->keycode == 0 && ic->private.local.composed != NULL) { /* Composed Event */ if(ev->keycode == 0 &&
ret = strlen(ic->private.local.composed->mb); ( (ic->private.local.composed != 0)
if(ret > bytes) { ||(ic->private.local.brl_committed != 0))) {
if(status) *status = XBufferOverflow; if (ic->private.local.brl_committed != 0) { /* Braille Event */
return(ret); unsigned char pattern = ic->private.local.brl_committed;
} char mb[XLC_PUBLIC(ic->core.im->core.lcd, mb_cur_max)];
memcpy(buffer, ic->private.local.composed->mb, ret); ret = _Xlcwctomb(ic->core.im->core.lcd, mb, BRL_UC_ROW | pattern);
if(keysym) *keysym = ic->private.local.composed->ks; if(ret > bytes) {
if (ret > 0) { if(status) *status = XBufferOverflow;
if (keysym && *keysym != NoSymbol) { return(ret);
}
if(keysym) {
*keysym = XK_braille_blank | pattern;
if(status) *status = XLookupBoth; if(status) *status = XLookupBoth;
} else { } else
if(status) *status = XLookupChars; if(status) *status = XLookupChars;
memcpy(buffer, mb, ret);
} else { /* Composed Event */
ret = strlen(&mb[b[ic->private.local.composed].mb]);
if(ret > bytes) {
if(status) *status = XBufferOverflow;
return(ret);
} }
} else { memcpy(buffer, &mb[b[ic->private.local.composed].mb], ret);
if(keysym && *keysym != NoSymbol) { if(keysym) *keysym = b[ic->private.local.composed].ks;
if(status) *status = XLookupKeySym; if (ret > 0) {
if (keysym && *keysym != NoSymbol) {
if(status) *status = XLookupBoth;
} else {
if(status) *status = XLookupChars;
}
} else { } else {
if(status) *status = XLookupNone; if(keysym && *keysym != NoSymbol) {
if(status) *status = XLookupKeySym;
} else {
if(status) *status = XLookupNone;
}
} }
} }
return (ret); return (ret);
...@@ -102,41 +118,53 @@ _XimLocalMbLookupString(xic, ev, buffer, bytes, keysym, status) ...@@ -102,41 +118,53 @@ _XimLocalMbLookupString(xic, ev, buffer, bytes, keysym, status)
} }
Public int Public int
_XimLocalWcLookupString(xic, ev, buffer, wlen, keysym, status) _XimLocalWcLookupString(XIC xic, XKeyEvent *ev, wchar_t *buffer, int wlen,
XIC xic; KeySym *keysym, Status *status)
XKeyEvent *ev;
wchar_t *buffer;
int wlen;
KeySym *keysym;
Status *status;
{ {
Xic ic = (Xic)xic; Xic ic = (Xic)xic;
int ret; int ret;
DefTree *b = ic->private.local.base.tree;
wchar_t *wc = ic->private.local.base.wc;
if(ev->type != KeyPress) { if(ev->type != KeyPress) {
if(status) *status = XLookupNone; if(status) *status = XLookupNone;
return(0); return(0);
} }
if(ev->keycode == 0) { /* Composed Event */ if(ev->keycode == 0) {
ret = _Xwcslen(ic->private.local.composed->wc); if (ic->private.local.brl_committed != 0) { /* Braille Event */
if(ret > wlen) { unsigned char pattern = ic->private.local.brl_committed;
if(status) *status = XBufferOverflow; ret = 1;
return (ret); if (ret > wlen) {
} if(status) *status = XBufferOverflow;
memcpy((char *)buffer, (char *)ic->private.local.composed->wc, return (ret);
ret * sizeof(wchar_t)); }
if(keysym) *keysym = ic->private.local.composed->ks; *buffer = BRL_UC_ROW | pattern;
if (ret > 0) { if(keysym) {
if (keysym && *keysym != NoSymbol) { *keysym = XK_braille_blank | pattern;
if(status) *status = XLookupBoth; if(status) *status = XLookupBoth;
} else { } else
if(status) *status = XLookupChars; if(status) *status = XLookupChars;
} else { /* Composed Event */
ret = _Xwcslen(&wc[b[ic->private.local.composed].wc]);
if(ret > wlen) {
if(status) *status = XBufferOverflow;
return (ret);
} }
} else { memcpy((char *)buffer, (char *)&wc[b[ic->private.local.composed].wc],
if(keysym && *keysym != NoSymbol) { ret * sizeof(wchar_t));
if(status) *status = XLookupKeySym; if(keysym) *keysym = b[ic->private.local.composed].ks;
if (ret > 0) {
if (keysym && *keysym != NoSymbol) {
if(status) *status = XLookupBoth;
} else {
if(status) *status = XLookupChars;
}
} else { } else {
if(status) *status = XLookupNone; if(keysym && *keysym != NoSymbol) {
if(status) *status = XLookupKeySym;
} else {
if(status) *status = XLookupNone;
}
} }
} }
return (ret); return (ret);
...@@ -162,40 +190,49 @@ _XimLocalWcLookupString(xic, ev, buffer, wlen, keysym, status) ...@@ -162,40 +190,49 @@ _XimLocalWcLookupString(xic, ev, buffer, wlen, keysym, status)
} }
Public int Public int
_XimLocalUtf8LookupString(xic, ev, buffer, bytes, keysym, status) _XimLocalUtf8LookupString(XIC xic, XKeyEvent *ev, char *buffer, int bytes,
XIC xic; KeySym *keysym, Status *status)
XKeyEvent *ev;
char *buffer;
int bytes;
KeySym *keysym;
Status *status;
{ {
Xic ic = (Xic)xic; Xic ic = (Xic)xic;
int ret; int ret;
DefTree *b = ic->private.local.base.tree;
char *utf8 = ic->private.local.base.utf8;
if(ev->type != KeyPress) { if(ev->type != KeyPress) {
if(status) *status = XLookupNone; if(status) *status = XLookupNone;
return(0); return(0);
} }
if(ev->keycode == 0) { /* Composed Event */ if(ev->keycode == 0) {
ret = strlen(ic->private.local.composed->utf8); if (ic->private.local.brl_committed != 0) { /* Braille Event */
if(ret > bytes) { unsigned char pattern = ic->private.local.brl_committed;
if(status) *status = XBufferOverflow; ret = 3;
return (ret); if (ret > bytes) {
} if(status) *status = XBufferOverflow;
memcpy(buffer, ic->private.local.composed->utf8, ret); return (ret);
if(keysym) *keysym = ic->private.local.composed->ks;
if (ret > 0) {
if (keysym && *keysym != NoSymbol) {
if(status) *status = XLookupBoth;
} else {
if(status) *status = XLookupChars;
} }
} else { buffer[0] = 0xe0 | ((BRL_UC_ROW >> 12) & 0x0f);
if(keysym && *keysym != NoSymbol) { buffer[1] = 0x80 | ((BRL_UC_ROW >> 8) & 0x30) | (pattern >> 6);
if(status) *status = XLookupKeySym; buffer[2] = 0x80 | (pattern & 0x3f);
} else { /* Composed Event */
ret = strlen(&utf8[b[ic->private.local.composed].utf8]);
if(ret > bytes) {
if(status) *status = XBufferOverflow;
return (ret);
}
memcpy(buffer, &utf8[b[ic->private.local.composed].utf8], ret);
if(keysym) *keysym = b[ic->private.local.composed].ks;
if (ret > 0) {
if (keysym && *keysym != NoSymbol) {
if(status) *status = XLookupBoth;
} else {
if(status) *status = XLookupChars;
}
} else { } else {
if(status) *status = XLookupNone; if(keysym && *keysym != NoSymbol) {
if(status) *status = XLookupKeySym;
} else {
if(status) *status = XLookupNone;
}
} }
} }
return (ret); return (ret);
...@@ -287,26 +324,16 @@ _XimLcctsconvert( ...@@ -287,26 +324,16 @@ _XimLcctsconvert(
} }
Public int Public int
_XimLcctstombs(xim, from, from_len, to, to_len, state) _XimLcctstombs(XIM xim, char *from, int from_len,
XIM xim; char *to, int to_len, Status *state)
char *from;
int from_len;
char *to;
int to_len;
Status *state;
{ {
return _XimLcctsconvert(((Xim)xim)->private.local.ctom_conv, return _XimLcctsconvert(((Xim)xim)->private.local.ctom_conv,
from, from_len, to, to_len, state); from, from_len, to, to_len, state);
} }
Public int Public int
_XimLcctstowcs(xim, from, from_len, to, to_len, state) _XimLcctstowcs(XIM xim, char *from, int from_len,
XIM xim; wchar_t *to, int to_len, Status *state)
char *from;
int from_len;
wchar_t *to;
int to_len;
Status *state;
{ {
Xim im = (Xim)xim; Xim im = (Xim)xim;
XlcConv conv = im->private.local.ctow_conv; XlcConv conv = im->private.local.ctow_conv;
...@@ -332,7 +359,7 @@ _XimLcctstowcs(xim, from, from_len, to, to_len, state) ...@@ -332,7 +359,7 @@ _XimLcctstowcs(xim, from, from_len, to, to_len, state)
/* Reset the converter. The CompoundText at 'from' starts in /* Reset the converter. The CompoundText at 'from' starts in
initial state. */ initial state. */
_XlcResetConverter(conv); _XlcResetConverter(conv);
from_left = from_len; from_left = from_len;
to_left = BUFSIZ; to_left = BUFSIZ;
from_cnvlen = 0; from_cnvlen = 0;
...@@ -368,13 +395,8 @@ _XimLcctstowcs(xim, from, from_len, to, to_len, state) ...@@ -368,13 +395,8 @@ _XimLcctstowcs(xim, from, from_len, to, to_len, state)
} }
Public int Public int
_XimLcctstoutf8(xim, from, from_len, to, to_len, state) _XimLcctstoutf8(XIM xim, char *from, int from_len,
XIM xim; char *to, int to_len, Status *state)
char *from;
int from_len;
char *to;
int to_len;
Status *state;
{ {
return _XimLcctsconvert(((Xim)xim)->private.local.ctoutf8_conv, return _XimLcctsconvert(((Xim)xim)->private.local.ctoutf8_conv,
from, from_len, to, to_len, state); from, from_len, to, to_len, state);
......
...@@ -42,6 +42,8 @@ OR PERFORMANCE OF THIS SOFTWARE. ...@@ -42,6 +42,8 @@ OR PERFORMANCE OF THIS SOFTWARE.
#include <sys/stat.h> #include <sys/stat.h>
#include <stdio.h> #include <stdio.h>
#define XLC_BUFSIZE 256
extern int _Xmbstowcs( extern int _Xmbstowcs(
wchar_t *wstr, wchar_t *wstr,
char *str, char *str,
...@@ -276,38 +278,33 @@ static long ...@@ -276,38 +278,33 @@ static long
modmask( modmask(
char *name) char *name)
{ {
long mask;
struct _modtbl { struct _modtbl {
char *name; const char name[6];
long mask; long mask;
}; };
struct _modtbl *p;
static struct _modtbl tbl[] = { static const struct _modtbl tbl[] = {
{ "Ctrl", ControlMask }, { "Ctrl", ControlMask },
{ "Lock", LockMask }, { "Lock", LockMask },
{ "Caps", LockMask }, { "Caps", LockMask },
{ "Shift", ShiftMask }, { "Shift", ShiftMask },
{ "Alt", Mod1Mask }, { "Alt", Mod1Mask },
{ "Meta", Mod1Mask }, { "Meta", Mod1Mask }};
{ NULL, 0 }};
int i, num_entries = sizeof (tbl) / sizeof (tbl[0]);
p = tbl;
mask = 0; for (i = 0; i < num_entries; i++)
for (p = tbl; p->name != NULL; p++) { if (!strcmp (name, tbl[i].name))
if (strcmp(name, p->name) == 0) { return tbl[i].mask;
mask = p->mask;
break; return 0;
}
}
return(mask);
} }
static char* static char*
TransFileName(Xim im, char *name) TransFileName(Xim im, char *name)
{ {
char *home = NULL, *lcCompose = NULL; char *home = NULL, *lcCompose = NULL;
char dir[XLC_BUFSIZE];
char *i = name, *ret, *j; char *i = name, *ret, *j;
int l = 0; int l = 0;
...@@ -328,6 +325,10 @@ TransFileName(Xim im, char *name) ...@@ -328,6 +325,10 @@ TransFileName(Xim im, char *name)
if (lcCompose) if (lcCompose)
l += strlen(lcCompose); l += strlen(lcCompose);
break; break;
case 'S':
xlocaledir(dir, XLC_BUFSIZE);
l += strlen(dir);
break;
} }
} else { } else {
l++; l++;
...@@ -359,6 +360,10 @@ TransFileName(Xim im, char *name) ...@@ -359,6 +360,10 @@ TransFileName(Xim im, char *name)
Xfree(lcCompose); Xfree(lcCompose);
} }
break; break;
case 'S':
strcpy(j, dir);
j += strlen(dir);
break;
} }
i++; i++;
} else { } else {
...@@ -408,7 +413,7 @@ get_mb_string (Xim im, char *buf, KeySym ks) ...@@ -408,7 +413,7 @@ get_mb_string (Xim im, char *buf, KeySym ks)
return len; return len;
} }
#define AllMask (ShiftMask | LockMask | ControlMask | Mod1Mask) #define AllMask (ShiftMask | LockMask | ControlMask | Mod1Mask)
#define LOCAL_WC_BUFSIZE 128 #define LOCAL_WC_BUFSIZE 128
#define LOCAL_UTF8_BUFSIZE 256 #define LOCAL_UTF8_BUFSIZE 256
#define SEQUENCE_MAX 10 #define SEQUENCE_MAX 10
...@@ -420,11 +425,13 @@ parseline( ...@@ -420,11 +425,13 @@ parseline(
char* tokenbuf) char* tokenbuf)
{ {
int token; int token;
unsigned modifier_mask; DTModifier modifier_mask;
unsigned modifier; DTModifier modifier;
unsigned tmp; DTModifier tmp;
KeySym keysym = NoSymbol; KeySym keysym = NoSymbol;
DefTree **top = &im->private.local.top; DTIndex *top = &im->private.local.top;
DefTreeBase *b = &im->private.local.base;
DTIndex t;
DefTree *p = NULL; DefTree *p = NULL;
Bool exclam, tilde; Bool exclam, tilde;
KeySym rhs_keysym = 0; KeySym rhs_keysym = 0;
...@@ -436,8 +443,8 @@ parseline( ...@@ -436,8 +443,8 @@ parseline(
char local_utf8_buf[LOCAL_UTF8_BUFSIZE], *rhs_string_utf8; char local_utf8_buf[LOCAL_UTF8_BUFSIZE], *rhs_string_utf8;
struct DefBuffer { struct DefBuffer {
unsigned modifier_mask; DTModifier modifier_mask;
unsigned modifier; DTModifier modifier;
KeySym keysym; KeySym keysym;
}; };
...@@ -447,7 +454,7 @@ parseline( ...@@ -447,7 +454,7 @@ parseline(
do { do {
token = nexttoken(fp, tokenbuf, &lastch); token = nexttoken(fp, tokenbuf, &lastch);
} while (token == ENDOFLINE); } while (token == ENDOFLINE);
if (token == ENDOFFILE) { if (token == ENDOFFILE) {
return(-1); return(-1);
} }
...@@ -467,6 +474,7 @@ parseline( ...@@ -467,6 +474,7 @@ parseline(
if (infp == NULL) if (infp == NULL)
goto error; goto error;
_XimParseStringFile(infp, im); _XimParseStringFile(infp, im);
fclose(infp);
return (0); return (0);
} else if ((token == KEY) && (strcmp("None", tokenbuf) == 0)) { } else if ((token == KEY) && (strcmp("None", tokenbuf) == 0)) {
modifier = 0; modifier = 0;
...@@ -534,20 +542,24 @@ parseline( ...@@ -534,20 +542,24 @@ parseline(
token = nexttoken(fp, tokenbuf, &lastch); token = nexttoken(fp, tokenbuf, &lastch);
if (token == STRING) { if (token == STRING) {
if( (rhs_string_mb = Xmalloc(strlen(tokenbuf) + 1)) == NULL ) l = strlen(tokenbuf) + 1;
goto error; while (b->mbused + l > b->mbsize) {
b->mbsize = b->mbsize ? b->mbsize * 1.5 : 1024;
if (! (b->mb = Xrealloc (b->mb, b->mbsize)) )
goto error;
}
rhs_string_mb = &b->mb[b->mbused];
b->mbused += l;
strcpy(rhs_string_mb, tokenbuf); strcpy(rhs_string_mb, tokenbuf);
token = nexttoken(fp, tokenbuf, &lastch); token = nexttoken(fp, tokenbuf, &lastch);
if (token == KEY) { if (token == KEY) {
rhs_keysym = XStringToKeysym(tokenbuf); rhs_keysym = XStringToKeysym(tokenbuf);
if (rhs_keysym == NoSymbol) { if (rhs_keysym == NoSymbol) {
Xfree(rhs_string_mb);
goto error; goto error;
} }
token = nexttoken(fp, tokenbuf, &lastch); token = nexttoken(fp, tokenbuf, &lastch);
} }
if (token != ENDOFLINE && token != ENDOFFILE) { if (token != ENDOFLINE && token != ENDOFFILE) {
Xfree(rhs_string_mb);
goto error; goto error;
} }
} else if (token == KEY) { } else if (token == KEY) {
...@@ -561,14 +573,13 @@ parseline( ...@@ -561,14 +573,13 @@ parseline(
} }
l = get_mb_string(im, local_mb_buf, rhs_keysym); l = get_mb_string(im, local_mb_buf, rhs_keysym);
if (l == 0) { while (b->mbused + l + 1 > b->mbsize) {
rhs_string_mb = Xmalloc(1); b->mbsize = b->mbsize ? b->mbsize * 1.5 : 1024;
} else { if (! (b->mb = Xrealloc (b->mb, b->mbsize)) )
rhs_string_mb = Xmalloc(l + 1); goto error;
}
if( rhs_string_mb == NULL ) {
goto error;
} }
rhs_string_mb = &b->mb[b->mbused];
b->mbused += l + 1;
memcpy(rhs_string_mb, local_mb_buf, l); memcpy(rhs_string_mb, local_mb_buf, l);
rhs_string_mb[l] = '\0'; rhs_string_mb[l] = '\0';
} else { } else {
...@@ -579,62 +590,70 @@ parseline( ...@@ -579,62 +590,70 @@ parseline(
if (l == LOCAL_WC_BUFSIZE - 1) { if (l == LOCAL_WC_BUFSIZE - 1) {
local_wc_buf[l] = (wchar_t)'\0'; local_wc_buf[l] = (wchar_t)'\0';
} }
if( (rhs_string_wc = (wchar_t *)Xmalloc((l + 1) * sizeof(wchar_t))) == NULL ) { while (b->wcused + l + 1 > b->wcsize) {
Xfree( rhs_string_mb ); b->wcsize = b->wcsize ? b->wcsize * 1.5 : 512;
return( 0 ); if (! (b->wc = Xrealloc (b->wc, sizeof(wchar_t) * b->wcsize)) )
goto error;
} }
rhs_string_wc = &b->wc[b->wcused];
b->wcused += l + 1;
memcpy((char *)rhs_string_wc, (char *)local_wc_buf, (l + 1) * sizeof(wchar_t) ); memcpy((char *)rhs_string_wc, (char *)local_wc_buf, (l + 1) * sizeof(wchar_t) );
l = _Xmbstoutf8(local_utf8_buf, rhs_string_mb, LOCAL_UTF8_BUFSIZE - 1); l = _Xmbstoutf8(local_utf8_buf, rhs_string_mb, LOCAL_UTF8_BUFSIZE - 1);
if (l == LOCAL_UTF8_BUFSIZE - 1) { if (l == LOCAL_UTF8_BUFSIZE - 1) {
local_utf8_buf[l] = '\0'; local_utf8_buf[l] = '\0';
} }
if( (rhs_string_utf8 = (char *)Xmalloc(l + 1)) == NULL ) { while (b->utf8used + l + 1 > b->utf8size) {
Xfree( rhs_string_wc ); b->utf8size = b->utf8size ? b->utf8size * 1.5 : 1024;
Xfree( rhs_string_mb ); if (! (b->utf8 = Xrealloc (b->utf8, b->utf8size)) )
return( 0 ); goto error;
} }
rhs_string_utf8 = &b->utf8[b->utf8used];
b->utf8used += l + 1;
memcpy(rhs_string_utf8, local_utf8_buf, l + 1); memcpy(rhs_string_utf8, local_utf8_buf, l + 1);
for (i = 0; i < n; i++) { for (i = 0; i < n; i++) {
for (p = *top; p; p = p->next) { for (t = *top; t; t = b->tree[t].next) {
if (buf[i].keysym == p->keysym && if (buf[i].keysym == b->tree[t].keysym &&
buf[i].modifier == p->modifier && buf[i].modifier == b->tree[t].modifier &&
buf[i].modifier_mask == p->modifier_mask) { buf[i].modifier_mask == b->tree[t].modifier_mask) {
break; break;
} }
} }
if (p) { if (t) {
p = &b->tree[t];
top = &p->succession; top = &p->succession;
} else { } else {
if( (p = (DefTree*)Xmalloc(sizeof(DefTree))) == NULL ) { while (b->treeused >= b->treesize) {
Xfree( rhs_string_mb ); DefTree *old = b->tree;
goto error; int oldsize = b->treesize;
b->treesize = b->treesize ? b->treesize * 1.5 : 256;
if (! (b->tree = Xrealloc (b->tree, sizeof(DefTree) * b->treesize)) )
goto error;
if (top >= (DTIndex *) old && top < (DTIndex *) &old[oldsize])
top = (DTIndex *) (((char *) top) + (((char *)b->tree)-(char *)old));
} }
p = &b->tree[b->treeused];
p->keysym = buf[i].keysym; p->keysym = buf[i].keysym;
p->modifier = buf[i].modifier; p->modifier = buf[i].modifier;
p->modifier_mask = buf[i].modifier_mask; p->modifier_mask = buf[i].modifier_mask;
p->succession = NULL; p->succession = 0;
p->next = *top; p->next = *top;
p->mb = NULL; p->mb = 0;
p->wc = NULL; p->wc = 0;
p->utf8 = NULL; p->utf8 = 0;
p->ks = NoSymbol; p->ks = NoSymbol;
*top = p; *top = b->treeused;
top = &p->succession; top = &p->succession;
b->treeused++;
} }
} }
if( p->mb != NULL ) /* old entries no longer freed... */
Xfree( p->mb ); p->mb = rhs_string_mb - b->mb;
p->mb = rhs_string_mb; p->wc = rhs_string_wc - b->wc;
if( p->wc != NULL ) p->utf8 = rhs_string_utf8 - b->utf8;
Xfree( p->wc ); p->ks = rhs_keysym;
p->wc = rhs_string_wc;
if( p->utf8 != NULL )
Xfree( p->utf8 );
p->utf8 = rhs_string_utf8;
p->ks = rhs_keysym;
return(n); return(n);
error: error:
while (token != ENDOFLINE && token != ENDOFFILE) { while (token != ENDOFLINE && token != ENDOFFILE) {
......
...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED ...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED
not be used in advertising or publicity pertaining to distribution not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission. of the software without specific, written prior permission.
FUJITSU LIMITED makes no representations about the suitability of FUJITSU LIMITED makes no representations about the suitability of
this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -38,9 +38,7 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -38,9 +38,7 @@ PERFORMANCE OF THIS SOFTWARE.
#include "Ximint.h" #include "Ximint.h"
Public char * Public char *
_XimLocalSetICValues(xic, values) _XimLocalSetICValues(XIC xic, XIMArg *values)
XIC xic;
XIMArg *values;
{ {
XimDefICValues ic_values; XimDefICValues ic_values;
Xic ic = (Xic)xic; Xic ic = (Xic)xic;
......
...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED ...@@ -10,7 +10,7 @@ in supporting documentation, and that the name of FUJITSU LIMITED
not be used in advertising or publicity pertaining to distribution not be used in advertising or publicity pertaining to distribution
of the software without specific, written prior permission. of the software without specific, written prior permission.
FUJITSU LIMITED makes no representations about the suitability of FUJITSU LIMITED makes no representations about the suitability of
this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR ...@@ -21,7 +21,7 @@ USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -457,7 +457,7 @@ _XimDecodeIMATTRIBUTE( ...@@ -457,7 +457,7 @@ _XimDecodeIMATTRIBUTE(
if (total < min_len) if (total < min_len)
return p->name; return p->name;
if (!(_XimAttributeToValue((Xic) im->private.local.current_ic, if (!(_XimAttributeToValue((Xic) im->private.local.current_ic,
res, &buf[2], buf[1], p->value, mode))) res, &buf[2], buf[1], p->value, mode)))
return p->name; return p->name;
} }
......
...@@ -15,17 +15,17 @@ makes no representations about the suitability of this software for ...@@ -15,17 +15,17 @@ makes no representations about the suitability of this software for
any purpose. It is provided "as is" without express or implied any purpose. It is provided "as is" without express or implied
warranty. warranty.
FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR
ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE. THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
Modifier: Franky Ling Digital Equipment Corporation Modifier: Franky Ling Digital Equipment Corporation
frankyling@hgrd01.enet.dec.com frankyling@hgrd01.enet.dec.com
...@@ -60,6 +60,8 @@ _XimThaiDestroyIC( ...@@ -60,6 +60,8 @@ _XimThaiDestroyIC(
XIC xic) XIC xic)
{ {
Xic ic = (Xic)xic; Xic ic = (Xic)xic;
DefTreeBase *b = &ic->private.local.base;
if(((Xim)ic->core.im)->private.local.current_ic == (XIC)ic) { if(((Xim)ic->core.im)->private.local.current_ic == (XIC)ic) {
_XimThaiUnSetFocus(xic); _XimThaiUnSetFocus(xic);
} }
...@@ -68,14 +70,14 @@ _XimThaiDestroyIC( ...@@ -68,14 +70,14 @@ _XimThaiDestroyIC(
ic->private.local.ic_resources = NULL; ic->private.local.ic_resources = NULL;
} }
Xfree(ic->private.local.context->mb); if (b->tree) Xfree (b->tree);
Xfree(ic->private.local.context->wc); if (b->mb) Xfree (b->mb);
Xfree(ic->private.local.context->utf8); if (b->wc) Xfree (b->wc);
Xfree(ic->private.local.context); if (b->utf8) Xfree (b->utf8);
Xfree(ic->private.local.composed->mb); b->tree = NULL;
Xfree(ic->private.local.composed->wc); b->mb = NULL;
Xfree(ic->private.local.composed->utf8); b->wc = NULL;
Xfree(ic->private.local.composed); b->utf8 = NULL;
return; return;
} }
...@@ -105,11 +107,12 @@ _XimThaiReset( ...@@ -105,11 +107,12 @@ _XimThaiReset(
XIC xic) XIC xic)
{ {
Xic ic = (Xic)xic; Xic ic = (Xic)xic;
DefTreeBase *b = &ic->private.local.base;
ic->private.local.thai.comp_state = 0; ic->private.local.thai.comp_state = 0;
ic->private.local.thai.keysym = 0; ic->private.local.thai.keysym = 0;
ic->private.local.composed->mb[0] = '\0'; b->mb[b->tree[ic->private.local.composed].mb] = '\0';
ic->private.local.composed->wc[0] = 0; b->wc[b->tree[ic->private.local.composed].wc] = '\0';
ic->private.local.composed->utf8[0] = '\0'; b->utf8[b->tree[ic->private.local.composed].utf8] = '\0';
} }
Private char * Private char *
...@@ -152,6 +155,7 @@ _XimThaiCreateIC( ...@@ -152,6 +155,7 @@ _XimThaiCreateIC(
XIMResourceList res; XIMResourceList res;
unsigned int num; unsigned int num;
int len; int len;
DefTree *tree;
if((ic = (Xic)Xmalloc(sizeof(XicRec))) == (Xic)NULL) { if((ic = (Xic)Xmalloc(sizeof(XicRec))) == (Xic)NULL) {
return ((XIC)NULL); return ((XIC)NULL);
...@@ -161,30 +165,23 @@ _XimThaiCreateIC( ...@@ -161,30 +165,23 @@ _XimThaiCreateIC(
ic->methods = &Thai_ic_methods; ic->methods = &Thai_ic_methods;
ic->core.im = im; ic->core.im = im;
ic->core.filter_events = KeyPressMask; ic->core.filter_events = KeyPressMask;
if ((ic->private.local.context = (DefTree *)Xmalloc(sizeof(DefTree)))
== (DefTree *)NULL) if (! (ic->private.local.base.tree = tree = (DefTree *)Xmalloc(sizeof(DefTree)*3)) )
goto Set_Error;
if ((ic->private.local.context->mb = (char *)Xmalloc(10))
== (char *)NULL)
goto Set_Error;
if ((ic->private.local.context->wc = (wchar_t *)Xmalloc(10*sizeof(wchar_t)))
== (wchar_t *)NULL)
goto Set_Error;
if ((ic->private.local.context->utf8 = (char *)Xmalloc(10))
== (char *)NULL)
goto Set_Error;
if ((ic->private.local.composed = (DefTree *)Xmalloc(sizeof(DefTree)))
== (DefTree *)NULL)
goto Set_Error; goto Set_Error;
if ((ic->private.local.composed->mb = (char *)Xmalloc(10)) if (! (ic->private.local.base.mb = (char *)Xmalloc(21)) )
== (char *)NULL)
goto Set_Error; goto Set_Error;
if ((ic->private.local.composed->wc = (wchar_t *)Xmalloc(10*sizeof(wchar_t))) if (! (ic->private.local.base.wc = (wchar_t*)Xmalloc(sizeof(wchar_t)*21)) )
== (wchar_t *)NULL)
goto Set_Error; goto Set_Error;
if ((ic->private.local.composed->utf8 = (char *)Xmalloc(10)) if (! (ic->private.local.base.utf8 = (char *)Xmalloc(21)) )
== (char *)NULL)
goto Set_Error; goto Set_Error;
ic->private.local.context = 1;
tree[1].mb = 1;
tree[1].wc = 1;
tree[1].utf8 = 1;
ic->private.local.composed = 2;
tree[2].mb = 11;
tree[2].wc = 11;
tree[2].utf8 = 11;
ic->private.local.thai.comp_state = 0; ic->private.local.thai.comp_state = 0;
ic->private.local.thai.keysym = 0; ic->private.local.thai.keysym = 0;
......
...@@ -15,17 +15,17 @@ makes no representations about the suitability of this software for ...@@ -15,17 +15,17 @@ makes no representations about the suitability of this software for
any purpose. It is provided "as is" without express or implied any purpose. It is provided "as is" without express or implied
warranty. warranty.
FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR
ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE. THIS SOFTWARE.
Author: Takashi Fujiwara FUJITSU LIMITED Author: Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
Modifier: Franky Ling Digital Equipment Corporation Modifier: Franky Ling Digital Equipment Corporation
frankyling@hgrd01.enet.dec.com frankyling@hgrd01.enet.dec.com
...@@ -59,21 +59,25 @@ Private XIMMethodsRec Xim_im_thai_methods = { ...@@ -59,21 +59,25 @@ Private XIMMethodsRec Xim_im_thai_methods = {
#define THAI_LANGUAGE_NAME "th" #define THAI_LANGUAGE_NAME "th"
Bool Bool
_XimCheckIfThaiProcessing(im) _XimCheckIfThaiProcessing(Xim im)
Xim im;
{ {
char *language; char *language;
_XGetLCValues(im->core.lcd, XlcNLanguage, &language, NULL); _XGetLCValues(im->core.lcd, XlcNLanguage, &language, NULL);
if(strcmp(language, THAI_LANGUAGE_NAME) == 0) { if(strcmp(language, THAI_LANGUAGE_NAME) == 0 &&
(strcmp(im->core.im_name, "") == 0 ||
strcmp(im->core.im_name, "BasicCheck") == 0 ||
strcmp(im->core.im_name, "Strict") == 0 ||
strcmp(im->core.im_name, "Thaicat") == 0 ||
strcmp(im->core.im_name, "Passthrough") == 0))
{
return(True); return(True);
} }
return(False); return(False);
} }
Public Bool Public Bool
_XimThaiOpenIM(im) _XimThaiOpenIM(Xim im)
Xim im;
{ {
XLCd lcd = im->core.lcd; XLCd lcd = im->core.lcd;
XlcConv conv; XlcConv conv;
...@@ -142,8 +146,7 @@ Open_Error : ...@@ -142,8 +146,7 @@ Open_Error :
} }
Public void Public void
_XimThaiIMFree(im) _XimThaiIMFree(Xim im)
Xim im;
{ {
if(im->core.im_resources) { if(im->core.im_resources) {
Xfree(im->core.im_resources); Xfree(im->core.im_resources);
...@@ -213,8 +216,7 @@ _XimThaiIMFree(im) ...@@ -213,8 +216,7 @@ _XimThaiIMFree(im)
} }
Public Status Public Status
_XimThaiCloseIM(xim) _XimThaiCloseIM(XIM xim)
XIM xim;
{ {
Xim im = (Xim)xim; Xim im = (Xim)xim;
XIC ic; XIC ic;
......
/*
* Copyright 1992 Sun Microsystems, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/****************************************************************** /******************************************************************
Copyright 1992 by Sun Microsystems, Inc.
Copyright 1992, 1993, 1994 by FUJITSU LIMITED Copyright 1992, 1993, 1994 by FUJITSU LIMITED
Permission to use, copy, modify, distribute, and sell this software Permission to use, copy, modify, distribute, and sell this software
and its documentation for any purpose is hereby granted without fee, and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies and provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear that both that copyright notice and this permission notice appear
in supporting documentation, and that the name of Sun Microsystems, Inc. in supporting documentation, and that the name of FUJITSU LIMITED
and FUJITSU LIMITED not be used in advertising or publicity pertaining to not be used in advertising or publicity pertaining to distribution
distribution of the software without specific, written prior permission. of the software without specific, written prior permission.
Sun Microsystems, Inc. and FUJITSU LIMITED makes no representations about FUJITSU LIMITED makes no representations about the suitability of
the suitability of this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
Sun Microsystems Inc. AND FUJITSU LIMITED DISCLAIMS ALL WARRANTIES WITH FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
AND FITNESS, IN NO EVENT SHALL Sun Microsystems, Inc. AND FUJITSU LIMITED EVENT SHALL FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR
BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc. Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc.
Takashi Fujiwara FUJITSU LIMITED Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -102,12 +123,12 @@ _XimXFilterWaitEvent( ...@@ -102,12 +123,12 @@ _XimXFilterWaitEvent(
spec->ev = (XPointer)ev; spec->ev = (XPointer)ev;
ret = _XimFilterWaitEvent(im); ret = _XimFilterWaitEvent(im);
/* /*
* If ev is a pointer to a stack variable, there could be * If ev is a pointer to a stack variable, there could be
* a coredump later on if the pointer is dereferenced. * a coredump later on if the pointer is dereferenced.
* Therefore, reset to NULL to force reinitialization in * Therefore, reset to NULL to force reinitialization in
* _XimXRead(). * _XimXRead().
* *
* Keep in mind _XimXRead may be called again when the stack * Keep in mind _XimXRead may be called again when the stack
* is very different. * is very different.
*/ */
...@@ -153,6 +174,8 @@ _XimXConnect(Xim im) ...@@ -153,6 +174,8 @@ _XimXConnect(Xim im)
event.xclient.data.l[0] = (CARD32)spec->lib_connect_wid; event.xclient.data.l[0] = (CARD32)spec->lib_connect_wid;
event.xclient.data.l[1] = spec->major_code; event.xclient.data.l[1] = spec->major_code;
event.xclient.data.l[2] = spec->minor_code; event.xclient.data.l[2] = spec->minor_code;
event.xclient.data.l[3] = 0;
event.xclient.data.l[4] = 0;
if(event.xclient.data.l[1] == 1 || event.xclient.data.l[1] == 2) { if(event.xclient.data.l[1] == 1 || event.xclient.data.l[1] == 2) {
XWindowAttributes atr; XWindowAttributes atr;
...@@ -193,7 +216,7 @@ _XimXConnect(Xim im) ...@@ -193,7 +216,7 @@ _XimXConnect(Xim im)
((major_code == 2) && (minor_code == 1))) { ((major_code == 2) && (minor_code == 1))) {
spec->BoundarySize = (CARD32)event.xclient.data.l[3]; spec->BoundarySize = (CARD32)event.xclient.data.l[3];
} }
/* ClientMessage Event Filter */ /* ClientMessage Event Filter */
_XRegisterFilterByType(im->core.display, spec->lib_connect_wid, _XRegisterFilterByType(im->core.display, spec->lib_connect_wid,
ClientMessage, ClientMessage, ClientMessage, ClientMessage,
...@@ -233,7 +256,7 @@ _NewAtom( ...@@ -233,7 +256,7 @@ _NewAtom(
} }
Private Bool Private Bool
_XimXWrite(Xim im, INT16 len, XPointer data) _XimXWrite(Xim im, INT16 len, XPointer data)
{ {
Atom atom; Atom atom;
char atomName[16]; char atomName[16];
...@@ -353,6 +376,7 @@ _XimXGetReadData( ...@@ -353,6 +376,7 @@ _XimXGetReadData(
(void)memcpy(buf, prop_ret, (int)nitems); (void)memcpy(buf, prop_ret, (int)nitems);
*ret_len = (int)nitems; *ret_len = (int)nitems;
if (bytes_after_ret > 0) { if (bytes_after_ret > 0) {
XFree(prop_ret);
XGetWindowProperty(im->core.display, XGetWindowProperty(im->core.display,
spec->lib_connect_wid, prop, 0L, spec->lib_connect_wid, prop, 0L,
((length + bytes_after_ret + 3)/ 4), True, AnyPropertyType, ((length + bytes_after_ret + 3)/ 4), True, AnyPropertyType,
...@@ -360,7 +384,7 @@ _XimXGetReadData( ...@@ -360,7 +384,7 @@ _XimXGetReadData(
&prop_ret); &prop_ret);
XChangeProperty(im->core.display, spec->lib_connect_wid, prop, XChangeProperty(im->core.display, spec->lib_connect_wid, prop,
XA_STRING, 8, PropModePrepend, &prop_ret[length], XA_STRING, 8, PropModePrepend, &prop_ret[length],
(nitems - length)); (nitems - length));
} }
} else { } else {
(void)memcpy(buf, prop_ret, buf_len); (void)memcpy(buf, prop_ret, buf_len);
...@@ -375,7 +399,7 @@ _XimXGetReadData( ...@@ -375,7 +399,7 @@ _XimXGetReadData(
&type_ret, &format_ret, &nitems, &bytes_after_ret, &prop_ret); &type_ret, &format_ret, &nitems, &bytes_after_ret, &prop_ret);
} }
XChangeProperty(im->core.display, spec->lib_connect_wid, prop, XChangeProperty(im->core.display, spec->lib_connect_wid, prop,
XA_STRING, 8, PropModePrepend, &prop_ret[buf_len], len); XA_STRING, 8, PropModePrepend, &prop_ret[buf_len], len);
event->xclient.data.l[0] = (long)len; event->xclient.data.l[0] = (long)len;
event->xclient.data.l[1] = (long)prop; event->xclient.data.l[1] = (long)prop;
XPutBackEvent(im->core.display, event); XPutBackEvent(im->core.display, event);
...@@ -400,7 +424,7 @@ _XimXGetReadData( ...@@ -400,7 +424,7 @@ _XimXGetReadData(
*ret_len = buf_len; *ret_len = buf_len;
len = nitems - buf_len; len = nitems - buf_len;
XChangeProperty(im->core.display, spec->lib_connect_wid, prop, XChangeProperty(im->core.display, spec->lib_connect_wid, prop,
XA_STRING, 8, PropModePrepend, &prop_ret[buf_len], len); XA_STRING, 8, PropModePrepend, &prop_ret[buf_len], len);
} }
XFree(prop_ret); XFree(prop_ret);
} }
...@@ -459,9 +483,7 @@ _XimXFlush(Xim im) ...@@ -459,9 +483,7 @@ _XimXFlush(Xim im)
} }
Public Bool Public Bool
_XimXConf(im, address) _XimXConf(Xim im, char *address)
Xim im;
char *address;
{ {
XSpecRec *spec; XSpecRec *spec;
......
/*
* Copyright 1992 Sun Microsystems, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/****************************************************************** /******************************************************************
Copyright 1992 by Sun Microsystems, Inc.
Copyright 1992, 1993, 1994 by FUJITSU LIMITED Copyright 1992, 1993, 1994 by FUJITSU LIMITED
Permission to use, copy, modify, distribute, and sell this software Permission to use, copy, modify, distribute, and sell this software
and its documentation for any purpose is hereby granted without fee, and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies and provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear that both that copyright notice and this permission notice appear
in supporting documentation, and that the name of Sun Microsystems, Inc. in supporting documentation, and that the name of FUJITSU LIMITED
and FUJITSU LIMITED not be used in advertising or publicity pertaining to not be used in advertising or publicity pertaining to distribution
distribution of the software without specific, written prior permission. of the software without specific, written prior permission.
Sun Microsystems, Inc. and FUJITSU LIMITED makes no representations about FUJITSU LIMITED makes no representations about the suitability of
the suitability of this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
Sun Microsystems Inc. AND FUJITSU LIMITED DISCLAIMS ALL WARRANTIES WITH FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
AND FITNESS, IN NO EVENT SHALL Sun Microsystems, Inc. AND FUJITSU LIMITED EVENT SHALL FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR
BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc. Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc.
Takashi Fujiwara FUJITSU LIMITED Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -74,10 +95,7 @@ _XimTransConnect( ...@@ -74,10 +95,7 @@ _XimTransConnect(
spec->trans_conn = NULL; spec->trans_conn = NULL;
if (connect_stat == TRANS_TRY_CONNECT_AGAIN) if (connect_stat == TRANS_TRY_CONNECT_AGAIN)
{
sleep(1);
continue; continue;
}
else else
break; break;
} }
...@@ -98,8 +116,8 @@ _XimTransConnect( ...@@ -98,8 +116,8 @@ _XimTransConnect(
_XRegisterFilterByType(im->core.display, window, KeyPress, KeyPress, _XRegisterFilterByType(im->core.display, window, KeyPress, KeyPress,
_XimTransFilterWaitEvent, (XPointer)im); _XimTransFilterWaitEvent, (XPointer)im);
return _XRegisterInternalConnection(im->core.display, spec->fd, return _XRegisterInternalConnection(im->core.display, spec->fd,
(_XInternalConnectionProc)_XimTransInternalConnection, (_XInternalConnectionProc)_XimTransInternalConnection,
(XPointer)im); (XPointer)im);
} }
......
/*
* Copyright 1992 Sun Microsystems, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/****************************************************************** /******************************************************************
Copyright 1992 by Sun Microsystems, Inc.
Copyright 1992, 1993, 1994 by FUJITSU LIMITED Copyright 1992, 1993, 1994 by FUJITSU LIMITED
Permission to use, copy, modify, distribute, and sell this software Permission to use, copy, modify, distribute, and sell this software
and its documentation for any purpose is hereby granted without fee, and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies and provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear that both that copyright notice and this permission notice appear
in supporting documentation, and that the name of Sun Microsystems, Inc. in supporting documentation, and that the name of FUJITSU LIMITED
and FUJITSU LIMITED not be used in advertising or publicity pertaining to not be used in advertising or publicity pertaining to distribution
distribution of the software without specific, written prior permission. of the software without specific, written prior permission.
Sun Microsystems, Inc. and FUJITSU LIMITED makes no representations about FUJITSU LIMITED makes no representations about the suitability of
the suitability of this software for any purpose. this software for any purpose.
It is provided "as is" without express or implied warranty. It is provided "as is" without express or implied warranty.
Sun Microsystems Inc. AND FUJITSU LIMITED DISCLAIMS ALL WARRANTIES WITH FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
AND FITNESS, IN NO EVENT SHALL Sun Microsystems, Inc. AND FUJITSU LIMITED EVENT SHALL FUJITSU LIMITED BE LIABLE FOR ANY SPECIAL, INDIRECT OR
BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc. Author: Hideki Hiura (hhiura@Sun.COM) Sun Microsystems, Inc.
Takashi Fujiwara FUJITSU LIMITED Takashi Fujiwara FUJITSU LIMITED
fujiwara@a80.tech.yk.fujitsu.co.jp fujiwara@a80.tech.yk.fujitsu.co.jp
******************************************************************/ ******************************************************************/
...@@ -37,7 +58,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -37,7 +58,7 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "Ximint.h" #include "Ximint.h"
Public TransportSW _XimTransportRec[] = { Public TransportSW _XimTransportRec[] = {
{ "X", _XimXConf }, /* 1st entry must be X. { "X", _XimXConf }, /* 1st entry must be X.
This will be a fallback */ This will be a fallback */
#ifdef TCPCONN #ifdef TCPCONN
{ "tcp", _XimTransConf }, /* use X transport lib */ { "tcp", _XimTransConf }, /* use X transport lib */
...@@ -55,15 +76,13 @@ Public TransportSW _XimTransportRec[] = { ...@@ -55,15 +76,13 @@ Public TransportSW _XimTransportRec[] = {
}; };
Public Bool Public Bool
_XimConnect(im) _XimConnect(Xim im)
Xim im;
{ {
return im->private.proto.connect(im); return im->private.proto.connect(im);
} }
Public Bool Public Bool
_XimShutdown(im) _XimShutdown(Xim im)
Xim im;
{ {
return im->private.proto.shutdown(im); return im->private.proto.shutdown(im);
} }
...@@ -212,15 +231,8 @@ _XimCallDispatcher( ...@@ -212,15 +231,8 @@ _XimCallDispatcher(
} }
Public int Public int
_XimRead(im, len, buf, buf_size, predicate, arg) _XimRead(Xim im, INT16 *len, XPointer buf, int buf_size,
Xim im; Bool (*predicate)(Xim, INT16, XPointer, XPointer), XPointer arg)
INT16 *len;
XPointer buf;
int buf_size;
Bool (*predicate)(
Xim, INT16, XPointer, XPointer
);
XPointer arg;
{ {
INT16 read_len; INT16 read_len;
int ret_code; int ret_code;
...@@ -252,16 +264,14 @@ _XimRegisterDispatcher( ...@@ -252,16 +264,14 @@ _XimRegisterDispatcher(
} }
Public void Public void
_XimFlush(im) _XimFlush(Xim im)
Xim im;
{ {
im->private.proto.flush(im); im->private.proto.flush(im);
return; return;
} }
Public Bool Public Bool
_XimFilterWaitEvent(im) _XimFilterWaitEvent(Xim im)
Xim im;
{ {
INT16 read_len; INT16 read_len;
CARD32 reply32[BUFSIZE/4]; CARD32 reply32[BUFSIZE/4];
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
#define MB_LEN_MAX 6 #define MB_LEN_MAX 6
#endif #endif
#if !defined(macII) && !defined(Lynx_22) && !defined(X_LOCALE) #if !defined(Lynx_22) && !defined(X_LOCALE)
#define STDCVT #define STDCVT
#endif #endif
......
...@@ -62,7 +62,7 @@ OF THIS SOFTWARE. ...@@ -62,7 +62,7 @@ OF THIS SOFTWARE.
#define KANJI_CODESET 1 #define KANJI_CODESET 1
#define KANA_CODESET 2 #define KANA_CODESET 2
#define USERDEF_CODESET 3 #define USERDEF_CODESET 3
#define MAX_CODESETS #define MAX_CODESETS
#define GR 0x80 /* begins right-side (non-ascii) region */ #define GR 0x80 /* begins right-side (non-ascii) region */
#define GL 0x7f /* ends left-side (ascii) region */ #define GL 0x7f /* ends left-side (ascii) region */
...@@ -123,7 +123,7 @@ euc_mbstowcs( ...@@ -123,7 +123,7 @@ euc_mbstowcs(
const char *inbufptr = *from; const char *inbufptr = *from;
wchar_t *outbufptr = (wchar_t *) *to; wchar_t *outbufptr = (wchar_t *) *to;
CodeSet *codesets = XLC_GENERIC(lcd, codeset_list); CodeSet *codesets = XLC_GENERIC(lcd, codeset_list);
int codeset_num = XLC_GENERIC(lcd, codeset_num); int codeset_num = XLC_GENERIC(lcd, codeset_num);
Ulong wc_shift = XLC_GENERIC(lcd, wc_shift_bits); Ulong wc_shift = XLC_GENERIC(lcd, wc_shift_bits);
...@@ -213,7 +213,7 @@ euc_mbstowcs( ...@@ -213,7 +213,7 @@ euc_mbstowcs(
chrcode <<= (wc_shift * shift_mult); chrcode <<= (wc_shift * shift_mult);
shift_mult--; shift_mult--;
wc_tmp |= chrcode; wc_tmp |= chrcode;
if (--chr_len == 0) { if (--chr_len == 0) {
wc_tmp |= wc_encode; wc_tmp |= wc_encode;
...@@ -438,11 +438,11 @@ euc_mbstocs( ...@@ -438,11 +438,11 @@ euc_mbstocs(
*from_left = tmp_from_left; *from_left = tmp_from_left;
*to = (XPointer) tmp_to; *to = (XPointer) tmp_to;
*to_left = tmp_to_left; *to_left = tmp_to_left;
} }
if (num_args > 0) if (num_args > 0)
*((XlcCharSet *) args[0]) = charset; *((XlcCharSet *) args[0]) = charset;
return unconv_num; return unconv_num;
} }
...@@ -528,7 +528,7 @@ euc_cstombs( ...@@ -528,7 +528,7 @@ euc_cstombs(
if (num_args < 1) if (num_args < 1)
return -1; return -1;
if (!(codeset = GetCodeSetFromCharSet(lcd, (XlcCharSet) args[0]))) if (!(codeset = GetCodeSetFromCharSet(lcd, (XlcCharSet) args[0])))
return -1; return -1;
...@@ -586,10 +586,10 @@ euc_cstowcs( ...@@ -586,10 +586,10 @@ euc_cstowcs(
int length; int length;
Ulong wc_shift_bits = XLC_GENERIC(lcd, wc_shift_bits); Ulong wc_shift_bits = XLC_GENERIC(lcd, wc_shift_bits);
CodeSet codeset; CodeSet codeset;
if (num_args < 1) if (num_args < 1)
return -1; return -1;
if (!(codeset = GetCodeSetFromCharSet(lcd, (XlcCharSet) args[0]))) if (!(codeset = GetCodeSetFromCharSet(lcd, (XlcCharSet) args[0])))
return -1; return -1;
...@@ -602,7 +602,7 @@ euc_cstowcs( ...@@ -602,7 +602,7 @@ euc_cstowcs(
toptr += buf_len; toptr += buf_len;
*to = (XPointer) toptr; *to = (XPointer) toptr;
while (buf_len--) { while (buf_len--) {
wch = (wchar_t) BIT8OFF(*csptr); wch = (wchar_t) BIT8OFF(*csptr);
...@@ -674,7 +674,7 @@ create_conv( ...@@ -674,7 +674,7 @@ create_conv(
conv = (XlcConv) Xmalloc(sizeof(XlcConvRec)); conv = (XlcConv) Xmalloc(sizeof(XlcConvRec));
if (conv == NULL) if (conv == NULL)
return (XlcConv) NULL; return (XlcConv) NULL;
conv->methods = methods; conv->methods = methods;
conv->state = (XPointer) lcd; conv->state = (XPointer) lcd;
return conv; return conv;
...@@ -1068,7 +1068,7 @@ euc_wcstocts( ...@@ -1068,7 +1068,7 @@ euc_wcstocts(
} }
} while (length); } while (length);
} /* end for */ } /* end for */
...@@ -1327,7 +1327,7 @@ euc_mbstocts( ...@@ -1327,7 +1327,7 @@ euc_mbstocts(
unconv_num++; unconv_num++;
break; break;
} }
if (ctptr) { if (ctptr) {
strcpy(ctptr, ctdptr[cs_num]->ct_encoding); strcpy(ctptr, ctdptr[cs_num]->ct_encoding);
ctptr += ctdptr[cs_num]->ct_encoding_len; ctptr += ctdptr[cs_num]->ct_encoding_len;
...@@ -1347,7 +1347,7 @@ euc_mbstocts( ...@@ -1347,7 +1347,7 @@ euc_mbstocts(
do { do {
*ctptr++ = charset == ct_state.GR_charset ? *ctptr++ = charset == ct_state.GR_charset ?
BIT8ON(*inbufptr++) : BIT8OFF(*inbufptr++); BIT8ON(*inbufptr++) : BIT8OFF(*inbufptr++);
} while (--clen); } while (--clen);
} }
*to = (XPointer)ctptr; *to = (XPointer)ctptr;
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
#include "XlcGeneric.h" #include "XlcGeneric.h"
#include <stdio.h> #include <stdio.h>
#if !defined(macII) && !defined(X_LOCALE) #if !defined(X_LOCALE)
#define STDCVT #define STDCVT
#endif #endif
...@@ -220,7 +220,7 @@ mbstocs( ...@@ -220,7 +220,7 @@ mbstocs(
if (num_args > 0) if (num_args > 0)
*((XlcCharSet *) args[0]) = charset; *((XlcCharSet *) args[0]) = charset;
return unconv_num; return unconv_num;
} }
...@@ -372,7 +372,7 @@ cstombs( ...@@ -372,7 +372,7 @@ cstombs(
if (num_args < 1) if (num_args < 1)
return -1; return -1;
charset = (XlcCharSet) args[0]; charset = (XlcCharSet) args[0];
codeset = GetCodeSetFromCharSet(state->lcd, charset); codeset = GetCodeSetFromCharSet(state->lcd, charset);
...@@ -418,7 +418,7 @@ cstombs( ...@@ -418,7 +418,7 @@ cstombs(
buf_len /= codeset->length + encoding_len; buf_len /= codeset->length + encoding_len;
if (csstr_len < buf_len) if (csstr_len < buf_len)
buf_len = csstr_len; buf_len = csstr_len;
cvt_length += buf_len * (encoding_len + codeset->length); cvt_length += buf_len * (encoding_len + codeset->length);
if (bufptr) { if (bufptr) {
while (buf_len--) { while (buf_len--) {
...@@ -478,7 +478,7 @@ cstowcs( ...@@ -478,7 +478,7 @@ cstowcs(
if (num_args < 1) if (num_args < 1)
return -1; return -1;
codeset = GetCodeSetFromCharSet(lcd, (XlcCharSet) args[0]); codeset = GetCodeSetFromCharSet(lcd, (XlcCharSet) args[0]);
if (codeset == NULL) if (codeset == NULL)
return -1; return -1;
...@@ -487,7 +487,7 @@ cstowcs( ...@@ -487,7 +487,7 @@ cstowcs(
csstr_len /= length; csstr_len /= length;
if (csstr_len < buf_len) if (csstr_len < buf_len)
buf_len = csstr_len; buf_len = csstr_len;
code_mask = ~XLC_GENERIC(lcd, wc_encode_mask); code_mask = ~XLC_GENERIC(lcd, wc_encode_mask);
wc_encoding = codeset->wc_encoding; wc_encoding = codeset->wc_encoding;
wc_shift_bits = XLC_GENERIC(lcd, wc_shift_bits); wc_shift_bits = XLC_GENERIC(lcd, wc_shift_bits);
...@@ -537,7 +537,7 @@ create_conv( ...@@ -537,7 +537,7 @@ create_conv(
conv = (XlcConv) Xmalloc(sizeof(XlcConvRec)); conv = (XlcConv) Xmalloc(sizeof(XlcConvRec));
if (conv == NULL) if (conv == NULL)
return (XlcConv) NULL; return (XlcConv) NULL;
conv->methods = (XlcConvMethods) Xmalloc(sizeof(XlcConvMethodsRec)); conv->methods = (XlcConvMethods) Xmalloc(sizeof(XlcConvMethodsRec));
if (conv->methods == NULL) if (conv->methods == NULL)
goto err; goto err;
...@@ -549,11 +549,11 @@ create_conv( ...@@ -549,11 +549,11 @@ create_conv(
if (conv->state == NULL) if (conv->state == NULL)
goto err; goto err;
bzero((char *) conv->state, sizeof(StateRec)); bzero((char *) conv->state, sizeof(StateRec));
state = (State) conv->state; state = (State) conv->state;
state->lcd = lcd; state->lcd = lcd;
init_state(conv); init_state(conv);
return conv; return conv;
err: err:
...@@ -760,7 +760,7 @@ stdc_wcstocs( ...@@ -760,7 +760,7 @@ stdc_wcstocs(
length = 1; length = 1;
*tmp = '\0'; *tmp = '\0';
} }
if (length < 0) if (length < 0)
break; break;
...@@ -786,7 +786,7 @@ stdc_wcstocs( ...@@ -786,7 +786,7 @@ stdc_wcstocs(
if (num_args > 0) if (num_args > 0)
*((XlcCharSet *) args[0]) = charset; *((XlcCharSet *) args[0]) = charset;
return unconv_num; return unconv_num;
} }
...@@ -808,7 +808,7 @@ stdc_cstowcs( ...@@ -808,7 +808,7 @@ stdc_cstowcs(
DefineLocalBuf; DefineLocalBuf;
XPointer buf, save_buf; XPointer buf, save_buf;
int length, left, ret; int length, left, ret;
left = length = *to_left * XLC_PUBLIC(lcd, mb_cur_max); left = length = *to_left * XLC_PUBLIC(lcd, mb_cur_max);
buf = save_buf = (XPointer) AllocLocalBuf(length); buf = save_buf = (XPointer) AllocLocalBuf(length);
if (buf == NULL) if (buf == NULL)
...@@ -817,7 +817,7 @@ stdc_cstowcs( ...@@ -817,7 +817,7 @@ stdc_cstowcs(
ret = cstombs(conv, from, from_left, &buf, &left, args, num_args); ret = cstombs(conv, from, from_left, &buf, &left, args, num_args);
if (ret < 0) if (ret < 0)
goto err; goto err;
buf = save_buf; buf = save_buf;
length -= left; length -= left;
if (stdc_mbstowcs(conv, &buf, &length, to, to_left, args, num_args) < 0) if (stdc_mbstowcs(conv, &buf, &length, to, to_left, args, num_args) < 0)
......
...@@ -154,7 +154,7 @@ sjis_mbstowcs( ...@@ -154,7 +154,7 @@ sjis_mbstowcs(
wchar_t *outbufptr = (wchar_t *) *to; wchar_t *outbufptr = (wchar_t *) *to;
wchar_t *outbuf_base = outbufptr; wchar_t *outbuf_base = outbufptr;
CodeSet *codesets = XLC_GENERIC(lcd, codeset_list); CodeSet *codesets = XLC_GENERIC(lcd, codeset_list);
int codeset_num = XLC_GENERIC(lcd, codeset_num); int codeset_num = XLC_GENERIC(lcd, codeset_num);
Ulong wc_shift = XLC_GENERIC(lcd, wc_shift_bits); Ulong wc_shift = XLC_GENERIC(lcd, wc_shift_bits);
...@@ -321,7 +321,7 @@ sjis_wcstombs( ...@@ -321,7 +321,7 @@ sjis_wcstombs(
} }
*outbufptr++ = (char)tmp; *outbufptr++ = (char)tmp;
} while (length); } while (length);
} /* end for */ } /* end for */
...@@ -390,7 +390,7 @@ wc_codeset( ...@@ -390,7 +390,7 @@ wc_codeset(
return( codesets[0] ); return( codesets[0] );
#endif #endif
} }
static int static int
sjis_mbtocs( sjis_mbtocs(
...@@ -419,7 +419,7 @@ sjis_mbtocs( ...@@ -419,7 +419,7 @@ sjis_mbtocs(
if (*from_left >= char_size && *to_left >= char_size) { if (*from_left >= char_size && *to_left >= char_size) {
*dst++ = *src++; *dst++ = *src++;
*dst++ = *src++; *dst++ = *src++;
if (!VALID_MULTIBYTE((Uchar) *(src-1))) /* check 2nd byte */ if (!VALID_MULTIBYTE((Uchar) *(src-1))) /* check 2nd byte */
unconv_num++; unconv_num++;
sjis_to_jis((Uchar *)(dst-2), (Uchar *)(dst-1)); sjis_to_jis((Uchar *)(dst-2), (Uchar *)(dst-1));
...@@ -431,10 +431,10 @@ sjis_mbtocs( ...@@ -431,10 +431,10 @@ sjis_mbtocs(
return -1; return -1;
charset = *CS3->charset_list; charset = *CS3->charset_list;
char_size = charset->char_size; char_size = charset->char_size;
if (*from_left >= char_size && *to_left >= char_size) { if (*from_left >= char_size && *to_left >= char_size) {
*dst++ = *src++; *dst++ = *src++;
*dst++ = *src++; *dst++ = *src++;
if (!VALID_MULTIBYTE((Uchar) *(src-1))) /* check 2nd byte */ if (!VALID_MULTIBYTE((Uchar) *(src-1))) /* check 2nd byte */
unconv_num++; unconv_num++;
sjis_to_jis((Uchar *)(dst-2), (Uchar *)(dst-1)); sjis_to_jis((Uchar *)(dst-2), (Uchar *)(dst-1));
...@@ -528,11 +528,11 @@ sjis_mbstocs( ...@@ -528,11 +528,11 @@ sjis_mbstocs(
*from_left = tmp_from_left; *from_left = tmp_from_left;
*to = (XPointer) tmp_to; *to = (XPointer) tmp_to;
*to_left = tmp_to_left; *to_left = tmp_to_left;
} }
if (num_args > 0) if (num_args > 0)
*((XlcCharSet *) args[0]) = charset; *((XlcCharSet *) args[0]) = charset;
return unconv_num; return unconv_num;
} }
...@@ -660,7 +660,7 @@ sjis_cstombs( ...@@ -660,7 +660,7 @@ sjis_cstombs(
if (num_args < 1) if (num_args < 1)
return -1; return -1;
if (!(codeset = GetCodeSetFromCharSet(lcd, (XlcCharSet) args[0]))) if (!(codeset = GetCodeSetFromCharSet(lcd, (XlcCharSet) args[0])))
return -1; return -1;
...@@ -668,7 +668,7 @@ sjis_cstombs( ...@@ -668,7 +668,7 @@ sjis_cstombs(
buf_len /= codeset->length; buf_len /= codeset->length;
if (csstr_len < buf_len) if (csstr_len < buf_len)
buf_len = csstr_len; buf_len = csstr_len;
cvt_length += buf_len * codeset->length; cvt_length += buf_len * codeset->length;
if (bufptr) { if (bufptr) {
...@@ -962,7 +962,7 @@ sjis_mbstocts( ...@@ -962,7 +962,7 @@ sjis_mbstocts(
unconv_num++; unconv_num++;
break; break;
} }
if (ctptr) { if (ctptr) {
strcpy(ctptr, ctdptr[cs_num]->ct_encoding); strcpy(ctptr, ctdptr[cs_num]->ct_encoding);
ctptr += ctdptr[cs_num]->ct_encoding_len; ctptr += ctdptr[cs_num]->ct_encoding_len;
...@@ -972,7 +972,7 @@ sjis_mbstocts( ...@@ -972,7 +972,7 @@ sjis_mbstocts(
clen = charset->length; clen = charset->length;
do { do {
*ctptr++ = *inbufptr++; *ctptr++ = *inbufptr++;
} while (--clen); } while (--clen);
if (charset->length >= 2) { if (charset->length >= 2) {
sjis_to_jis((Uchar *)(ctptr-2), (Uchar *)(ctptr-1)); sjis_to_jis((Uchar *)(ctptr-2), (Uchar *)(ctptr-1));
...@@ -1118,7 +1118,7 @@ sjis_wcstocts( ...@@ -1118,7 +1118,7 @@ sjis_wcstocts(
} }
*ctptr++ = (char)tmp; *ctptr++ = (char)tmp;
} }
} while (length); } while (length);
} /* end for */ } /* end for */
...@@ -1297,7 +1297,7 @@ sjis_ctstowcs( ...@@ -1297,7 +1297,7 @@ sjis_ctstowcs(
if (*from_left > *to_left) if (*from_left > *to_left)
*from_left = *to_left; *from_left = *to_left;
for (length = ctdata[Ascii].length; *from_left > 0; (*from_left) -= length ) for (length = ctdata[Ascii].length; *from_left > 0; (*from_left) -= length )
{ {
ct_type = CT_STD; ct_type = CT_STD;
...@@ -1434,7 +1434,7 @@ create_conv( ...@@ -1434,7 +1434,7 @@ create_conv(
conv = (XlcConv) Xmalloc(sizeof(XlcConvRec)); conv = (XlcConv) Xmalloc(sizeof(XlcConvRec));
if (conv == NULL) if (conv == NULL)
return (XlcConv) NULL; return (XlcConv) NULL;
conv->methods = methods; conv->methods = methods;
conv->state = (XPointer) lcd; conv->state = (XPointer) lcd;
return conv; return conv;
......
/* $TOG: $ */
/****************************************************************** /******************************************************************
Copyright 1993 by SunSoft, Inc. Copyright 1993 by SunSoft, Inc.
...@@ -50,13 +49,21 @@ _XlcUtf8Loader( ...@@ -50,13 +49,21 @@ _XlcUtf8Loader(
return lcd; return lcd;
/* The official IANA name for UTF-8 is "UTF-8" in upper case with a dash. */ /* The official IANA name for UTF-8 is "UTF-8" in upper case with a dash. */
if (!XLC_PUBLIC_PART(lcd)->codeset || if (!XLC_PUBLIC_PART(lcd)->codeset) {
(_XlcCompareISOLatin1(XLC_PUBLIC_PART(lcd)->codeset, "UTF-8"))) { _XlcDestroyLC(lcd);
return (XLCd) NULL;
}
else if (!_XlcCompareISOLatin1(XLC_PUBLIC_PART(lcd)->codeset, "UTF-8")) {
_XlcAddUtf8LocaleConverters(lcd);
}
else if (!_XlcCompareISOLatin1(XLC_PUBLIC_PART(lcd)->codeset, "GB18030")) {
_XlcAddGB18030LocaleConverters(lcd);
}
else {
_XlcDestroyLC(lcd); _XlcDestroyLC(lcd);
return (XLCd) NULL; return (XLCd) NULL;
} }
_XlcAddUtf8LocaleConverters(lcd);
_XlcAddUtf8Converters(lcd); _XlcAddUtf8Converters(lcd);
return lcd; return lcd;
......
...@@ -108,7 +108,7 @@ draw_vertical( ...@@ -108,7 +108,7 @@ draw_vertical(
int direction = 0; int direction = 0;
int font_ascent_return = 0, font_descent_return = 0; int font_ascent_return = 0, font_descent_return = 0;
int i; int i;
XCharStruct overall; XCharStruct overall;
wy = y; wy = y;
if (is_xchar2b) { if (is_xchar2b) {
...@@ -190,7 +190,7 @@ DrawStringWithFontSet( ...@@ -190,7 +190,7 @@ DrawStringWithFontSet(
* If it was, use that font. If it was not set, then use the * If it was, use that font. If it was not set, then use the
* font defined by font_set->font_data[0] (which is what * font defined by font_set->font_data[0] (which is what
* _XomGetFontDataFromFontSet() always seems to return for * _XomGetFontDataFromFontSet() always seems to return for
* non-VW text). Note that given the new algorithm in * non-VW text). Note that given the new algorithm in
* parse_fontname() and parse_fontdata(), fs->font will * parse_fontname() and parse_fontdata(), fs->font will
* *always* contain good data. We should probably remove * *always* contain good data. We should probably remove
* the check for "fd->font", but we won't :-) -- jjw/pma (HP) * the check for "fd->font", but we won't :-) -- jjw/pma (HP)
...@@ -305,7 +305,7 @@ _XomGenericDrawString( ...@@ -305,7 +305,7 @@ _XomGenericDrawString(
conv = _XomInitConverter(oc, type); conv = _XomInitConverter(oc, type);
if (conv == NULL) if (conv == NULL)
return -1; return -1;
args[0] = (XPointer) &font; args[0] = (XPointer) &font;
args[1] = (XPointer) &is_xchar2b; args[1] = (XPointer) &is_xchar2b;
args[2] = (XPointer) &fs; args[2] = (XPointer) &fs;
......
...@@ -257,7 +257,7 @@ _XomGenericTextEscapement( ...@@ -257,7 +257,7 @@ _XomGenericTextEscapement(
conv = _XomInitConverter(oc, type); conv = _XomInitConverter(oc, type);
if (conv == NULL) if (conv == NULL)
return escapement; return escapement;
args[0] = (XPointer) &font; args[0] = (XPointer) &font;
args[1] = (XPointer) &is_xchar2b; args[1] = (XPointer) &is_xchar2b;
args[2] = (XPointer) &font_set; args[2] = (XPointer) &font_set;
......
...@@ -57,7 +57,7 @@ _XomGenericTextPerCharExtents( ...@@ -57,7 +57,7 @@ _XomGenericTextPerCharExtents(
conv = _XomInitConverter(oc, type); conv = _XomInitConverter(oc, type);
if (conv == NULL) if (conv == NULL)
return 0; return 0;
bzero((char *) &overall, sizeof(XCharStruct)); bzero((char *) &overall, sizeof(XCharStruct));
logical_ascent = logical_descent = require_num = *num_chars = 0; logical_ascent = logical_descent = require_num = *num_chars = 0;
......
...@@ -118,7 +118,7 @@ _XomGetFontDataFromFontSet( ...@@ -118,7 +118,7 @@ _XomGetFontDataFromFontSet(
unsigned char *str, unsigned char *str,
int len, int len,
int *len_ret, int *len_ret,
int is2b, int is2b,
int type) /* VMAP , VROTATE , else */ int type) /* VMAP , VROTATE , else */
{ {
unsigned long value; unsigned long value;
...@@ -126,7 +126,7 @@ _XomGetFontDataFromFontSet( ...@@ -126,7 +126,7 @@ _XomGetFontDataFromFontSet(
FontData fontdata; FontData fontdata;
unsigned char *c; unsigned char *c;
int vfont_type; int vfont_type;
c = str; c = str;
hit = -1; hit = -1;
if(type == VMAP){ if(type == VMAP){
...@@ -162,7 +162,7 @@ _XomGetFontDataFromFontSet( ...@@ -162,7 +162,7 @@ _XomGetFontDataFromFontSet(
} else { } else {
value = (unsigned long)*c; value = (unsigned long)*c;
} }
/* ### NOTE: This routine DOES NOT WORK! /* ### NOTE: This routine DOES NOT WORK!
* ### We can work around the problem in the calling routine, * ### We can work around the problem in the calling routine,
* ### but we really need to understand this better. As it * ### but we really need to understand this better. As it
...@@ -289,7 +289,7 @@ load_font( ...@@ -289,7 +289,7 @@ load_font(
oc->core.font_info.font_name_list[font_set->id]); oc->core.font_info.font_name_list[font_set->id]);
if (font_set->font == NULL) if (font_set->font == NULL)
return False; return False;
oc->core.font_info.font_struct_list[font_set->id] = font_set->font; oc->core.font_info.font_struct_list[font_set->id] = font_set->font;
XFreeFontInfo(NULL, font_set->info, 1); XFreeFontInfo(NULL, font_set->info, 1);
font_set->info = NULL; font_set->info = NULL;
...@@ -365,7 +365,7 @@ _XomInitConverter( ...@@ -365,7 +365,7 @@ _XomInitConverter(
{ {
XOCGenericPart *gen = XOC_GENERIC(oc); XOCGenericPart *gen = XOC_GENERIC(oc);
XlcConv *convp; XlcConv *convp;
char *conv_type; const char *conv_type;
XlcConv conv; XlcConv conv;
XLCd lcd; XLCd lcd;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment