]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/dcclient.cpp
fix borland error about string refernce
[wxWidgets.git] / src / gtk / dcclient.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
e4db172a 2// Name: src/gtk/dcclient.cpp
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
6f65e337 5// RCS-ID: $Id$
6c9a19aa 6// Copyright: (c) 1998 Robert Roebling, Chris Breeze
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2
VS
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
12
d02af7bb
JJ
13#ifdef __VMS
14#define XCopyPlane XCOPYPLANE
15#endif
16
c801d85f 17#include "wx/dcclient.h"
e4db172a
WS
18
19#ifndef WX_PRECOMP
20 #include "wx/log.h"
f38924e8 21 #include "wx/dcmemory.h"
18680f86 22 #include "wx/math.h" // for floating-point functions
155ecd4c 23 #include "wx/image.h"
e4db172a
WS
24#endif
25
e5131165 26#include "wx/module.h"
db16cab4 27#include "wx/fontutil.h"
e5131165 28
ed673c6a 29#include "wx/gtk/win_gtk.h"
a3669332 30#include "wx/gtk/private.h"
c801d85f 31
071a2d78 32#include <gdk/gdk.h>
993f97ee 33#include <gdk/gdkx.h>
8943b403 34#include <gdk/gdkprivate.h>
071a2d78 35#include <gtk/gtk.h>
83624f79 36
809934d2
RR
37//-----------------------------------------------------------------------------
38// local defines
39//-----------------------------------------------------------------------------
40
e1208c31 41#define USE_PAINT_REGION 1
809934d2 42
c801d85f
KB
43//-----------------------------------------------------------------------------
44// local data
45//-----------------------------------------------------------------------------
46
47#include "bdiag.xbm"
48#include "fdiag.xbm"
49#include "cdiag.xbm"
50#include "horiz.xbm"
51#include "verti.xbm"
52#include "cross.xbm"
53#define num_hatches 6
54
3ca6a5f0
BP
55#define IS_15_PIX_HATCH(s) ((s)==wxCROSSDIAG_HATCH || (s)==wxHORIZONTAL_HATCH || (s)==wxVERTICAL_HATCH)
56#define IS_16_PIX_HATCH(s) ((s)!=wxCROSSDIAG_HATCH && (s)!=wxHORIZONTAL_HATCH && (s)!=wxVERTICAL_HATCH)
57
58
c801d85f 59static GdkPixmap *hatches[num_hatches];
c67daf87 60static GdkPixmap **hatch_bitmap = (GdkPixmap **) NULL;
c801d85f 61
c2fa61e8 62extern GtkWidget *wxGetRootWindow();
3d2d8da1 63
c801d85f
KB
64//-----------------------------------------------------------------------------
65// constants
66//-----------------------------------------------------------------------------
67
95724b1a 68const double RAD2DEG = 180.0 / M_PI;
c801d85f 69
9a8c7620
VZ
70// ----------------------------------------------------------------------------
71// private functions
72// ----------------------------------------------------------------------------
73
74static inline double dmax(double a, double b) { return a > b ? a : b; }
75static inline double dmin(double a, double b) { return a < b ? a : b; }
76
77static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; }
78
6f65e337
JS
79//-----------------------------------------------------------------------------
80// temporary implementation of the missing GDK function
81//-----------------------------------------------------------------------------
b0e0d661 82
6f65e337 83#include "gdk/gdkprivate.h"
b0e0d661 84
9be3f755 85static
1e6feb95
VZ
86void gdk_wx_draw_bitmap(GdkDrawable *drawable,
87 GdkGC *gc,
88 GdkDrawable *src,
89 gint xsrc,
90 gint ysrc,
91 gint xdest,
92 gint ydest,
93 gint width,
94 gint height)
6f65e337 95{
17a1ebd1
VZ
96 wxCHECK_RET( drawable, _T("NULL drawable in gdk_wx_draw_bitmap") );
97 wxCHECK_RET( src, _T("NULL src in gdk_wx_draw_bitmap") );
98 wxCHECK_RET( gc, _T("NULL gc in gdk_wx_draw_bitmap") );
ab9d0a8c 99
d90c9596 100 gint src_width, src_height;
8943b403 101 gdk_drawable_get_size(src, &src_width, &src_height);
8943b403
OK
102 if (width == -1) width = src_width;
103 if (height == -1) height = src_height;
265898fd 104
8943b403
OK
105 XCopyPlane( GDK_WINDOW_XDISPLAY(drawable),
106 GDK_WINDOW_XID(src),
107 GDK_WINDOW_XID(drawable),
108 GDK_GC_XGC(gc),
109 xsrc, ysrc,
110 width, height,
d90c9596 111 0, 0,
8943b403 112 1 );
6f65e337
JS
113}
114
3d2d8da1
RR
115//-----------------------------------------------------------------------------
116// Implement Pool of Graphic contexts. Creating them takes too much time.
117//-----------------------------------------------------------------------------
118
0e09f76e
RR
119enum wxPoolGCType
120{
121 wxGC_ERROR = 0,
122 wxTEXT_MONO,
123 wxBG_MONO,
124 wxPEN_MONO,
125 wxBRUSH_MONO,
126 wxTEXT_COLOUR,
127 wxBG_COLOUR,
128 wxPEN_COLOUR,
f6bcfd97
BP
129 wxBRUSH_COLOUR,
130 wxTEXT_SCREEN,
131 wxBG_SCREEN,
132 wxPEN_SCREEN,
133 wxBRUSH_SCREEN
0e09f76e
RR
134};
135
3d2d8da1
RR
136struct wxGC
137{
0e09f76e
RR
138 GdkGC *m_gc;
139 wxPoolGCType m_type;
140 bool m_used;
3d2d8da1
RR
141};
142
696f36b7
JS
143#define GC_POOL_ALLOC_SIZE 100
144
145static int wxGCPoolSize = 0;
146
147static wxGC *wxGCPool = NULL;
3d2d8da1
RR
148
149static void wxInitGCPool()
150{
696f36b7
JS
151 // This really could wait until the first call to
152 // wxGetPoolGC, but we will make the first allocation
153 // now when other initialization is being performed.
ab9d0a8c 154
696f36b7
JS
155 // Set initial pool size.
156 wxGCPoolSize = GC_POOL_ALLOC_SIZE;
ab9d0a8c 157
696f36b7
JS
158 // Allocate initial pool.
159 wxGCPool = (wxGC *)malloc(wxGCPoolSize * sizeof(wxGC));
160 if (wxGCPool == NULL)
161 {
162 // If we cannot malloc, then fail with error
163 // when debug is enabled. If debug is not enabled,
164 // the problem will eventually get caught
551b5391 165 // in wxGetPoolGC.
696f36b7
JS
166 wxFAIL_MSG( wxT("Cannot allocate GC pool") );
167 return;
168 }
ab9d0a8c 169
696f36b7
JS
170 // Zero initial pool.
171 memset(wxGCPool, 0, wxGCPoolSize * sizeof(wxGC));
3d2d8da1
RR
172}
173
174static void wxCleanUpGCPool()
175{
f6116855 176 for (int i = 0; i < wxGCPoolSize; i++)
3d2d8da1
RR
177 {
178 if (wxGCPool[i].m_gc)
3fe39b0c 179 g_object_unref (wxGCPool[i].m_gc);
3d2d8da1 180 }
696f36b7
JS
181
182 free(wxGCPool);
183 wxGCPool = NULL;
184 wxGCPoolSize = 0;
3d2d8da1
RR
185}
186
0e09f76e 187static GdkGC* wxGetPoolGC( GdkWindow *window, wxPoolGCType type )
3d2d8da1 188{
696f36b7 189 wxGC *pptr;
ab9d0a8c 190
696f36b7
JS
191 // Look for an available GC.
192 for (int i = 0; i < wxGCPoolSize; i++)
3d2d8da1
RR
193 {
194 if (!wxGCPool[i].m_gc)
195 {
196 wxGCPool[i].m_gc = gdk_gc_new( window );
197 gdk_gc_set_exposures( wxGCPool[i].m_gc, FALSE );
0e09f76e 198 wxGCPool[i].m_type = type;
ab9d0a8c 199 wxGCPool[i].m_used = false;
3d2d8da1 200 }
0e09f76e 201 if ((!wxGCPool[i].m_used) && (wxGCPool[i].m_type == type))
3d2d8da1 202 {
ab9d0a8c 203 wxGCPool[i].m_used = true;
3d2d8da1
RR
204 return wxGCPool[i].m_gc;
205 }
206 }
5f170f33 207
696f36b7
JS
208 // We did not find an available GC.
209 // We need to grow the GC pool.
210 pptr = (wxGC *)realloc(wxGCPool,
551b5391 211 (wxGCPoolSize + GC_POOL_ALLOC_SIZE)*sizeof(wxGC));
696f36b7
JS
212 if (pptr != NULL)
213 {
214 // Initialize newly allocated pool.
215 wxGCPool = pptr;
551b5391
RR
216 memset(&wxGCPool[wxGCPoolSize], 0,
217 GC_POOL_ALLOC_SIZE*sizeof(wxGC));
ab9d0a8c
WS
218
219 // Initialize entry we will return.
696f36b7
JS
220 wxGCPool[wxGCPoolSize].m_gc = gdk_gc_new( window );
221 gdk_gc_set_exposures( wxGCPool[wxGCPoolSize].m_gc, FALSE );
222 wxGCPool[wxGCPoolSize].m_type = type;
ab9d0a8c
WS
223 wxGCPool[wxGCPoolSize].m_used = true;
224
696f36b7
JS
225 // Set new value of pool size.
226 wxGCPoolSize += GC_POOL_ALLOC_SIZE;
ab9d0a8c 227
696f36b7
JS
228 // Return newly allocated entry.
229 return wxGCPool[wxGCPoolSize-GC_POOL_ALLOC_SIZE].m_gc;
230 }
ab9d0a8c 231
696f36b7 232 // The realloc failed. Fall through to error.
3d2d8da1 233 wxFAIL_MSG( wxT("No GC available") );
5f170f33 234
3d2d8da1
RR
235 return (GdkGC*) NULL;
236}
237
238static void wxFreePoolGC( GdkGC *gc )
239{
696f36b7 240 for (int i = 0; i < wxGCPoolSize; i++)
3d2d8da1
RR
241 {
242 if (wxGCPool[i].m_gc == gc)
243 {
ab9d0a8c 244 wxGCPool[i].m_used = false;
3d2d8da1
RR
245 return;
246 }
247 }
5f170f33 248
3d2d8da1
RR
249 wxFAIL_MSG( wxT("Wrong GC") );
250}
251
c801d85f 252//-----------------------------------------------------------------------------
ec758a20 253// wxWindowDC
c801d85f
KB
254//-----------------------------------------------------------------------------
255
b0e0d661 256IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC)
c801d85f 257
4bc67cc5 258wxWindowDC::wxWindowDC()
c801d85f 259{
265898fd
RR
260 m_penGC = (GdkGC *) NULL;
261 m_brushGC = (GdkGC *) NULL;
262 m_textGC = (GdkGC *) NULL;
263 m_bgGC = (GdkGC *) NULL;
264 m_cmap = (GdkColormap *) NULL;
ab9d0a8c
WS
265 m_isMemDC = false;
266 m_isScreenDC = false;
bbbbe360 267 m_owner = (wxWindow *)NULL;
8943b403 268 m_context = (PangoContext *)NULL;
cfcc3932 269 m_layout = (PangoLayout *)NULL;
8943b403 270 m_fontdesc = (PangoFontDescription *)NULL;
903f689b 271}
c801d85f 272
ec758a20 273wxWindowDC::wxWindowDC( wxWindow *window )
c801d85f 274{
3cd0b8c5
RR
275 wxASSERT_MSG( window, wxT("DC needs a window") );
276
265898fd
RR
277 m_penGC = (GdkGC *) NULL;
278 m_brushGC = (GdkGC *) NULL;
279 m_textGC = (GdkGC *) NULL;
280 m_bgGC = (GdkGC *) NULL;
281 m_cmap = (GdkColormap *) NULL;
bbbbe360 282 m_owner = (wxWindow *)NULL;
ab9d0a8c
WS
283 m_isMemDC = false;
284 m_isScreenDC = false;
3b245d60 285 m_font = window->GetFont();
7d5af6fa 286
a2053b27 287 GtkWidget *widget = window->m_wxwindow;
7d5af6fa 288
cfcc3932 289 // Some controls don't have m_wxwindow - like wxStaticBox, but the user
b7f1f77f 290 // code should still be able to create wxClientDCs for them, so we will
cfcc3932 291 // use the parent window here then.
b7f1f77f
VZ
292 if ( !widget )
293 {
294 window = window->GetParent();
295 widget = window->m_wxwindow;
296 }
297
223d09f6 298 wxASSERT_MSG( widget, wxT("DC needs a widget") );
7d5af6fa 299
2b5f62a0 300 m_context = window->GtkGetPangoDefaultContext();
cfcc3932
RR
301 m_layout = pango_layout_new( m_context );
302 m_fontdesc = pango_font_description_copy( widget->style->font_desc );
8943b403 303
da048e3d
RR
304 GtkPizza *pizza = GTK_PIZZA( widget );
305 m_window = pizza->bin_window;
7d5af6fa 306
cfcc3932 307 // Window not realized ?
1e133b7d
RR
308 if (!m_window)
309 {
cfcc3932 310 // Don't report problems as per MSW.
ab9d0a8c 311 m_ok = true;
7d5af6fa
VZ
312
313 return;
1e133b7d 314 }
7d5af6fa 315
b7f1f77f 316 m_cmap = gtk_widget_get_colormap( widget ? widget : window->m_widget );
7d5af6fa 317
265898fd 318 SetUpDC();
bbbbe360
RR
319
320 /* this must be done after SetUpDC, bacause SetUpDC calls the
321 repective SetBrush, SetPen, SetBackground etc functions
322 to set up the DC. SetBackground call m_owner->SetBackground
323 and this might not be desired as the standard dc background
324 is white whereas a window might assume gray to be the
325 standard (as e.g. wxStatusBar) */
7d5af6fa 326
bbbbe360 327 m_owner = window;
903f689b 328}
c801d85f 329
4bc67cc5 330wxWindowDC::~wxWindowDC()
c801d85f 331{
265898fd 332 Destroy();
ab9d0a8c 333
cfcc3932 334 if (m_layout)
3fe39b0c 335 g_object_unref (m_layout);
cfcc3932
RR
336 if (m_fontdesc)
337 pango_font_description_free( m_fontdesc );
903f689b 338}
c801d85f 339
809934d2
RR
340void wxWindowDC::SetUpDC()
341{
ab9d0a8c 342 m_ok = true;
5f170f33 343
809934d2 344 wxASSERT_MSG( !m_penGC, wxT("GCs already created") );
5f170f33 345
f6bcfd97
BP
346 if (m_isScreenDC)
347 {
348 m_penGC = wxGetPoolGC( m_window, wxPEN_SCREEN );
349 m_brushGC = wxGetPoolGC( m_window, wxBRUSH_SCREEN );
350 m_textGC = wxGetPoolGC( m_window, wxTEXT_SCREEN );
351 m_bgGC = wxGetPoolGC( m_window, wxBG_SCREEN );
352 }
353 else
809934d2
RR
354 if (m_isMemDC && (((wxMemoryDC*)this)->m_selected.GetDepth() == 1))
355 {
356 m_penGC = wxGetPoolGC( m_window, wxPEN_MONO );
357 m_brushGC = wxGetPoolGC( m_window, wxBRUSH_MONO );
358 m_textGC = wxGetPoolGC( m_window, wxTEXT_MONO );
359 m_bgGC = wxGetPoolGC( m_window, wxBG_MONO );
360 }
361 else
362 {
363 m_penGC = wxGetPoolGC( m_window, wxPEN_COLOUR );
364 m_brushGC = wxGetPoolGC( m_window, wxBRUSH_COLOUR );
365 m_textGC = wxGetPoolGC( m_window, wxTEXT_COLOUR );
366 m_bgGC = wxGetPoolGC( m_window, wxBG_COLOUR );
367 }
368
369 /* background colour */
370 m_backgroundBrush = *wxWHITE_BRUSH;
371 m_backgroundBrush.GetColour().CalcPixel( m_cmap );
2796f657 372#ifdef __WXGTK24__
c6685317 373 const GdkColor *bg_col = m_backgroundBrush.GetColour().GetColor();
2796f657
PC
374#else
375 GdkColor *bg_col = m_backgroundBrush.GetColour().GetColor();
376#endif
809934d2
RR
377
378 /* m_textGC */
379 m_textForegroundColour.CalcPixel( m_cmap );
380 gdk_gc_set_foreground( m_textGC, m_textForegroundColour.GetColor() );
381
382 m_textBackgroundColour.CalcPixel( m_cmap );
383 gdk_gc_set_background( m_textGC, m_textBackgroundColour.GetColor() );
384
385 gdk_gc_set_fill( m_textGC, GDK_SOLID );
386
387 /* m_penGC */
388 m_pen.GetColour().CalcPixel( m_cmap );
389 gdk_gc_set_foreground( m_penGC, m_pen.GetColour().GetColor() );
390 gdk_gc_set_background( m_penGC, bg_col );
5f170f33 391
809934d2 392 gdk_gc_set_line_attributes( m_penGC, 0, GDK_LINE_SOLID, GDK_CAP_NOT_LAST, GDK_JOIN_ROUND );
5f170f33 393
809934d2
RR
394 /* m_brushGC */
395 m_brush.GetColour().CalcPixel( m_cmap );
396 gdk_gc_set_foreground( m_brushGC, m_brush.GetColour().GetColor() );
397 gdk_gc_set_background( m_brushGC, bg_col );
5f170f33 398
809934d2 399 gdk_gc_set_fill( m_brushGC, GDK_SOLID );
5f170f33 400
809934d2
RR
401 /* m_bgGC */
402 gdk_gc_set_background( m_bgGC, bg_col );
403 gdk_gc_set_foreground( m_bgGC, bg_col );
404
405 gdk_gc_set_fill( m_bgGC, GDK_SOLID );
5f170f33 406
809934d2
RR
407 /* ROPs */
408 gdk_gc_set_function( m_textGC, GDK_COPY );
409 gdk_gc_set_function( m_brushGC, GDK_COPY );
410 gdk_gc_set_function( m_penGC, GDK_COPY );
5f170f33 411
809934d2
RR
412 /* clipping */
413 gdk_gc_set_clip_rectangle( m_penGC, (GdkRectangle *) NULL );
414 gdk_gc_set_clip_rectangle( m_brushGC, (GdkRectangle *) NULL );
415 gdk_gc_set_clip_rectangle( m_textGC, (GdkRectangle *) NULL );
416 gdk_gc_set_clip_rectangle( m_bgGC, (GdkRectangle *) NULL );
417
418 if (!hatch_bitmap)
419 {
420 hatch_bitmap = hatches;
421 hatch_bitmap[0] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, bdiag_bits, bdiag_width, bdiag_height );
422 hatch_bitmap[1] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, cdiag_bits, cdiag_width, cdiag_height );
423 hatch_bitmap[2] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, fdiag_bits, fdiag_width, fdiag_height );
424 hatch_bitmap[3] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, cross_bits, cross_width, cross_height );
425 hatch_bitmap[4] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, horiz_bits, horiz_width, horiz_height );
426 hatch_bitmap[5] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, verti_bits, verti_width, verti_height );
427 }
428}
429
376aa62a
VZ
430void wxWindowDC::DoGetSize( int* width, int* height ) const
431{
432 wxCHECK_RET( m_owner, _T("GetSize() doesn't work without window") );
433
434 m_owner->GetSize(width, height);
435}
436
ab9d0a8c 437extern bool wxDoFloodFill(wxDC *dc, wxCoord x, wxCoord y,
06cf7c08 438 const wxColour & col, int style);
b1699cd3 439
387ebd3e 440bool wxWindowDC::DoFloodFill(wxCoord x, wxCoord y,
06cf7c08
VS
441 const wxColour& col, int style)
442{
387ebd3e 443 return wxDoFloodFill(this, x, y, col, style);
903f689b 444}
c801d85f 445
dc1efb1d 446bool wxWindowDC::DoGetPixel( wxCoord x1, wxCoord y1, wxColour *col ) const
c801d85f 447{
dc1efb1d
JS
448 // Generic (and therefore rather inefficient) method.
449 // Could be improved.
450 wxMemoryDC memdc;
451 wxBitmap bitmap(1, 1);
452 memdc.SelectObject(bitmap);
453 memdc.Blit(0, 0, 1, 1, (wxDC*) this, x1, y1);
454 memdc.SelectObject(wxNullBitmap);
c2fa61e8 455
368d59f0 456 wxImage image = bitmap.ConvertToImage();
dc1efb1d 457 col->Set(image.GetRed(0, 0), image.GetGreen(0, 0), image.GetBlue(0, 0));
ab9d0a8c 458 return true;
903f689b 459}
c801d85f 460
72cdf4c9 461void wxWindowDC::DoDrawLine( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2 )
c801d85f 462{
223d09f6 463 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 464
265898fd
RR
465 if (m_pen.GetStyle() != wxTRANSPARENT)
466 {
6db90681
RR
467 if (m_window)
468 gdk_draw_line( m_window, m_penGC, XLOG2DEV(x1), YLOG2DEV(y1), XLOG2DEV(x2), YLOG2DEV(y2) );
7d5af6fa 469
ed880dd4
RR
470 CalcBoundingBox(x1, y1);
471 CalcBoundingBox(x2, y2);
265898fd 472 }
903f689b 473}
c801d85f 474
72cdf4c9 475void wxWindowDC::DoCrossHair( wxCoord x, wxCoord y )
c801d85f 476{
223d09f6 477 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 478
265898fd
RR
479 if (m_pen.GetStyle() != wxTRANSPARENT)
480 {
481 int w = 0;
482 int h = 0;
483 GetSize( &w, &h );
72cdf4c9
VZ
484 wxCoord xx = XLOG2DEV(x);
485 wxCoord yy = YLOG2DEV(y);
6db90681 486 if (m_window)
7d5af6fa 487 {
6db90681
RR
488 gdk_draw_line( m_window, m_penGC, 0, yy, XLOG2DEVREL(w), yy );
489 gdk_draw_line( m_window, m_penGC, xx, 0, xx, YLOG2DEVREL(h) );
7d5af6fa 490 }
265898fd 491 }
903f689b 492}
c801d85f 493
72cdf4c9
VZ
494void wxWindowDC::DoDrawArc( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2,
495 wxCoord xc, wxCoord yc )
c801d85f 496{
223d09f6 497 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 498
72cdf4c9
VZ
499 wxCoord xx1 = XLOG2DEV(x1);
500 wxCoord yy1 = YLOG2DEV(y1);
501 wxCoord xx2 = XLOG2DEV(x2);
502 wxCoord yy2 = YLOG2DEV(y2);
503 wxCoord xxc = XLOG2DEV(xc);
504 wxCoord yyc = YLOG2DEV(yc);
7d5af6fa 505 double dx = xx1 - xxc;
265898fd 506 double dy = yy1 - yyc;
de87c353 507 double radius = sqrt((double)(dx*dx+dy*dy));
72cdf4c9 508 wxCoord r = (wxCoord)radius;
265898fd
RR
509 double radius1, radius2;
510
7d5af6fa 511 if (xx1 == xx2 && yy1 == yy2)
265898fd
RR
512 {
513 radius1 = 0.0;
514 radius2 = 360.0;
7d5af6fa 515 }
c77a6796 516 else if ( wxIsNullDouble(radius) )
265898fd 517 {
c77a6796
VZ
518 radius1 =
519 radius2 = 0.0;
7d5af6fa
VZ
520 }
521 else
265898fd
RR
522 {
523 radius1 = (xx1 - xxc == 0) ?
b0e0d661
VZ
524 (yy1 - yyc < 0) ? 90.0 : -90.0 :
525 -atan2(double(yy1-yyc), double(xx1-xxc)) * RAD2DEG;
265898fd 526 radius2 = (xx2 - xxc == 0) ?
b0e0d661
VZ
527 (yy2 - yyc < 0) ? 90.0 : -90.0 :
528 -atan2(double(yy2-yyc), double(xx2-xxc)) * RAD2DEG;
265898fd 529 }
72cdf4c9
VZ
530 wxCoord alpha1 = wxCoord(radius1 * 64.0);
531 wxCoord alpha2 = wxCoord((radius2 - radius1) * 64.0);
265898fd
RR
532 while (alpha2 <= 0) alpha2 += 360*64;
533 while (alpha1 > 360*64) alpha1 -= 360*64;
534
6db90681
RR
535 if (m_window)
536 {
537 if (m_brush.GetStyle() != wxTRANSPARENT)
e9f88d04
VZ
538 {
539 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
540 {
541 gdk_gc_set_ts_origin( m_textGC,
542 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
543 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
544 gdk_draw_arc( m_window, m_textGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
545 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
546 } else
3ca6a5f0
BP
547 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
548 {
549 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
550 gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
551 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
552 } else
553 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
554 {
555 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
556 gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
557 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
558 } else
e9f88d04
VZ
559 if (m_brush.GetStyle() == wxSTIPPLE)
560 {
561 gdk_gc_set_ts_origin( m_brushGC,
562 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
563 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
564 gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
565 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
566 }
567 else
568 {
569 gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
570 }
571 }
7d5af6fa 572
6db90681 573 if (m_pen.GetStyle() != wxTRANSPARENT)
3d0c4d2e 574 {
6db90681 575 gdk_draw_arc( m_window, m_penGC, FALSE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
f469b27c 576
3d0c4d2e
RR
577 gdk_draw_line( m_window, m_penGC, xx1, yy1, xxc, yyc );
578 gdk_draw_line( m_window, m_penGC, xxc, yyc, xx2, yy2 );
579 }
6db90681 580 }
7d5af6fa 581
265898fd
RR
582 CalcBoundingBox (x1, y1);
583 CalcBoundingBox (x2, y2);
903f689b 584}
c801d85f 585
72cdf4c9 586void wxWindowDC::DoDrawEllipticArc( wxCoord x, wxCoord y, wxCoord width, wxCoord height, double sa, double ea )
c801d85f 587{
223d09f6 588 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 589
72cdf4c9
VZ
590 wxCoord xx = XLOG2DEV(x);
591 wxCoord yy = YLOG2DEV(y);
592 wxCoord ww = m_signX * XLOG2DEVREL(width);
593 wxCoord hh = m_signY * YLOG2DEVREL(height);
7d5af6fa 594
265898fd
RR
595 // CMB: handle -ve width and/or height
596 if (ww < 0) { ww = -ww; xx = xx - ww; }
597 if (hh < 0) { hh = -hh; yy = yy - hh; }
7d5af6fa 598
6db90681
RR
599 if (m_window)
600 {
72cdf4c9 601 wxCoord start = wxCoord(sa * 64.0);
3d0c4d2e 602 wxCoord end = wxCoord((ea-sa) * 64.0);
7d5af6fa 603
6db90681 604 if (m_brush.GetStyle() != wxTRANSPARENT)
e9f88d04
VZ
605 {
606 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
607 {
608 gdk_gc_set_ts_origin( m_textGC,
609 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
610 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
611 gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy, ww, hh, start, end );
612 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
613 } else
3ca6a5f0
BP
614 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
615 {
616 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
617 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end );
618 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
619 } else
620 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
621 {
622 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
623 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end );
624 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
625 } else
e9f88d04
VZ
626 if (m_brush.GetStyle() == wxSTIPPLE)
627 {
628 gdk_gc_set_ts_origin( m_brushGC,
629 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
630 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
631 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end );
632 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
633 }
634 else
635 {
636 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end );
637 }
638 }
7d5af6fa 639
6db90681
RR
640 if (m_pen.GetStyle() != wxTRANSPARENT)
641 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, ww, hh, start, end );
642 }
7d5af6fa 643
265898fd
RR
644 CalcBoundingBox (x, y);
645 CalcBoundingBox (x + width, y + height);
903f689b 646}
c801d85f 647
72cdf4c9 648void wxWindowDC::DoDrawPoint( wxCoord x, wxCoord y )
c801d85f 649{
223d09f6 650 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 651
6db90681 652 if ((m_pen.GetStyle() != wxTRANSPARENT) && m_window)
265898fd 653 gdk_draw_point( m_window, m_penGC, XLOG2DEV(x), YLOG2DEV(y) );
7d5af6fa 654
265898fd 655 CalcBoundingBox (x, y);
903f689b 656}
c801d85f 657
72cdf4c9 658void wxWindowDC::DoDrawLines( int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset )
c801d85f 659{
223d09f6 660 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 661
265898fd
RR
662 if (m_pen.GetStyle() == wxTRANSPARENT) return;
663 if (n <= 0) return;
7d5af6fa 664
e90411c2
JS
665 //Check, if scaling is necessary
666 bool doScale(true);
667 long val(10);
668 if (!xoffset)
669 if (!yoffset)
670 if (XLOG2DEV(val)==val)
671 if (YLOG2DEV(val)==val)
672 doScale = false;
673
674 GdkPoint *gpts = NULL;
675
676 if (doScale){
677 gpts = new GdkPoint[n];
6eb37239
VZ
678 if (! gpts)
679 {
680 wxFAIL_MSG( wxT("Cannot allocate PolyLine") );
681 return;
682 }
7d5af6fa 683
ab9d0a8c 684 for (int i = 0; i < n; i++)
265898fd 685 {
72cdf4c9 686 wxCoord x1 = XLOG2DEV(points[i].x + xoffset);
6eb37239 687 wxCoord y1 = YLOG2DEV(points[i].y + yoffset);
7d5af6fa 688
6eb37239 689 CalcBoundingBox( x1 + xoffset, y1 + yoffset );
7d5af6fa 690
6eb37239
VZ
691 gpts[i].x = x1;
692 gpts[i].y = y1;
265898fd 693 }
e90411c2
JS
694 }
695 else {
696 for (int i = 0; i < n; i++) {
697 CalcBoundingBox( points[i].x, points[i].y );
698 }
699
700 //GdkPoint and wxPoint have the same memory allignment, so we can cast one into another
701 gpts = reinterpret_cast<GdkPoint*>(points);
702 }
6eb37239
VZ
703
704 if (m_window)
705 gdk_draw_lines( m_window, m_penGC, gpts, n);
706
e90411c2 707 if (doScale)
6eb37239 708 delete[] gpts;
903f689b 709}
c801d85f 710
72cdf4c9 711void wxWindowDC::DoDrawPolygon( int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset, int WXUNUSED(fillStyle) )
cf7a7e13 712{
223d09f6 713 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 714
4bc67cc5 715 if (n <= 0) return;
7d5af6fa 716
e90411c2
JS
717 //Check, if scaling is necessary
718 bool doScale(true);
719 long val(10);
720 if (!xoffset)
721 if (!yoffset)
722 if (XLOG2DEV(val)==val)
723 if (YLOG2DEV(val)==val){
724 doScale = false;
725 }
726
727 GdkPoint *gdkpoints = NULL;
728
729 if (doScale){
730 gdkpoints = new GdkPoint[n+1]; //FIXME: Why the "+1"
731
265898fd
RR
732 int i;
733 for (i = 0 ; i < n ; i++)
734 {
735 gdkpoints[i].x = XLOG2DEV(points[i].x + xoffset);
736 gdkpoints[i].y = YLOG2DEV(points[i].y + yoffset);
7d5af6fa 737
265898fd
RR
738 CalcBoundingBox( points[i].x + xoffset, points[i].y + yoffset );
739 }
e90411c2
JS
740 }
741 else {
742 int i(0);
743 for (; i < n ; ++i) {
744 CalcBoundingBox( points[i].x, points[i].y );
745 }
746 //GdkPoint and wxPoint have the same memory allignment, so we can cast one into another
747 gdkpoints = reinterpret_cast<GdkPoint*> (points);
748 }
7d5af6fa 749
de2d2cdc 750 if (m_window)
72174350 751 {
e90411c2
JS
752 //I think wxSOLID is the most often used style (it is for me),
753 //so I put it in front of the if ... ifelse's
754 if (m_brush.GetStyle() == wxSOLID)
755 {
756 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
757 }else
e1208c31 758 if (m_brush.GetStyle() != wxTRANSPARENT)
72174350 759 {
e1208c31
RR
760 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
761 {
5f170f33
VZ
762 gdk_gc_set_ts_origin( m_textGC,
763 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
e1208c31
RR
764 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
765 gdk_draw_polygon( m_window, m_textGC, TRUE, gdkpoints, n );
766 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
767 } else
3ca6a5f0
BP
768 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
769 {
770 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
771 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
772 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
773 } else
774 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
775 {
776 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
777 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
778 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
779 } else
e1208c31
RR
780 if (m_brush.GetStyle() == wxSTIPPLE)
781 {
5f170f33
VZ
782 gdk_gc_set_ts_origin( m_brushGC,
783 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
e1208c31
RR
784 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
785 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
786 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
787 }
788 else
789 {
790 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
791 }
72174350 792 }
7d5af6fa 793
e1208c31 794 if (m_pen.GetStyle() != wxTRANSPARENT)
b0e0d661 795 {
bb56b0a8 796/*
e1208c31
RR
797 for (i = 0 ; i < n ; i++)
798 {
799 gdk_draw_line( m_window, m_penGC,
800 gdkpoints[i%n].x,
801 gdkpoints[i%n].y,
802 gdkpoints[(i+1)%n].x,
803 gdkpoints[(i+1)%n].y);
804 }
bb56b0a8
JS
805*/
806 gdk_draw_polygon( m_window, m_penGC, FALSE, gdkpoints, n );
ab9d0a8c 807
265898fd 808 }
6db90681 809 }
7d5af6fa 810
e90411c2 811 if (doScale)
265898fd 812 delete[] gdkpoints;
903f689b 813}
c801d85f 814
72cdf4c9 815void wxWindowDC::DoDrawRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
c801d85f 816{
223d09f6 817 wxCHECK_RET( Ok(), wxT("invalid window dc") );
c801d85f 818
72cdf4c9
VZ
819 wxCoord xx = XLOG2DEV(x);
820 wxCoord yy = YLOG2DEV(y);
821 wxCoord ww = m_signX * XLOG2DEVREL(width);
822 wxCoord hh = m_signY * YLOG2DEVREL(height);
7d5af6fa 823
265898fd
RR
824 // CMB: draw nothing if transformed w or h is 0
825 if (ww == 0 || hh == 0) return;
6f65e337 826
265898fd
RR
827 // CMB: handle -ve width and/or height
828 if (ww < 0) { ww = -ww; xx = xx - ww; }
829 if (hh < 0) { hh = -hh; yy = yy - hh; }
6f65e337 830
6db90681
RR
831 if (m_window)
832 {
e1208c31 833 if (m_brush.GetStyle() != wxTRANSPARENT)
72174350 834 {
e1208c31
RR
835 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
836 {
5f170f33
VZ
837 gdk_gc_set_ts_origin( m_textGC,
838 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
e1208c31
RR
839 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
840 gdk_draw_rectangle( m_window, m_textGC, TRUE, xx, yy, ww, hh );
841 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
3ca6a5f0
BP
842 } else
843 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
844 {
845 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
846 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh );
847 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
848 } else
849 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
850 {
851 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
852 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh );
853 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
854 } else
855 if (m_brush.GetStyle() == wxSTIPPLE)
e1208c31 856 {
5f170f33
VZ
857 gdk_gc_set_ts_origin( m_brushGC,
858 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
e1208c31 859 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
72174350 860 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh );
e1208c31
RR
861 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
862 }
863 else
864 {
865 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh );
866 }
72174350 867 }
e1208c31
RR
868
869 if (m_pen.GetStyle() != wxTRANSPARENT)
870 gdk_draw_rectangle( m_window, m_penGC, FALSE, xx, yy, ww-1, hh-1 );
6db90681 871 }
7d5af6fa 872
265898fd
RR
873 CalcBoundingBox( x, y );
874 CalcBoundingBox( x + width, y + height );
903f689b 875}
c801d85f 876
72cdf4c9 877void wxWindowDC::DoDrawRoundedRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius )
c801d85f 878{
223d09f6 879 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 880
265898fd 881 if (radius < 0.0) radius = - radius * ((width < height) ? width : height);
7d5af6fa 882
72cdf4c9
VZ
883 wxCoord xx = XLOG2DEV(x);
884 wxCoord yy = YLOG2DEV(y);
885 wxCoord ww = m_signX * XLOG2DEVREL(width);
886 wxCoord hh = m_signY * YLOG2DEVREL(height);
887 wxCoord rr = XLOG2DEVREL((wxCoord)radius);
265898fd
RR
888
889 // CMB: handle -ve width and/or height
890 if (ww < 0) { ww = -ww; xx = xx - ww; }
891 if (hh < 0) { hh = -hh; yy = yy - hh; }
892
893 // CMB: if radius is zero use DrawRectangle() instead to avoid
894 // X drawing errors with small radii
895 if (rr == 0)
896 {
897 DrawRectangle( x, y, width, height );
898 return;
899 }
900
901 // CMB: draw nothing if transformed w or h is 0
902 if (ww == 0 || hh == 0) return;
903
904 // CMB: adjust size if outline is drawn otherwise the result is
905 // 1 pixel too wide and high
906 if (m_pen.GetStyle() != wxTRANSPARENT)
907 {
908 ww--;
909 hh--;
910 }
911
6db90681 912 if (m_window)
265898fd 913 {
6db90681
RR
914 // CMB: ensure dd is not larger than rectangle otherwise we
915 // get an hour glass shape
72cdf4c9 916 wxCoord dd = 2 * rr;
6db90681
RR
917 if (dd > ww) dd = ww;
918 if (dd > hh) dd = hh;
919 rr = dd / 2;
920
921 if (m_brush.GetStyle() != wxTRANSPARENT)
922 {
a56fcaaf
RR
923 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
924 {
5f170f33
VZ
925 gdk_gc_set_ts_origin( m_textGC,
926 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
a56fcaaf
RR
927 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
928 gdk_draw_rectangle( m_window, m_textGC, TRUE, xx+rr, yy, ww-dd+1, hh );
929 gdk_draw_rectangle( m_window, m_textGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
930 gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
931 gdk_draw_arc( m_window, m_textGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
932 gdk_draw_arc( m_window, m_textGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
933 gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
934 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
3ca6a5f0
BP
935 } else
936 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
937 {
938 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
939 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh );
940 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
941 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
942 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
943 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
944 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
945 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
946 } else
947 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
948 {
949 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
950 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh );
951 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
952 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
953 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
954 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
955 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
956 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
957 } else
958 if (m_brush.GetStyle() == wxSTIPPLE)
a56fcaaf 959 {
5f170f33
VZ
960 gdk_gc_set_ts_origin( m_brushGC,
961 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
a56fcaaf
RR
962 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
963 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh );
964 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
965 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
966 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
967 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
968 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
969 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
970 }
971 else
972 {
973 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh );
974 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
975 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
976 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
977 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
978 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
979 }
6db90681 980 }
7d5af6fa 981
6db90681 982 if (m_pen.GetStyle() != wxTRANSPARENT)
7d5af6fa 983 {
3ca6a5f0
BP
984 gdk_draw_line( m_window, m_penGC, xx+rr+1, yy, xx+ww-rr, yy );
985 gdk_draw_line( m_window, m_penGC, xx+rr+1, yy+hh, xx+ww-rr, yy+hh );
986 gdk_draw_line( m_window, m_penGC, xx, yy+rr+1, xx, yy+hh-rr );
987 gdk_draw_line( m_window, m_penGC, xx+ww, yy+rr+1, xx+ww, yy+hh-rr );
6db90681
RR
988 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, dd, dd, 90*64, 90*64 );
989 gdk_draw_arc( m_window, m_penGC, FALSE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
990 gdk_draw_arc( m_window, m_penGC, FALSE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
991 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
7d5af6fa 992 }
265898fd 993 }
7d5af6fa 994
265898fd
RR
995 // this ignores the radius
996 CalcBoundingBox( x, y );
997 CalcBoundingBox( x + width, y + height );
903f689b 998}
c801d85f 999
72cdf4c9 1000void wxWindowDC::DoDrawEllipse( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
c801d85f 1001{
223d09f6 1002 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 1003
72cdf4c9
VZ
1004 wxCoord xx = XLOG2DEV(x);
1005 wxCoord yy = YLOG2DEV(y);
1006 wxCoord ww = m_signX * XLOG2DEVREL(width);
1007 wxCoord hh = m_signY * YLOG2DEVREL(height);
6f65e337 1008
265898fd
RR
1009 // CMB: handle -ve width and/or height
1010 if (ww < 0) { ww = -ww; xx = xx - ww; }
1011 if (hh < 0) { hh = -hh; yy = yy - hh; }
7d5af6fa 1012
6db90681
RR
1013 if (m_window)
1014 {
1015 if (m_brush.GetStyle() != wxTRANSPARENT)
a56fcaaf
RR
1016 {
1017 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
1018 {
5f170f33
VZ
1019 gdk_gc_set_ts_origin( m_textGC,
1020 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
a56fcaaf
RR
1021 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
1022 gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1023 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
3ca6a5f0
BP
1024 } else
1025 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
1026 {
1027 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
1028 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1029 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
1030 } else
1031 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
1032 {
1033 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
1034 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1035 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
1036 } else
1037 if (m_brush.GetStyle() == wxSTIPPLE)
a56fcaaf 1038 {
5f170f33
VZ
1039 gdk_gc_set_ts_origin( m_brushGC,
1040 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
a56fcaaf
RR
1041 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
1042 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1043 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
1044 }
1045 else
1046 {
1047 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1048 }
1049 }
7d5af6fa 1050
6db90681
RR
1051 if (m_pen.GetStyle() != wxTRANSPARENT)
1052 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, ww, hh, 0, 360*64 );
1053 }
7d5af6fa 1054
44856297 1055 CalcBoundingBox( x, y );
265898fd 1056 CalcBoundingBox( x + width, y + height );
903f689b 1057}
c801d85f 1058
72cdf4c9 1059void wxWindowDC::DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y )
c801d85f 1060{
b0e0d661 1061 // VZ: egcs 1.0.3 refuses to compile this without cast, no idea why
ab9d0a8c 1062 DoDrawBitmap( (const wxBitmap&)icon, x, y, true );
903f689b 1063}
c801d85f 1064
b0e0d661 1065void wxWindowDC::DoDrawBitmap( const wxBitmap &bitmap,
72cdf4c9 1066 wxCoord x, wxCoord y,
b0e0d661 1067 bool useMask )
4bc67cc5 1068{
223d09f6 1069 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 1070
223d09f6 1071 wxCHECK_RET( bitmap.Ok(), wxT("invalid bitmap") );
7d5af6fa 1072
b85229d1 1073 bool is_mono = bitmap.GetDepth() == 1;
82ea63e6 1074
d90c9596 1075 // scale/translate size and position
265898fd
RR
1076 int xx = XLOG2DEV(x);
1077 int yy = YLOG2DEV(y);
7d5af6fa 1078
4bc67cc5
RR
1079 int w = bitmap.GetWidth();
1080 int h = bitmap.GetHeight();
7d5af6fa 1081
6453876e
RR
1082 CalcBoundingBox( x, y );
1083 CalcBoundingBox( x + w, y + h );
7d5af6fa 1084
6453876e 1085 if (!m_window) return;
7d5af6fa 1086
4bc67cc5
RR
1087 int ww = XLOG2DEVREL(w);
1088 int hh = YLOG2DEVREL(h);
7d5af6fa 1089
d90c9596 1090 // compare to current clipping region
e1208c31 1091 if (!m_currentClippingRegion.IsNull())
3d2d8da1
RR
1092 {
1093 wxRegion tmp( xx,yy,ww,hh );
1094 tmp.Intersect( m_currentClippingRegion );
1095 if (tmp.IsEmpty())
1096 return;
1097 }
5f170f33 1098
ab9d0a8c 1099 // scale bitmap if required
d90c9596 1100 wxBitmap use_bitmap = bitmap;
4bc67cc5 1101 if ((w != ww) || (h != hh))
d90c9596 1102 use_bitmap = use_bitmap.Rescale( 0, 0, ww, hh, ww, hh );
ab9d0a8c 1103
1abedc32
VS
1104#if !GTK_CHECK_VERSION(2,2,0)
1105 // NB: We can't render pixbufs with GTK+ < 2.2, we need to use pixmaps code.
1106 // Pixbufs-based bitmaps with alpha channel don't have a mask, so we
1107 // have to call GetPixmap() here -- it converts the pixbuf into pixmap
1108 // and also creates the mask as a side-effect:
1109 use_bitmap.GetPixmap();
1110#endif
ab9d0a8c 1111
d90c9596 1112 // apply mask if any
463c1fa1 1113 GdkBitmap *mask = (GdkBitmap *) NULL;
4bc67cc5 1114 if (use_bitmap.GetMask()) mask = use_bitmap.GetMask()->GetBitmap();
7d5af6fa 1115
d90c9596 1116 GdkBitmap *new_mask = (GdkBitmap*) NULL;
ab9d0a8c 1117
d90c9596
RR
1118 if (useMask && mask)
1119 {
1120 if (!m_currentClippingRegion.IsNull())
82ea63e6 1121 {
d90c9596
RR
1122 GdkColor col;
1123 new_mask = gdk_pixmap_new( wxGetRootWindow()->window, ww, hh, 1 );
1124 GdkGC *gc = gdk_gc_new( new_mask );
1125 col.pixel = 0;
1126 gdk_gc_set_foreground( gc, &col );
1127 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, ww, hh );
1128 col.pixel = 0;
1129 gdk_gc_set_background( gc, &col );
1130 col.pixel = 1;
1131 gdk_gc_set_foreground( gc, &col );
1132 gdk_gc_set_clip_region( gc, m_currentClippingRegion.GetRegion() );
1133 gdk_gc_set_clip_origin( gc, -xx, -yy );
1134 gdk_gc_set_fill( gc, GDK_OPAQUE_STIPPLED );
1135 gdk_gc_set_stipple( gc, mask );
1136 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, ww, hh );
3fe39b0c 1137 g_object_unref (gc);
d90c9596 1138 }
ab9d0a8c 1139
d90c9596
RR
1140 if (is_mono)
1141 {
1142 if (new_mask)
1143 gdk_gc_set_clip_mask( m_textGC, new_mask );
3d2d8da1 1144 else
d90c9596
RR
1145 gdk_gc_set_clip_mask( m_textGC, mask );
1146 gdk_gc_set_clip_origin( m_textGC, xx, yy );
1147 }
1148 else
1149 {
3d2d8da1 1150 if (new_mask)
d90c9596
RR
1151 gdk_gc_set_clip_mask( m_penGC, new_mask );
1152 else
1153 gdk_gc_set_clip_mask( m_penGC, mask );
1154 gdk_gc_set_clip_origin( m_penGC, xx, yy );
b0e0d661 1155 }
d90c9596 1156 }
7d5af6fa 1157
d90c9596
RR
1158 // Draw XPixmap or XBitmap, depending on what the wxBitmap contains. For
1159 // drawing a mono-bitmap (XBitmap) we use the current text GC
82ea63e6 1160 if (is_mono)
d90c9596 1161 {
4e115ed2
VZ
1162 GdkPixmap *bitmap2 = gdk_pixmap_new( wxGetRootWindow()->window, ww, hh, -1 );
1163 GdkGC *gc = gdk_gc_new( bitmap2 );
d90c9596
RR
1164 gdk_gc_set_foreground( gc, m_textForegroundColour.GetColor() );
1165 gdk_gc_set_background( gc, m_textBackgroundColour.GetColor() );
b85229d1 1166 gdk_wx_draw_bitmap( bitmap2, gc, use_bitmap.GetPixmap(), 0, 0, 0, 0, -1, -1 );
ab9d0a8c 1167
4e115ed2 1168 gdk_draw_drawable( m_window, m_textGC, bitmap2, 0, 0, xx, yy, -1, -1 );
ab9d0a8c 1169
3fe39b0c
MR
1170 g_object_unref (bitmap2);
1171 g_object_unref (gc);
d90c9596 1172 }
82ea63e6 1173 else
d90c9596 1174 {
feac7937 1175#if GTK_CHECK_VERSION(2,2,0)
cc35003a 1176 if (!gtk_check_version(2,2,0) && use_bitmap.HasPixbuf())
feac7937
VS
1177 {
1178 gdk_draw_pixbuf(m_window, m_penGC,
1179 use_bitmap.GetPixbuf(),
1180 0, 0, xx, yy, -1, -1,
1181 GDK_RGB_DITHER_NORMAL, xx, yy);
1182 }
1183 else
1184#endif
1185 {
15f0ad70
MR
1186 gdk_draw_drawable(m_window, m_penGC,
1187 use_bitmap.GetPixmap(),
1188 0, 0, xx, yy, -1, -1);
feac7937 1189 }
d90c9596 1190 }
72174350 1191
d90c9596 1192 // remove mask again if any
7d5af6fa 1193 if (useMask && mask)
463c1fa1 1194 {
82ea63e6
RR
1195 if (is_mono)
1196 {
1197 gdk_gc_set_clip_mask( m_textGC, (GdkBitmap *) NULL );
1198 gdk_gc_set_clip_origin( m_textGC, 0, 0 );
e1208c31 1199 if (!m_currentClippingRegion.IsNull())
3d2d8da1 1200 gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() );
82ea63e6
RR
1201 }
1202 else
1203 {
1204 gdk_gc_set_clip_mask( m_penGC, (GdkBitmap *) NULL );
1205 gdk_gc_set_clip_origin( m_penGC, 0, 0 );
e1208c31 1206 if (!m_currentClippingRegion.IsNull())
3d2d8da1 1207 gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() );
82ea63e6 1208 }
463c1fa1 1209 }
ab9d0a8c 1210
d90c9596 1211 if (new_mask)
3fe39b0c 1212 g_object_unref (new_mask);
463c1fa1
RR
1213}
1214
1e6feb95
VZ
1215bool wxWindowDC::DoBlit( wxCoord xdest, wxCoord ydest,
1216 wxCoord width, wxCoord height,
1217 wxDC *source,
1218 wxCoord xsrc, wxCoord ysrc,
1219 int logical_func,
0cbff120
JS
1220 bool useMask,
1221 wxCoord xsrcMask, wxCoord ysrcMask )
c801d85f 1222{
ab9d0a8c 1223 wxCHECK_MSG( Ok(), false, wxT("invalid window dc") );
7d5af6fa 1224
ab9d0a8c 1225 wxCHECK_MSG( source, false, wxT("invalid source dc") );
7d5af6fa 1226
ab9d0a8c 1227 if (!m_window) return false;
7d5af6fa 1228
1e6feb95 1229 // transform the source DC coords to the device ones
06201c35
RR
1230 xsrc = source->XLOG2DEV(xsrc);
1231 ysrc = source->YLOG2DEV(ysrc);
1e6feb95 1232
6e13c196
RR
1233 wxClientDC *srcDC = (wxClientDC*)source;
1234 wxMemoryDC *memDC = (wxMemoryDC*)source;
7d5af6fa 1235
ab9d0a8c
WS
1236 bool use_bitmap_method = false;
1237 bool is_mono = false;
7d5af6fa 1238
0cbff120
JS
1239 if (xsrcMask == -1 && ysrcMask == -1)
1240 {
d90c9596
RR
1241 xsrcMask = xsrc;
1242 ysrcMask = ysrc;
0cbff120
JS
1243 }
1244
6e13c196
RR
1245 if (srcDC->m_isMemDC)
1246 {
ab9d0a8c 1247 if (!memDC->m_selected.Ok()) return false;
7d5af6fa 1248
d90c9596
RR
1249 is_mono = (memDC->m_selected.GetDepth() == 1);
1250
1251 // we use the "XCopyArea" way to copy a memory dc into
1252 // a different window if the memory dc BOTH
1253 // a) doesn't have any mask or its mask isn't used
1254 // b) it is clipped
1255 // c) is not 1-bit
7d5af6fa 1256
f234c60c 1257 if (useMask && (memDC->m_selected.GetMask()))
b0e0d661 1258 {
d90c9596
RR
1259 // we HAVE TO use the direct way for memory dcs
1260 // that have mask since the XCopyArea doesn't know
1261 // about masks
ab9d0a8c 1262 use_bitmap_method = true;
b0e0d661 1263 }
d90c9596 1264 else if (is_mono)
b0e0d661 1265 {
d90c9596
RR
1266 // we HAVE TO use the direct way for memory dcs
1267 // that are bitmaps because XCopyArea doesn't cope
1268 // with different bit depths
ab9d0a8c 1269 use_bitmap_method = true;
b0e0d661
VZ
1270 }
1271 else if ((xsrc == 0) && (ysrc == 0) &&
1272 (width == memDC->m_selected.GetWidth()) &&
1273 (height == memDC->m_selected.GetHeight()))
1274 {
d90c9596
RR
1275 // we SHOULD use the direct way if all of the bitmap
1276 // in the memory dc is copied in which case XCopyArea
1277 // wouldn't be able able to boost performace by reducing
1278 // the area to be scaled
ab9d0a8c 1279 use_bitmap_method = true;
b0e0d661
VZ
1280 }
1281 else
1282 {
ab9d0a8c 1283 use_bitmap_method = false;
b0e0d661 1284 }
6e13c196 1285 }
7d5af6fa 1286
265898fd
RR
1287 CalcBoundingBox( xdest, ydest );
1288 CalcBoundingBox( xdest + width, ydest + height );
7d5af6fa 1289
d90c9596 1290 // scale/translate size and position
3d2d8da1
RR
1291 wxCoord xx = XLOG2DEV(xdest);
1292 wxCoord yy = YLOG2DEV(ydest);
1293
1294 wxCoord ww = XLOG2DEVREL(width);
1295 wxCoord hh = YLOG2DEVREL(height);
1296
d90c9596 1297 // compare to current clipping region
e1208c31 1298 if (!m_currentClippingRegion.IsNull())
3d2d8da1
RR
1299 {
1300 wxRegion tmp( xx,yy,ww,hh );
1301 tmp.Intersect( m_currentClippingRegion );
1302 if (tmp.IsEmpty())
ab9d0a8c 1303 return true;
3d2d8da1
RR
1304 }
1305
4bc67cc5
RR
1306 int old_logical_func = m_logicalFunction;
1307 SetLogicalFunction( logical_func );
5f170f33 1308
6e13c196 1309 if (use_bitmap_method)
6f65e337 1310 {
d90c9596 1311 // scale/translate bitmap size
72cdf4c9
VZ
1312 wxCoord bm_width = memDC->m_selected.GetWidth();
1313 wxCoord bm_height = memDC->m_selected.GetHeight();
7d5af6fa 1314
551b5391
RR
1315 // Get clip coords for the bitmap. If we don't
1316 // use wxBitmap::Rescale(), which can clip the
1317 // bitmap, these are the same as the original
1318 // coordinates
1319 wxCoord cx = xx;
1320 wxCoord cy = yy;
1321 wxCoord cw = ww;
1322 wxCoord ch = hh;
ab9d0a8c 1323
d90c9596
RR
1324 // interpret userscale of src too
1325 double xsc,ysc;
1326 memDC->GetUserScale(&xsc,&ysc);
1327 bm_width = (int) (bm_width / xsc);
1328 bm_height = (int) (bm_height / ysc);
1329
72cdf4c9
VZ
1330 wxCoord bm_ww = XLOG2DEVREL( bm_width );
1331 wxCoord bm_hh = YLOG2DEVREL( bm_height );
7d5af6fa 1332
551b5391 1333 // Scale bitmap if required
6e13c196 1334 wxBitmap use_bitmap;
f53df133 1335 if ((memDC->m_selected.GetWidth()!= bm_ww) || ( memDC->m_selected.GetHeight()!= bm_hh))
6e13c196 1336 {
551b5391
RR
1337 // This indicates that the blitting code below will get
1338 // a clipped bitmap and therefore needs to move the origin
1339 // accordingly
1340 wxRegion tmp( xx,yy,ww,hh );
1341 tmp.Intersect( m_currentClippingRegion );
1342 tmp.GetBox(cx,cy,cw,ch);
ab9d0a8c 1343
551b5391
RR
1344 // Scale and clipped bitmap
1345 use_bitmap = memDC->m_selected.Rescale(cx-xx,cy-yy,cw,ch,bm_ww,bm_hh);
6e13c196
RR
1346 }
1347 else
e23d0e95 1348 {
551b5391 1349 // Don't scale bitmap
6e13c196
RR
1350 use_bitmap = memDC->m_selected;
1351 }
7d5af6fa 1352
d90c9596 1353 // apply mask if any
6e13c196
RR
1354 GdkBitmap *mask = (GdkBitmap *) NULL;
1355 if (use_bitmap.GetMask()) mask = use_bitmap.GetMask()->GetBitmap();
7d5af6fa 1356
d90c9596 1357 GdkBitmap *new_mask = (GdkBitmap*) NULL;
ab9d0a8c 1358
7d5af6fa 1359 if (useMask && mask)
6e13c196 1360 {
e1208c31 1361 if (!m_currentClippingRegion.IsNull())
3d2d8da1
RR
1362 {
1363 GdkColor col;
c2fa61e8 1364 new_mask = gdk_pixmap_new( wxGetRootWindow()->window, bm_ww, bm_hh, 1 );
3d2d8da1
RR
1365 GdkGC *gc = gdk_gc_new( new_mask );
1366 col.pixel = 0;
1367 gdk_gc_set_foreground( gc, &col );
b7a49654 1368 gdk_gc_set_ts_origin( gc, -xsrcMask, -ysrcMask);
3d2d8da1
RR
1369 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh );
1370 col.pixel = 0;
1371 gdk_gc_set_background( gc, &col );
1372 col.pixel = 1;
1373 gdk_gc_set_foreground( gc, &col );
1374 gdk_gc_set_clip_region( gc, m_currentClippingRegion.GetRegion() );
d90c9596
RR
1375 // was: gdk_gc_set_clip_origin( gc, -xx, -yy );
1376 gdk_gc_set_clip_origin( gc, -cx, -cy );
3d2d8da1
RR
1377 gdk_gc_set_fill( gc, GDK_OPAQUE_STIPPLED );
1378 gdk_gc_set_stipple( gc, mask );
1379 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh );
3fe39b0c 1380 g_object_unref (gc);
3d2d8da1 1381 }
d90c9596 1382
82ea63e6
RR
1383 if (is_mono)
1384 {
3d2d8da1 1385 if (new_mask)
b7a49654 1386 {
3d2d8da1 1387 gdk_gc_set_clip_mask( m_textGC, new_mask );
b7a49654
RR
1388 gdk_gc_set_clip_origin( m_textGC, cx, cy );
1389 }
3d2d8da1 1390 else
b7a49654 1391 {
3d2d8da1 1392 gdk_gc_set_clip_mask( m_textGC, mask );
b7a49654 1393 gdk_gc_set_clip_origin( m_textGC, cx-xsrcMask, cy-ysrcMask );
0a164d4c 1394 }
82ea63e6
RR
1395 }
1396 else
6e13c196 1397 {
3d2d8da1 1398 if (new_mask)
b7a49654 1399 {
3d2d8da1 1400 gdk_gc_set_clip_mask( m_penGC, new_mask );
b7a49654
RR
1401 gdk_gc_set_clip_origin( m_penGC, cx, cy );
1402 }
3d2d8da1 1403 else
b7a49654 1404 {
3d2d8da1 1405 gdk_gc_set_clip_mask( m_penGC, mask );
b7a49654 1406 gdk_gc_set_clip_origin( m_penGC, cx-xsrcMask, cy-ysrcMask );
0a164d4c 1407 }
b0e0d661 1408 }
6e13c196 1409 }
7d5af6fa 1410
d90c9596
RR
1411 // Draw XPixmap or XBitmap, depending on what the wxBitmap contains. For
1412 // drawing a mono-bitmap (XBitmap) we use the current text GC
5f170f33 1413
82ea63e6 1414 if (is_mono)
d90c9596 1415 {
d90c9596
RR
1416 GdkPixmap *bitmap = gdk_pixmap_new( wxGetRootWindow()->window, bm_ww, bm_hh, -1 );
1417 GdkGC *gc = gdk_gc_new( bitmap );
1418 gdk_gc_set_foreground( gc, m_textForegroundColour.GetColor() );
1419 gdk_gc_set_background( gc, m_textBackgroundColour.GetColor() );
b85229d1 1420 gdk_wx_draw_bitmap( bitmap, gc, use_bitmap.GetPixmap(), 0, 0, 0, 0, -1, -1 );
ab9d0a8c 1421
d90c9596 1422 gdk_draw_drawable( m_window, m_textGC, bitmap, xsrc, ysrc, cx, cy, cw, ch );
ab9d0a8c 1423
3fe39b0c
MR
1424 g_object_unref (bitmap);
1425 g_object_unref (gc);
d90c9596 1426 }
82ea63e6 1427 else
d90c9596 1428 {
15f0ad70
MR
1429 // was: gdk_draw_drawable( m_window, m_penGC, use_bitmap.GetPixmap(), xsrc, ysrc, xx, yy, ww, hh );
1430 gdk_draw_drawable( m_window, m_penGC, use_bitmap.GetPixmap(), xsrc, ysrc, cx, cy, cw, ch );
d90c9596 1431 }
82ea63e6 1432
d90c9596 1433 // remove mask again if any
7d5af6fa 1434 if (useMask && mask)
6e13c196 1435 {
82ea63e6
RR
1436 if (is_mono)
1437 {
1438 gdk_gc_set_clip_mask( m_textGC, (GdkBitmap *) NULL );
1439 gdk_gc_set_clip_origin( m_textGC, 0, 0 );
e1208c31 1440 if (!m_currentClippingRegion.IsNull())
3d2d8da1 1441 gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() );
82ea63e6
RR
1442 }
1443 else
1444 {
1445 gdk_gc_set_clip_mask( m_penGC, (GdkBitmap *) NULL );
1446 gdk_gc_set_clip_origin( m_penGC, 0, 0 );
e1208c31 1447 if (!m_currentClippingRegion.IsNull())
3d2d8da1 1448 gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() );
82ea63e6 1449 }
265898fd 1450 }
ab9d0a8c 1451
d90c9596 1452 if (new_mask)
3fe39b0c 1453 g_object_unref (new_mask);
6f65e337 1454 }
d90c9596 1455 else // use_bitmap_method
6e13c196 1456 {
bf9848e7 1457 if ((width != ww) || (height != hh))
b0e0d661 1458 {
d90c9596
RR
1459 // get clip coords
1460 wxRegion tmp( xx,yy,ww,hh );
1461 tmp.Intersect( m_currentClippingRegion );
1462 wxCoord cx,cy,cw,ch;
1463 tmp.GetBox(cx,cy,cw,ch);
ab9d0a8c
WS
1464
1465 // rescale bitmap
d90c9596 1466 wxBitmap bitmap = memDC->m_selected.Rescale( cx-xx, cy-yy, cw, ch, ww, hh );
7d5af6fa 1467
d90c9596 1468 // draw scaled bitmap
15f0ad70
MR
1469 // was: gdk_draw_drawable( m_window, m_penGC, bitmap.GetPixmap(), 0, 0, xx, yy, -1, -1 );
1470 gdk_draw_drawable( m_window, m_penGC, bitmap.GetPixmap(), 0, 0, cx, cy, -1, -1 );
b0e0d661
VZ
1471 }
1472 else
1473 {
ab9d0a8c 1474 // No scaling and not a memory dc with a mask either
993f97ee 1475
d90c9596 1476 // copy including child window contents
a56fcaaf 1477 gdk_gc_set_subwindow( m_penGC, GDK_INCLUDE_INFERIORS );
15f0ad70
MR
1478 gdk_draw_drawable( m_window, m_penGC,
1479 srcDC->GetWindow(),
1480 xsrc, ysrc, xx, yy,
1481 width, height );
a56fcaaf 1482 gdk_gc_set_subwindow( m_penGC, GDK_CLIP_BY_CHILDREN );
b0e0d661 1483 }
6e13c196 1484 }
c801d85f 1485
4bc67cc5 1486 SetLogicalFunction( old_logical_func );
ab9d0a8c
WS
1487
1488 return true;
903f689b 1489}
c801d85f 1490
72cdf4c9 1491void wxWindowDC::DoDrawText( const wxString &text, wxCoord x, wxCoord y )
c801d85f 1492{
223d09f6 1493 wxCHECK_RET( Ok(), wxT("invalid window dc") );
18a2fa37 1494
6db90681 1495 if (!m_window) return;
ab9d0a8c 1496
2b5f62a0 1497 if (text.empty()) return;
7d5af6fa 1498
265898fd
RR
1499 x = XLOG2DEV(x);
1500 y = YLOG2DEV(y);
18a2fa37 1501
cfcc3932 1502 wxCHECK_RET( m_context, wxT("no Pango context") );
61850501 1503 wxCHECK_RET( m_layout, wxT("no Pango layout") );
cfcc3932 1504 wxCHECK_RET( m_fontdesc, wxT("no Pango font description") );
e4da1035 1505
1dbeee57
VS
1506 bool underlined = m_font.Ok() && m_font.GetUnderlined();
1507
a3669332
VZ
1508 const wxCharBuffer data = wxGTK_CONV( text );
1509 if ( !data )
7706daf3 1510 return;
a3669332
VZ
1511 const size_t datalen = strlen(data);
1512 pango_layout_set_text( m_layout, data, datalen);
ab9d0a8c 1513
1dbeee57
VS
1514 if (underlined)
1515 {
1516 PangoAttrList *attrs = pango_attr_list_new();
1517 PangoAttribute *a = pango_attr_underline_new(PANGO_UNDERLINE_SINGLE);
1518 a->start_index = 0;
1519 a->end_index = datalen;
1520 pango_attr_list_insert(attrs, a);
1521 pango_layout_set_attributes(m_layout, attrs);
1522 pango_attr_list_unref(attrs);
1523 }
e4da1035 1524
76b20467 1525 int w,h;
fa499247
RR
1526
1527 if (fabs(m_scaleY - 1.0) > 0.00001)
e4da1035
RR
1528 {
1529 // If there is a user or actually any scale applied to
1530 // the device context, scale the font.
ab9d0a8c 1531
e4da1035
RR
1532 // scale font description
1533 gint oldSize = pango_font_description_get_size( m_fontdesc );
1534 double size = oldSize;
1535 size = size * m_scaleY;
1536 pango_font_description_set_size( m_fontdesc, (gint)size );
ab9d0a8c 1537
e4da1035
RR
1538 // actually apply scaled font
1539 pango_layout_set_font_description( m_layout, m_fontdesc );
ab9d0a8c 1540
76b20467
VS
1541 pango_layout_get_pixel_size( m_layout, &w, &h );
1542 if ( m_backgroundMode == wxSOLID )
1543 {
1544 gdk_gc_set_foreground(m_textGC, m_textBackgroundColour.GetColor());
1545 gdk_draw_rectangle(m_window, m_textGC, TRUE, x, y, w, h);
1546 gdk_gc_set_foreground(m_textGC, m_textForegroundColour.GetColor());
1547 }
ab9d0a8c 1548
e4da1035
RR
1549 // Draw layout.
1550 gdk_draw_layout( m_window, m_textGC, x, y, m_layout );
ab9d0a8c 1551
e4da1035
RR
1552 // reset unscaled size
1553 pango_font_description_set_size( m_fontdesc, oldSize );
ab9d0a8c 1554
61850501 1555 // actually apply unscaled font
e4da1035
RR
1556 pango_layout_set_font_description( m_layout, m_fontdesc );
1557 }
1558 else
1559 {
76b20467
VS
1560 pango_layout_get_pixel_size( m_layout, &w, &h );
1561 if ( m_backgroundMode == wxSOLID )
1562 {
1563 gdk_gc_set_foreground(m_textGC, m_textBackgroundColour.GetColor());
1564 gdk_draw_rectangle(m_window, m_textGC, TRUE, x, y, w, h);
1565 gdk_gc_set_foreground(m_textGC, m_textForegroundColour.GetColor());
1566 }
1567 // Draw layout.
1568 gdk_draw_layout( m_window, m_textGC, x, y, m_layout );
8943b403 1569 }
1dbeee57
VS
1570
1571 if (underlined)
1572 {
1573 // undo underline attributes setting:
1574 pango_layout_set_attributes(m_layout, NULL);
1575 }
ab9d0a8c 1576
2b5f62a0
VZ
1577 wxCoord width = w;
1578 wxCoord height = h;
ab9d0a8c 1579
8943b403
OK
1580 width = wxCoord(width / m_scaleX);
1581 height = wxCoord(height / m_scaleY);
1582 CalcBoundingBox (x + width, y + height);
265898fd 1583 CalcBoundingBox (x, y);
903f689b 1584}
c801d85f 1585
bf47e398
RD
1586
1587// TODO: There is an example of rotating text with GTK2 that would probably be
1588// a better approach here:
1589// http://www.daa.com.au/pipermail/pygtk/2003-April/005052.html
1590
95724b1a
VZ
1591void wxWindowDC::DoDrawRotatedText( const wxString &text, wxCoord x, wxCoord y, double angle )
1592{
1c2d839f
PC
1593 if (!m_window || text.empty())
1594 return;
1595
1596 wxCHECK_RET( Ok(), wxT("invalid window dc") );
1597
c77a6796 1598 if ( wxIsNullDouble(angle) )
95724b1a
VZ
1599 {
1600 DrawText(text, x, y);
1601 return;
1602 }
1603
bf47e398
RD
1604 wxCoord w;
1605 wxCoord h;
1606
68567a96 1607 // TODO: implement later without GdkFont for GTK 2.0
bf47e398 1608 GetTextExtent(text, &w, &h, NULL,NULL, &m_font);
ab9d0a8c 1609
9a8c7620
VZ
1610 // draw the string normally
1611 wxBitmap src(w, h);
95724b1a
VZ
1612 wxMemoryDC dc;
1613 dc.SelectObject(src);
1614 dc.SetFont(GetFont());
f1c72f0c 1615 dc.SetBackground(*wxBLACK_BRUSH);
95724b1a
VZ
1616 dc.SetBrush(*wxBLACK_BRUSH);
1617 dc.Clear();
f1c72f0c 1618 dc.SetTextForeground( *wxWHITE );
95724b1a 1619 dc.DrawText(text, 0, 0);
9a8c7620 1620 dc.SelectObject(wxNullBitmap);
95724b1a
VZ
1621
1622 // Calculate the size of the rotated bounding box.
9a8c7620
VZ
1623 double rad = DegToRad(angle);
1624 double dx = cos(rad),
1625 dy = sin(rad);
1626
1627 // the rectngle vertices are counted clockwise with the first one being at
1628 // (0, 0) (or, rather, at (x, y))
1629 double x2 = w*dx,
1630 y2 = -w*dy; // y axis points to the bottom, hence minus
1631 double x4 = h*dy,
1632 y4 = h*dx;
1633 double x3 = x4 + x2,
1634 y3 = y4 + y2;
ab9d0a8c 1635
72174350 1636 // calc max and min
9a8c7620
VZ
1637 wxCoord maxX = (wxCoord)(dmax(x2, dmax(x3, x4)) + 0.5),
1638 maxY = (wxCoord)(dmax(y2, dmax(y3, y4)) + 0.5),
1639 minX = (wxCoord)(dmin(x2, dmin(x3, x4)) - 0.5),
1640 minY = (wxCoord)(dmin(y2, dmin(y3, y4)) - 0.5);
1641
72174350 1642
f1c72f0c 1643 wxImage image = src.ConvertToImage();
9a8c7620 1644
f1c72f0c
RR
1645 image.ConvertColourToAlpha( m_textForegroundColour.Red(),
1646 m_textForegroundColour.Green(),
1647 m_textForegroundColour.Blue() );
1648 image = image.Rotate( rad, wxPoint(0,0) );
ab9d0a8c 1649
1d65e535
RR
1650 int i_angle = (int) angle;
1651 i_angle = i_angle % 360;
c2cb80c8
KH
1652 if (i_angle < 0)
1653 i_angle += 360;
1d65e535
RR
1654 int xoffset = 0;
1655 if ((i_angle >= 90.0) && (i_angle < 270.0))
1656 xoffset = image.GetWidth();
1657 int yoffset = 0;
1658 if ((i_angle >= 0.0) && (i_angle < 180.0))
1659 yoffset = image.GetHeight();
ab9d0a8c 1660
1d65e535
RR
1661 if ((i_angle >= 0) && (i_angle < 90))
1662 yoffset -= (int)( cos(rad)*h );
1663 if ((i_angle >= 90) && (i_angle < 180))
ab9d0a8c 1664 xoffset -= (int)( sin(rad)*h );
1d65e535
RR
1665 if ((i_angle >= 180) && (i_angle < 270))
1666 yoffset -= (int)( cos(rad)*h );
1667 if ((i_angle >= 270) && (i_angle < 360))
1668 xoffset -= (int)( sin(rad)*h );
ab9d0a8c 1669
1d65e535
RR
1670 int i_x = x - xoffset;
1671 int i_y = y - yoffset;
ab9d0a8c 1672
f1c72f0c 1673 src = image;
1d65e535 1674 DoDrawBitmap( src, i_x, i_y, true );
9a8c7620 1675
95724b1a 1676
9a8c7620
VZ
1677 // it would be better to draw with non underlined font and draw the line
1678 // manually here (it would be more straight...)
1679#if 0
1680 if ( m_font.GetUnderlined() )
1681 {
1682 gdk_draw_line( m_window, m_textGC,
1683 XLOG2DEV(x + x4), YLOG2DEV(y + y4 + font->descent),
1684 XLOG2DEV(x + x3), YLOG2DEV(y + y3 + font->descent));
1685 }
1686#endif // 0
1687
9a8c7620
VZ
1688 // update the bounding box
1689 CalcBoundingBox(x + minX, y + minY);
1690 CalcBoundingBox(x + maxX, y + maxY);
95724b1a
VZ
1691}
1692
72cdf4c9
VZ
1693void wxWindowDC::DoGetTextExtent(const wxString &string,
1694 wxCoord *width, wxCoord *height,
1695 wxCoord *descent, wxCoord *externalLeading,
1696 wxFont *theFont) const
c801d85f 1697{
b1f0abe4
VZ
1698 if ( width )
1699 *width = 0;
1700 if ( height )
1701 *height = 0;
1702 if ( descent )
1703 *descent = 0;
1704 if ( externalLeading )
1705 *externalLeading = 0;
1706
ab9d0a8c 1707 if (string.empty())
48d011c8 1708 return;
ab9d0a8c 1709
bf5752a4
VZ
1710 // ensure that theFont is always non-NULL
1711 if ( !theFont || !theFont->Ok() )
1712 theFont = wx_const_cast(wxFont *, &m_font);
1713
1714 // and use it if it's valid
1715 if ( theFont->Ok() )
1716 {
1717 pango_layout_set_font_description
1718 (
1719 m_layout,
1720 theFont->GetNativeFontInfo()->description
1721 );
1722 }
ab9d0a8c 1723
2b5f62a0 1724 // Set layout's text
bf5752a4 1725 const wxCharBuffer dataUTF8 = wxGTK_CONV_FONT(string, *theFont);
a1e101d0
VZ
1726 if ( !dataUTF8 )
1727 {
1728 // hardly ideal, but what else can we do if conversion failed?
1729 return;
1730 }
1731
1732 pango_layout_set_text( m_layout, dataUTF8, strlen(dataUTF8) );
ab9d0a8c 1733
48d011c8
RR
1734 if (descent)
1735 {
ace35c62
RR
1736 int h;
1737 pango_layout_get_pixel_size( m_layout, width, &h );
f69e2009
VS
1738 PangoLayoutIter *iter = pango_layout_get_iter(m_layout);
1739 int baseline = pango_layout_iter_get_baseline(iter);
1740 pango_layout_iter_free(iter);
1741 *descent = h - PANGO_PIXELS(baseline);
ace35c62
RR
1742
1743 if (height)
1744 *height = (wxCoord) h;
1745 }
1746 else
1747 {
1748 pango_layout_get_pixel_size( m_layout, width, height );
48d011c8 1749 }
ab9d0a8c 1750
cfcc3932
RR
1751 // Reset old font description
1752 if (theFont)
1753 pango_layout_set_font_description( m_layout, m_fontdesc );
903f689b 1754}
c801d85f 1755
72cdf4c9 1756wxCoord wxWindowDC::GetCharWidth() const
c801d85f 1757{
cfcc3932 1758 pango_layout_set_text( m_layout, "H", 1 );
ace35c62
RR
1759 int w;
1760 pango_layout_get_pixel_size( m_layout, &w, NULL );
2b5f62a0 1761 return w;
903f689b 1762}
c801d85f 1763
72cdf4c9 1764wxCoord wxWindowDC::GetCharHeight() const
c801d85f 1765{
370b406c
MR
1766 PangoFontMetrics *metrics = pango_context_get_metrics (m_context, m_fontdesc, NULL);
1767 return PANGO_PIXELS (pango_font_metrics_get_descent (metrics) + pango_font_metrics_get_ascent (metrics));
903f689b 1768}
c801d85f 1769
4bc67cc5 1770void wxWindowDC::Clear()
c801d85f 1771{
223d09f6 1772 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 1773
6db90681 1774 if (!m_window) return;
7d5af6fa 1775
f60e7fdd
VZ
1776 // VZ: the code below results in infinite recursion and crashes when
1777 // dc.Clear() is done from OnPaint() so I disable it for now.
1778 // I don't know what the correct fix is but Clear() surely should not
1779 // reenter OnPaint()!
1780#if 0
f234c60c
RR
1781 /* - we either are a memory dc or have a window as the
1782 owner. anything else shouldn't happen.
1783 - we don't use gdk_window_clear() as we don't set
1784 the window's background colour anymore. it is too
1785 much pain to keep the DC's and the window's back-
1786 ground colour in synch. */
7d5af6fa 1787
f234c60c 1788 if (m_owner)
265898fd 1789 {
f90566f5 1790 m_owner->Clear();
b0e0d661 1791 return;
265898fd 1792 }
f234c60c
RR
1793
1794 if (m_isMemDC)
265898fd
RR
1795 {
1796 int width,height;
1797 GetSize( &width, &height );
1798 gdk_draw_rectangle( m_window, m_bgGC, TRUE, 0, 0, width, height );
b0e0d661 1799 return;
265898fd 1800 }
f60e7fdd
VZ
1801#else // 1
1802 int width,height;
1803 GetSize( &width, &height );
1804 gdk_draw_rectangle( m_window, m_bgGC, TRUE, 0, 0, width, height );
1805#endif // 0/1
903f689b 1806}
c801d85f 1807
ec758a20 1808void wxWindowDC::SetFont( const wxFont &font )
c801d85f 1809{
265898fd 1810 m_font = font;
ab9d0a8c 1811
77416abd 1812 if (m_font.Ok())
2b5f62a0 1813 {
cfcc3932
RR
1814 if (m_fontdesc)
1815 pango_font_description_free( m_fontdesc );
ab9d0a8c 1816
cfcc3932 1817 m_fontdesc = pango_font_description_copy( m_font.GetNativeFontInfo()->description );
ab9d0a8c
WS
1818
1819
77416abd
JS
1820 if (m_owner)
1821 {
cfcc3932 1822 PangoContext *oldContext = m_context;
ab9d0a8c 1823
f26623c8 1824 m_context = m_owner->GtkGetPangoDefaultContext();
ab9d0a8c 1825
cfcc3932
RR
1826 // If we switch back/forth between different contexts
1827 // we also have to create a new layout. I think so,
ab9d0a8c 1828 // at least, and it doesn't hurt to do it.
cfcc3932
RR
1829 if (oldContext != m_context)
1830 {
1831 if (m_layout)
3fe39b0c 1832 g_object_unref (m_layout);
ab9d0a8c 1833
cfcc3932
RR
1834 m_layout = pango_layout_new( m_context );
1835 }
77416abd 1836 }
ab9d0a8c 1837
cfcc3932 1838 pango_layout_set_font_description( m_layout, m_fontdesc );
2b5f62a0 1839 }
903f689b 1840}
c801d85f 1841
ec758a20 1842void wxWindowDC::SetPen( const wxPen &pen )
c801d85f 1843{
223d09f6 1844 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 1845
265898fd 1846 if (m_pen == pen) return;
7d5af6fa 1847
265898fd 1848 m_pen = pen;
7d5af6fa 1849
265898fd 1850 if (!m_pen.Ok()) return;
7d5af6fa 1851
6db90681 1852 if (!m_window) return;
7d5af6fa 1853
265898fd 1854 gint width = m_pen.GetWidth();
265898fd
RR
1855 if (width <= 0)
1856 {
112c5086 1857 // CMB: if width is non-zero scale it with the dc
265898fd
RR
1858 width = 1;
1859 }
1860 else
1861 {
1862 // X doesn't allow different width in x and y and so we take
1863 // the average
503f414e
VZ
1864 double w = 0.5 +
1865 ( fabs((double) XLOG2DEVREL(width)) +
1866 fabs((double) YLOG2DEVREL(width)) ) / 2.0;
265898fd 1867 width = (int)w;
375fc5a9
VZ
1868 if ( !width )
1869 {
1870 // width can't be 0 or an internal GTK error occurs inside
1871 // gdk_gc_set_dashes() below
1872 width = 1;
1873 }
265898fd 1874 }
7d5af6fa 1875
2eca425d
RL
1876 static const wxGTKDash dotted[] = {1, 1};
1877 static const wxGTKDash short_dashed[] = {2, 2};
1878 static const wxGTKDash wxCoord_dashed[] = {2, 4};
1879 static const wxGTKDash dotted_dashed[] = {3, 3, 1, 3};
7d5af6fa 1880
112c5086
RR
1881 // We express dash pattern in pen width unit, so we are
1882 // independent of zoom factor and so on...
1883 int req_nb_dash;
2eca425d 1884 const wxGTKDash *req_dash;
7d5af6fa 1885
265898fd
RR
1886 GdkLineStyle lineStyle = GDK_LINE_SOLID;
1887 switch (m_pen.GetStyle())
1888 {
112c5086 1889 case wxUSER_DASH:
7d5af6fa
VZ
1890 {
1891 lineStyle = GDK_LINE_ON_OFF_DASH;
112c5086 1892 req_nb_dash = m_pen.GetDashCount();
2eca425d 1893 req_dash = (wxGTKDash*)m_pen.GetDash();
112c5086 1894 break;
7d5af6fa
VZ
1895 }
1896 case wxDOT:
1897 {
1898 lineStyle = GDK_LINE_ON_OFF_DASH;
112c5086
RR
1899 req_nb_dash = 2;
1900 req_dash = dotted;
7d5af6fa
VZ
1901 break;
1902 }
1903 case wxLONG_DASH:
1904 {
1905 lineStyle = GDK_LINE_ON_OFF_DASH;
112c5086 1906 req_nb_dash = 2;
72cdf4c9 1907 req_dash = wxCoord_dashed;
7d5af6fa
VZ
1908 break;
1909 }
1910 case wxSHORT_DASH:
1911 {
1912 lineStyle = GDK_LINE_ON_OFF_DASH;
112c5086
RR
1913 req_nb_dash = 2;
1914 req_dash = short_dashed;
7d5af6fa
VZ
1915 break;
1916 }
1917 case wxDOT_DASH:
1918 {
1919// lineStyle = GDK_LINE_DOUBLE_DASH;
1920 lineStyle = GDK_LINE_ON_OFF_DASH;
112c5086
RR
1921 req_nb_dash = 4;
1922 req_dash = dotted_dashed;
7d5af6fa
VZ
1923 break;
1924 }
1925
1926 case wxTRANSPARENT:
72174350 1927 case wxSTIPPLE_MASK_OPAQUE:
7d5af6fa
VZ
1928 case wxSTIPPLE:
1929 case wxSOLID:
1930 default:
1931 {
1932 lineStyle = GDK_LINE_SOLID;
2eca425d 1933 req_dash = (wxGTKDash*)NULL;
112c5086 1934 req_nb_dash = 0;
7d5af6fa
VZ
1935 break;
1936 }
265898fd 1937 }
7d5af6fa 1938
112c5086
RR
1939 if (req_dash && req_nb_dash)
1940 {
2eca425d 1941 wxGTKDash *real_req_dash = new wxGTKDash[req_nb_dash];
112c5086
RR
1942 if (real_req_dash)
1943 {
1944 for (int i = 0; i < req_nb_dash; i++)
1945 real_req_dash[i] = req_dash[i] * width;
2eca425d 1946 gdk_gc_set_dashes( m_penGC, 0, real_req_dash, req_nb_dash );
112c5086
RR
1947 delete[] real_req_dash;
1948 }
1949 else
1950 {
1951 // No Memory. We use non-scaled dash pattern...
2eca425d 1952 gdk_gc_set_dashes( m_penGC, 0, (wxGTKDash*)req_dash, req_nb_dash );
112c5086
RR
1953 }
1954 }
7d5af6fa 1955
265898fd
RR
1956 GdkCapStyle capStyle = GDK_CAP_ROUND;
1957 switch (m_pen.GetCap())
1958 {
265898fd
RR
1959 case wxCAP_PROJECTING: { capStyle = GDK_CAP_PROJECTING; break; }
1960 case wxCAP_BUTT: { capStyle = GDK_CAP_BUTT; break; }
d4aa3a4b
RR
1961 case wxCAP_ROUND:
1962 default:
72174350 1963 {
d4aa3a4b
RR
1964 if (width <= 1)
1965 {
1966 width = 0;
1967 capStyle = GDK_CAP_NOT_LAST;
1968 }
1969 else
1970 {
1971 capStyle = GDK_CAP_ROUND;
1972 }
72174350 1973 break;
d4aa3a4b 1974 }
265898fd 1975 }
7d5af6fa 1976
265898fd
RR
1977 GdkJoinStyle joinStyle = GDK_JOIN_ROUND;
1978 switch (m_pen.GetJoin())
1979 {
1980 case wxJOIN_BEVEL: { joinStyle = GDK_JOIN_BEVEL; break; }
265898fd 1981 case wxJOIN_MITER: { joinStyle = GDK_JOIN_MITER; break; }
d4aa3a4b
RR
1982 case wxJOIN_ROUND:
1983 default: { joinStyle = GDK_JOIN_ROUND; break; }
265898fd 1984 }
7d5af6fa 1985
265898fd 1986 gdk_gc_set_line_attributes( m_penGC, width, lineStyle, capStyle, joinStyle );
7d5af6fa 1987
265898fd
RR
1988 m_pen.GetColour().CalcPixel( m_cmap );
1989 gdk_gc_set_foreground( m_penGC, m_pen.GetColour().GetColor() );
903f689b 1990}
c801d85f 1991
ec758a20 1992void wxWindowDC::SetBrush( const wxBrush &brush )
c801d85f 1993{
223d09f6 1994 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 1995
265898fd 1996 if (m_brush == brush) return;
7d5af6fa 1997
265898fd 1998 m_brush = brush;
7d5af6fa 1999
265898fd 2000 if (!m_brush.Ok()) return;
7d5af6fa 2001
6db90681 2002 if (!m_window) return;
7d5af6fa 2003
265898fd
RR
2004 m_brush.GetColour().CalcPixel( m_cmap );
2005 gdk_gc_set_foreground( m_brushGC, m_brush.GetColour().GetColor() );
7d5af6fa 2006
956dbab1 2007 gdk_gc_set_fill( m_brushGC, GDK_SOLID );
7d5af6fa 2008
4fcd73bd 2009 if ((m_brush.GetStyle() == wxSTIPPLE) && (m_brush.GetStipple()->Ok()))
265898fd 2010 {
b85229d1 2011 if (m_brush.GetStipple()->GetDepth() != 1)
7d5af6fa 2012 {
956dbab1 2013 gdk_gc_set_fill( m_brushGC, GDK_TILED );
cd25b18c 2014 gdk_gc_set_tile( m_brushGC, m_brush.GetStipple()->GetPixmap() );
7d5af6fa 2015 }
b0e0d661 2016 else
7d5af6fa 2017 {
956dbab1 2018 gdk_gc_set_fill( m_brushGC, GDK_STIPPLED );
b85229d1 2019 gdk_gc_set_stipple( m_brushGC, m_brush.GetStipple()->GetPixmap() );
7d5af6fa 2020 }
265898fd 2021 }
7d5af6fa 2022
de2d2cdc
VZ
2023 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
2024 {
e1208c31
RR
2025 gdk_gc_set_fill( m_textGC, GDK_OPAQUE_STIPPLED);
2026 gdk_gc_set_stipple( m_textGC, m_brush.GetStipple()->GetMask()->GetBitmap() );
de2d2cdc
VZ
2027 }
2028
ab9d0a8c 2029 if (m_brush.IsHatch())
265898fd 2030 {
956dbab1 2031 gdk_gc_set_fill( m_brushGC, GDK_STIPPLED );
265898fd
RR
2032 int num = m_brush.GetStyle() - wxBDIAGONAL_HATCH;
2033 gdk_gc_set_stipple( m_brushGC, hatches[num] );
2034 }
903f689b 2035}
c801d85f 2036
ec758a20 2037void wxWindowDC::SetBackground( const wxBrush &brush )
46dc76ba 2038{
bbbbe360
RR
2039 /* CMB 21/7/98: Added SetBackground. Sets background brush
2040 * for Clear() and bg colour for shapes filled with cross-hatch brush */
7d5af6fa 2041
223d09f6 2042 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 2043
265898fd 2044 if (m_backgroundBrush == brush) return;
7d5af6fa 2045
265898fd 2046 m_backgroundBrush = brush;
7d5af6fa 2047
265898fd 2048 if (!m_backgroundBrush.Ok()) return;
7d5af6fa 2049
6db90681 2050 if (!m_window) return;
7d5af6fa 2051
265898fd
RR
2052 m_backgroundBrush.GetColour().CalcPixel( m_cmap );
2053 gdk_gc_set_background( m_brushGC, m_backgroundBrush.GetColour().GetColor() );
a802c3a1 2054 gdk_gc_set_background( m_penGC, m_backgroundBrush.GetColour().GetColor() );
031b2a7b 2055 gdk_gc_set_background( m_bgGC, m_backgroundBrush.GetColour().GetColor() );
265898fd 2056 gdk_gc_set_foreground( m_bgGC, m_backgroundBrush.GetColour().GetColor() );
3417c2cd
RR
2057
2058 gdk_gc_set_fill( m_bgGC, GDK_SOLID );
7d5af6fa 2059
cd25b18c 2060 if ((m_backgroundBrush.GetStyle() == wxSTIPPLE) && (m_backgroundBrush.GetStipple()->Ok()))
265898fd 2061 {
b85229d1 2062 if (m_backgroundBrush.GetStipple()->GetDepth() != 1)
7d5af6fa 2063 {
3417c2cd 2064 gdk_gc_set_fill( m_bgGC, GDK_TILED );
fd128b0c 2065 gdk_gc_set_tile( m_bgGC, m_backgroundBrush.GetStipple()->GetPixmap() );
7d5af6fa 2066 }
cd25b18c 2067 else
7d5af6fa 2068 {
3417c2cd 2069 gdk_gc_set_fill( m_bgGC, GDK_STIPPLED );
b85229d1 2070 gdk_gc_set_stipple( m_bgGC, m_backgroundBrush.GetStipple()->GetPixmap() );
7d5af6fa 2071 }
265898fd 2072 }
7d5af6fa 2073
ab9d0a8c 2074 if (m_backgroundBrush.IsHatch())
265898fd 2075 {
3417c2cd 2076 gdk_gc_set_fill( m_bgGC, GDK_STIPPLED );
265898fd
RR
2077 int num = m_backgroundBrush.GetStyle() - wxBDIAGONAL_HATCH;
2078 gdk_gc_set_stipple( m_bgGC, hatches[num] );
bbbbe360 2079 }
903f689b 2080}
46dc76ba 2081
ec758a20 2082void wxWindowDC::SetLogicalFunction( int function )
c801d85f 2083{
223d09f6 2084 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 2085
72174350
VZ
2086 if (m_logicalFunction == function)
2087 return;
2088
2089 // VZ: shouldn't this be a CHECK?
2090 if (!m_window)
2091 return;
01eaf507 2092
2b5f62a0 2093 GdkFunction mode;
265898fd
RR
2094 switch (function)
2095 {
3c679789
RR
2096 case wxXOR: mode = GDK_XOR; break;
2097 case wxINVERT: mode = GDK_INVERT; break;
3c679789
RR
2098 case wxOR_REVERSE: mode = GDK_OR_REVERSE; break;
2099 case wxAND_REVERSE: mode = GDK_AND_REVERSE; break;
2100 case wxCLEAR: mode = GDK_CLEAR; break;
2101 case wxSET: mode = GDK_SET; break;
2102 case wxOR_INVERT: mode = GDK_OR_INVERT; break;
2103 case wxAND: mode = GDK_AND; break;
2104 case wxOR: mode = GDK_OR; break;
2105 case wxEQUIV: mode = GDK_EQUIV; break;
2106 case wxNAND: mode = GDK_NAND; break;
2107 case wxAND_INVERT: mode = GDK_AND_INVERT; break;
7d5af6fa
VZ
2108 case wxCOPY: mode = GDK_COPY; break;
2109 case wxNO_OP: mode = GDK_NOOP; break;
2110 case wxSRC_INVERT: mode = GDK_COPY_INVERT; break;
72174350 2111
2d52841d
RR
2112 // unsupported by GTK
2113 case wxNOR: mode = GDK_COPY; break;
01eaf507 2114 default:
223d09f6 2115 wxFAIL_MSG( wxT("unsupported logical function") );
2b5f62a0 2116 mode = GDK_COPY;
265898fd 2117 }
7d5af6fa 2118
265898fd 2119 m_logicalFunction = function;
7d5af6fa 2120
265898fd
RR
2121 gdk_gc_set_function( m_penGC, mode );
2122 gdk_gc_set_function( m_brushGC, mode );
72174350
VZ
2123
2124 // to stay compatible with wxMSW, we don't apply ROPs to the text
3d2d8da1
RR
2125 // operations (i.e. DrawText/DrawRotatedText).
2126 // True, but mono-bitmaps use the m_textGC and they use ROPs as well.
2127 gdk_gc_set_function( m_textGC, mode );
903f689b 2128}
c801d85f 2129
ec758a20 2130void wxWindowDC::SetTextForeground( const wxColour &col )
c801d85f 2131{
223d09f6 2132 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 2133
71ec83d2
VZ
2134 // don't set m_textForegroundColour to an invalid colour as we'd crash
2135 // later then (we use m_textForegroundColour.GetColor() without checking
2136 // in a few places)
2137 if ( !col.Ok() || (m_textForegroundColour == col) )
2138 return;
7d5af6fa 2139
265898fd 2140 m_textForegroundColour = col;
7d5af6fa 2141
71ec83d2
VZ
2142 if ( m_window )
2143 {
2144 m_textForegroundColour.CalcPixel( m_cmap );
2145 gdk_gc_set_foreground( m_textGC, m_textForegroundColour.GetColor() );
2146 }
903f689b 2147}
c801d85f 2148
ec758a20 2149void wxWindowDC::SetTextBackground( const wxColour &col )
c801d85f 2150{
223d09f6 2151 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 2152
71ec83d2
VZ
2153 // same as above
2154 if ( !col.Ok() || (m_textBackgroundColour == col) )
2155 return;
7d5af6fa 2156
265898fd 2157 m_textBackgroundColour = col;
7d5af6fa 2158
71ec83d2
VZ
2159 if ( m_window )
2160 {
2161 m_textBackgroundColour.CalcPixel( m_cmap );
2162 gdk_gc_set_background( m_textGC, m_textBackgroundColour.GetColor() );
2163 }
903f689b 2164}
c801d85f 2165
ec758a20 2166void wxWindowDC::SetBackgroundMode( int mode )
c801d85f 2167{
223d09f6 2168 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 2169
265898fd 2170 m_backgroundMode = mode;
46dc76ba 2171
6db90681 2172 if (!m_window) return;
7d5af6fa 2173
265898fd
RR
2174 // CMB 21/7/98: fill style of cross-hatch brushes is affected by
2175 // transparent/solid background mode
7d5af6fa 2176
265898fd
RR
2177 if (m_brush.GetStyle() != wxSOLID && m_brush.GetStyle() != wxTRANSPARENT)
2178 {
2179 gdk_gc_set_fill( m_brushGC,
2180 (m_backgroundMode == wxTRANSPARENT) ? GDK_STIPPLED : GDK_OPAQUE_STIPPLED);
2181 }
903f689b 2182}
c801d85f 2183
ec758a20 2184void wxWindowDC::SetPalette( const wxPalette& WXUNUSED(palette) )
c801d85f 2185{
223d09f6 2186 wxFAIL_MSG( wxT("wxWindowDC::SetPalette not implemented") );
903f689b 2187}
c801d85f 2188
72cdf4c9 2189void wxWindowDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
c801d85f 2190{
223d09f6 2191 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 2192
6db90681 2193 if (!m_window) return;
7d5af6fa 2194
3d2d8da1 2195 wxRect rect;
265898fd
RR
2196 rect.x = XLOG2DEV(x);
2197 rect.y = YLOG2DEV(y);
2198 rect.width = XLOG2DEVREL(width);
2199 rect.height = YLOG2DEVREL(height);
5f170f33 2200
e1208c31 2201 if (!m_currentClippingRegion.IsNull())
993f97ee
RR
2202 m_currentClippingRegion.Intersect( rect );
2203 else
2204 m_currentClippingRegion.Union( rect );
5f170f33
VZ
2205
2206#if USE_PAINT_REGION
e1208c31 2207 if (!m_paintClippingRegion.IsNull())
3d2d8da1 2208 m_currentClippingRegion.Intersect( m_paintClippingRegion );
809934d2 2209#endif
3d2d8da1 2210
ee8dbe63
RL
2211 wxCoord xx, yy, ww, hh;
2212 m_currentClippingRegion.GetBox( xx, yy, ww, hh );
2213 wxDC::DoSetClippingRegion( xx, yy, ww, hh );
2214
3d2d8da1
RR
2215 gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() );
2216 gdk_gc_set_clip_region( m_brushGC, m_currentClippingRegion.GetRegion() );
2217 gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() );
2218 gdk_gc_set_clip_region( m_bgGC, m_currentClippingRegion.GetRegion() );
903f689b 2219}
c801d85f 2220
b0e0d661 2221void wxWindowDC::DoSetClippingRegionAsRegion( const wxRegion &region )
463c1fa1 2222{
223d09f6 2223 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 2224
463c1fa1
RR
2225 if (region.Empty())
2226 {
2227 DestroyClippingRegion();
2228 return;
2229 }
7d5af6fa 2230
6db90681 2231 if (!m_window) return;
5f170f33 2232
e1208c31 2233 if (!m_currentClippingRegion.IsNull())
993f97ee
RR
2234 m_currentClippingRegion.Intersect( region );
2235 else
2236 m_currentClippingRegion.Union( region );
5f170f33
VZ
2237
2238#if USE_PAINT_REGION
e1208c31 2239 if (!m_paintClippingRegion.IsNull())
3d2d8da1 2240 m_currentClippingRegion.Intersect( m_paintClippingRegion );
809934d2 2241#endif
3d2d8da1 2242
ee8dbe63
RL
2243 wxCoord xx, yy, ww, hh;
2244 m_currentClippingRegion.GetBox( xx, yy, ww, hh );
2245 wxDC::DoSetClippingRegion( xx, yy, ww, hh );
2246
3d2d8da1
RR
2247 gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() );
2248 gdk_gc_set_clip_region( m_brushGC, m_currentClippingRegion.GetRegion() );
2249 gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() );
2250 gdk_gc_set_clip_region( m_bgGC, m_currentClippingRegion.GetRegion() );
463c1fa1
RR
2251}
2252
4bc67cc5 2253void wxWindowDC::DestroyClippingRegion()
c801d85f 2254{
223d09f6 2255 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 2256
265898fd 2257 wxDC::DestroyClippingRegion();
7d5af6fa 2258
3d2d8da1 2259 m_currentClippingRegion.Clear();
5f170f33
VZ
2260
2261#if USE_PAINT_REGION
3d2d8da1
RR
2262 if (!m_paintClippingRegion.IsEmpty())
2263 m_currentClippingRegion.Union( m_paintClippingRegion );
993f97ee 2264#endif
3d2d8da1 2265
6db90681 2266 if (!m_window) return;
7d5af6fa 2267
3d2d8da1
RR
2268 if (m_currentClippingRegion.IsEmpty())
2269 {
2270 gdk_gc_set_clip_rectangle( m_penGC, (GdkRectangle *) NULL );
2271 gdk_gc_set_clip_rectangle( m_brushGC, (GdkRectangle *) NULL );
2272 gdk_gc_set_clip_rectangle( m_textGC, (GdkRectangle *) NULL );
2273 gdk_gc_set_clip_rectangle( m_bgGC, (GdkRectangle *) NULL );
2274 }
2275 else
2276 {
2277 gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() );
2278 gdk_gc_set_clip_region( m_brushGC, m_currentClippingRegion.GetRegion() );
2279 gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() );
2280 gdk_gc_set_clip_region( m_bgGC, m_currentClippingRegion.GetRegion() );
2281 }
903f689b 2282}
c801d85f 2283
4bc67cc5 2284void wxWindowDC::Destroy()
dbf858b5 2285{
3d2d8da1 2286 if (m_penGC) wxFreePoolGC( m_penGC );
265898fd 2287 m_penGC = (GdkGC*) NULL;
3d2d8da1 2288 if (m_brushGC) wxFreePoolGC( m_brushGC );
265898fd 2289 m_brushGC = (GdkGC*) NULL;
3d2d8da1 2290 if (m_textGC) wxFreePoolGC( m_textGC );
265898fd 2291 m_textGC = (GdkGC*) NULL;
3d2d8da1 2292 if (m_bgGC) wxFreePoolGC( m_bgGC );
265898fd 2293 m_bgGC = (GdkGC*) NULL;
dbf858b5
RR
2294}
2295
238d735d
RR
2296void wxWindowDC::ComputeScaleAndOrigin()
2297{
c77a6796 2298 const wxRealPoint origScale(m_scaleX, m_scaleY);
238d735d
RR
2299
2300 wxDC::ComputeScaleAndOrigin();
2301
c77a6796
VZ
2302 // if scale has changed call SetPen to recalulate the line width
2303 if ( wxRealPoint(m_scaleX, m_scaleY) != origScale && m_pen.Ok() )
238d735d 2304 {
c77a6796
VZ
2305 // this is a bit artificial, but we need to force wxDC to think the pen
2306 // has changed
0a164d4c
WS
2307 wxPen pen = m_pen;
2308 m_pen = wxNullPen;
2309 SetPen( pen );
2310 }
238d735d
RR
2311}
2312
b0e0d661
VZ
2313// Resolution in pixels per logical inch
2314wxSize wxWindowDC::GetPPI() const
2315{
7a5e6267 2316 return wxSize( (int) (m_mm_to_pix_x * 25.4 + 0.5), (int) (m_mm_to_pix_y * 25.4 + 0.5));
b0e0d661
VZ
2317}
2318
2319int wxWindowDC::GetDepth() const
c801d85f 2320{
ace35c62 2321 return gdk_drawable_get_depth(m_window);
903f689b 2322}
c801d85f 2323
ec758a20
RR
2324
2325//-----------------------------------------------------------------------------
2326// wxPaintDC
2327//-----------------------------------------------------------------------------
2328
f469b27c 2329IMPLEMENT_DYNAMIC_CLASS(wxPaintDC, wxClientDC)
ec758a20 2330
2cfddfe7
JS
2331// Limit the paint region to the window size. Sometimes
2332// the paint region is too big, and this risks X11 errors
2333static void wxLimitRegionToSize(wxRegion& region, const wxSize& sz)
2334{
2335 wxRect originalRect = region.GetBox();
2336 wxRect rect(originalRect);
2337 if (rect.width + rect.x > sz.x)
2338 rect.width = sz.x - rect.x;
2339 if (rect.height + rect.y > sz.y)
2340 rect.height = sz.y - rect.y;
2341 if (rect != originalRect)
2342 {
2343 region = wxRegion(rect);
2344 wxLogTrace(wxT("painting"), wxT("Limiting region from %d, %d, %d, %d to %d, %d, %d, %d\n"),
2345 originalRect.x, originalRect.y, originalRect.width, originalRect.height,
2346 rect.x, rect.y, rect.width, rect.height);
2347 }
2348}
2349
ec758a20 2350wxPaintDC::wxPaintDC( wxWindow *win )
f469b27c 2351 : wxClientDC( win )
ec758a20 2352{
b6fa52db
RR
2353#if USE_PAINT_REGION
2354 if (!win->m_clipPaintRegion)
2355 return;
f469b27c 2356
2cfddfe7 2357 wxSize sz = win->GetSize();
e1208c31 2358 m_paintClippingRegion = win->GetUpdateRegion();
2cfddfe7 2359 wxLimitRegionToSize(m_paintClippingRegion, sz);
ab9d0a8c 2360
5f170f33
VZ
2361 GdkRegion *region = m_paintClippingRegion.GetRegion();
2362 if ( region )
2363 {
823faac3 2364 m_currentClippingRegion.Union( m_paintClippingRegion );
2cfddfe7
JS
2365 wxLimitRegionToSize(m_currentClippingRegion, sz);
2366
2367 if (sz.x <= 0 || sz.y <= 0)
2368 return ;
5f170f33 2369
823faac3
JS
2370 gdk_gc_set_clip_region( m_penGC, region );
2371 gdk_gc_set_clip_region( m_brushGC, region );
2372 gdk_gc_set_clip_region( m_textGC, region );
2373 gdk_gc_set_clip_region( m_bgGC, region );
5f170f33 2374 }
1e6feb95 2375#endif // USE_PAINT_REGION
ec758a20
RR
2376}
2377
2378//-----------------------------------------------------------------------------
2379// wxClientDC
2380//-----------------------------------------------------------------------------
2381
f469b27c 2382IMPLEMENT_DYNAMIC_CLASS(wxClientDC, wxWindowDC)
ec758a20 2383
f469b27c
VZ
2384wxClientDC::wxClientDC( wxWindow *win )
2385 : wxWindowDC( win )
ec758a20 2386{
4f55a07f
VZ
2387 wxCHECK_RET( win, _T("NULL window in wxClientDC::wxClientDC") );
2388
1e6feb95
VZ
2389#ifdef __WXUNIVERSAL__
2390 wxPoint ptOrigin = win->GetClientAreaOrigin();
2391 SetDeviceOrigin(ptOrigin.x, ptOrigin.y);
2392 wxSize size = win->GetClientSize();
2393 SetClippingRegion(wxPoint(0, 0), size);
2394#endif // __WXUNIVERSAL__
ec758a20
RR
2395}
2396
4f55a07f
VZ
2397void wxClientDC::DoGetSize(int *width, int *height) const
2398{
2399 wxCHECK_RET( m_owner, _T("GetSize() doesn't work without window") );
2400
2401 m_owner->GetClientSize( width, height );
2402}
2403
3d2d8da1
RR
2404// ----------------------------------------------------------------------------
2405// wxDCModule
2406// ----------------------------------------------------------------------------
2407
2408class wxDCModule : public wxModule
2409{
2410public:
2411 bool OnInit();
2412 void OnExit();
2413
2414private:
2415 DECLARE_DYNAMIC_CLASS(wxDCModule)
2416};
2417
2418IMPLEMENT_DYNAMIC_CLASS(wxDCModule, wxModule)
2419
2420bool wxDCModule::OnInit()
2421{
2422 wxInitGCPool();
ab9d0a8c 2423 return true;
3d2d8da1
RR
2424}
2425
2426void wxDCModule::OnExit()
2427{
2428 wxCleanUpGCPool();
2429}