Xutil.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:20k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* $XConsortium: Xutil.h,v 11.73 91/07/30 16:21:37 rws Exp $ */
  2. /***********************************************************
  3. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  4. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  5.                         All Rights Reserved
  6. Permission to use, copy, modify, and distribute this software and its 
  7. documentation for any purpose and without fee is hereby granted, 
  8. provided that the above copyright notice appear in all copies and that
  9. both that copyright notice and this permission notice appear in 
  10. supporting documentation, and that the names of Digital or MIT not be
  11. used in advertising or publicity pertaining to distribution of the
  12. software without specific, written prior permission.  
  13. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  14. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  15. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  16. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  17. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  18. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  19. SOFTWARE.
  20. ******************************************************************/
  21. #ifndef _XUTIL_H_
  22. #define _XUTIL_H_
  23. /* You must include <X11/Xlib.h> before including this file */
  24. #if defined(MAC_TCL) || defined(MAC_OSX_TK)
  25. #   define Region XRegion
  26. #endif
  27. /* 
  28.  * Bitmask returned by XParseGeometry().  Each bit tells if the corresponding
  29.  * value (x, y, width, height) was found in the parsed string.
  30.  */
  31. #define NoValue 0x0000
  32. #define XValue   0x0001
  33. #define YValue 0x0002
  34. #define WidthValue   0x0004
  35. #define HeightValue   0x0008
  36. #define AllValues  0x000F
  37. #define XNegative  0x0010
  38. #define YNegative  0x0020
  39. /*
  40.  * new version containing base_width, base_height, and win_gravity fields;
  41.  * used with WM_NORMAL_HINTS.
  42.  */
  43. typedef struct {
  44.      long flags; /* marks which fields in this structure are defined */
  45. int x, y; /* obsolete for new window mgrs, but clients */
  46. int width, height; /* should set so old wm's don't mess up */
  47. int min_width, min_height;
  48. int max_width, max_height;
  49.      int width_inc, height_inc;
  50. struct {
  51. int x; /* numerator */
  52. int y; /* denominator */
  53. } min_aspect, max_aspect;
  54. int base_width, base_height; /* added by ICCCM version 1 */
  55. int win_gravity; /* added by ICCCM version 1 */
  56. } XSizeHints;
  57. /*
  58.  * The next block of definitions are for window manager properties that
  59.  * clients and applications use for communication.
  60.  */
  61. /* flags argument in size hints */
  62. #define USPosition (1L << 0) /* user specified x, y */
  63. #define USSize (1L << 1) /* user specified width, height */
  64. #define PPosition (1L << 2) /* program specified position */
  65. #define PSize (1L << 3) /* program specified size */
  66. #define PMinSize (1L << 4) /* program specified minimum size */
  67. #define PMaxSize (1L << 5) /* program specified maximum size */
  68. #define PResizeInc (1L << 6) /* program specified resize increments */
  69. #define PAspect (1L << 7) /* program specified min and max aspect ratios */
  70. #define PBaseSize (1L << 8) /* program specified base for incrementing */
  71. #define PWinGravity (1L << 9) /* program specified window gravity */
  72. /* obsolete */
  73. #define PAllHints (PPosition|PSize|PMinSize|PMaxSize|PResizeInc|PAspect)
  74. typedef struct {
  75. long flags; /* marks which fields in this structure are defined */
  76. Bool input; /* does this application rely on the window manager to
  77. get keyboard input? */
  78. int initial_state; /* see below */
  79. Pixmap icon_pixmap; /* pixmap to be used as icon */
  80. Window icon_window;  /* window to be used as icon */
  81. int icon_x, icon_y;  /* initial position of icon */
  82. Pixmap icon_mask; /* icon mask bitmap */
  83. XID window_group; /* id of related window group */
  84. /* this structure may be extended in the future */
  85. } XWMHints;
  86. /* definition for flags of XWMHints */
  87. #define InputHint  (1L << 0)
  88. #define StateHint  (1L << 1)
  89. #define IconPixmapHint (1L << 2)
  90. #define IconWindowHint (1L << 3)
  91. #define IconPositionHint  (1L << 4)
  92. #define IconMaskHint (1L << 5)
  93. #define WindowGroupHint (1L << 6)
  94. #define AllHints (InputHint|StateHint|IconPixmapHint|IconWindowHint| 
  95. IconPositionHint|IconMaskHint|WindowGroupHint)
  96. /* definitions for initial window state */
  97. #define WithdrawnState 0 /* for windows that are not mapped */
  98. #define NormalState 1 /* most applications want to start this way */
  99. #define IconicState 3 /* application wants to start as an icon */
  100. /*
  101.  * Obsolete states no longer defined by ICCCM
  102.  */
  103. #define DontCareState 0 /* don't know or care */
  104. #define ZoomState 2 /* application wants to start zoomed */
  105. #define InactiveState 4 /* application believes it is seldom used; */
  106. /* some wm's may put it on inactive menu */
  107. /*
  108.  * new structure for manipulating TEXT properties; used with WM_NAME, 
  109.  * WM_ICON_NAME, WM_CLIENT_MACHINE, and WM_COMMAND.
  110.  */
  111. typedef struct {
  112.     unsigned char *value; /* same as Property routines */
  113.     Atom encoding; /* prop type */
  114.     int format; /* prop data format: 8, 16, or 32 */
  115.     unsigned long nitems; /* number of data items in value */
  116. } XTextProperty;
  117. #define XNoMemory -1
  118. #define XLocaleNotSupported -2
  119. #define XConverterNotFound -3
  120. typedef enum {
  121.     XStringStyle, /* STRING */
  122.     XCompoundTextStyle, /* COMPOUND_TEXT */
  123.     XTextStyle, /* text in owner's encoding (current locale)*/
  124.     XStdICCTextStyle /* STRING, else COMPOUND_TEXT */
  125. } XICCEncodingStyle;
  126. typedef struct {
  127. int min_width, min_height;
  128. int max_width, max_height;
  129. int width_inc, height_inc;
  130. } XIconSize;
  131. typedef struct {
  132. char *res_name;
  133. char *res_class;
  134. } XClassHint;
  135. /*
  136.  * These macros are used to give some sugar to the image routines so that
  137.  * naive people are more comfortable with them.
  138.  */
  139. #define XDestroyImage(ximage) 
  140. ((*((ximage)->f.destroy_image))((ximage)))
  141. #define XGetPixel(ximage, x, y) 
  142. ((*((ximage)->f.get_pixel))((ximage), (x), (y)))
  143. #define XPutPixel(ximage, x, y, pixel) 
  144. ((*((ximage)->f.put_pixel))((ximage), (x), (y), (pixel)))
  145. #define XSubImage(ximage, x, y, width, height)  
  146. ((*((ximage)->f.sub_image))((ximage), (x), (y), (width), (height)))
  147. #define XAddPixel(ximage, value) 
  148. ((*((ximage)->f.add_pixel))((ximage), (value)))
  149. /*
  150.  * Compose sequence status structure, used in calling XLookupString.
  151.  */
  152. typedef struct _XComposeStatus {
  153.     XPointer compose_ptr; /* state table pointer */
  154.     int chars_matched; /* match state */
  155. } XComposeStatus;
  156. /*
  157.  * Keysym macros, used on Keysyms to test for classes of symbols
  158.  */
  159. #define IsKeypadKey(keysym) 
  160.   (((unsigned)(keysym) >= XK_KP_Space) && ((unsigned)(keysym) <= XK_KP_Equal))
  161. #define IsCursorKey(keysym) 
  162.   (((unsigned)(keysym) >= XK_Home)     && ((unsigned)(keysym) <  XK_Select))
  163. #define IsPFKey(keysym) 
  164.   (((unsigned)(keysym) >= XK_KP_F1)     && ((unsigned)(keysym) <= XK_KP_F4))
  165. #define IsFunctionKey(keysym) 
  166.   (((unsigned)(keysym) >= XK_F1)       && ((unsigned)(keysym) <= XK_F35))
  167. #define IsMiscFunctionKey(keysym) 
  168.   (((unsigned)(keysym) >= XK_Select)   && ((unsigned)(keysym) <= XK_Break))
  169. #define IsModifierKey(keysym) 
  170.   ((((unsigned)(keysym) >= XK_Shift_L) && ((unsigned)(keysym) <= XK_Hyper_R)) 
  171.    || ((unsigned)(keysym) == XK_Mode_switch) 
  172.    || ((unsigned)(keysym) == XK_Num_Lock))
  173. /*
  174.  * opaque reference to Region data type 
  175.  */
  176. typedef struct _XRegion *Region; 
  177. /* Return values from XRectInRegion() */
  178.  
  179. #define RectangleOut 0
  180. #define RectangleIn  1
  181. #define RectanglePart 2
  182.  
  183. /*
  184.  * Information used by the visual utility routines to find desired visual
  185.  * type from the many visuals a display may support.
  186.  */
  187. typedef struct {
  188.   Visual *visual;
  189.   VisualID visualid;
  190.   int screen;
  191.   int depth;
  192. #if defined(__cplusplus) || defined(c_plusplus)
  193.   int c_class; /* C++ */
  194. #else
  195.   int class;
  196. #endif
  197.   unsigned long red_mask;
  198.   unsigned long green_mask;
  199.   unsigned long blue_mask;
  200.   int colormap_size;
  201.   int bits_per_rgb;
  202. } XVisualInfo;
  203. #define VisualNoMask 0x0
  204. #define VisualIDMask  0x1
  205. #define VisualScreenMask 0x2
  206. #define VisualDepthMask 0x4
  207. #define VisualClassMask 0x8
  208. #define VisualRedMaskMask 0x10
  209. #define VisualGreenMaskMask 0x20
  210. #define VisualBlueMaskMask 0x40
  211. #define VisualColormapSizeMask 0x80
  212. #define VisualBitsPerRGBMask 0x100
  213. #define VisualAllMask 0x1FF
  214. /*
  215.  * This defines a window manager property that clients may use to
  216.  * share standard color maps of type RGB_COLOR_MAP:
  217.  */
  218. typedef struct {
  219. Colormap colormap;
  220. unsigned long red_max;
  221. unsigned long red_mult;
  222. unsigned long green_max;
  223. unsigned long green_mult;
  224. unsigned long blue_max;
  225. unsigned long blue_mult;
  226. unsigned long base_pixel;
  227. VisualID visualid; /* added by ICCCM version 1 */
  228. XID killid; /* added by ICCCM version 1 */
  229. } XStandardColormap;
  230. #define ReleaseByFreeingColormap ((XID) 1L)  /* for killid field above */
  231. /*
  232.  * return codes for XReadBitmapFile and XWriteBitmapFile
  233.  */
  234. #define BitmapSuccess 0
  235. #define BitmapOpenFailed  1
  236. #define BitmapFileInvalid  2
  237. #define BitmapNoMemory 3
  238. /****************************************************************
  239.  *
  240.  * Context Management
  241.  *
  242.  ****************************************************************/
  243. /* Associative lookup table return codes */
  244. #define XCSUCCESS 0 /* No error. */
  245. #define XCNOMEM   1    /* Out of memory */
  246. #define XCNOENT   2    /* No entry in table */
  247. typedef int XContext;
  248. #define XUniqueContext()       ((XContext) XrmUniqueQuark())
  249. #define XStringToContext(string)   ((XContext) XrmStringToQuark(string))
  250. _XFUNCPROTOBEGIN
  251. /* The following declarations are alphabetized. */
  252. extern XClassHint *XAllocClassHint (
  253. #if NeedFunctionPrototypes
  254.     void
  255. #endif
  256. );
  257. extern XIconSize *XAllocIconSize (
  258. #if NeedFunctionPrototypes
  259.     void
  260. #endif
  261. );
  262. extern XSizeHints *XAllocSizeHints (
  263. #if NeedFunctionPrototypes
  264.     void
  265. #endif
  266. );
  267. extern XStandardColormap *XAllocStandardColormap (
  268. #if NeedFunctionPrototypes
  269.     void
  270. #endif
  271. );
  272. extern XWMHints *XAllocWMHints (
  273. #if NeedFunctionPrototypes
  274.     void
  275. #endif
  276. );
  277. extern void XClipBox(
  278. #if NeedFunctionPrototypes
  279.     Region /* r */,
  280.     XRectangle* /* rect_return */
  281. #endif
  282. );
  283. extern Region XCreateRegion(
  284. #if NeedFunctionPrototypes
  285.     void
  286. #endif
  287. );
  288. extern char *XDefaultString(
  289. #if NeedFunctionPrototypes
  290.     void
  291. #endif
  292. );
  293. extern int XDeleteContext(
  294. #if NeedFunctionPrototypes
  295.     Display* /* display */,
  296.     XID /* rid */,
  297.     XContext /* context */
  298. #endif
  299. );
  300. extern void XDestroyRegion(
  301. #if NeedFunctionPrototypes
  302.     Region /* r */
  303. #endif
  304. );
  305. extern void XEmptyRegion(
  306. #if NeedFunctionPrototypes
  307.     Region /* r */
  308. #endif
  309. );
  310. extern void XEqualRegion(
  311. #if NeedFunctionPrototypes
  312.     Region /* r1 */,
  313.     Region /* r2 */
  314. #endif
  315. );
  316. extern int XFindContext(
  317. #if NeedFunctionPrototypes
  318.     Display* /* display */,
  319.     XID /* rid */,
  320.     XContext /* context */,
  321.     XPointer* /* data_return */
  322. #endif
  323. );
  324. extern Status XGetClassHint(
  325. #if NeedFunctionPrototypes
  326.     Display* /* display */,
  327.     Window /* w */,
  328.     XClassHint* /* class_hints_return */
  329. #endif
  330. );
  331. extern Status XGetIconSizes(
  332. #if NeedFunctionPrototypes
  333.     Display* /* display */,
  334.     Window /* w */,
  335.     XIconSize** /* size_list_return */,
  336.     int* /* count_return */
  337. #endif
  338. );
  339. extern Status XGetNormalHints(
  340. #if NeedFunctionPrototypes
  341.     Display* /* display */,
  342.     Window /* w */,
  343.     XSizeHints* /* hints_return */
  344. #endif
  345. );
  346. extern Status XGetRGBColormaps(
  347. #if NeedFunctionPrototypes
  348.     Display* /* display */,
  349.     Window /* w */,
  350.     XStandardColormap** /* stdcmap_return */,
  351.     int* /* count_return */,
  352.     Atom /* property */
  353. #endif
  354. );
  355. extern Status XGetSizeHints(
  356. #if NeedFunctionPrototypes
  357.     Display* /* display */,
  358.     Window /* w */,
  359.     XSizeHints* /* hints_return */,
  360.     Atom /* property */
  361. #endif
  362. );
  363. extern Status XGetStandardColormap(
  364. #if NeedFunctionPrototypes
  365.     Display* /* display */,
  366.     Window /* w */,
  367.     XStandardColormap* /* colormap_return */,
  368.     Atom /* property */     
  369. #endif
  370. );
  371. extern Status XGetTextProperty(
  372. #if NeedFunctionPrototypes
  373.     Display* /* display */,
  374.     Window /* window */,
  375.     XTextProperty* /* text_prop_return */,
  376.     Atom /* property */
  377. #endif
  378. );
  379. extern Status XGetWMClientMachine(
  380. #if NeedFunctionPrototypes
  381.     Display* /* display */,
  382.     Window /* w */,
  383.     XTextProperty* /* text_prop_return */
  384. #endif
  385. );
  386. extern XWMHints *XGetWMHints(
  387. #if NeedFunctionPrototypes
  388.     Display* /* display */,
  389.     Window /* w */       
  390. #endif
  391. );
  392. extern Status XGetWMIconName(
  393. #if NeedFunctionPrototypes
  394.     Display* /* display */,
  395.     Window /* w */,
  396.     XTextProperty* /* text_prop_return */
  397. #endif
  398. );
  399. extern Status XGetWMName(
  400. #if NeedFunctionPrototypes
  401.     Display* /* display */,
  402.     Window /* w */,
  403.     XTextProperty* /* text_prop_return */
  404. #endif
  405. );
  406. extern Status XGetWMNormalHints(
  407. #if NeedFunctionPrototypes
  408.     Display* /* display */,
  409.     Window /* w */,
  410.     XSizeHints* /* hints_return */,
  411.     long* /* supplied_return */ 
  412. #endif
  413. );
  414. extern Status XGetWMSizeHints(
  415. #if NeedFunctionPrototypes
  416.     Display* /* display */,
  417.     Window /* w */,
  418.     XSizeHints* /* hints_return */,
  419.     long* /* supplied_return */,
  420.     Atom /* property */
  421. #endif
  422. );
  423. extern Status XGetZoomHints(
  424. #if NeedFunctionPrototypes
  425.     Display* /* display */,
  426.     Window /* w */,
  427.     XSizeHints* /* zhints_return */
  428. #endif
  429. );
  430. extern void XIntersectRegion(
  431. #if NeedFunctionPrototypes
  432.     Region /* sra */,
  433.     Region /* srb */,
  434.     Region /* dr_return */
  435. #endif
  436. );
  437. extern int XLookupString(
  438. #if NeedFunctionPrototypes
  439.     XKeyEvent* /* event_struct */,
  440.     char* /* buffer_return */,
  441.     int /* bytes_buffer */,
  442.     KeySym* /* keysym_return */,
  443.     XComposeStatus* /* status_in_out */
  444. #endif
  445. );
  446. extern Status XMatchVisualInfo(
  447. #if NeedFunctionPrototypes
  448.     Display* /* display */,
  449.     int /* screen */,
  450.     int /* depth */,
  451.     int /* class */,
  452.     XVisualInfo* /* vinfo_return */
  453. #endif
  454. );
  455. extern void XOffsetRegion(
  456. #if NeedFunctionPrototypes
  457.     Region /* r */,
  458.     int /* dx */,
  459.     int /* dy */
  460. #endif
  461. );
  462. extern Bool XPointInRegion(
  463. #if NeedFunctionPrototypes
  464.     Region /* r */,
  465.     int /* x */,
  466.     int /* y */
  467. #endif
  468. );
  469. extern Region XPolygonRegion(
  470. #if NeedFunctionPrototypes
  471.     XPoint* /* points */,
  472.     int /* n */,
  473.     int /* fill_rule */
  474. #endif
  475. );
  476. extern int XRectInRegion(
  477. #if NeedFunctionPrototypes
  478.     Region /* r */,
  479.     int /* x */,
  480.     int /* y */,
  481.     unsigned int /* width */,
  482.     unsigned int /* height */
  483. #endif
  484. );
  485. extern int XSaveContext(
  486. #if NeedFunctionPrototypes
  487.     Display* /* display */,
  488.     XID /* rid */,
  489.     XContext /* context */,
  490.     _Xconst char* /* data */
  491. #endif
  492. );
  493. extern void XSetClassHint(
  494. #if NeedFunctionPrototypes
  495.     Display* /* display */,
  496.     Window /* w */,
  497.     XClassHint* /* class_hints */
  498. #endif
  499. );
  500. extern void XSetIconSizes(
  501. #if NeedFunctionPrototypes
  502.     Display* /* display */,
  503.     Window /* w */,
  504.     XIconSize* /* size_list */,
  505.     int /* count */    
  506. #endif
  507. );
  508. extern void XSetNormalHints(
  509. #if NeedFunctionPrototypes
  510.     Display* /* display */,
  511.     Window /* w */,
  512.     XSizeHints* /* hints */
  513. #endif
  514. );
  515. extern void XSetRGBColormaps(
  516. #if NeedFunctionPrototypes
  517.     Display* /* display */,
  518.     Window /* w */,
  519.     XStandardColormap* /* stdcmaps */,
  520.     int /* count */,
  521.     Atom /* property */
  522. #endif
  523. );
  524. extern void XSetSizeHints(
  525. #if NeedFunctionPrototypes
  526.     Display* /* display */,
  527.     Window /* w */,
  528.     XSizeHints* /* hints */,
  529.     Atom /* property */
  530. #endif
  531. );
  532. extern void XSetStandardProperties(
  533. #if NeedFunctionPrototypes
  534.     Display* /* display */,
  535.     Window /* w */,
  536.     _Xconst char* /* window_name */,
  537.     _Xconst char* /* icon_name */,
  538.     Pixmap /* icon_pixmap */,
  539.     char** /* argv */,
  540.     int /* argc */,
  541.     XSizeHints* /* hints */
  542. #endif
  543. );
  544. extern void XSetTextProperty(
  545. #if NeedFunctionPrototypes
  546.     Display* /* display */,
  547.     Window /* w */,
  548.     XTextProperty* /* text_prop */,
  549.     Atom /* property */
  550. #endif
  551. );
  552. extern void XSetWMHints(
  553. #if NeedFunctionPrototypes
  554.     Display* /* display */,
  555.     Window /* w */,
  556.     XWMHints* /* wm_hints */
  557. #endif
  558. );
  559. extern void XSetWMIconName(
  560. #if NeedFunctionPrototypes
  561.     Display* /* display */,
  562.     Window /* w */,
  563.     XTextProperty* /* text_prop */
  564. #endif
  565. );
  566. extern void XSetWMName(
  567. #if NeedFunctionPrototypes
  568.     Display* /* display */,
  569.     Window /* w */,
  570.     XTextProperty* /* text_prop */
  571. #endif
  572. );
  573. extern void XSetWMNormalHints(
  574. #if NeedFunctionPrototypes
  575.     Display* /* display */,
  576.     Window /* w */,
  577.     XSizeHints* /* hints */
  578. #endif
  579. );
  580. extern void XSetWMProperties(
  581. #if NeedFunctionPrototypes
  582.     Display* /* display */,
  583.     Window /* w */,
  584.     XTextProperty* /* window_name */,
  585.     XTextProperty* /* icon_name */,
  586.     char** /* argv */,
  587.     int /* argc */,
  588.     XSizeHints* /* normal_hints */,
  589.     XWMHints* /* wm_hints */,
  590.     XClassHint* /* class_hints */
  591. #endif
  592. );
  593. extern void XmbSetWMProperties(
  594. #if NeedFunctionPrototypes
  595.     Display* /* display */,
  596.     Window /* w */,
  597.     _Xconst char* /* window_name */,
  598.     _Xconst char* /* icon_name */,
  599.     char** /* argv */,
  600.     int /* argc */,
  601.     XSizeHints* /* normal_hints */,
  602.     XWMHints* /* wm_hints */,
  603.     XClassHint* /* class_hints */
  604. #endif
  605. );
  606. extern void XSetWMSizeHints(
  607. #if NeedFunctionPrototypes
  608.     Display* /* display */,
  609.     Window /* w */,
  610.     XSizeHints* /* hints */,
  611.     Atom /* property */
  612. #endif
  613. );
  614. extern void XSetRegion(
  615. #if NeedFunctionPrototypes
  616.     Display* /* display */,
  617.     GC /* gc */,
  618.     Region /* r */
  619. #endif
  620. );
  621. extern void XSetStandardColormap(
  622. #if NeedFunctionPrototypes
  623.     Display* /* display */,
  624.     Window /* w */,
  625.     XStandardColormap* /* colormap */,
  626.     Atom /* property */
  627. #endif
  628. );
  629. extern void XSetZoomHints(
  630. #if NeedFunctionPrototypes
  631.     Display* /* display */,
  632.     Window /* w */,
  633.     XSizeHints* /* zhints */
  634. #endif
  635. );
  636. extern void XShrinkRegion(
  637. #if NeedFunctionPrototypes
  638.     Region /* r */,
  639.     int /* dx */,
  640.     int /* dy */
  641. #endif
  642. );
  643. extern void XSubtractRegion(
  644. #if NeedFunctionPrototypes
  645.     Region /* sra */,
  646.     Region /* srb */,
  647.     Region /* dr_return */
  648. #endif
  649. );
  650. extern int XmbTextListToTextProperty(
  651. #if NeedFunctionPrototypes
  652.     Display* /* display */,
  653.     char** /* list */,
  654.     int /* count */,
  655.     XICCEncodingStyle /* style */,
  656.     XTextProperty* /* text_prop_return */
  657. #endif
  658. );
  659. extern int XwcTextListToTextProperty(
  660. #if NeedFunctionPrototypes
  661.     Display* /* display */,
  662.     wchar_t** /* list */,
  663.     int /* count */,
  664.     XICCEncodingStyle /* style */,
  665.     XTextProperty* /* text_prop_return */
  666. #endif
  667. );
  668. extern void XwcFreeStringList(
  669. #if NeedFunctionPrototypes
  670.     wchar_t** /* list */
  671. #endif
  672. );
  673. extern Status XTextPropertyToStringList(
  674. #if NeedFunctionPrototypes
  675.     XTextProperty* /* text_prop */,
  676.     char*** /* list_return */,
  677.     int* /* count_return */
  678. #endif
  679. );
  680. extern int XmbTextPropertyToTextList(
  681. #if NeedFunctionPrototypes
  682.     Display* /* display */,
  683.     XTextProperty* /* text_prop */,
  684.     char*** /* list_return */,
  685.     int* /* count_return */
  686. #endif
  687. );
  688. extern int XwcTextPropertyToTextList(
  689. #if NeedFunctionPrototypes
  690.     Display* /* display */,
  691.     XTextProperty* /* text_prop */,
  692.     wchar_t*** /* list_return */,
  693.     int* /* count_return */
  694. #endif
  695. );
  696. extern void XUnionRectWithRegion(
  697. #if NeedFunctionPrototypes
  698.     XRectangle* /* rectangle */,
  699.     Region /* src_region */,
  700.     Region /* dest_region_return */
  701. #endif
  702. );
  703. extern void XUnionRegion(
  704. #if NeedFunctionPrototypes
  705.     Region /* sra */,
  706.     Region /* srb */,
  707.     Region /* dr_return */
  708. #endif
  709. );
  710. extern int XWMGeometry(
  711. #if NeedFunctionPrototypes
  712.     Display* /* display */,
  713.     int /* screen_number */,
  714.     _Xconst char* /* user_geometry */,
  715.     _Xconst char* /* default_geometry */,
  716.     unsigned int /* border_width */,
  717.     XSizeHints* /* hints */,
  718.     int* /* x_return */,
  719.     int* /* y_return */,
  720.     int* /* width_return */,
  721.     int* /* height_return */,
  722.     int* /* gravity_return */
  723. #endif
  724. );
  725. extern void XXorRegion(
  726. #if NeedFunctionPrototypes
  727.     Region /* sra */,
  728.     Region /* srb */,
  729.     Region /* dr_return */
  730. #endif
  731. );
  732. _XFUNCPROTOEND
  733. #if defined(MAC_TCL) || defined(MAC_OSX_TK)
  734. #   undef Region
  735. #endif
  736. #endif /* _XUTIL_H_ */