home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / evbl0627.zip / everblue_20010627.zip / x11 / XimintL.h < prev    next >
C/C++ Source or Header  |  1999-11-02  |  3KB  |  79 lines

  1. /* $XConsortium: XimintL.h,v 1.6 94/07/06 14:46:45 kaleb Exp $ */
  2. /******************************************************************
  3.  
  4.           Copyright 1991, 1992, 1993, 1994 by FUJITSU LIMITED
  5.           Copyright 1993 by Digital Equipment Corporation
  6.  
  7. Permission to use, copy, modify, distribute, and sell this software
  8. and its documentation for any purpose is hereby granted without fee,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the name of FUJITSU LIMITED and
  12. Digital Equipment Corporation not be used in advertising or publicity
  13. pertaining to distribution of the software without specific, written
  14. prior permission.  FUJITSU LIMITED and Digital Equipment Corporation
  15. makes no representations about the suitability of this software for
  16. any purpose.  It is provided "as is" without express or implied
  17. warranty.
  18.  
  19. FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION DISCLAIM ALL 
  20. WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED 
  21. WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL 
  22. FUJITSU LIMITED AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR 
  23. ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 
  24. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER 
  25. IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 
  26. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 
  27. THIS SOFTWARE.
  28.  
  29.   Author:    Takashi Fujiwara     FUJITSU LIMITED 
  30.                                      fujiwara@a80.tech.yk.fujitsu.co.jp
  31.   Modifier:  Franky Ling          Digital Equipment Corporation
  32.                               frankyling@hgrd01.enet.dec.com
  33.  
  34. ******************************************************************/
  35.  
  36. #ifndef _XIMINTL_H
  37. #define _XIMINTL_H
  38.  
  39. #define    COMPOSE_FILE    "Compose"
  40.  
  41. /*
  42.  * Data Structure for Local Processing
  43.  */
  44. typedef struct _DefTree {
  45.     struct _DefTree *next;         /* another Key definition */
  46.     struct _DefTree *succession;    /* successive Key Sequence */
  47.                     /* Key definitions */
  48.     unsigned         modifier_mask;
  49.     unsigned         modifier;
  50.     KeySym           keysym;        /* leaf only */
  51.     char            *mb;
  52.     wchar_t         *wc;        /* make from mb */
  53.     KeySym           ks;
  54. } DefTree;
  55.  
  56. typedef struct _XimLocalPrivateRec {
  57.     XIC             current_ic;
  58.     DefTree            *top;
  59.     XlcConv             ctom_conv;
  60.     XlcConv             ctow_conv;
  61. } XimLocalPrivateRec;
  62.  
  63. typedef struct _XicThaiPart {
  64.     int        comp_state;
  65.     KeySym        keysym;
  66.     int        input_mode;
  67. } XicThaiPart;
  68.  
  69. typedef struct _XicLocalPrivateRec {
  70.     long             value_mask;
  71.     DefTree            *context;
  72.     DefTree            *composed;
  73.     XicThaiPart         thai;
  74.  
  75.     XIMResourceList         ic_resources;
  76.     unsigned int         ic_num_resources;
  77. } XicLocalPrivateRec;
  78. #endif /* _XIMINTL_H */
  79.