home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xibm.zip / mpel / mpelGC.c < prev    next >
C/C++ Source or Header  |  1991-12-18  |  8KB  |  261 lines

  1. /*
  2.  * Copyright IBM Corporation 1987,1988,1989
  3.  *
  4.  * All Rights Reserved
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software and its
  7.  * documentation for any purpose and without fee is hereby granted,
  8.  * provided that the above copyright notice appear in all copies and that 
  9.  * both that copyright notice and this permission notice appear in
  10.  * supporting documentation, and that the name of IBM not be
  11.  * used in advertising or publicity pertaining to distribution of the
  12.  * software without specific, written prior permission.
  13.  *
  14.  * IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  15.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  16.  * IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  17.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  18.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  19.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  20.  * SOFTWARE.
  21.  *
  22. */
  23. /***********************************************************
  24.         Copyright IBM Corporation 1987,1988
  25.  
  26.               All Rights Reserved
  27.  
  28. Permission to use, copy, modify, and distribute this software and its
  29. documentation for any purpose and without fee is hereby granted,
  30. provided that the above copyright notice appear in all copies and that
  31. both that copyright notice and this permission notice appear in
  32. supporting documentation, and that the name of IBM not be
  33. used in advertising or publicity pertaining to distribution of the
  34. software without specific, written prior permission.
  35.  
  36. IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  37. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  38. IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  39. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  40. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  41. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  42. SOFTWARE.
  43.  
  44. ******************************************************************/
  45.  
  46. /* $Header: /afs/rel-eng.athena.mit.edu/project/release/current/source/third/common/X11R4/server/ddx/ibm/mpel/RCS/mpelGC.c,v 1.2 91/01/10 15:20:48 jfc Exp $ */
  47. /* $Source: /afs/rel-eng.athena.mit.edu/project/release/current/source/third/common/X11R4/server/ddx/ibm/mpel/RCS/mpelGC.c,v $ */
  48.  
  49. #ifndef lint
  50. static char *rcsid = "$Id: mpelGC.c,v 1.2 91/01/10 15:20:48 jfc Exp $" ;
  51. #endif
  52.  
  53. #include "X.h"
  54. #include "Xproto.h"
  55. #include "font.h"
  56. #include "misc.h"
  57. #include "gcstruct.h"
  58. #include "windowstr.h"
  59. #include "pixmapstr.h"
  60. #include "scrnintstr.h"
  61. #include "region.h"
  62.  
  63. #include "mfb.h"
  64.  
  65. #include "mistruct.h"
  66.  
  67. #include "ppc.h"
  68. #include "ppcProcs.h"
  69.  
  70. #include "mpel.h"
  71. #include "mpelProcs.h"
  72.  
  73. #include "ibmTrace.h"
  74.  
  75. Mask
  76. mpelChangeGCtype( pGC, devPriv )
  77. register GC *pGC ;
  78. register ppcPrivGCPtr devPriv ;
  79. {
  80.     if ( devPriv->lastDrawableType == DRAWABLE_PIXMAP ) {
  81.         devPriv->FillArea = mfbSolidInvertArea ;
  82.         pGC->ops->CopyArea = miCopyArea ;
  83.         pGC->ops->PolyFillRect = miPolyFillRect ;
  84.         pGC->ops->PushPixels = miPushPixels ;
  85.         pGC->ops->ImageText8 = miImageText8 ;
  86.         pGC->ops->ImageText16 = miImageText16 ;
  87.         pGC->ops->PolyText8 = miPolyText8 ;
  88.         pGC->ops->PolyText16 = miPolyText16 ;
  89.  
  90.         /* Maybe set to special case by kbg's code */
  91.         pGC->ops->FillPolygon = miFillPolygon ;
  92.         pGC->ops->PolySegment = miPolySegment ;
  93.         pGC->ops->Polylines = miZeroLine ;
  94.         pGC->ops->PolyArc = miPolyArc ;
  95.     }
  96.     else {
  97.         devPriv->FillArea = ppcAreaFill ;
  98.         pGC->ops->CopyArea = ppcCopyArea ;
  99.         pGC->ops->PolyFillRect = ppcPolyFillRect ;
  100.         pGC->ops->PushPixels = ppcPushPixels ;
  101.         pGC->ops->ImageText8 = mpelImageText8 ;
  102.         pGC->ops->ImageText16 = mpelImageText16 ;
  103.         pGC->ops->PolyText8 = mpelPolyText8 ;
  104.         pGC->ops->PolyText16 = mpelPolyText16 ;
  105.  
  106.         if ( ! devPriv->devPriv ) /* If First Time */
  107.         devPriv->devPriv =
  108.             (pointer) Xalloc( sizeof (mpelPrivGC) ) ;
  109.  
  110.     }
  111.     return ;
  112. }
  113.  
  114. Mask
  115. mpelChangeWindowGC( pGC, changes )
  116. register GC *pGC ;
  117. register Mask changes ;
  118. {
  119. register ppcPrivGCPtr devPriv = (ppcPrivGCPtr) (pGC->devPrivates[mfbGCPrivateIndex].ptr) ;
  120. register unsigned long int index ; /* used for stepping through bitfields */
  121.  
  122. #define LOWBIT( x ) ( x & - x ) /* Two's complement */
  123.     while ( index = LOWBIT( changes ) ) {
  124.     switch ( index ) {
  125.  
  126.       case GCLineStyle:
  127.       case GCLineWidth:
  128.         if ( pGC->lineWidth ) {
  129.             pGC->ops->PolySegment = miPolySegment ;
  130. #if !defined(AIXrt)
  131.         pGC->ops->Polylines =
  132.             ( pGC->lineStyle == LineSolid )
  133.             ? miWideLine : miWideDash ;
  134. #else
  135.         if ( pGC->lineStyle == LineSolid )
  136.             pGC->ops->Polylines = miWideLine ;
  137.         else
  138.             pGC->ops->Polylines = miWideDash ;
  139. #endif
  140.         pGC->ops->PolyArc = miPolyArc ;
  141.         }
  142.         else {
  143.         if ( pGC->lineStyle != LineSolid ) {
  144.             void mpel_do_dashline_gc() ;
  145.  
  146.             mpel_do_dashline_gc(pGC) ;
  147.         }
  148.         else {
  149.                 pGC->ops->PolySegment = mpelPolySegment ;
  150.             pGC->ops->Polylines =  mpelZeroLine ;
  151.             pGC->ops->PolyArc = mpelPolyArc ;
  152.             ((mpelPrivGCPtr) (devPriv->devPriv))->LineType
  153.                 = MPEL_SOLIDLINE ;
  154.         }
  155.         }
  156.         /*
  157.          * If these are just square boxes with no funny business
  158.          * going on we can call the fast routine that draws
  159.          * rectangles without floating point.
  160.          */
  161.         if ( ( pGC->lineStyle == LineSolid ) 
  162.             && ( pGC->joinStyle == JoinMiter ) 
  163.             && ( pGC->lineWidth != 0 ) )
  164.         pGC->ops->PolyRectangle = ppcPolyRectangle;
  165.         else
  166.         pGC->ops->PolyRectangle = miPolyRectangle;
  167.         changes &= ~( GCLineStyle | GCLineWidth ) ;
  168.         break ;
  169.       case GCJoinStyle:
  170. #if !defined(AIXrt)
  171.         pGC->ops->LineHelper =
  172.         ( pGC->joinStyle == JoinMiter ) ? miMiter : miNotMiter ;
  173. #else
  174.     if ( pGC->joinStyle == JoinMiter )
  175.         pGC->ops->LineHelper = miMiter ;
  176.     else
  177.         pGC->ops->LineHelper = miNotMiter ;
  178. #endif
  179.         /*
  180.          * If these are just square boxes with no funny business
  181.          * going on we can call the fast routine that draws
  182.          * rectangles without floating point.
  183.          */
  184.         if ( ( pGC->lineStyle == LineSolid ) 
  185.             && ( pGC->joinStyle == JoinMiter ) 
  186.             && ( pGC->lineWidth != 0 ) )
  187.         pGC->ops->PolyRectangle = ppcPolyRectangle;
  188.         else
  189.         pGC->ops->PolyRectangle = miPolyRectangle;
  190.         changes &= ~ index ; /* i.e. changes &= ~ GCJoinStyle */
  191.         break ;
  192.  
  193.       case GCBackground:
  194.         if ( pGC->fillStyle != FillOpaqueStippled ) {
  195.         changes &= ~ index ; /* i.e. changes &= ~GCBackground */
  196.         break ;
  197.         } /* else Fall Through */
  198.       case GCForeground:
  199.         if ( pGC->fillStyle == FillTiled ) {
  200.         changes &= ~ index ; /* i.e. changes &= ~GCForeground */
  201.         break ;
  202.         } /* else Fall Through */
  203.       case GCFunction:
  204.       case GCPlaneMask:
  205.       case GCFillStyle:
  206.         { /* new_fill */
  207.         int fillStyle = devPriv->colorRrop.fillStyle ;
  208.         /* install a suitable fillspans */
  209.         if ( fillStyle == FillSolid ) {
  210.             pGC->ops->FillSpans = ppcSolidWindowFS ;
  211.             pGC->ops->FillPolygon = mpelFillPolygon ;
  212.         }
  213.         else if ( fillStyle == FillStippled ) {
  214.             pGC->ops->FillSpans = ppcStippleWindowFS ;
  215.             pGC->ops->FillPolygon = miFillPolygon ;
  216.         }
  217.         else if ( fillStyle == FillOpaqueStippled ) {
  218.             pGC->ops->FillSpans = ppcOpStippleWindowFS ;
  219.             pGC->ops->FillPolygon = miFillPolygon ;
  220.         }
  221.         else { /*  fillStyle == FillTiled */
  222.             register temp = pGC->tile.pixmap->drawable.width ;
  223.             if ( temp <= 16 && !( temp & - temp ) ) {
  224.                 temp = pGC->tile.pixmap->drawable.height ;
  225.                 if ( temp <= 16 && !( temp & - temp ) )
  226.                     pGC->ops->FillPolygon = mpelTilePolygon ;
  227.                 else
  228.                     pGC->ops->FillPolygon = miFillPolygon ;
  229.             }
  230.             else
  231.                 pGC->ops->FillPolygon = miFillPolygon ;
  232.             pGC->ops->FillSpans = ppcTileWindowFS ;
  233.         }
  234.         } /* end of new_fill */
  235.         changes &= ~( GCBackground | GCForeground | GCFunction
  236.              | GCPlaneMask | GCFillStyle ) ;
  237.         break ;
  238.  
  239.     default:
  240.         ErrorF( "mpelChangeWindowGC: Unexpected GC Change\n" ) ;
  241.         changes &= ~ index ; /* Remove it anyway */
  242.         break ;
  243.     }
  244.     }
  245.     return ;
  246. }
  247.  
  248. /*
  249.  * mpelDestroyGCPriv - do whatever is necessary to clean up
  250.  *    the devPriv field in the ppcGC structure.
  251.  * NOTE: the field is filled in at changeType time above
  252.  */
  253.  
  254. void
  255. mpelDestroyGCPriv( pPriv )
  256. pointer pPriv ;
  257. {
  258.     Xfree( pPriv ) ;
  259.     return ;
  260. }
  261.