]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkgc-win32.c
d4c2af737b16fac0a7376efbec7e7f5ba6e7461a
[~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_gc->clip_x_origin = src_gc->clip_x_origin;
708   dst_gc->clip_y_origin = src_gc->clip_y_origin;
709   dst_gc->ts_x_origin = src_gc->ts_x_origin;
710   dst_gc->ts_y_origin = src_gc->ts_y_origin;
711   dst_gc->colormap = src_gc->colormap;
712   if (dst_gc->colormap)
713     g_object_ref (G_OBJECT (dst_gc->colormap));
714
715   dst_win32_gc->hcliprgn = src_win32_gc->hcliprgn;
716   if (dst_win32_gc->hcliprgn)
717     {
718       /* create a new region, to copy to */
719       dst_win32_gc->hcliprgn = CreateRectRgn (0,0,1,1);
720       /* overwrite from source */
721       CombineRgn (dst_win32_gc->hcliprgn, src_win32_gc->hcliprgn,
722                   NULL, RGN_COPY);
723     }
724
725   dst_win32_gc->values_mask = src_win32_gc->values_mask; 
726   dst_win32_gc->foreground = src_win32_gc->foreground;
727   dst_win32_gc->background = src_win32_gc->background;
728   dst_win32_gc->font = src_win32_gc->font;
729   if (dst_win32_gc->font != NULL)
730     gdk_font_ref (dst_win32_gc->font);
731
732   dst_win32_gc->rop2 = src_win32_gc->rop2;
733   dst_win32_gc->fill_style = src_win32_gc->fill_style;
734   dst_win32_gc->tile = src_win32_gc->tile;
735   if (dst_win32_gc->tile != NULL)
736     g_object_ref (dst_win32_gc->tile);
737
738   dst_win32_gc->stipple = src_win32_gc->stipple;
739   if (dst_win32_gc->stipple != NULL)
740     g_object_ref (dst_win32_gc->stipple);
741
742   dst_win32_gc->subwindow_mode = src_win32_gc->subwindow_mode;
743   dst_win32_gc->graphics_exposures = src_win32_gc->graphics_exposures;
744   dst_win32_gc->pen_width = src_win32_gc->pen_width;
745   dst_win32_gc->pen_style = src_win32_gc->pen_style;
746   dst_win32_gc->pen_dashes = src_win32_gc->pen_dashes;
747   if (dst_win32_gc->pen_dashes)
748     dst_win32_gc->pen_dashes = g_memdup (src_win32_gc->pen_dashes, 
749                                          sizeof (DWORD) * src_win32_gc->pen_num_dashes);
750   dst_win32_gc->pen_num_dashes = src_win32_gc->pen_num_dashes;
751
752
753   dst_win32_gc->hdc = NULL;
754   dst_win32_gc->saved_dc = FALSE;
755   dst_win32_gc->hwnd = NULL;
756   dst_win32_gc->holdpal = NULL;
757 }
758
759 GdkScreen *  
760 gdk_gc_get_screen (GdkGC *gc)
761 {
762   g_return_val_if_fail (GDK_IS_GC_WIN32 (gc), NULL);
763   
764   return _gdk_screen;
765 }
766
767 static guint bitmask[9] = { 0, 1, 3, 7, 15, 31, 63, 127, 255 };
768
769 COLORREF
770 _gdk_win32_colormap_color (GdkColormap *colormap,
771                            gulong       pixel)
772 {
773   const GdkVisual *visual;
774   GdkColormapPrivateWin32 *colormap_private;
775   guchar r, g, b;
776
777   if (colormap == NULL)
778     return DIBINDEX (pixel & 1);
779
780   colormap_private = GDK_WIN32_COLORMAP_DATA (colormap);
781
782   g_assert (colormap_private != NULL);
783
784   visual = colormap->visual;
785   switch (visual->type)
786     {
787     case GDK_VISUAL_GRAYSCALE:
788     case GDK_VISUAL_PSEUDO_COLOR:
789     case GDK_VISUAL_STATIC_COLOR:
790       return PALETTEINDEX (pixel);
791
792     case GDK_VISUAL_TRUE_COLOR:
793       r = (pixel & visual->red_mask) >> visual->red_shift;
794       r = (r * 255) / bitmask[visual->red_prec];
795       g = (pixel & visual->green_mask) >> visual->green_shift;
796       g = (g * 255) / bitmask[visual->green_prec];
797       b = (pixel & visual->blue_mask) >> visual->blue_shift;
798       b = (b * 255) / bitmask[visual->blue_prec];
799       return RGB (r, g, b);
800
801     default:
802       g_assert_not_reached ();
803       return 0;
804     }
805 }
806
807 static COLORREF
808 predraw_set_foreground (GdkGC       *gc,
809                         GdkColormap *colormap,
810                         gboolean    *ok)
811 {
812   COLORREF fg;
813   GdkGCWin32 *win32_gc = (GdkGCWin32 *) gc;
814   GdkColormapPrivateWin32 *colormap_private;
815   gint k;
816
817   if (colormap &&
818       (colormap->visual->type == GDK_VISUAL_PSEUDO_COLOR ||
819        colormap->visual->type == GDK_VISUAL_STATIC_COLOR))
820     {
821       colormap_private = GDK_WIN32_COLORMAP_DATA (colormap);
822
823       g_assert (colormap_private != NULL);
824
825       if (!(win32_gc->holdpal = SelectPalette (win32_gc->hdc, colormap_private->hpal, FALSE)))
826         WIN32_GDI_FAILED ("SelectPalette"), *ok = FALSE;
827       else if ((k = RealizePalette (win32_gc->hdc)) == GDI_ERROR)
828         WIN32_GDI_FAILED ("RealizePalette"), *ok = FALSE;
829       else if (k > 0)
830         GDK_NOTE (COLORMAP, g_print ("predraw_set_foreground: realized %p: %d colors\n",
831                                      colormap_private->hpal, k));
832     }
833
834   fg = _gdk_win32_colormap_color (colormap, win32_gc->foreground);
835
836   GDK_NOTE (GC, g_print ("predraw_set_foreground: fg=%06lx\n", fg));
837   return fg;
838 }
839
840 /**
841  * gdk_win32_hdc_get:
842  * @drawable: destination #GdkDrawable
843  * @gc: #GdkGC to use for drawing on @drawable
844  * @usage: mask indicating what properties needs to be set up
845  *
846  * Allocates a Windows device context handle (HDC) for drawing into
847  * @drawable, and sets it up appropriately according to @usage.
848  *
849  * Each #GdkGC can at one time have only one HDC associated with it.
850  *
851  * The following flags in @mask are handled:
852  *
853  * If %GDK_GC_FOREGROUND is set in @mask, a solid brush of the
854  * foreground color in @gc is selected into the HDC. The text color of
855  * the HDC is also set. If the @drawable has a palette (256-color
856  * mode), the palette is selected and realized.
857  *
858  * If any of the line attribute flags (%GDK_GC_LINE_WIDTH,
859  * %GDK_GC_LINE_STYLE, %GDK_GC_CAP_STYLE and %GDK_GC_JOIN_STYLE) is
860  * set in @mask, a solid pen of the foreground color and appropriate
861  * width and stule is created and selected into the HDC. Note that the
862  * dash properties are not completely implemented.
863  *
864  * If the %GDK_GC_FONT flag is set, the background mix mode is set to
865  * %TRANSPARENT. and the text alignment is set to
866  * %TA_BASELINE|%TA_LEFT. Note that no font gets selected into the HDC
867  * by this function.
868  *
869  * Some things are done regardless of @mask: If the function in @gc is
870  * any other than %GDK_COPY, the raster operation of the HDC is
871  * set. If @gc has a clip mask, the clip region of the HDC is set.
872  *
873  * Note that the fill style, tile, stipple, and tile and stipple
874  * origins in the @gc are ignored by this function. (In general, tiles
875  * and stipples can't be implemented directly on Win32; you need to do
876  * multiple pass drawing and blitting to implement tiles or
877  * stipples. GDK does just that when you call the GDK drawing
878  * functions with a GC that asks for tiles or stipples.)
879  *
880  * When the HDC is no longer used, it should be released by calling
881  * <function>gdk_win32_hdc_release()</function> with the same
882  * parameters.
883  *
884  * If you modify the HDC by calling <function>SelectObject</function>
885  * you should undo those modifications before calling
886  * <function>gdk_win32_hdc_release()</function>.
887  *
888  * Return value: The HDC.
889  **/
890 HDC
891 gdk_win32_hdc_get (GdkDrawable    *drawable,
892                    GdkGC          *gc,
893                    GdkGCValuesMask usage)
894 {
895   GdkGCWin32 *win32_gc = (GdkGCWin32 *) gc;
896   GdkDrawableImplWin32 *impl = NULL;
897   gboolean ok = TRUE;
898   COLORREF fg = RGB (0, 0, 0);
899   LOGBRUSH logbrush;
900   HPEN hpen;
901   HBRUSH hbr;
902
903   g_assert (win32_gc->hdc == NULL);
904
905   if (GDK_IS_DRAWABLE_IMPL_WIN32 (drawable))
906     impl = GDK_DRAWABLE_IMPL_WIN32(drawable);
907   else if (GDK_IS_WINDOW (drawable))
908     impl = GDK_DRAWABLE_IMPL_WIN32 ((GDK_WINDOW_OBJECT (drawable))->impl);
909   else if (GDK_IS_PIXMAP (drawable))
910     impl = GDK_DRAWABLE_IMPL_WIN32 ((GDK_PIXMAP_OBJECT (drawable))->impl);
911   else
912     g_assert_not_reached ();
913
914   win32_gc->hwnd = impl->handle;
915
916   if (GDK_IS_PIXMAP_IMPL_WIN32 (impl))
917     {
918       if ((win32_gc->hdc = CreateCompatibleDC (NULL)) == NULL)
919         WIN32_GDI_FAILED ("CreateCompatibleDC"), ok = FALSE;
920
921       if (ok && (win32_gc->saved_dc = SaveDC (win32_gc->hdc)) == 0)
922         WIN32_GDI_FAILED ("SaveDC"), ok = FALSE;
923       
924       if (ok && SelectObject (win32_gc->hdc, win32_gc->hwnd) == NULL)
925         WIN32_GDI_FAILED ("SelectObject"), ok = FALSE;
926     }
927   else
928     {
929       if ((win32_gc->hdc = GetDC (win32_gc->hwnd)) == NULL)
930         WIN32_GDI_FAILED ("GetDC");
931       
932       if (ok && (win32_gc->saved_dc = SaveDC (win32_gc->hdc)) == 0)
933         WIN32_GDI_FAILED ("SaveDC");
934     }
935   
936   if (ok && (usage & GDK_GC_FOREGROUND))
937     {
938       fg = predraw_set_foreground (gc, impl->colormap, &ok);
939       if (ok && (hbr = CreateSolidBrush (fg)) == NULL)
940         WIN32_GDI_FAILED ("CreateSolidBrush"), ok = FALSE;
941
942       if (ok && SelectObject (win32_gc->hdc, hbr) == NULL)
943         WIN32_GDI_FAILED ("SelectObject"), ok = FALSE;
944
945       if (ok && SetTextColor (win32_gc->hdc, fg) == CLR_INVALID)
946         WIN32_GDI_FAILED ("SetTextColor"), ok = FALSE;
947     }
948
949   if (ok && (usage & LINE_ATTRIBUTES))
950     {
951       /* Create and select pen */
952       logbrush.lbStyle = BS_SOLID;
953       logbrush.lbColor = fg;
954       logbrush.lbHatch = 0;
955       
956       if (win32_gc->pen_num_dashes > 0 && !IS_WIN_NT ())
957         {
958           /* The Win9x GDI is rather limited so we either draw dashed
959            * lines ourselves (only horizontal and vertical) or let them be
960            * drawn solid to avoid implementing a whole line renderer.
961            */
962           if ((hpen = ExtCreatePen (
963                                     (win32_gc->pen_style & ~(PS_STYLE_MASK)) | PS_SOLID,
964                                     MAX (win32_gc->pen_width, 1),
965                                     &logbrush, 
966                                     0, NULL)) == NULL)
967             WIN32_GDI_FAILED ("ExtCreatePen"), ok = FALSE;
968         }
969       else
970         {
971           if ((hpen = ExtCreatePen (win32_gc->pen_style,
972                                     MAX (win32_gc->pen_width, 1),
973                                     &logbrush, 
974                                     win32_gc->pen_num_dashes,
975                                     win32_gc->pen_dashes)) == NULL)
976             WIN32_GDI_FAILED ("ExtCreatePen"), ok = FALSE;
977         }
978       
979       if (ok && SelectObject (win32_gc->hdc, hpen) == NULL)
980         WIN32_GDI_FAILED ("SelectObject"), ok = FALSE;
981     }
982
983   if (ok && (usage & GDK_GC_FONT))
984     {
985       if (SetBkMode (win32_gc->hdc, TRANSPARENT) == 0)
986         WIN32_GDI_FAILED ("SetBkMode"), ok = FALSE;
987   
988       if (ok && SetTextAlign (win32_gc->hdc, TA_BASELINE|TA_LEFT|TA_NOUPDATECP) == GDI_ERROR)
989         WIN32_GDI_FAILED ("SetTextAlign"), ok = FALSE;
990     }
991   
992   if (ok && win32_gc->rop2 != R2_COPYPEN)
993     if (SetROP2 (win32_gc->hdc, win32_gc->rop2) == 0)
994       WIN32_GDI_FAILED ("SetROP2"), ok = FALSE;
995
996   if (ok &&
997       (win32_gc->values_mask & GDK_GC_CLIP_MASK) &&
998       win32_gc->hcliprgn != NULL)
999     {
1000       if (SelectClipRgn (win32_gc->hdc, win32_gc->hcliprgn) == ERROR)
1001         WIN32_API_FAILED ("SelectClipRgn"), ok = FALSE;
1002
1003       if (ok && win32_gc->values_mask & (GDK_GC_CLIP_X_ORIGIN | GDK_GC_CLIP_Y_ORIGIN) &&
1004           OffsetClipRgn (win32_gc->hdc,
1005             win32_gc->values_mask & GDK_GC_CLIP_X_ORIGIN ? gc->clip_x_origin : 0,
1006             win32_gc->values_mask & GDK_GC_CLIP_Y_ORIGIN ? gc->clip_y_origin : 0) == ERROR)
1007         WIN32_API_FAILED ("OffsetClipRgn"), ok = FALSE;
1008     }
1009
1010   GDK_NOTE (GC, (g_print ("gdk_win32_hdc_get: %p (%s): ",
1011                           win32_gc, _gdk_win32_gcvalues_mask_to_string (usage)),
1012                  _gdk_win32_print_dc (win32_gc->hdc)));
1013
1014   return win32_gc->hdc;
1015 }
1016
1017 /**
1018  * gdk_win32_hdc_release:
1019  * @drawable: destination #GdkDrawable
1020  * @gc: #GdkGC to use for drawing on @drawable
1021  * @usage: mask indicating what properties were set up
1022  *
1023  * This function deallocates the Windows device context allocated by
1024  * <funcion>gdk_win32_hdc_get()</function>. It should be called with
1025  * the same parameters.
1026  **/
1027 void
1028 gdk_win32_hdc_release (GdkDrawable    *drawable,
1029                        GdkGC          *gc,
1030                        GdkGCValuesMask usage)
1031 {
1032   GdkGCWin32 *win32_gc = (GdkGCWin32 *) gc;
1033   GdkDrawableImplWin32 *impl = NULL;
1034   HGDIOBJ hpen = NULL;
1035   HGDIOBJ hbr = NULL;
1036
1037   GDK_NOTE (GC, g_print ("gdk_win32_hdc_release: %p: %p (%s)\n",
1038                          win32_gc, win32_gc->hdc,
1039                          _gdk_win32_gcvalues_mask_to_string (usage)));
1040
1041   if (GDK_IS_DRAWABLE_IMPL_WIN32 (drawable))
1042     impl = GDK_DRAWABLE_IMPL_WIN32(drawable);
1043   else if (GDK_IS_WINDOW (drawable))
1044     impl = GDK_DRAWABLE_IMPL_WIN32 ((GDK_WINDOW_OBJECT (drawable))->impl);
1045   else if (GDK_IS_PIXMAP (drawable))
1046     impl = GDK_DRAWABLE_IMPL_WIN32 ((GDK_PIXMAP_OBJECT (drawable))->impl);
1047   else
1048     g_assert_not_reached ();
1049
1050   if (win32_gc->holdpal != NULL)
1051     {
1052       gint k;
1053       
1054       if (!SelectPalette (win32_gc->hdc, win32_gc->holdpal, FALSE))
1055         WIN32_GDI_FAILED ("SelectPalette");
1056       else if ((k = RealizePalette (win32_gc->hdc)) == GDI_ERROR)
1057         WIN32_GDI_FAILED ("RealizePalette");
1058       else if (k > 0)
1059         GDK_NOTE (COLORMAP, g_print ("gdk_win32_hdc_release: realized %p: %d colors\n",
1060                                      win32_gc->holdpal, k));
1061       win32_gc->holdpal = NULL;
1062     }
1063
1064   if (usage & LINE_ATTRIBUTES)
1065     if ((hpen = GetCurrentObject (win32_gc->hdc, OBJ_PEN)) == NULL)
1066       WIN32_GDI_FAILED ("GetCurrentObject");
1067   
1068   if (usage & GDK_GC_FOREGROUND)
1069     if ((hbr = GetCurrentObject (win32_gc->hdc, OBJ_BRUSH)) == NULL)
1070       WIN32_GDI_FAILED ("GetCurrentObject");
1071
1072   GDI_CALL (RestoreDC, (win32_gc->hdc, win32_gc->saved_dc));
1073
1074   if (GDK_IS_PIXMAP_IMPL_WIN32 (impl))
1075     GDI_CALL (DeleteDC, (win32_gc->hdc));
1076   else
1077     GDI_CALL (ReleaseDC, (win32_gc->hwnd, win32_gc->hdc));
1078
1079   if (hpen != NULL)
1080     GDI_CALL (DeleteObject, (hpen));
1081   
1082   if (hbr != NULL)
1083     GDI_CALL (DeleteObject, (hbr));
1084
1085   win32_gc->hdc = NULL;
1086 }
1087
1088 /* This function originally from Jean-Edouard Lachand-Robert, and
1089  * available at www.codeguru.com. Simplified for our needs, not sure
1090  * how much of the original code left any longer. Now handles just
1091  * one-bit deep bitmaps (in Window parlance, ie those that GDK calls
1092  * bitmaps (and not pixmaps), with zero pixels being transparent.
1093  */
1094
1095 /* _gdk_win32_bitmap_to_hrgn : Create a region from the
1096  * "non-transparent" pixels of a bitmap.
1097  */
1098
1099 HRGN
1100 _gdk_win32_bitmap_to_hrgn (GdkPixmap *pixmap)
1101 {
1102   HRGN hRgn = NULL;
1103   HRGN h;
1104   DWORD maxRects;
1105   RGNDATA *pData;
1106   guchar *bits;
1107   gint width, height, bpl;
1108   guchar *p;
1109   gint x, y;
1110
1111   g_assert (GDK_PIXMAP_OBJECT(pixmap)->depth == 1);
1112
1113   bits = GDK_PIXMAP_IMPL_WIN32 (GDK_PIXMAP_OBJECT (pixmap)->impl)->bits;
1114   width = GDK_PIXMAP_IMPL_WIN32 (GDK_PIXMAP_OBJECT (pixmap)->impl)->width;
1115   height = GDK_PIXMAP_IMPL_WIN32 (GDK_PIXMAP_OBJECT (pixmap)->impl)->height;
1116   bpl = ((width - 1)/32 + 1)*4;
1117
1118   /* For better performances, we will use the ExtCreateRegion()
1119    * function to create the region. This function take a RGNDATA
1120    * structure on entry. We will add rectangles by amount of
1121    * ALLOC_UNIT number in this structure.
1122    */
1123   #define ALLOC_UNIT  100
1124   maxRects = ALLOC_UNIT;
1125
1126   pData = g_malloc (sizeof (RGNDATAHEADER) + (sizeof (RECT) * maxRects));
1127   pData->rdh.dwSize = sizeof (RGNDATAHEADER);
1128   pData->rdh.iType = RDH_RECTANGLES;
1129   pData->rdh.nCount = pData->rdh.nRgnSize = 0;
1130   SetRect (&pData->rdh.rcBound, MAXLONG, MAXLONG, 0, 0);
1131
1132   for (y = 0; y < height; y++)
1133     {
1134       /* Scan each bitmap row from left to right*/
1135       p = (guchar *) bits + y * bpl;
1136       for (x = 0; x < width; x++)
1137         {
1138           /* Search for a continuous range of "non transparent pixels"*/
1139           gint x0 = x;
1140           while (x < width)
1141             {
1142               if ((((p[x/8])>>(7-(x%8)))&1) == 0)
1143                 /* This pixel is "transparent"*/
1144                 break;
1145               x++;
1146             }
1147           
1148           if (x > x0)
1149             {
1150               RECT *pr;
1151               /* Add the pixels (x0, y) to (x, y+1) as a new rectangle
1152                * in the region
1153                */
1154               if (pData->rdh.nCount >= maxRects)
1155                 {
1156                   maxRects += ALLOC_UNIT;
1157                   pData = g_realloc (pData, sizeof(RGNDATAHEADER)
1158                                      + (sizeof(RECT) * maxRects));
1159                 }
1160               pr = (RECT *) &pData->Buffer;
1161               SetRect (&pr[pData->rdh.nCount], x0, y, x, y+1);
1162               if (x0 < pData->rdh.rcBound.left)
1163                 pData->rdh.rcBound.left = x0;
1164               if (y < pData->rdh.rcBound.top)
1165                 pData->rdh.rcBound.top = y;
1166               if (x > pData->rdh.rcBound.right)
1167                 pData->rdh.rcBound.right = x;
1168               if (y+1 > pData->rdh.rcBound.bottom)
1169                 pData->rdh.rcBound.bottom = y+1;
1170               pData->rdh.nCount++;
1171               
1172               /* On Windows98, ExtCreateRegion() may fail if the
1173                * number of rectangles is too large (ie: >
1174                * 4000). Therefore, we have to create the region by
1175                * multiple steps.
1176                */
1177               if (pData->rdh.nCount == 2000)
1178                 {
1179                   HRGN h = ExtCreateRegion (NULL, sizeof(RGNDATAHEADER) + (sizeof(RECT) * maxRects), pData);
1180                   if (hRgn)
1181                     {
1182                       CombineRgn(hRgn, hRgn, h, RGN_OR);
1183                       DeleteObject(h);
1184                     }
1185                   else
1186                     hRgn = h;
1187                   pData->rdh.nCount = 0;
1188                   SetRect (&pData->rdh.rcBound, MAXLONG, MAXLONG, 0, 0);
1189                 }
1190             }
1191         }
1192     }
1193   
1194   /* Create or extend the region with the remaining rectangles*/
1195   h = ExtCreateRegion (NULL, sizeof (RGNDATAHEADER)
1196                        + (sizeof (RECT) * maxRects), pData);
1197   if (hRgn)
1198     {
1199       CombineRgn (hRgn, hRgn, h, RGN_OR);
1200       DeleteObject (h);
1201     }
1202   else
1203     hRgn = h;
1204
1205   /* Clean up*/
1206   g_free (pData);
1207
1208   return hRgn;
1209 }
1210
1211 HRGN
1212 _gdk_win32_gdkregion_to_hrgn (GdkRegion *region,
1213                               gint       x_origin,
1214                               gint       y_origin)
1215 {
1216   HRGN hrgn;
1217   RGNDATA *rgndata;
1218   RECT *rect;
1219   GdkRegionBox *boxes = region->rects;
1220   guint nbytes =
1221     sizeof (RGNDATAHEADER) + (sizeof (RECT) * region->numRects);
1222   int i;
1223
1224   rgndata = g_malloc (nbytes);
1225   rgndata->rdh.dwSize = sizeof (RGNDATAHEADER);
1226   rgndata->rdh.iType = RDH_RECTANGLES;
1227   rgndata->rdh.nCount = rgndata->rdh.nRgnSize = 0;
1228   SetRect (&rgndata->rdh.rcBound,
1229            G_MAXSHORT, G_MAXSHORT, G_MINSHORT, G_MINSHORT);
1230
1231   for (i = 0; i < region->numRects; i++)
1232     {
1233       rect = ((RECT *) rgndata->Buffer) + rgndata->rdh.nCount++;
1234
1235       rect->left = CLAMP (boxes[i].x1 + x_origin,
1236                           G_MINSHORT, G_MAXSHORT);
1237       rect->right = CLAMP (boxes[i].x2 + x_origin,
1238                            G_MINSHORT, G_MAXSHORT);
1239       rect->top = CLAMP (boxes[i].y1 + y_origin,
1240                          G_MINSHORT, G_MAXSHORT);
1241       rect->bottom = CLAMP (boxes[i].y2 + y_origin,
1242                             G_MINSHORT, G_MAXSHORT);
1243
1244       if (rect->left < rgndata->rdh.rcBound.left)
1245         rgndata->rdh.rcBound.left = rect->left;
1246       if (rect->right > rgndata->rdh.rcBound.right)
1247         rgndata->rdh.rcBound.right = rect->right;
1248       if (rect->top < rgndata->rdh.rcBound.top)
1249         rgndata->rdh.rcBound.top = rect->top;
1250       if (rect->bottom > rgndata->rdh.rcBound.bottom)
1251         rgndata->rdh.rcBound.bottom = rect->bottom;
1252     }
1253   if ((hrgn = ExtCreateRegion (NULL, nbytes, rgndata)) == NULL)
1254     WIN32_API_FAILED ("ExtCreateRegion");
1255
1256   g_free (rgndata);
1257
1258   return (hrgn);
1259 }