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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

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