1/*********************************************************** 2 3Copyright 1987, 1998 The Open Group 4 5Permission to use, copy, modify, distribute, and sell this software and its 6documentation for any purpose is hereby granted without fee, provided that 7the above copyright notice appear in all copies and that both that 8copyright notice and this permission notice appear in supporting 9documentation. 10 11The above copyright notice and this permission notice shall be included in 12all copies or substantial portions of the Software. 13 14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 18AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 19CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20 21Except as contained in this notice, the name of The Open Group shall not be 22used in advertising or otherwise to promote the sale, use or other dealings 23in this Software without prior written authorization from The Open Group. 24 25Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts. 26 27 All Rights Reserved 28 29Permission to use, copy, modify, and distribute this software and its 30documentation for any purpose and without fee is hereby granted, 31provided that the above copyright notice appear in all copies and that 32both that copyright notice and this permission notice appear in 33supporting documentation, and that the name of Digital not be 34used in advertising or publicity pertaining to distribution of the 35software without specific, written prior permission. 36 37DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING 38ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL 39DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR 40ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 41WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 42ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS 43SOFTWARE. 44 45******************************************************************/ 46 47#ifndef GC_H 48#define GC_H 49 50#include <X11/X.h> /* for GContext, Mask */ 51#include <X11/Xdefs.h> /* for Bool */ 52#include <X11/Xproto.h> 53#include "screenint.h" /* for ScreenPtr */ 54#include "pixmap.h" /* for DrawablePtr */ 55 56/* clientClipType field in GC */ 57#define CT_NONE 0 58#define CT_PIXMAP 1 59#define CT_REGION 2 60#define CT_UNSORTED 6 61#define CT_YSORTED 10 62#define CT_YXSORTED 14 63#define CT_YXBANDED 18 64 65#define GCQREASON_VALIDATE 1 66#define GCQREASON_CHANGE 2 67#define GCQREASON_COPY_SRC 3 68#define GCQREASON_COPY_DST 4 69#define GCQREASON_DESTROY 5 70 71#define GC_CHANGE_SERIAL_BIT (((unsigned long)1)<<31) 72#define GC_CALL_VALIDATE_BIT (1L<<30) 73#define GCExtensionInterest (1L<<29) 74 75#define DRAWABLE_SERIAL_BITS (~(GC_CHANGE_SERIAL_BIT)) 76 77#define MAX_SERIAL_NUM (1L<<28) 78 79#define NEXT_SERIAL_NUMBER ((++globalSerialNumber) > MAX_SERIAL_NUM ? \ 80 (globalSerialNumber = 1): globalSerialNumber) 81 82typedef struct _GCInterest *GCInterestPtr; 83typedef struct _GC *GCPtr; 84typedef struct _GCOps *GCOpsPtr; 85 86extern _X_EXPORT void ValidateGC(DrawablePtr /*pDraw */ , 87 GCPtr /*pGC */ ); 88 89typedef union { 90 CARD32 val; 91 void *ptr; 92} ChangeGCVal, *ChangeGCValPtr; 93 94extern int ChangeGCXIDs(ClientPtr /*client */ , 95 GCPtr /*pGC */ , 96 BITS32 /*mask */ , 97 CARD32 * /*pval */ ); 98 99extern _X_EXPORT int ChangeGC(ClientPtr /*client */ , 100 GCPtr /*pGC */ , 101 BITS32 /*mask */ , 102 ChangeGCValPtr /*pCGCV */ ); 103 104extern _X_EXPORT GCPtr CreateGC(DrawablePtr /*pDrawable */ , 105 BITS32 /*mask */ , 106 XID * /*pval */ , 107 int * /*pStatus */ , 108 XID /*gcid */ , 109 ClientPtr /*client */ ); 110 111extern _X_EXPORT int CopyGC(GCPtr /*pgcSrc */ , 112 GCPtr /*pgcDst */ , 113 BITS32 /*mask */ ); 114 115extern _X_EXPORT int FreeGC(void *pGC, 116 XID gid); 117 118extern _X_EXPORT void FreeGCperDepth(int /*screenNum */ ); 119 120extern _X_EXPORT Bool CreateGCperDepth(int /*screenNum */ ); 121 122extern _X_EXPORT Bool CreateDefaultStipple(int /*screenNum */ ); 123 124extern _X_EXPORT void FreeDefaultStipple(int /*screenNum */ ); 125 126extern _X_EXPORT int SetDashes(GCPtr /*pGC */ , 127 unsigned /*offset */ , 128 unsigned /*ndash */ , 129 unsigned char * /*pdash */ ); 130 131extern _X_EXPORT int VerifyRectOrder(int /*nrects */ , 132 xRectangle * /*prects */ , 133 int /*ordering */ ); 134 135extern _X_EXPORT int SetClipRects(GCPtr /*pGC */ , 136 int /*xOrigin */ , 137 int /*yOrigin */ , 138 int /*nrects */ , 139 xRectangle * /*prects */ , 140 int /*ordering */ ); 141 142extern _X_EXPORT GCPtr GetScratchGC(unsigned /*depth */ , 143 ScreenPtr /*pScreen */ ); 144 145extern _X_EXPORT void FreeScratchGC(GCPtr /*pGC */ ); 146 147#endif /* GC_H */ 148