URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [tk/] [generic/] [tkColor.h] - Rev 1769
Go to most recent revision | Compare with Previous | Blame | View Log
/* * tkColor.h -- * * Declarations of data types and functions used by the * Tk color module. * * Copyright (c) 1996 by Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * RCS: @(#) $Id: tkColor.h,v 1.1.1.1 2002-01-16 10:25:51 markom Exp $ */ #ifndef _TKCOLOR #define _TKCOLOR #include <tkInt.h> #ifdef BUILD_tk # undef TCL_STORAGE_CLASS # define TCL_STORAGE_CLASS DLLEXPORT #endif /* CYGNUS LOCAL. */ typedef struct TkGCList TkGCList; /* * One of the following data structures is used to keep track of * each color that the color module has allocated from the X display * server. */ #define COLOR_MAGIC ((unsigned int) 0x46140277) typedef struct TkColor { XColor color; /* Information about this color. */ unsigned int magic; /* Used for quick integrity check on this * structure. Must always have the * value COLOR_MAGIC. */ GC gc; /* Simple gc with this color as foreground * color and all other fields defaulted. * May be None. */ Screen *screen; /* Screen where this color is valid. Used * to delete it, and to find its display. */ Colormap colormap; /* Colormap from which this entry was * allocated. */ Visual *visual; /* Visual associated with colormap. */ int refCount; /* Number of uses of this structure. */ Tcl_HashTable *tablePtr; /* Hash table that indexes this structure * (needed when deleting structure). */ Tcl_HashEntry *hashPtr; /* Pointer to hash table entry for this * structure. (for use in deleting entry). */ /* CYGNUS LOCAL */ TkGCList *gcList; /* List of GCs which use this color. */ } TkColor; /* * Common APIs exported from all platform-specific implementations. */ #ifndef TkpFreeColor EXTERN void TkpFreeColor _ANSI_ARGS_((TkColor *tkColPtr)); #endif EXTERN TkColor * TkpGetColor _ANSI_ARGS_((Tk_Window tkwin, Tk_Uid name)); EXTERN TkColor * TkpGetColorByValue _ANSI_ARGS_((Tk_Window tkwin, XColor *colorPtr)); /* CYGNUS LOCAL. */ EXTERN void TkMapOverColors _ANSI_ARGS_((void (*) (TkColor *))); EXTERN void TkColorChanged _ANSI_ARGS_((TkColor *)); # undef TCL_STORAGE_CLASS # define TCL_STORAGE_CLASS DLLIMPORT #endif /* _TKCOLOR */
Go to most recent revision | Compare with Previous | Blame | View Log