summaryrefslogtreecommitdiff
path: root/hw/xwin/wingc.c
blob: 6ad58d8edf05a2ec00ed463b5f85ae9aa16a2883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/*
 *Copyright (C) 1994-2000 The XFree86 Project, Inc. All Rights Reserved.
 *
 *Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 *"Software"), to deal in the Software without restriction, including
 *without limitation the rights to use, copy, modify, merge, publish,
 *distribute, sublicense, and/or sell copies of the Software, and to
 *permit persons to whom the Software is furnished to do so, subject to
 *the following conditions:
 *
 *The above copyright notice and this permission notice shall be
 *included in all copies or substantial portions of the Software.
 *
 *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *NONINFRINGEMENT. IN NO EVENT SHALL THE XFREE86 PROJECT BE LIABLE FOR
 *ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
 *CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 *Except as contained in this notice, the name of the XFree86 Project
 *shall not be used in advertising or otherwise to promote the sale, use
 *or other dealings in this Software without prior written authorization
 *from the XFree86 Project.
 *
 * Authors:	Harold L Hunt II
 */
/* $XFree86: xc/programs/Xserver/hw/xwin/wingc.c,v 1.10 2001/10/30 15:39:09 alanh Exp $ */

#include "win.h"

#if 0
/* GC Handling Routines */
const GCFuncs winGCFuncs = {
  winValidateGCNativeGDI,
  winChangeGCNativeGDI,
  winCopyGCNativeGDI,
  winDestroyGCNativeGDI,
  winChangeClipNativeGDI,
  winDestroyClipNativeGDI,
  winCopyClipNativeGDI,
};
#else
const GCFuncs winGCFuncs = {
  winValidateGCNativeGDI,
  winChangeGCNativeGDI,
  winCopyGCNativeGDI,
  winDestroyGCNativeGDI,
  miChangeClip,
  miDestroyClip,
  miCopyClip,
};
#endif

/* Drawing Primitives */
const GCOps winGCOps = {
  winFillSpansNativeGDI,
  winSetSpansNativeGDI,
  miPutImage,
  miCopyArea,
  miCopyPlane,
  miPolyPoint,
  winPolyLineNativeGDI,
  miPolySegment,
  miPolyRectangle,
  miPolyArc,
  miFillPolygon,
  miPolyFillRect,
  miPolyFillArc,
  miPolyText8,
  miPolyText16,
  miImageText8,
  miImageText16,
  miImageGlyphBlt,
  miPolyGlyphBlt,
  miPushPixels
#ifdef NEED_LINEHELPER
  ,NULL
#endif
};


/* See Porting Layer Definition - p. 45 */
/* See mfb/mfbgc.c - mfbCreateGC() */
/* See Strategies for Porting - pp. 15, 16 */
Bool
winCreateGCNativeGDI (GCPtr pGC)
{
  winPrivGCPtr		pGCPriv = NULL;
  winPrivScreenPtr	pScreenPriv = NULL;

  ErrorF ("winCreateGCNativeGDI () depth: %d\n",
	  pGC->depth);

  pGC->clientClip = NULL;
  pGC->clientClipType = CT_NONE;

  pGC->ops = (GCOps *) &winGCOps;
  pGC->funcs = (GCFuncs *) &winGCFuncs;

  /* 
   * Setting miTranslate to 1 causes the coordinates passed to
   * FillSpans, GetSpans, and SetSpans to be screen relative, rather
   * than drawable relative.
   *
   * miTranslate was set to 0 prior to 2001-08-17.
   */
  pGC->miTranslate = 1;

  /* Allocate privates for this GC */
  pGCPriv = winGetGCPriv (pGC);
  if (pGCPriv == NULL)
    {
      ErrorF ("winCreateGCNativeGDI () - Privates pointer was NULL\n");
      return FALSE;
    }

  /* Copy the screen DC to the local privates */
  pScreenPriv = winGetScreenPriv (pGC->pScreen);
  pGCPriv->hdc = pScreenPriv->hdcScreen;

  /* Allocate a memory DC for the GC */
  pGCPriv->hdcMem = CreateCompatibleDC (pGCPriv->hdc);

  return TRUE;
}


/* See Porting Layer Definition - p. 45 */
void
winChangeGCNativeGDI (GCPtr pGC, unsigned long ulChanges)
{
#if CYGDEBUG
  ErrorF ("winChangeGCNativeGDI () - Doing nothing\n");
#endif
}


