home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / evbl0627.zip / everblue_20010627.zip / x11 / Xlib_GetGCVals.c < prev    next >
C/C++ Source or Header  |  1999-11-02  |  4KB  |  119 lines

  1. /* $XConsortium: GetGCVals.c,v 1.4 94/04/17 20:19:32 rws Exp $ */
  2.  
  3. /*
  4.  
  5. Copyright (c) 1989  X Consortium
  6.  
  7. Permission is hereby granted, free of charge, to any person obtaining a copy
  8. of this software and associated documentation files (the "Software"), to deal
  9. in the Software without restriction, including without limitation the rights
  10. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. copies of the Software, and to permit persons to whom the Software is
  12. furnished to do so, subject to the following conditions:
  13.  
  14. The above copyright notice and this permission notice shall be included in
  15. all copies or substantial portions of the Software.
  16.  
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  20. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  21. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  22. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23.  
  24. Except as contained in this notice, the name of the X Consortium shall not be
  25. used in advertising or otherwise to promote the sale, use or other dealings
  26. in this Software without prior written authorization from the X Consortium.
  27.  
  28. */
  29.  
  30. #include "Xlib_private.h"
  31.  
  32. /*
  33.  * All gc fields except GCClipMask and GCDashList
  34.  */
  35. #define ValidGCValuesBits (GCFunction | GCPlaneMask | GCForeground | \
  36.                GCBackground | GCLineWidth | GCLineStyle | \
  37.                GCCapStyle | GCJoinStyle | GCFillStyle | \
  38.                GCFillRule | GCTile | GCStipple | \
  39.                GCTileStipXOrigin | GCTileStipYOrigin | \
  40.                GCFont | GCSubwindowMode | GCGraphicsExposures | \
  41.                GCClipXOrigin | GCClipYOrigin | GCDashOffset | \
  42.                GCArcMode)
  43.  
  44. /*ARGSUSED*/
  45. Status XGetGCValues (dpy, gc, valuemask, values)
  46.     Display *dpy;
  47.     GC gc;
  48.     unsigned long valuemask;
  49.     XGCValues *values;
  50. {
  51.     DBUG_ENTER("XGetGCValues")
  52.     if ((valuemask & ~ValidGCValuesBits) || !gc) DBUG_RETURN(False);
  53.  
  54.     if (valuemask & GCFunction)
  55.       values->function = ((Xlib_GC *)gc)->values.function;
  56.  
  57.     if (valuemask & GCPlaneMask)
  58.       values->plane_mask = -1;
  59.  
  60.     if (valuemask & GCForeground)
  61.       values->foreground = ((Xlib_GC *)gc)->values.foreground;
  62.  
  63.     if (valuemask & GCBackground)
  64.       values->background = ((Xlib_GC *)gc)->values.background;
  65.  
  66.     if (valuemask & GCLineWidth)
  67.       values->line_width = ((Xlib_GC *)gc)->values.line_width;
  68.  
  69.     if (valuemask & GCLineStyle)
  70.       values->line_style = ((Xlib_GC *)gc)->values.line_style;
  71.  
  72.     if (valuemask & GCCapStyle)
  73.       values->cap_style = ((Xlib_GC *)gc)->values.cap_style;
  74.  
  75.     if (valuemask & GCJoinStyle)
  76.       values->join_style = ((Xlib_GC *)gc)->values.join_style;
  77.  
  78.     if (valuemask & GCFillStyle)
  79.       values->fill_style = ((Xlib_GC *)gc)->values.fill_style;
  80.  
  81.     if (valuemask & GCFillRule)
  82.       values->fill_rule = ((Xlib_GC *)gc)->values.fill_rule;
  83.  
  84.     if (valuemask & GCTile)
  85.       values->tile = ((Xlib_GC *)gc)->values.tile;
  86.  
  87.     if (valuemask & GCStipple)
  88.       values->stipple = ((Xlib_GC *)gc)->values.stipple;
  89.  
  90.     if (valuemask & GCTileStipXOrigin)
  91.       values->ts_x_origin = ((Xlib_GC *)gc)->values.ts_x_origin;
  92.  
  93.     if (valuemask & GCTileStipYOrigin)
  94.       values->ts_y_origin = ((Xlib_GC *)gc)->values.ts_y_origin;
  95.  
  96.     if (valuemask & GCFont)
  97.       values->font = ((Xlib_GC *)gc)->values.font;
  98.  
  99.     if (valuemask & GCSubwindowMode)
  100.       values->subwindow_mode = ClipByChildren;
  101.  
  102.     if (valuemask & GCGraphicsExposures)
  103.       values->graphics_exposures = True;
  104.  
  105.     if (valuemask & GCClipXOrigin)
  106.       values->clip_x_origin = ((Xlib_GC *)gc)->values.clip_x_origin;
  107.  
  108.     if (valuemask & GCClipYOrigin)
  109.       values->clip_y_origin = ((Xlib_GC *)gc)->values.clip_y_origin;
  110.  
  111.     if (valuemask & GCDashOffset)
  112.       values->dash_offset = ((Xlib_GC *)gc)->values.dash_offset;
  113.  
  114.     if (valuemask & GCArcMode)
  115.       values->arc_mode = ((Xlib_GC *)gc)->values.arc_mode;
  116.  
  117.     DBUG_RETURN(True);
  118. }
  119.