XawImP.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: XawImP.h,v 1.4 95/06/06 20:50:30 kaleb Exp $ */
  2. /*
  3.  * Copyright 1991 by OMRON Corporation
  4.  *
  5.  * Permission to use, copy, modify, distribute, and sell this software and its
  6.  * documentation for any purpose is hereby granted without fee, provided that
  7.  * the above copyright notice appear in all copies and that both that
  8.  * copyright notice and this permission notice appear in supporting
  9.  * documentation, and that the name of OMRON not be used in advertising or
  10.  * publicity pertaining to distribution of the software without specific,
  11.  * written prior permission.  OMRON makes no representations about the
  12.  * suitability of this software for any purpose.  It is provided "as is"
  13.  * without express or implied warranty.
  14.  *
  15.  * OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17.  * OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ACTION,
  20.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21.  * SOFTWARE. 
  22.  *
  23.  * Author: Seiji Kuwari OMRON Corporation
  24.  * kuwa@omron.co.jp
  25.  * kuwa%omron.co.jp@uunet.uu.net
  26.  */
  27. /*
  28. Copyright (c) 1994  X Consortium
  29. Permission is hereby granted, free of charge, to any person obtaining a copy
  30. of this software and associated documentation files (the "Software"), to deal
  31. in the Software without restriction, including without limitation the rights
  32. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  33. copies of the Software, and to permit persons to whom the Software is
  34. furnished to do so, subject to the following conditions:
  35. The above copyright notice and this permission notice shall be included in
  36. all copies or substantial portions of the Software.
  37. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  38. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  39. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  40. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  41. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  42. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  43. Except as contained in this notice, the name of the X Consortium shall not be
  44. used in advertising or otherwise to promote the sale, use or other dealings
  45. in this Software without prior written authorization from the X Consortium.
  46. */
  47. #ifndef _XawImP_h
  48. #define _XawImP_h
  49. #define XtNinputMethod "inputMethod"
  50. #define XtCInputMethod "InputMethod"
  51. #define XtNpreeditType "preeditType"
  52. #define XtCPreeditType "PreeditType"
  53. #define XtNopenIm "openIm"
  54. #define XtCOpenIm "OpenIm"
  55. #define XtNsharedIc "sharedIc"
  56. #define XtCSharedIc "SharedIc"
  57. #include <X11/Xaw3d/Text.h>
  58. #define CIICFocus (1 << 0)
  59. #define CIFontSet (1 << 1)
  60. #define CIFg (1 << 2)
  61. #define CIBg (1 << 3)
  62. #define CIBgPixmap (1 << 4)
  63. #define CICursorP (1 << 5)
  64. #define CILineS (1 << 6)
  65. typedef struct _XawImPart
  66. {
  67.     XIM xim;
  68.     XrmResourceList resources;
  69.     Cardinal num_resources;
  70.     Boolean open_im;
  71.     Boolean initialized;
  72.     Dimension area_height;
  73.     String input_method;
  74.     String preedit_type;
  75. } XawImPart;
  76. typedef struct _XawIcTablePart
  77. {
  78.     Widget widget;
  79.     XIC xic;
  80.     XIMStyle input_style;
  81.     unsigned long flg;
  82.     unsigned long prev_flg;
  83.     Boolean ic_focused;
  84.     XFontSet font_set;
  85.     Pixel foreground;
  86.     Pixel background;
  87.     Pixmap bg_pixmap;
  88.     XawTextPosition cursor_position;
  89.     unsigned long line_spacing;
  90.     Boolean openic_error;
  91.     struct _XawIcTablePart *next;
  92. } XawIcTablePart, *XawIcTableList;
  93. typedef struct _XawIcPart
  94. {
  95.     XIMStyle input_style;
  96.     Boolean shared_ic;
  97.     XawIcTableList shared_ic_table;
  98.     XawIcTableList current_ic_table;
  99.     XawIcTableList ic_table;
  100. } XawIcPart;
  101. typedef struct _contextDataRec
  102. {
  103.     Widget parent;
  104.     Widget ve;
  105. } contextDataRec;
  106. typedef struct _contextErrDataRec
  107. {
  108.     Widget widget;
  109.     XIM xim;
  110. } contextErrDataRec;
  111. void _XawImResizeVendorShell( 
  112. #if NeedFunctionPrototypes
  113.     Widget /* w */
  114. #endif
  115. );
  116. Dimension _XawImGetShellHeight( 
  117. #if NeedFunctionPrototypes
  118.     Widget /* w */
  119. #endif
  120. );
  121. void _XawImRealize( 
  122. #if NeedFunctionPrototypes
  123.     Widget /* w */
  124. #endif
  125. );
  126. void _XawImInitialize( 
  127. #if NeedFunctionPrototypes
  128.     Widget, /* w */
  129.     Widget  /* ext */
  130. #endif
  131. );
  132. void _XawImReconnect( 
  133. #if NeedFunctionPrototypes
  134.     Widget  /* w */
  135. #endif
  136. );
  137. void _XawImRegister( 
  138. #if NeedFunctionPrototypes
  139.     Widget  /* w */
  140. #endif
  141. );
  142. void _XawImUnregister( 
  143. #if NeedFunctionPrototypes
  144.     Widget  /* w */
  145. #endif
  146. );
  147. void _XawImSetValues( 
  148. #if NeedFunctionPrototypes
  149.     Widget,  /* w */
  150.     ArgList, /* args */
  151.     Cardinal /* num_args */
  152. #endif
  153. );
  154. /* DON'T USE THIS FUNCTION -- it's going away in the next release */
  155. void _XawImVASetValues( 
  156. #if NeedVarargsPrototypes
  157.     Widget,  /* w */
  158.     ... 
  159. #endif
  160. );
  161. void _XawImSetFocusValues( 
  162. #if NeedFunctionPrototypes
  163.     Widget,  /* w */
  164.     ArgList, /* args */
  165.     Cardinal /* num_args */
  166. #endif
  167. );
  168. /* DON'T USE THIS FUNCTION -- it's going away in the next release */
  169. void _XawImVASetFocusValues( 
  170. #if NeedVarargsPrototypes
  171.     Widget,  /* w */
  172.     ... 
  173. #endif
  174. );
  175. void _XawImUnsetFocus( 
  176. #if NeedFunctionPrototypes
  177.     Widget  /* w */
  178. #endif
  179. );
  180. int  _XawImWcLookupString( 
  181. #if NeedFunctionPrototypes
  182.     Widget,   /* w */
  183.     XKeyPressedEvent*, /* event */
  184.     wchar_t*, /* buffer_return */
  185.     int,      /* bytes_buffer */
  186.     KeySym*,  /* keysym_return */
  187.     Status*   /* status return */
  188. #endif
  189. );
  190. int  _XawImGetImAreaHeight( 
  191. #if NeedFunctionPrototypes
  192.     Widget  /* w */
  193. #endif
  194. );
  195. void _XawImCallVendorShellExtResize( 
  196. #if NeedFunctionPrototypes
  197.     Widget  /* w */
  198. #endif
  199. );
  200. void _XawImDestroy( 
  201. #if NeedFunctionPrototypes
  202.     Widget,  /* w */
  203.     Widget   /* ext */
  204. #endif
  205. );
  206. #endif /* _XawImP_h */