/[dtapublic]/projs/ets/trunk/src/c_tk_base_7_5_w_mods/xutil.h
ViewVC logotype

Diff of /projs/ets/trunk/src/c_tk_base_7_5_w_mods/xutil.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.42  
changed lines
  Added in v.98

dashley@gmail.com
ViewVC Help
Powered by ViewVC 1.1.25