/****************************************************************** Copyright 1994, 1995 by Sun Microsystems, Inc. Copyright 1993, 1994 by Hewlett-Packard Company Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Sun Microsystems, Inc. and Hewlett-Packard not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Sun Microsystems, Inc. and Hewlett-Packard make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF 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 PERFORMANCE OF THIS SOFTWARE. Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. ******************************************************************/ #include #include "IMdkit.h" #include "Xi18n.h" #include "IC.h" #include static IC *ic_list = (IC *) NULL; static IC *free_list = (IC *) NULL; static IC *NewIC () { static CARD16 icid = 0; IC *rec; if (free_list != NULL) { rec = free_list; free_list = free_list->next; } else { rec = (IC *) malloc (sizeof (IC)); } memset (rec, 0, sizeof (IC)); rec->id = ++icid; rec->next = ic_list; ic_list = rec; return rec; } IC *FindIC (CARD16 icid) { IC *rec = ic_list; while (rec != NULL) { if (rec->id == icid) return rec; rec = rec->next; } return NULL; } static void DeleteIC (CARD16 icid) { IC *rec, *last; last = NULL; for (rec = ic_list; rec != NULL; last = rec, rec = rec->next) { if (rec->id == icid) { if (last != NULL) last->next = rec->next; else ic_list = rec->next; rec->next = free_list; free_list = rec; //free resource if (rec->resource_name) free (rec->resource_name); if (rec->resource_class) free (rec->resource_class); return; } } return; } static int Is (char *attr, XICAttribute * attr_list) { return !strcmp (attr, attr_list->name); } static void StoreIC (IC * rec, IMChangeICStruct * call_data) { XICAttribute *ic_attr = call_data->ic_attr; XICAttribute *pre_attr = call_data->preedit_attr; XICAttribute *sts_attr = call_data->status_attr; register int i; for (i = 0; i < (int) call_data->ic_attr_num; i++, ic_attr++) { if (Is (XNInputStyle, ic_attr)) rec->input_style = *(INT32 *) ic_attr->value; else if (Is (XNClientWindow, ic_attr)) { rec->client_win = *(Window *) ic_attr->value; } else if (Is (XNFocusWindow, ic_attr)) { rec->focus_win = *(Window *) ic_attr->value; } } for (i = 0; i < (int) call_data->preedit_attr_num; i++, pre_attr++) { if (Is (XNArea, pre_attr)) { rec->pre_attr.area = *(XRectangle *) pre_attr->value; } else if (Is (XNAreaNeeded, pre_attr)) { rec->pre_attr.area_needed = *(XRectangle *) pre_attr->value; } else if (Is (XNSpotLocation, pre_attr)) { rec->pre_attr.spot_location = *(XPoint *) pre_attr->value; } else if (Is (XNColormap, pre_attr)) rec->pre_attr.cmap = *(Colormap *) pre_attr->value; else if (Is (XNStdColormap, pre_attr)) rec->pre_attr.cmap = *(Colormap *) pre_attr->value; else if (Is (XNForeground, pre_attr)) { rec->pre_attr.foreground = *(CARD32 *) pre_attr->value; } else if (Is (XNBackground, pre_attr)) { rec->pre_attr.background = *(CARD32 *) pre_attr->value; } else if (Is (XNBackgroundPixmap, pre_attr)) rec->pre_attr.bg_pixmap = *(Pixmap *) pre_attr->value; else if (Is (XNFontSet, pre_attr)) { int str_length = strlen ((char *) pre_attr->value); if (rec->pre_attr.base_font != NULL) { if (Is (rec->pre_attr.base_font, pre_attr)) continue; XFree (rec->pre_attr.base_font); } rec->pre_attr.base_font = (char *) malloc (str_length + 1); strcpy (rec->pre_attr.base_font, (char *) pre_attr->value); } else if (Is (XNLineSpace, pre_attr)) rec->pre_attr.line_space = *(CARD32 *) pre_attr->value; else if (Is (XNCursor, pre_attr)) rec->pre_attr.cursor = *(Cursor *) pre_attr->value; } for (i = 0; i < (int) call_data->status_attr_num; i++, sts_attr++) { if (Is (XNArea, sts_attr)) { rec->sts_attr.area = *(XRectangle *) sts_attr->value; } else if (Is (XNAreaNeeded, sts_attr)) { rec->sts_attr.area_needed = *(XRectangle *) sts_attr->value; } else if (Is (XNColormap, sts_attr)) { rec->sts_attr.cmap = *(Colormap *) sts_attr->value; } else if (Is (XNStdColormap, sts_attr)) rec->sts_attr.cmap = *(Colormap *) sts_attr->value; else if (Is (XNForeground, sts_attr)) { rec->sts_attr.foreground = *(CARD32 *) sts_attr->value; } else if (Is (XNBackground, sts_attr)) { rec->sts_attr.background = *(CARD32 *) sts_attr->value; } else if (Is (XNBackgroundPixmap, sts_attr)) rec->sts_attr.bg_pixmap = *(Pixmap *) sts_attr->value; else if (Is (XNFontSet, sts_attr)) { int str_length = strlen ((char *) sts_attr->value); if (rec->sts_attr.base_font != NULL) { if (Is (rec->sts_attr.base_font, sts_attr)) continue; XFree (rec->sts_attr.base_font); } rec->sts_attr.base_font = (char *) malloc (str_length + 1); strcpy (rec->sts_attr.base_font, (char *) sts_attr->value); } else if (Is (XNLineSpace, sts_attr)) rec->sts_attr.line_space = *(CARD32 *) sts_attr->value; else if (Is (XNCursor, sts_attr)) rec->sts_attr.cursor = *(Cursor *) sts_attr->value; } } void CreateIC (IMChangeICStruct * call_data) { IC *rec; rec = NewIC (); if (rec == NULL) return; StoreIC (rec, call_data); call_data->icid = rec->id; return; } void DestroyIC (IMChangeICStruct * call_data) { DeleteIC (call_data->icid); return; } void SetIC (IMChangeICStruct * call_data) { IC *rec = FindIC (call_data->icid); if (rec == NULL) return; StoreIC (rec, call_data); return; } void GetIC (IMChangeICStruct * call_data) { XICAttribute *ic_attr = call_data->ic_attr; XICAttribute *pre_attr = call_data->preedit_attr; XICAttribute *sts_attr = call_data->status_attr; register int i; IC *rec = FindIC (call_data->icid); if (rec == NULL) return; for (i = 0; i < (int) call_data->ic_attr_num; i++, ic_attr++) { if (Is (XNFilterEvents, ic_attr)) { ic_attr->value = (void *) malloc (sizeof (CARD32)); *(CARD32 *) ic_attr->value = KeyPressMask | KeyReleaseMask; ic_attr->value_length = sizeof (CARD32); } } /* preedit attributes */ for (i = 0; i < (int) call_data->preedit_attr_num; i++, pre_attr++) { if (Is (XNArea, pre_attr)) { pre_attr->value = (void *) malloc (sizeof (XRectangle)); *(XRectangle *) pre_attr->value = rec->pre_attr.area; pre_attr->value_length = sizeof (XRectangle); } else if (Is (XNAreaNeeded, pre_attr)) { pre_attr->value = (void *) malloc (sizeof (XRectangle)); *(XRectangle *) pre_attr->value = rec->pre_attr.area_needed; pre_attr->value_length = sizeof (XRectangle); } else if (Is (XNSpotLocation, pre_attr)) { pre_attr->value = (void *) malloc (sizeof (XPoint)); *(XPoint *) pre_attr->value = rec->pre_attr.spot_location; pre_attr->value_length = sizeof (XPoint); } else if (Is (XNFontSet, pre_attr)) { CARD16 base_len = (CARD16) strlen (rec->pre_attr.base_font); int total_len = sizeof (CARD16) + (CARD16) base_len; char *p; pre_attr->value = (void *) malloc (total_len); p = (char *) pre_attr->value; memmove (p, &base_len, sizeof (CARD16)); p += sizeof (CARD16); strncpy (p, rec->pre_attr.base_font, base_len); pre_attr->value_length = total_len; } else if (Is (XNForeground, pre_attr)) { pre_attr->value = (void *) malloc (sizeof (long)); *(long *) pre_attr->value = rec->pre_attr.foreground; pre_attr->value_length = sizeof (long); } else if (Is (XNBackground, pre_attr)) { pre_attr->value = (void *) malloc (sizeof (long)); *(long *) pre_attr->value = rec->pre_attr.background; pre_attr->value_length = sizeof (long); } else if (Is (XNLineSpace, pre_attr)) { pre_attr->value = (void *) malloc (sizeof (long)); *(long *) pre_attr->value = 18; pre_attr->value_length = sizeof (long); } } /* status attributes */ for (i = 0; i < (int) call_data->status_attr_num; i++, sts_attr++) { if (Is (XNArea, sts_attr)) { sts_attr->value = (void *) malloc (sizeof (XRectangle)); *(XRectangle *) sts_attr->value = rec->sts_attr.area; sts_attr->value_length = sizeof (XRectangle); } else if (Is (XNAreaNeeded, sts_attr)) { sts_attr->value = (void *) malloc (sizeof (XRectangle)); *(XRectangle *) sts_attr->value = rec->sts_attr.area_needed; sts_attr->value_length = sizeof (XRectangle); } else if (Is (XNFontSet, sts_attr)) { CARD16 base_len = (CARD16) strlen (rec->sts_attr.base_font); int total_len = sizeof (CARD16) + (CARD16) base_len; char *p; sts_attr->value = (void *) malloc (total_len); p = (char *) sts_attr->value; memmove (p, &base_len, sizeof (CARD16)); p += sizeof (CARD16); strncpy (p, rec->sts_attr.base_font, base_len); sts_attr->value_length = total_len; } else if (Is (XNForeground, sts_attr)) { sts_attr->value = (void *) malloc (sizeof (long)); *(long *) sts_attr->value = rec->sts_attr.foreground; sts_attr->value_length = sizeof (long); } else if (Is (XNBackground, sts_attr)) { sts_attr->value = (void *) malloc (sizeof (long)); *(long *) sts_attr->value = rec->sts_attr.background; sts_attr->value_length = sizeof (long); } else if (Is (XNLineSpace, sts_attr)) { sts_attr->value = (void *) malloc (sizeof (long)); *(long *) sts_attr->value = 18; sts_attr->value_length = sizeof (long); } } }