void
winValidateGCNativeGDI (GCPtr pGC,
			unsigned long ulChanges,
			DrawablePtr pDrawable)
{
  winGCPriv(pGC);
  HBITMAP		hbmpOrig = NULL;
  PixmapPtr		pPixmap = NULL;
  winPrivPixmapPtr	pPixmapPriv = NULL;
  RGBQUAD		rgbColors[2] = {{0, 0, 0, 0}, {0, 0, 0, 0}};
  PixmapPtr		pStipple = NULL;
  winPrivPixmapPtr	pStipplePriv = NULL;
  int			i;
  DEBUG_FN_NAME("winValidateGC");
  DEBUGVARS;
  DEBUGPROC_MSG;

  /* Branch on drawable type */
  switch (pDrawable->type)
    {
    case DRAWABLE_PIXMAP:
      /* Branch on the fill style */
      switch (pGC->fillStyle)
	{
	case FillSolid:
	  ErrorF ("winValidateGC - DRAWABLE_PIXMAP - FillSolid\n");

	  /* Select a stock pen */
	  if (pDrawable->depth == 1 && pGC->fgPixel)
	    {
	      ErrorF ("winValidateGC - Selecting WHITE_PEN\n");
	      SelectObject (pGCPriv->hdcMem, GetStockObject (WHITE_PEN));
	    }
	  else if (pDrawable->depth == 1 && !pGC->fgPixel)
	    {
	      ErrorF ("winValidateGC - Selecting BLACK_PEN\n");
	      SelectObject (pGCPriv->hdcMem, GetStockObject (BLACK_PEN));
	    }
	  else if (pGC->fgPixel)
	    {
	      ErrorF ("winValidateGC - Selecting custom pen: %d\n",
		      pGC->fgPixel);
	      /*
	       * FIXME: So far I've only seen a white pen selected here.
	       */
#if 1	     
	      SelectObject (pGCPriv->hdcMem, GetStockObject (WHITE_PEN));
#else
	      /* FIXME: This leaks a pen */
	      SelectObject (pGCPriv->hdcMem, 
			    CreatePen (PS_SOLID, 0, pGC->fgPixel));
#endif
	    }
	  else
	    {
	      ErrorF ("winValidateGC - Selecting BLACK_PEN\n");
	      SelectObject (pGCPriv->hdcMem, GetStockObject (BLACK_PEN));
	    }
	  break;
	  
	case FillStippled:
	  ErrorF ("winValidateGC - DRAWABLE_PIXMAP - FillStippled\n");
	  /*
	   * NOTE: Setting the brush color has no effect on DIB fills.
	   * You need to set the stipple bitmap's color table instead.
	   */
#if 1
	  /* Pick the white color index */
	  if (pGC->fgPixel)
	    i = 1;
	  else
	    i = 0;

	  /* Set the white color, black is default */
	  rgbColors[i].rgbRed = 255;
	  rgbColors[i].rgbGreen = 255;
	  rgbColors[i].rgbBlue = 255;
	  
	  /* Get stipple and privates pointers */
	  pStipple = pGC->stipple;
	  pStipplePriv = winGetPixmapPriv (pStipple);

	  /* Select the stipple bitmap */
	  hbmpOrig = SelectObject (pGCPriv->hdcMem, pStipplePriv->hBitmap);

	  /* Set the stipple color table */
	  SetDIBColorTable (pGCPriv->hdcMem, 0, 2, rgbColors);

	  /* Pop the stipple out of the hdc */
	  SelectObject (pGCPriv->hdcMem, hbmpOrig);
	  
#else
	  /* Set the foreground color for the stipple fill */
	  if (pGC->fgPixel == 0x1)
	    {
	      SetTextColor (pGCPriv->hdcMem, RGB(0x00, 0x00, 0x00));
	    }
	  else if (pGC->fgPixel == 0xFFFF)
	    {
	      SetTextColor (pGCPriv->hdcMem, RGB(0xFF, 0xFF, 0xFF));
	    }
	  else
	    {
	      SetTextColor (pGCPriv->hdcMem, RGB(0x00, 0x00, 0x00));
	    }
	  SetBkColor (pGCPriv->hdcMem, RGB(0x00, 0x00, 0x00));
#endif
	  break;
	  
	case FillOpaqueStippled:
	  FatalError ("winValidateGC - DRAWABLE_PIXMAP - "
		      "FillOpaqueStippled\n");
	  break;

	case FillTiled:
	  FatalError ("winValidateGC - DRAWABLE_PIXMAP - FillTiled\n");
	  break;

	default:
	  FatalError ("winValidateGC - DRAWABLE_PIXMAP - Unknown fill "
		      "style\n");
	  break;
	}
      break;

    case DRAWABLE_WINDOW:
      /* Branch on the fill style */
      switch (pGC->fillStyle)
	{
	case FillTiled:
	  ErrorF ("winValidateGC - DRAWABLE_WINDOW - FillTiled\n");
	  /* 
	   * Do nothing here for now.  Select the tile bitmap into the
	   * appropriate DC in the drawing function.
	   */

	  /*
	   * BEGIN REMOVE - Visual verification only.
	   */
	  /* Get pixmap and privates pointers for the tile */
	  pPixmap = pGC->tile.pixmap;
	  pPixmapPriv = winGetPixmapPriv (pPixmap);

	  /* Push the tile into the GC's DC */
	  hbmpOrig = SelectObject (pGCPriv->hdcMem, pPixmapPriv->hBitmap);
	  if (hbmpOrig == NULL)
	    FatalError ("winValidateGC - DRAWABLE_WINDOW - FillTiled - "
			"SelectObject () failed on pPixmapPriv->hBitmap\n");

	  /* Blit the tile to a remote area of the screen */
	  BitBlt (pGCPriv->hdc, 
		  64, 64,
		  pGC->tile.pixmap->drawable.width,
		  pGC->tile.pixmap->drawable.height,
		  pGCPriv->hdcMem,
		  0, 0, 
		  SRCCOPY);
	  DEBUG_MSG ("Blitted the tile to a remote area of the screen");
	  
	  /* Pop the tile out of the GC's DC */
	  SelectObject (pGCPriv->hdcMem, hbmpOrig);
	  /*
	   * END REMOVE - Visual verification only.
	   */
	  break;

	case FillStippled:
	  FatalError ("winValidateGC - DRAWABLE_WINDOW - FillStippled\n");
	  break;

	case FillOpaqueStippled:
	  FatalError ("winValidateGC - DRAWABLE_WINDOW - "
		      "FillOpaqueStippled\n");
	  break;

	case FillSolid:
	  ErrorF ("winValidateGC - DRAWABLE_WINDOW - FillSolid\n");

	  /* Select a stock pen */
	  if (pDrawable->depth == 1 && pGC->fgPixel)
	    {
	      ErrorF ("winValidateGC - Selecting WHITE_PEN\n");
	      SelectObject (pGCPriv->hdc, GetStockObject (WHITE_PEN));
	    }
	  else if (pDrawable->depth == 1 && !pGC->fgPixel)
	    {
	      ErrorF ("winValidateGC - Selecting BLACK_PEN\n");
	      SelectObject (pGCPriv->hdc, GetStockObject (BLACK_PEN));
	    }
	  else if (pGC->fgPixel)
	    {
	      ErrorF ("winValidateGC - Selecting custom pen: %d\n",
		      pGC->fgPixel);
	      /*
	       * FIXME: So far I've only seen a white pen selected here.
	       */
	      SelectObject (pGCPriv->hdc, GetStockObject (WHITE_PEN));
	    }
	  else
	    {
	      ErrorF ("winValidateGC - Selecting BLACK_PEN\n");
	      SelectObject (pGCPriv->hdc, GetStockObject (BLACK_PEN));
	    }
	  break;

	default:
	  FatalError ("winValidateGC - DRAWABLE_WINDOW - Unknown fill "
		      "style\n");
	  break;
	}
      break;

    case UNDRAWABLE_WINDOW:
      ErrorF ("\nwinValidateGC - UNDRAWABLE_WINDOW\n\n");
      break;

    case DRAWABLE_BUFFER:
      FatalError ("winValidateGC - DRAWABLE_BUFFER\n");
      break;

    default:
      FatalError ("winValidateGC - Unknown drawable type\n");
      break;
    }
}


/* See Porting Layer Definition - p. 46 */
void
winCopyGCNativeGDI (GCPtr pGCsrc, unsigned long ulMask, GCPtr pGCdst)
{

}


/* See Porting Layer Definition - p. 46 */
void
winDestroyGCNativeGDI (GCPtr pGC)
{
  winGCPriv(pGC);

  /* Free the memory DC */
  if (pGCPriv->hdcMem != NULL)
    {
      DeleteDC (pGCPriv->hdcMem);
      pGCPriv->hdcMem = NULL;
    }

  /* Invalidate the screen DC pointer */
  pGCPriv->hdc = NULL;

  /* Invalidate the GC privates pointer */
  winSetGCPriv (pGC, NULL);
}


/* See Porting Layer Definition - p. 46 */
void
winChangeClipNativeGDI (GCPtr pGC, int nType, pointer pValue, int nRects)
{

}


/* See Porting Layer Definition - p. 47 */
void
winDestroyClipNativeGDI (GCPtr pGC)
{

}


/* See Porting Layer Definition - p. 47 */
void
winCopyClipNativeGDI (GCPtr pGCdst, GCPtr pGCsrc)
{

}