]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkgc-win32.c
Fixes #136082 and #135265, patch by Morten Welinder.
[~andy/gtk] / gdk / win32 / gdkgc-win32.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  * Copyright (C) 1998-2002 Tor Lillqvist
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /*
22  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
23  * file for a list of people on the GTK+ Team.  See the ChangeLog
24  * files for a list of changes.  These files are distributed with
25  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
26  */
27
28 #define LINE_ATTRIBUTES (GDK_GC_LINE_WIDTH|GDK_GC_LINE_STYLE| \
29                          GDK_GC_CAP_STYLE|GDK_GC_JOIN_STYLE)
30
31 #include <config.h>
32 #include <string.h>
33
34 #include "gdkgc.h"
35 #include "gdkfont.h"
36 #include "gdkpixmap.h"
37 #include "gdkregion-generic.h"
38 #include "gdkprivate-win32.h"
39
40 static void gdk_win32_gc_get_values (GdkGC           *gc,
41                                      GdkGCValues     *values);
42 static void gdk_win32_gc_set_values (GdkGC           *gc,
43                                      GdkGCValues     *values,
44                                      GdkGCValuesMask  values_mask);
45 static void gdk_win32_gc_set_dashes (GdkGC           *gc,
46                                      gint             dash_offset,
47                                      gint8            dash_list[],
48                                      gint             n);
49
50 static void gdk_gc_win32_class_init (GdkGCWin32Class *klass);
51 static void gdk_gc_win32_finalize   (GObject         *object);
52
53 static gpointer parent_class = NULL;
54
55 GType
56 _gdk_gc_win32_get_type (void)
57 {
58   static GType object_type = 0;
59
60   if (!object_type)
61     {
62       static const GTypeInfo object_info =
63       {
64         sizeof (GdkGCWin32Class),
65         (GBaseInitFunc) NULL,
66         (GBaseFinalizeFunc) NULL,
67         (GClassInitFunc) gdk_gc_win32_class_init,
68         NULL,           /* class_finalize */
69         NULL,           /* class_data */
70         sizeof (GdkGCWin32),
71         0,              /* n_preallocs */
72         (GInstanceInitFunc) NULL,
73       };
74       
75       object_type = g_type_register_static (GDK_TYPE_GC,
76                                             "GdkGCWin32",
77                                             &object_info, 0);
78     }
79   
80   return object_type;
81 }
82
83 static void
84 gdk_gc_win32_class_init (GdkGCWin32Class *klass)
85 {
86   GObjectClass *object_class = G_OBJECT_CLASS (klass);
87   GdkGCClass *gc_class = GDK_GC_CLASS (klass);
88   
89   parent_class = g_type_class_peek_parent (klass);
90
91   object_class->finalize = gdk_gc_win32_finalize;
92
93   gc_class->get_values = gdk_win32_gc_get_values;
94   gc_class->set_values = gdk_win32_gc_set_values;
95   gc_class->set_dashes = gdk_win32_gc_set_dashes;
96 }
97
98 static void
99 gdk_gc_win32_finalize (GObject *object)
100 {
101   GdkGCWin32 *win32_gc = GDK_GC_WIN32 (object);
102   
103   if (win32_gc->hcliprgn != NULL)
104     DeleteObject (win32_gc->hcliprgn);
105   
106   if (win32_gc->values_mask & GDK_GC_FONT)
107     gdk_font_unref (win32_gc->font);
108   
109   if (win32_gc->values_mask & GDK_GC_TILE)
110     g_object_unref (win32_gc->tile);
111   
112   if (win32_gc->values_mask & GDK_GC_STIPPLE)
113     g_object_unref (win32_gc->stipple);
114
115   if (win32_gc->pen_dashes)
116     g_free (win32_gc->pen_dashes);
117   
118   G_OBJECT_CLASS (parent_class)->finalize (object);
119 }
120
121 static void
122 gdk_win32_gc_values_to_win32values (GdkGCValues    *values,
123                                     GdkGCValuesMask mask,
124                                     GdkGCWin32     *win32_gc)
125 {                                   
126   char *s = "";
127   gint sw, sh;
128
129   GDK_NOTE (GC, g_print ("{"));
130
131   if (mask & GDK_GC_FOREGROUND)
132     {
133       win32_gc->foreground = values->foreground.pixel;
134       win32_gc->values_mask |= GDK_GC_FOREGROUND;
135       GDK_NOTE (GC, (g_print ("fg=%.06lx", win32_gc->foreground),
136                      s = ","));
137     }
138   
139   if (mask & GDK_GC_BACKGROUND)
140     {
141       win32_gc->background = values->background.pixel;
142       win32_gc->values_mask |= GDK_GC_BACKGROUND;
143       GDK_NOTE (GC, (g_print ("%sbg=%.06lx", s, win32_gc->background),
144                      s = ","));
145     }
146
147   if ((mask & GDK_GC_FONT) && (values->font->type == GDK_FONT_FONT
148                                || values->font->type == GDK_FONT_FONTSET))
149     {
150       if (win32_gc->font != NULL)
151         gdk_font_unref (win32_gc->font);
152       win32_gc->font = values->font;
153       if (win32_gc->font != NULL)
154         {
155           gdk_font_ref (win32_gc->font);
156           win32_gc->values_mask |= GDK_GC_FONT;
157           GDK_NOTE (GC, (g_print ("%sfont=%p", s, win32_gc->font),
158                          s = ","));
159         }
160       else
161         {
162           win32_gc->values_mask &= ~GDK_GC_FONT;
163           GDK_NOTE (GC, (g_print ("%sfont=NULL", s),
164                          s = ","));
165         }
166     }
167
168   if (mask & GDK_GC_FUNCTION)
169     {
170       GDK_NOTE (GC, (g_print ("%srop2=", s),
171                      s = ","));
172       switch (values->function)
173         {
174 #define CASE(x,y) case GDK_##x: win32_gc->rop2 = R2_##y; GDK_NOTE (GC, g_print (#y)); break
175         CASE (COPY, COPYPEN);
176         CASE (INVERT, NOT);
177         CASE (XOR, XORPEN);
178         CASE (CLEAR, BLACK);
179         CASE (AND, MASKPEN);
180         CASE (AND_REVERSE, MASKPENNOT);
181         CASE (AND_INVERT, MASKNOTPEN);
182         CASE (NOOP, NOP);
183         CASE (OR, MERGEPEN);
184         CASE (EQUIV, NOTXORPEN);
185         CASE (OR_REVERSE, MERGEPENNOT);
186         CASE (COPY_INVERT, NOTCOPYPEN);
187         CASE (OR_INVERT, MERGENOTPEN);
188         CASE (NAND, NOTMASKPEN);
189         CASE (NOR, NOTMERGEPEN);
190         CASE (SET, WHITE);
191 #undef CASE
192         }
193       win32_gc->values_mask |= GDK_GC_FUNCTION;
194     }
195
196   if (mask & GDK_GC_FILL)
197     {
198       win32_gc->fill_style = values->fill;
199       win32_gc->values_mask |= GDK_GC_FILL;
200       GDK_NOTE (GC, (g_print ("%sfill=%s", s,
201                               _gdk_win32_fill_style_to_string (win32_gc->fill_style)),
202                      s = ","));
203     }
204
205   if (mask & GDK_GC_TILE)
206     {
207       if (win32_gc->tile != NULL)
208         g_object_unref (win32_gc->tile);
209       win32_gc->tile = values->tile;
210       if (win32_gc->tile != NULL)
211         {
212           g_object_ref (win32_gc->tile);
213           win32_gc->values_mask |= GDK_GC_TILE;
214           GDK_NOTE (GC,
215                     (g_print ("%stile=%p", s,
216                               GDK_PIXMAP_HBITMAP (win32_gc->tile)),
217                      s = ","));
218         }
219       else
220         {
221           win32_gc->values_mask &= ~GDK_GC_TILE;
222           GDK_NOTE (GC, (g_print ("%stile=NULL", s),
223                          s = ","));
224         }
225     }
226
227   if (mask & GDK_GC_STIPPLE)
228     {
229       if (win32_gc->stipple != NULL)
230         g_object_unref (win32_gc->stipple);
231       win32_gc->stipple = values->stipple;
232       if (win32_gc->stipple != NULL)
233         {
234           gdk_drawable_get_size (win32_gc->stipple, &sw, &sh);
235
236 #if 0 /* HB: this size limitation is disabled to make radio and check
237        * buttons work. I got the impression from the API docs, that
238        * it shouldn't be necessary at all, but win9x would do the clipping
239        */
240           if (   (sw != 8 || sh != 8)
241               && !IS_WIN_NT ()) /* HB: the MSDN says it's a Win95 limitation */
242             {
243               /* It seems that it *must* be 8x8, at least on my machine. 
244                * Thus, tile an 8x8 bitmap with the stipple in case it is
245                * smaller, or simply use just the top left 8x8 in case it is
246                * larger.
247                */
248               gchar dummy[8];
249               GdkPixmap *bm = gdk_bitmap_create_from_data (NULL, dummy, 8, 8);
250               GdkGC *gc = gdk_gc_new (bm);
251               gint i, j;
252
253               i = 0;
254               while (i < 8)
255                 {
256                   j = 0;
257                   while (j < 8)
258                     {
259                       gdk_draw_drawable (bm, gc, win32_gc->stipple, 0, 0, i, j, sw, sh);
260                       j += sh;
261                     }
262                   i += sw;
263                 }
264               win32_gc->stipple = bm;
265               gdk_gc_unref (gc);
266             }
267           else
268 #endif
269             g_object_ref (win32_gc->stipple);
270           win32_gc->values_mask |= GDK_GC_STIPPLE;
271           GDK_NOTE (GC,
272                     (g_print ("%sstipple=%p", s,
273                               GDK_PIXMAP_HBITMAP (win32_gc->stipple)),
274                      s = ","));
275         }
276       else
277         {
278           win32_gc->values_mask &= ~GDK_GC_STIPPLE;
279           GDK_NOTE (GC, (g_print ("%sstipple=NULL", s),
280                          s = ","));
281         }
282     }
283
284   if (mask & GDK_GC_CLIP_MASK)
285     {
286       if (win32_gc->hcliprgn != NULL)
287         DeleteObject (win32_gc->hcliprgn);
288
289       if (values->clip_mask != NULL)
290         {
291           win32_gc->hcliprgn = _gdk_win32_bitmap_to_hrgn (values->clip_mask);
292           win32_gc->values_mask |= GDK_GC_CLIP_MASK;
293         }
294       else
295         {
296           win32_gc->hcliprgn = NULL;
297           win32_gc->values_mask &= ~GDK_GC_CLIP_MASK;
298         }
299       GDK_NOTE (GC, (g_print ("%sclip=%p", s, win32_gc->hcliprgn),
300                      s = ","));
301     }
302
303   if (mask & GDK_GC_SUBWINDOW)
304     {
305       win32_gc->subwindow_mode = values->subwindow_mode;
306       win32_gc->values_mask |= GDK_GC_SUBWINDOW;
307       GDK_NOTE (GC, (g_print ("%ssubw=%d", s, win32_gc->subwindow_mode),
308                      s = ","));
309     }
310
311   if (mask & GDK_GC_TS_X_ORIGIN)
312     {
313       win32_gc->values_mask |= GDK_GC_TS_X_ORIGIN;
314       GDK_NOTE (GC, (g_print ("%sts_x=%d", s, values->ts_x_origin),
315                      s = ","));
316     }
317
318   if (mask & GDK_GC_TS_Y_ORIGIN)
319     {
320       win32_gc->values_mask |= GDK_GC_TS_Y_ORIGIN;
321       GDK_NOTE (GC, (g_print ("%sts_y=%d", s, values->ts_y_origin),
322                      s = ","));
323     }
324
325   if (mask & GDK_GC_CLIP_X_ORIGIN)
326     {
327       win32_gc->values_mask |= GDK_GC_CLIP_X_ORIGIN;
328       GDK_NOTE (GC, (g_print ("%sclip_x=%d", s, values->clip_x_origin),
329                      s = ","));
330     }
331
332   if (mask & GDK_GC_CLIP_Y_ORIGIN)
333     {
334       win32_gc->values_mask |= GDK_GC_CLIP_Y_ORIGIN;
335       GDK_NOTE (GC, (g_print ("%sclip_y=%d", s, values->clip_y_origin),
336                      s = ","));
337     }
338
339   if (mask & GDK_GC_EXPOSURES)
340     {
341       win32_gc->graphics_exposures = values->graphics_exposures;
342       win32_gc->values_mask |= GDK_GC_EXPOSURES;
343       GDK_NOTE (GC, (g_print ("%sexp=%d", s, win32_gc->graphics_exposures),
344                      s = ","));
345     }
346
347   if (mask & GDK_GC_LINE_WIDTH)
348     {
349       win32_gc->pen_width = values->line_width;
350       win32_gc->values_mask |= GDK_GC_LINE_WIDTH;
351       GDK_NOTE (GC, (g_print ("%spw=%d", s, win32_gc->pen_width),
352                      s = ","));
353     }
354
355   if (mask & GDK_GC_LINE_STYLE)
356     {
357       switch (values->line_style)
358         {
359         case GDK_LINE_SOLID:
360           if (win32_gc->pen_dashes)
361             {
362               g_free (win32_gc->pen_dashes);
363               win32_gc->pen_dashes = NULL;
364             win32_gc->pen_num_dashes = 0;
365             }
366           win32_gc->pen_style &= ~(PS_STYLE_MASK);
367           win32_gc->pen_style |= PS_SOLID;
368           break;
369         case GDK_LINE_ON_OFF_DASH:
370         case GDK_LINE_DOUBLE_DASH: 
371           if (!win32_gc->pen_dashes)
372             {
373             /* setting to PS_DASH probably isn't correct. If I understand the
374              * xlib docs correctly it should influence the handling of
375              * line endings ? --hb
376              */
377             win32_gc->pen_style &= ~(PS_STYLE_MASK);
378             win32_gc->pen_style |= PS_DASH;
379           }
380           break;
381         }
382       GDK_NOTE (GC, (g_print ("%sps|=PS_STYLE_%s", s, _gdk_win32_psstyle_to_string (win32_gc->pen_style)),
383                      s = ","));
384       win32_gc->values_mask |= GDK_GC_LINE_STYLE;
385     }
386
387   if (mask & GDK_GC_CAP_STYLE)
388     {
389       win32_gc->pen_style &= ~(PS_ENDCAP_MASK);
390       switch (values->cap_style)
391         {
392         case GDK_CAP_NOT_LAST:  /* ??? */
393         case GDK_CAP_BUTT:
394           win32_gc->pen_style |= PS_ENDCAP_FLAT;
395           break;
396         case GDK_CAP_ROUND:
397           win32_gc->pen_style |= PS_ENDCAP_ROUND;
398           break;
399         case GDK_CAP_PROJECTING:
400           win32_gc->pen_style |= PS_ENDCAP_SQUARE;
401           break;
402         }
403       GDK_NOTE (GC, (g_print ("%sps|=PS_ENDCAP_%s", s, _gdk_win32_psendcap_to_string (win32_gc->pen_style)),
404                      s = ","));
405       win32_gc->values_mask |= GDK_GC_CAP_STYLE;
406     }
407
408   if (mask & GDK_GC_JOIN_STYLE)
409     {
410       win32_gc->pen_style &= ~(PS_JOIN_MASK);
411       switch (values->join_style)
412         {
413         case GDK_JOIN_MITER:
414           win32_gc->pen_style |= PS_JOIN_MITER;
415           break;
416         case GDK_JOIN_ROUND:
417           win32_gc->pen_style |= PS_JOIN_ROUND;
418           break;
419         case GDK_JOIN_BEVEL:
420           win32_gc->pen_style |= PS_JOIN_BEVEL;
421           break;
422         }
423       GDK_NOTE (GC, (g_print ("%sps|=PS_JOIN_%s", s, _gdk_win32_psjoin_to_string (win32_gc->pen_style)),
424                      s = ","));
425       win32_gc->values_mask |= GDK_GC_JOIN_STYLE;
426     }
427   GDK_NOTE (GC, g_print ("} mask=(%s)", _gdk_win32_gcvalues_mask_to_string (win32_gc->values_mask)));
428 }
429
430 GdkGC*
431 _gdk_win32_gc_new (GdkDrawable    *drawable,
432                    GdkGCValues    *values,
433                    GdkGCValuesMask mask)
434 {
435   GdkGC *gc;
436   GdkGCWin32 *win32_gc;
437
438   /* NOTICE that the drawable here has to be the impl drawable,
439    * not the publically-visible drawables.
440    */
441   g_return_val_if_fail (GDK_IS_DRAWABLE_IMPL_WIN32 (drawable), NULL);
442
443   gc = g_object_new (_gdk_gc_win32_get_type (), NULL);
444   win32_gc = GDK_GC_WIN32 (gc);
445
446   win32_gc->hcliprgn = NULL;
447
448   /* Use the same default values as X11 does, even if they don't make
449    * sense per se. But apps always set fg and bg anyway.
450    */
451   win32_gc->foreground = 0;
452   win32_gc->background = 1;
453   win32_gc->font = NULL;
454   win32_gc->rop2 = R2_COPYPEN;
455   win32_gc->fill_style = GDK_SOLID;
456   win32_gc->tile = NULL;
457   win32_gc->stipple = NULL;
458   win32_gc->subwindow_mode = GDK_CLIP_BY_CHILDREN;
459   win32_gc->graphics_exposures = TRUE;
460   win32_gc->pen_width = 0;
461   win32_gc->pen_style = PS_GEOMETRIC|PS_ENDCAP_FLAT|PS_JOIN_MITER;
462   win32_gc->pen_dashes = NULL;
463   win32_gc->pen_num_dashes = 0;
464
465   win32_gc->values_mask = GDK_GC_FUNCTION | GDK_GC_FILL;
466
467   GDK_NOTE (GC, g_print ("_gdk_win32_gc_new: %p: ", win32_gc));
468   gdk_win32_gc_values_to_win32values (values, mask, win32_gc);
469   GDK_NOTE (GC, g_print ("\n"));
470
471   win32_gc->hdc = NULL;
472   win32_gc->hwnd = NULL;
473
474   return gc;
475 }
476
477 static void
478 gdk_win32_gc_get_values (GdkGC       *gc,
479                          GdkGCValues *values)
480 {
481   GdkGCWin32 *win32_gc = GDK_GC_WIN32 (gc);
482
483   values->foreground.pixel = win32_gc->foreground;
484   values->background.pixel = win32_gc->background;
485   values->font = win32_gc->font;
486
487   switch (win32_gc->rop2)
488     {
489     case R2_COPYPEN:
490       values->function = GDK_COPY; break;
491     case R2_NOT:
492       values->function = GDK_INVERT; break;
493     case R2_XORPEN:
494       values->function = GDK_XOR; break;
495     case R2_BLACK:
496       values->function = GDK_CLEAR; break;
497     case R2_MASKPEN:
498       values->function = GDK_AND; break;
499     case R2_MASKPENNOT:
500       values->function = GDK_AND_REVERSE; break;
501     case R2_MASKNOTPEN:
502       values->function = GDK_AND_INVERT; break;
503     case R2_NOP:
504       values->function = GDK_NOOP; break;
505     case R2_MERGEPEN:
506       values->function = GDK_OR; break;
507     case R2_NOTXORPEN:
508       values->function = GDK_EQUIV; break;
509     case R2_MERGEPENNOT:
510       values->function = GDK_OR_REVERSE; break;
511     case R2_NOTCOPYPEN:
512       values->function = GDK_COPY_INVERT; break;
513     case R2_MERGENOTPEN:
514       values->function = GDK_OR_INVERT; break;
515     case R2_NOTMASKPEN:
516       values->function = GDK_NAND; break;
517     case R2_NOTMERGEPEN:
518       values->function = GDK_NOR; break;
519     case R2_WHITE:
520       values->function = GDK_SET; break;
521     }
522
523   values->fill = win32_gc->fill_style;
524
525   values->tile = win32_gc->tile;
526   values->stipple = win32_gc->stipple;
527
528   /* Also the X11 backend always returns a NULL clip_mask */
529   values->clip_mask = NULL;
530
531   values->subwindow_mode = win32_gc->subwindow_mode;
532   values->ts_x_origin = win32_gc->parent_instance.ts_x_origin;
533   values->ts_y_origin = win32_gc->parent_instance.ts_y_origin;
534   values->clip_x_origin = win32_gc->parent_instance.clip_x_origin;
535   values->clip_y_origin = win32_gc->parent_instance.clip_y_origin;
536   values->graphics_exposures = win32_gc->graphics_exposures;
537   values->line_width = win32_gc->pen_width;
538   
539   if (win32_gc->pen_style & PS_SOLID)
540     values->line_style = GDK_LINE_SOLID;
541   else if (win32_gc->pen_style & PS_DASH)
542     values->line_style = GDK_LINE_ON_OFF_DASH;
543   else
544     values->line_style = GDK_LINE_SOLID;
545
546   /* PS_ENDCAP_ROUND is zero */
547   if (win32_gc->pen_style & PS_ENDCAP_FLAT)
548     values->cap_style = GDK_CAP_BUTT;
549   else if (win32_gc->pen_style & PS_ENDCAP_SQUARE)
550     values->cap_style = GDK_CAP_PROJECTING;
551   else
552     values->cap_style = GDK_CAP_ROUND;
553     
554   /* PS_JOIN_ROUND is zero */
555   if (win32_gc->pen_style & PS_JOIN_MITER)
556     values->join_style = GDK_JOIN_MITER;
557   else if (win32_gc->pen_style & PS_JOIN_BEVEL)
558     values->join_style = GDK_JOIN_BEVEL;
559   else
560     values->join_style = GDK_JOIN_ROUND;
561 }
562
563 static void
564 gdk_win32_gc_set_values (GdkGC           *gc,
565                          GdkGCValues     *values,
566                          GdkGCValuesMask  mask)
567 {
568   g_return_if_fail (GDK_IS_GC (gc));
569
570   GDK_NOTE (GC, g_print ("gdk_win32_gc_set_values: %p: ", GDK_GC_WIN32 (gc)));
571   gdk_win32_gc_values_to_win32values (values, mask, GDK_GC_WIN32 (gc));
572   GDK_NOTE (GC, g_print ("\n"));
573 }
574
575 static void
576 gdk_win32_gc_set_dashes (GdkGC *gc,
577                          gint   dash_offset,
578                          gint8  dash_list[],
579                          gint   n)
580 {
581   GdkGCWin32 *win32_gc;
582   int i;
583
584   g_return_if_fail (GDK_IS_GC (gc));
585   g_return_if_fail (dash_list != NULL);
586
587   win32_gc = GDK_GC_WIN32 (gc);
588
589   /* mark as set, see gdk_win32_gc_values_to_win32values () for the reason */
590   win32_gc->values_mask |= GDK_GC_LINE_STYLE;
591
592   win32_gc->pen_style &= ~(PS_STYLE_MASK);
593
594   win32_gc->pen_style |= (PS_GEOMETRIC | PS_USERSTYLE);
595   win32_gc->pen_num_dashes = n;
596   win32_gc->pen_dashes = g_new (DWORD, n);
597   for (i = 0; i < n; i++)
598     win32_gc->pen_dashes[i] = dash_list[i];
599 }
600
601 void
602 gdk_gc_set_clip_rectangle (GdkGC        *gc,
603                            GdkRectangle *rectangle)
604 {
605   GdkGCWin32 *win32_gc;
606
607   g_return_if_fail (GDK_IS_GC (gc));
608
609   win32_gc = GDK_GC_WIN32 (gc);
610
611   if (win32_gc->hcliprgn)
612     DeleteObject (win32_gc->hcliprgn);
613
614   if (rectangle)
615     {
616       GDK_NOTE (GC, g_print ("gdk_gc_set_clip_rectangle: %p: %s\n",
617                              win32_gc,
618                              _gdk_win32_gdkrectangle_to_string (rectangle)));
619       win32_gc->hcliprgn = CreateRectRgn (rectangle->x, rectangle->y,
620                                           rectangle->x + rectangle->width,
621                                           rectangle->y + rectangle->height);
622       win32_gc->values_mask |= GDK_GC_CLIP_MASK;
623     }
624   else
625     {
626       GDK_NOTE (GC, g_print ("gdk_gc_set_clip_rectangle: NULL\n"));
627
628       win32_gc->hcliprgn = NULL;
629       win32_gc->values_mask &= ~GDK_GC_CLIP_MASK;
630     }
631
632   gc->clip_x_origin = 0;
633   gc->clip_y_origin = 0;
634   
635   win32_gc->values_mask &= ~(GDK_GC_CLIP_X_ORIGIN | GDK_GC_CLIP_Y_ORIGIN);
636
637
638 void
639 gdk_gc_set_clip_region (GdkGC     *gc,
640                         GdkRegion *region)
641 {
642   GdkGCWin32 *win32_gc;
643
644   g_return_if_fail (GDK_IS_GC (gc));
645
646   win32_gc = GDK_GC_WIN32 (gc);
647
648   if (win32_gc->hcliprgn)
649     DeleteObject (win32_gc->hcliprgn);
650
651   if (region)
652     {
653       GDK_NOTE (GC, g_print ("gdk_gc_set_clip_region: %p: %s\n",
654                              win32_gc,
655                              _gdk_win32_gdkregion_to_string (region)));
656
657       win32_gc->hcliprgn = _gdk_win32_gdkregion_to_hrgn (region, 0, 0);
658       win32_gc->values_mask |= GDK_GC_CLIP_MASK;
659     }
660   else
661     {
662       GDK_NOTE (GC, g_print ("gdk_gc_set_clip_region: NULL\n"));
663
664       win32_gc->hcliprgn = NULL;
665       win32_gc->values_mask &= ~GDK_GC_CLIP_MASK;
666     }
667
668   gc->clip_x_origin = 0;
669   gc->clip_y_origin = 0;
670   
671   win32_gc->values_mask &= ~(GDK_GC_CLIP_X_ORIGIN | GDK_GC_CLIP_Y_ORIGIN);
672 }
673
674 void
675 gdk_gc_copy (GdkGC *dst_gc,
676              GdkGC *src_gc)
677 {
678   GdkGCWin32 *dst_win32_gc;
679   GdkGCWin32 *src_win32_gc;
680
681   g_return_if_fail (GDK_IS_GC_WIN32 (dst_gc));
682   g_return_if_fail (GDK_IS_GC_WIN32 (src_gc));
683   
684   dst_win32_gc = GDK_GC_WIN32 (dst_gc);
685   src_win32_gc = GDK_GC_WIN32 (src_gc);
686
687   GDK_NOTE (GC, g_print ("gdk_gc_copy: %p := %p\n", dst_win32_gc, src_win32_gc));
688
689   if (dst_gc->colormap)
690     g_object_unref (G_OBJECT (dst_gc->colormap));
691
692   if (dst_win32_gc->hcliprgn != NULL)
693     DeleteObject (dst_win32_gc->hcliprgn);
694
695   if (dst_win32_gc->font != NULL)
696     gdk_font_unref (dst_win32_gc->font);
697
698   if (dst_win32_gc->tile != NULL)
699     g_object_unref (dst_win32_gc->tile);
700
701   if (dst_win32_gc->stipple != NULL)
702     g_object_unref (dst_win32_gc->stipple);
703
704   if (dst_win32_gc->pen_dashes)
705     g_free (dst_win32_gc->pen_dashes);
706   
707   *dst_win32_gc = *src_win32_gc;
708   dst_win32_gc->hdc = NULL;
709
710   if (dst_gc->colormap)
711     g_object_ref (G_OBJECT (dst_gc->colormap));
712
713   if (dst_win32_gc->hcliprgn)
714     {
715       /* create a new region, to copy to */
716       dst_win32_gc->hcliprgn = CreateRectRgn (0,0,1,1);
717       /* overwrite from source */
718       CombineRgn (dst_win32_gc->hcliprgn, src_win32_gc->hcliprgn,
719                   NULL, RGN_COPY);
720     }
721
722   if (dst_win32_gc->font != NULL)
723     gdk_font_ref (dst_win32_gc->font);
724
725   if (dst_win32_gc->tile != NULL)
726     g_object_ref (dst_win32_gc->tile);
727
728   if (dst_win32_gc->stipple != NULL)
729     g_object_ref (dst_win32_gc->stipple);
730
731   if (dst_win32_gc->pen_dashes)
732     dst_win32_gc->pen_dashes = g_memdup (src_win32_gc->pen_dashes, 
733                                          sizeof (DWORD) * src_win32_gc->pen_num_dashes);
734 }
735
736 GdkScreen *  
737 gdk_gc_get_screen (GdkGC *gc)
738 {
739   g_return_val_if_fail (GDK_IS_GC_WIN32 (gc), NULL);
740   
741   return _gdk_screen;
742 }
743
744 static guint bitmask[9] = { 0, 1, 3, 7, 15, 31, 63, 127, 255 };
745
746 COLORREF
747 _gdk_win32_colormap_color (GdkColormap *colormap,
748                            gulong       pixel)
749 {
750   const GdkVisual *visual;
751   GdkColormapPrivateWin32 *colormap_private;
752   guchar r, g, b;
753
754   if (colormap == NULL)
755     return DIBINDEX (pixel & 1);
756
757   colormap_private = GDK_WIN32_COLORMAP_DATA (colormap);
758
759   g_assert (colormap_private != NULL);
760
761   visual = colormap->visual;
762   switch (visual->type)
763     {
764     case GDK_VISUAL_GRAYSCALE:
765     case GDK_VISUAL_PSEUDO_COLOR:
766     case GDK_VISUAL_STATIC_COLOR:
767       return PALETTEINDEX (pixel);
768
769     case GDK_VISUAL_TRUE_COLOR:
770       r = (pixel & visual->red_mask) >> visual->red_shift;
771       r = (r * 255) / bitmask[visual->red_prec];
772       g = (pixel & visual->green_mask) >> visual->green_shift;
773       g = (g * 255) / bitmask[visual->green_prec];
774       b = (pixel & visual->blue_mask) >> visual->blue_shift;
775       b = (b * 255) / bitmask[visual->blue_prec];
776       return RGB (r, g, b);
777
778     default:
779       g_assert_not_reached ();
780       return 0;
781     }
782 }
783
784 static COLORREF
785 predraw_set_foreground (GdkGC       *gc,
786                         GdkColormap *colormap,
787                         gboolean    *ok)
788 {
789   COLORREF fg;
790   GdkGCWin32 *win32_gc = (GdkGCWin32 *) gc;
791   GdkColormapPrivateWin32 *colormap_private;
792   gint k;
793
794   if (colormap &&
795       (colormap->visual->type == GDK_VISUAL_PSEUDO_COLOR ||
796        colormap->visual->type == GDK_VISUAL_STATIC_COLOR))
797     {
798       colormap_private = GDK_WIN32_COLORMAP_DATA (colormap);
799
800       g_assert (colormap_private != NULL);
801
802       if (!(win32_gc->holdpal = SelectPalette (win32_gc->hdc, colormap_private->hpal, FALSE)))
803         WIN32_GDI_FAILED ("SelectPalette"), *ok = FALSE;
804       else if ((k = RealizePalette (win32_gc->hdc)) == GDI_ERROR)
805         WIN32_GDI_FAILED ("RealizePalette"), *ok = FALSE;
806       else if (k > 0)
807         GDK_NOTE (COLORMAP, g_print ("predraw_set_foreground: realized %p: %d colors\n",
808                                      colormap_private->hpal, k));
809     }
810
811   fg = _gdk_win32_colormap_color (colormap, win32_gc->foreground);
812
813   GDK_NOTE (GC, g_print ("predraw_set_foreground: fg=%06lx\n", fg));
814   return fg;
815 }
816
817 /**
818  * gdk_win32_hdc_get:
819  * @drawable: destination #GdkDrawable
820  * @gc: #GdkGC to use for drawing on @drawable
821  * @usage: mask indicating what properties needs to be set up
822  *
823  * Allocates a Windows device context handle (HDC) for drawing into
824  * @drawable, and sets it up appropriately according to @usage.
825  *
826  * Each #GdkGC can at one time have only one HDC associated with it.
827  *
828  * The following flags in @mask are handled:
829  *
830  * If %GDK_GC_FOREGROUND is set in @mask, a solid brush of the
831  * foreground color in @gc is selected into the HDC. The text color of
832  * the HDC is also set. If the @drawable has a palette (256-color
833  * mode), the palette is selected and realized.
834  *
835  * If any of the line attribute flags (%GDK_GC_LINE_WIDTH,
836  * %GDK_GC_LINE_STYLE, %GDK_GC_CAP_STYLE and %GDK_GC_JOIN_STYLE) is
837  * set in @mask, a solid pen of the foreground color and appropriate
838  * width and stule is created and selected into the HDC. Note that the
839  * dash properties are not completely implemented.
840  *
841  * If the %GDK_GC_FONT flag is set, the background mix mode is set to
842  * %TRANSPARENT. and the text alignment is set to
843  * %TA_BASELINE|%TA_LEFT. Note that no font gets selected into the HDC
844  * by this function.
845  *
846  * Some things are done regardless of @mask: If the function in @gc is
847  * any other than %GDK_COPY, the raster operation of the HDC is
848  * set. If @gc has a clip mask, the clip region of the HDC is set.
849  *
850  * Note that the fill style, tile, stipple, and tile and stipple
851  * origins in the @gc are ignored by this function. (In general, tiles
852  * and stipples can't be implemented directly on Win32; you need to do
853  * multiple pass drawing and blitting to implement tiles or
854  * stipples. GDK does just that when you call the GDK drawing
855  * functions with a GC that asks for tiles or stipples.)
856  *
857  * When the HDC is no longer used, it should be released by calling
858  * <function>gdk_win32_hdc_release()</function> with the same
859  * parameters.
860  *
861  * If you modify the HDC by calling <function>SelectObject</function>
862  * you should undo those modifications before calling
863  * <function>gdk_win32_hdc_release()</function>.
864  *
865  * Return value: The HDC.
866  **/
867 HDC
868 gdk_win32_hdc_get (GdkDrawable    *drawable,
869                    GdkGC          *gc,
870                    GdkGCValuesMask usage)
871 {
872   GdkGCWin32 *win32_gc = (GdkGCWin32 *) gc;
873   GdkDrawableImplWin32 *impl = NULL;
874   gboolean ok = TRUE;
875   COLORREF fg = RGB (0, 0, 0);
876   LOGBRUSH logbrush;
877   HPEN hpen;
878   HBRUSH hbr;
879
880   g_assert (win32_gc->hdc == NULL);
881
882   if (GDK_IS_DRAWABLE_IMPL_WIN32 (drawable))
883     impl = GDK_DRAWABLE_IMPL_WIN32(drawable);
884   else if (GDK_IS_WINDOW (drawable))
885     impl = GDK_DRAWABLE_IMPL_WIN32 ((GDK_WINDOW_OBJECT (drawable))->impl);
886   else if (GDK_IS_PIXMAP (drawable))
887     impl = GDK_DRAWABLE_IMPL_WIN32 ((GDK_PIXMAP_OBJECT (drawable))->impl);
888   else
889     g_assert_not_reached ();
890
891   win32_gc->hwnd = impl->handle;
892
893   if (GDK_IS_PIXMAP_IMPL_WIN32 (impl))
894     {
895       if ((win32_gc->hdc = CreateCompatibleDC (NULL)) == NULL)
896         WIN32_GDI_FAILED ("CreateCompatibleDC"), ok = FALSE;
897
898       if (ok && (win32_gc->saved_dc = SaveDC (win32_gc->hdc)) == 0)
899         WIN32_GDI_FAILED ("SaveDC"), ok = FALSE;
900       
901       if (ok && SelectObject (win32_gc->hdc, win32_gc->hwnd) == NULL)
902         WIN32_GDI_FAILED ("SelectObject"), ok = FALSE;
903     }
904   else
905     {
906       if ((win32_gc->hdc = GetDC (win32_gc->hwnd)) == NULL)
907         WIN32_GDI_FAILED ("GetDC");
908       
909       if (ok && (win32_gc->saved_dc = SaveDC (win32_gc->hdc)) == 0)
910         WIN32_GDI_FAILED ("SaveDC");
911     }
912   
913   if (ok && (usage & GDK_GC_FOREGROUND))
914     {
915       fg = predraw_set_foreground (gc, impl->colormap, &ok);
916       if (ok && (hbr = CreateSolidBrush (fg)) == NULL)
917         WIN32_GDI_FAILED ("CreateSolidBrush"), ok = FALSE;
918
919       if (ok && SelectObject (win32_gc->hdc, hbr) == NULL)
920         WIN32_GDI_FAILED ("SelectObject"), ok = FALSE;
921
922       if (ok && SetTextColor (win32_gc->hdc, fg) == CLR_INVALID)
923         WIN32_GDI_FAILED ("SetTextColor"), ok = FALSE;
924     }
925
926   if (ok && (usage & LINE_ATTRIBUTES))
927     {
928       /* Create and select pen */
929       logbrush.lbStyle = BS_SOLID;
930       logbrush.lbColor = fg;
931       logbrush.lbHatch = 0;
932       
933       if (win32_gc->pen_num_dashes > 0 && !IS_WIN_NT ())
934         {
935           /* The Win9x GDI is rather limited so we either draw dashed
936            * lines ourselves (only horizontal and vertical) or let them be
937            * drawn solid to avoid implementing a whole line renderer.
938            */
939           if ((hpen = ExtCreatePen (
940                                     (win32_gc->pen_style & ~(PS_STYLE_MASK)) | PS_SOLID,
941                                     MAX (win32_gc->pen_width, 1),
942                                     &logbrush, 
943                                     0, NULL)) == NULL)
944             WIN32_GDI_FAILED ("ExtCreatePen"), ok = FALSE;
945         }
946       else
947         {
948           if ((hpen = ExtCreatePen (win32_gc->pen_style,
949                                     MAX (win32_gc->pen_width, 1),
950                                     &logbrush, 
951                                     win32_gc->pen_num_dashes,
952                                     win32_gc->pen_dashes)) == NULL)
953             WIN32_GDI_FAILED ("ExtCreatePen"), ok = FALSE;
954         }
955       
956       if (ok && SelectObject (win32_gc->hdc, hpen) == NULL)
957         WIN32_GDI_FAILED ("SelectObject"), ok = FALSE;
958     }
959
960   if (ok && (usage & GDK_GC_FONT))
961     {
962       if (SetBkMode (win32_gc->hdc, TRANSPARENT) == 0)
963         WIN32_GDI_FAILED ("SetBkMode"), ok = FALSE;
964   
965       if (ok && SetTextAlign (win32_gc->hdc, TA_BASELINE|TA_LEFT|TA_NOUPDATECP) == GDI_ERROR)
966         WIN32_GDI_FAILED ("SetTextAlign"), ok = FALSE;
967     }
968   
969   if (ok && win32_gc->rop2 != R2_COPYPEN)
970     if (SetROP2 (win32_gc->hdc, win32_gc->rop2) == 0)
971       WIN32_GDI_FAILED ("SetROP2"), ok = FALSE;
972
973   if (ok &&
974       (win32_gc->values_mask & GDK_GC_CLIP_MASK) &&
975       win32_gc->hcliprgn != NULL)
976     {
977       if (SelectClipRgn (win32_gc->hdc, win32_gc->hcliprgn) == ERROR)
978         WIN32_API_FAILED ("SelectClipRgn"), ok = FALSE;
979
980       if (ok && win32_gc->values_mask & (GDK_GC_CLIP_X_ORIGIN | GDK_GC_CLIP_Y_ORIGIN) &&
981           OffsetClipRgn (win32_gc->hdc,
982             win32_gc->values_mask & GDK_GC_CLIP_X_ORIGIN ? gc->clip_x_origin : 0,
983             win32_gc->values_mask & GDK_GC_CLIP_Y_ORIGIN ? gc->clip_y_origin : 0) == ERROR)
984         WIN32_API_FAILED ("OffsetClipRgn"), ok = FALSE;
985     }
986
987   GDK_NOTE (GC, (g_print ("gdk_win32_hdc_get: %p (%s): ",
988                           win32_gc, _gdk_win32_gcvalues_mask_to_string (usage)),
989                  _gdk_win32_print_dc (win32_gc->hdc)));
990
991   return win32_gc->hdc;
992 }
993
994 /**
995  * gdk_win32_hdc_release:
996  * @drawable: destination #GdkDrawable
997  * @gc: #GdkGC to use for drawing on @drawable
998  * @usage: mask indicating what properties were set up
999  *
1000  * This function deallocates the Windows device context allocated by
1001  * <funcion>gdk_win32_hdc_get()</function>. It should be called with
1002  * the same parameters.
1003  **/
1004 void
1005 gdk_win32_hdc_release (GdkDrawable    *drawable,
1006                        GdkGC          *gc,
1007                        GdkGCValuesMask usage)
1008 {
1009   GdkGCWin32 *win32_gc = (GdkGCWin32 *) gc;
1010   GdkDrawableImplWin32 *impl = NULL;
1011   HGDIOBJ hpen = NULL;
1012   HGDIOBJ hbr = NULL;
1013
1014   GDK_NOTE (GC, g_print ("gdk_win32_hdc_release: %p: %p (%s)\n",
1015                          win32_gc, win32_gc->hdc,
1016                          _gdk_win32_gcvalues_mask_to_string (usage)));
1017
1018   if (GDK_IS_DRAWABLE_IMPL_WIN32 (drawable))
1019     impl = GDK_DRAWABLE_IMPL_WIN32(drawable);
1020   else if (GDK_IS_WINDOW (drawable))
1021     impl = GDK_DRAWABLE_IMPL_WIN32 ((GDK_WINDOW_OBJECT (drawable))->impl);
1022   else if (GDK_IS_PIXMAP (drawable))
1023     impl = GDK_DRAWABLE_IMPL_WIN32 ((GDK_PIXMAP_OBJECT (drawable))->impl);
1024   else
1025     g_assert_not_reached ();
1026
1027   if (win32_gc->holdpal != NULL)
1028     {
1029       gint k;
1030       
1031       if (!SelectPalette (win32_gc->hdc, win32_gc->holdpal, FALSE))
1032         WIN32_GDI_FAILED ("SelectPalette");
1033       else if ((k = RealizePalette (win32_gc->hdc)) == GDI_ERROR)
1034         WIN32_GDI_FAILED ("RealizePalette");
1035       else if (k > 0)
1036         GDK_NOTE (COLORMAP, g_print ("gdk_win32_hdc_release: realized %p: %d colors\n",
1037                                      win32_gc->holdpal, k));
1038       win32_gc->holdpal = NULL;
1039     }
1040
1041   if (usage & LINE_ATTRIBUTES)
1042     if ((hpen = GetCurrentObject (win32_gc->hdc, OBJ_PEN)) == NULL)
1043       WIN32_GDI_FAILED ("GetCurrentObject");
1044   
1045   if (usage & GDK_GC_FOREGROUND)
1046     if ((hbr = GetCurrentObject (win32_gc->hdc, OBJ_BRUSH)) == NULL)
1047       WIN32_GDI_FAILED ("GetCurrentObject");
1048
1049   GDI_CALL (RestoreDC, (win32_gc->hdc, win32_gc->saved_dc));
1050
1051   if (GDK_IS_PIXMAP_IMPL_WIN32 (impl))
1052     GDI_CALL (DeleteDC, (win32_gc->hdc));
1053   else
1054     GDI_CALL (ReleaseDC, (win32_gc->hwnd, win32_gc->hdc));
1055
1056   if (hpen != NULL)
1057     GDI_CALL (DeleteObject, (hpen));
1058   
1059   if (hbr != NULL)
1060     GDI_CALL (DeleteObject, (hbr));
1061
1062   win32_gc->hdc = NULL;
1063 }
1064
1065 /* This function originally from Jean-Edouard Lachand-Robert, and
1066  * available at www.codeguru.com. Simplified for our needs, not sure
1067  * how much of the original code left any longer. Now handles just
1068  * one-bit deep bitmaps (in Window parlance, ie those that GDK calls
1069  * bitmaps (and not pixmaps), with zero pixels being transparent.
1070  */
1071
1072 /* _gdk_win32_bitmap_to_hrgn : Create a region from the
1073  * "non-transparent" pixels of a bitmap.
1074  */
1075
1076 HRGN
1077 _gdk_win32_bitmap_to_hrgn (GdkPixmap *pixmap)
1078 {
1079   HRGN hRgn = NULL;
1080   HRGN h;
1081   DWORD maxRects;
1082   RGNDATA *pData;
1083   guchar *bits;
1084   gint width, height, bpl;
1085   guchar *p;
1086   gint x, y;
1087
1088   g_assert (GDK_PIXMAP_OBJECT(pixmap)->depth == 1);
1089
1090   bits = GDK_PIXMAP_IMPL_WIN32 (GDK_PIXMAP_OBJECT (pixmap)->impl)->bits;
1091   width = GDK_PIXMAP_IMPL_WIN32 (GDK_PIXMAP_OBJECT (pixmap)->impl)->width;
1092   height = GDK_PIXMAP_IMPL_WIN32 (GDK_PIXMAP_OBJECT (pixmap)->impl)->height;
1093   bpl = ((width - 1)/32 + 1)*4;
1094
1095   /* For better performances, we will use the ExtCreateRegion()
1096    * function to create the region. This function take a RGNDATA
1097    * structure on entry. We will add rectangles by amount of
1098    * ALLOC_UNIT number in this structure.
1099    */
1100   #define ALLOC_UNIT  100
1101   maxRects = ALLOC_UNIT;
1102
1103   pData = g_malloc (sizeof (RGNDATAHEADER) + (sizeof (RECT) * maxRects));
1104   pData->rdh.dwSize = sizeof (RGNDATAHEADER);
1105   pData->rdh.iType = RDH_RECTANGLES;
1106   pData->rdh.nCount = pData->rdh.nRgnSize = 0;
1107   SetRect (&pData->rdh.rcBound, MAXLONG, MAXLONG, 0, 0);
1108
1109   for (y = 0; y < height; y++)
1110     {
1111       /* Scan each bitmap row from left to right*/
1112       p = (guchar *) bits + y * bpl;
1113       for (x = 0; x < width; x++)
1114         {
1115           /* Search for a continuous range of "non transparent pixels"*/
1116           gint x0 = x;
1117           while (x < width)
1118             {
1119               if ((((p[x/8])>>(7-(x%8)))&1) == 0)
1120                 /* This pixel is "transparent"*/
1121                 break;
1122               x++;
1123             }
1124           
1125           if (x > x0)
1126             {
1127               RECT *pr;
1128               /* Add the pixels (x0, y) to (x, y+1) as a new rectangle
1129                * in the region
1130                */
1131               if (pData->rdh.nCount >= maxRects)
1132                 {
1133                   maxRects += ALLOC_UNIT;
1134                   pData = g_realloc (pData, sizeof(RGNDATAHEADER)
1135                                      + (sizeof(RECT) * maxRects));
1136                 }
1137               pr = (RECT *) &pData->Buffer;
1138               SetRect (&pr[pData->rdh.nCount], x0, y, x, y+1);
1139               if (x0 < pData->rdh.rcBound.left)
1140                 pData->rdh.rcBound.left = x0;
1141               if (y < pData->rdh.rcBound.top)
1142                 pData->rdh.rcBound.top = y;
1143               if (x > pData->rdh.rcBound.right)
1144                 pData->rdh.rcBound.right = x;
1145               if (y+1 > pData->rdh.rcBound.bottom)
1146                 pData->rdh.rcBound.bottom = y+1;
1147               pData->rdh.nCount++;
1148               
1149               /* On Windows98, ExtCreateRegion() may fail if the
1150                * number of rectangles is too large (ie: >
1151                * 4000). Therefore, we have to create the region by
1152                * multiple steps.
1153                */
1154               if (pData->rdh.nCount == 2000)
1155                 {
1156                   HRGN h = ExtCreateRegion (NULL, sizeof(RGNDATAHEADER) + (sizeof(RECT) * maxRects), pData);
1157                   if (hRgn)
1158                     {
1159                       CombineRgn(hRgn, hRgn, h, RGN_OR);
1160                       DeleteObject(h);
1161                     }
1162                   else
1163                     hRgn = h;
1164                   pData->rdh.nCount = 0;
1165                   SetRect (&pData->rdh.rcBound, MAXLONG, MAXLONG, 0, 0);
1166                 }
1167             }
1168         }
1169     }
1170   
1171   /* Create or extend the region with the remaining rectangles*/
1172   h = ExtCreateRegion (NULL, sizeof (RGNDATAHEADER)
1173                        + (sizeof (RECT) * maxRects), pData);
1174   if (hRgn)
1175     {
1176       CombineRgn (hRgn, hRgn, h, RGN_OR);
1177       DeleteObject (h);
1178     }
1179   else
1180     hRgn = h;
1181
1182   /* Clean up*/
1183   g_free (pData);
1184
1185   return hRgn;
1186 }
1187
1188 HRGN
1189 _gdk_win32_gdkregion_to_hrgn (GdkRegion *region,
1190                               gint       x_origin,
1191                               gint       y_origin)
1192 {
1193   HRGN hrgn;
1194   RGNDATA *rgndata;
1195   RECT *rect;
1196   GdkRegionBox *boxes = region->rects;
1197   guint nbytes =
1198     sizeof (RGNDATAHEADER) + (sizeof (RECT) * region->numRects);
1199   int i;
1200
1201   rgndata = g_malloc (nbytes);
1202   rgndata->rdh.dwSize = sizeof (RGNDATAHEADER);
1203   rgndata->rdh.iType = RDH_RECTANGLES;
1204   rgndata->rdh.nCount = rgndata->rdh.nRgnSize = 0;
1205   SetRect (&rgndata->rdh.rcBound,
1206            G_MAXSHORT, G_MAXSHORT, G_MINSHORT, G_MINSHORT);
1207
1208   for (i = 0; i < region->numRects; i++)
1209     {
1210       rect = ((RECT *) rgndata->Buffer) + rgndata->rdh.nCount++;
1211
1212       rect->left = CLAMP (boxes[i].x1 + x_origin,
1213                           G_MINSHORT, G_MAXSHORT);
1214       rect->right = CLAMP (boxes[i].x2 + x_origin,
1215                            G_MINSHORT, G_MAXSHORT);
1216       rect->top = CLAMP (boxes[i].y1 + y_origin,
1217                          G_MINSHORT, G_MAXSHORT);
1218       rect->bottom = CLAMP (boxes[i].y2 + y_origin,
1219                             G_MINSHORT, G_MAXSHORT);
1220
1221       if (rect->left < rgndata->rdh.rcBound.left)
1222         rgndata->rdh.rcBound.left = rect->left;
1223       if (rect->right > rgndata->rdh.rcBound.right)
1224         rgndata->rdh.rcBound.right = rect->right;
1225       if (rect->top < rgndata->rdh.rcBound.top)
1226         rgndata->rdh.rcBound.top = rect->top;
1227       if (rect->bottom > rgndata->rdh.rcBound.bottom)
1228         rgndata->rdh.rcBound.bottom = rect->bottom;
1229     }
1230   if ((hrgn = ExtCreateRegion (NULL, nbytes, rgndata)) == NULL)
1231     WIN32_API_FAILED ("ExtCreateRegion");
1232
1233   g_free (rgndata);
1234
1235   return (hrgn);
1236 }