]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/dcclient.cpp
gdk_image_destroy -> g_object_unref (gdk_image_destroy is deprecated in favor of...
[wxWidgets.git] / src / gtk / dcclient.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
e5131165 2// Name: 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"
6f65e337 18#include "wx/dcmemory.h"
4bc67cc5 19#include "wx/image.h"
e5131165 20#include "wx/module.h"
b1699cd3 21#include "wx/log.h"
db16cab4 22#include "wx/fontutil.h"
e5131165 23
ed673c6a 24#include "wx/gtk/win_gtk.h"
c801d85f 25
463c4d71 26#include "wx/math.h" // for floating-point functions
e5131165 27
071a2d78 28#include <gdk/gdk.h>
993f97ee 29#include <gdk/gdkx.h>
8943b403 30#include <gdk/gdkprivate.h>
071a2d78 31#include <gtk/gtk.h>
83624f79 32
809934d2
RR
33//-----------------------------------------------------------------------------
34// local defines
35//-----------------------------------------------------------------------------
36
e1208c31 37#define USE_PAINT_REGION 1
809934d2 38
c801d85f
KB
39//-----------------------------------------------------------------------------
40// local data
41//-----------------------------------------------------------------------------
42
43#include "bdiag.xbm"
44#include "fdiag.xbm"
45#include "cdiag.xbm"
46#include "horiz.xbm"
47#include "verti.xbm"
48#include "cross.xbm"
49#define num_hatches 6
50
3ca6a5f0
BP
51#define IS_15_PIX_HATCH(s) ((s)==wxCROSSDIAG_HATCH || (s)==wxHORIZONTAL_HATCH || (s)==wxVERTICAL_HATCH)
52#define IS_16_PIX_HATCH(s) ((s)!=wxCROSSDIAG_HATCH && (s)!=wxHORIZONTAL_HATCH && (s)!=wxVERTICAL_HATCH)
53
54
c801d85f 55static GdkPixmap *hatches[num_hatches];
c67daf87 56static GdkPixmap **hatch_bitmap = (GdkPixmap **) NULL;
c801d85f 57
c2fa61e8 58extern GtkWidget *wxGetRootWindow();
3d2d8da1 59
c801d85f
KB
60//-----------------------------------------------------------------------------
61// constants
62//-----------------------------------------------------------------------------
63
95724b1a 64const double RAD2DEG = 180.0 / M_PI;
c801d85f 65
9a8c7620
VZ
66// ----------------------------------------------------------------------------
67// private functions
68// ----------------------------------------------------------------------------
69
70static inline double dmax(double a, double b) { return a > b ? a : b; }
71static inline double dmin(double a, double b) { return a < b ? a : b; }
72
73static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; }
74
6f65e337
JS
75//-----------------------------------------------------------------------------
76// temporary implementation of the missing GDK function
77//-----------------------------------------------------------------------------
b0e0d661 78
6f65e337 79#include "gdk/gdkprivate.h"
b0e0d661 80
1e6feb95
VZ
81void gdk_wx_draw_bitmap(GdkDrawable *drawable,
82 GdkGC *gc,
83 GdkDrawable *src,
84 gint xsrc,
85 gint ysrc,
86 gint xdest,
87 gint ydest,
88 gint width,
89 gint height)
6f65e337 90{
17a1ebd1
VZ
91 wxCHECK_RET( drawable, _T("NULL drawable in gdk_wx_draw_bitmap") );
92 wxCHECK_RET( src, _T("NULL src in gdk_wx_draw_bitmap") );
93 wxCHECK_RET( gc, _T("NULL gc in gdk_wx_draw_bitmap") );
ab9d0a8c 94
d90c9596 95 gint src_width, src_height;
8943b403 96 gdk_drawable_get_size(src, &src_width, &src_height);
8943b403
OK
97 if (width == -1) width = src_width;
98 if (height == -1) height = src_height;
265898fd 99
8943b403
OK
100 XCopyPlane( GDK_WINDOW_XDISPLAY(drawable),
101 GDK_WINDOW_XID(src),
102 GDK_WINDOW_XID(drawable),
103 GDK_GC_XGC(gc),
104 xsrc, ysrc,
105 width, height,
d90c9596 106 0, 0,
8943b403 107 1 );
6f65e337
JS
108}
109
3d2d8da1
RR
110//-----------------------------------------------------------------------------
111// Implement Pool of Graphic contexts. Creating them takes too much time.
112//-----------------------------------------------------------------------------
113
0e09f76e
RR
114enum wxPoolGCType
115{
116 wxGC_ERROR = 0,
117 wxTEXT_MONO,
118 wxBG_MONO,
119 wxPEN_MONO,
120 wxBRUSH_MONO,
121 wxTEXT_COLOUR,
122 wxBG_COLOUR,
123 wxPEN_COLOUR,
f6bcfd97
BP
124 wxBRUSH_COLOUR,
125 wxTEXT_SCREEN,
126 wxBG_SCREEN,
127 wxPEN_SCREEN,
128 wxBRUSH_SCREEN
0e09f76e
RR
129};
130
3d2d8da1
RR
131struct wxGC
132{
0e09f76e
RR
133 GdkGC *m_gc;
134 wxPoolGCType m_type;
135 bool m_used;
3d2d8da1
RR
136};
137
696f36b7
JS
138#define GC_POOL_ALLOC_SIZE 100
139
140static int wxGCPoolSize = 0;
141
142static wxGC *wxGCPool = NULL;
3d2d8da1
RR
143
144static void wxInitGCPool()
145{
696f36b7
JS
146 // This really could wait until the first call to
147 // wxGetPoolGC, but we will make the first allocation
148 // now when other initialization is being performed.
ab9d0a8c 149
696f36b7
JS
150 // Set initial pool size.
151 wxGCPoolSize = GC_POOL_ALLOC_SIZE;
ab9d0a8c 152
696f36b7
JS
153 // Allocate initial pool.
154 wxGCPool = (wxGC *)malloc(wxGCPoolSize * sizeof(wxGC));
155 if (wxGCPool == NULL)
156 {
157 // If we cannot malloc, then fail with error
158 // when debug is enabled. If debug is not enabled,
159 // the problem will eventually get caught
551b5391 160 // in wxGetPoolGC.
696f36b7
JS
161 wxFAIL_MSG( wxT("Cannot allocate GC pool") );
162 return;
163 }
ab9d0a8c 164
696f36b7
JS
165 // Zero initial pool.
166 memset(wxGCPool, 0, wxGCPoolSize * sizeof(wxGC));
3d2d8da1
RR
167}
168
169static void wxCleanUpGCPool()
170{
f6116855 171 for (int i = 0; i < wxGCPoolSize; i++)
3d2d8da1
RR
172 {
173 if (wxGCPool[i].m_gc)
5e4bf05a 174 g_object_unref (G_OBJECT (wxGCPool[i].m_gc));
3d2d8da1 175 }
696f36b7
JS
176
177 free(wxGCPool);
178 wxGCPool = NULL;
179 wxGCPoolSize = 0;
3d2d8da1
RR
180}
181
0e09f76e 182static GdkGC* wxGetPoolGC( GdkWindow *window, wxPoolGCType type )
3d2d8da1 183{
696f36b7 184 wxGC *pptr;
ab9d0a8c 185
696f36b7
JS
186 // Look for an available GC.
187 for (int i = 0; i < wxGCPoolSize; i++)
3d2d8da1
RR
188 {
189 if (!wxGCPool[i].m_gc)
190 {
191 wxGCPool[i].m_gc = gdk_gc_new( window );
192 gdk_gc_set_exposures( wxGCPool[i].m_gc, FALSE );
0e09f76e 193 wxGCPool[i].m_type = type;
ab9d0a8c 194 wxGCPool[i].m_used = false;
3d2d8da1 195 }
0e09f76e 196 if ((!wxGCPool[i].m_used) && (wxGCPool[i].m_type == type))
3d2d8da1 197 {
ab9d0a8c 198 wxGCPool[i].m_used = true;
3d2d8da1
RR
199 return wxGCPool[i].m_gc;
200 }
201 }
5f170f33 202
696f36b7
JS
203 // We did not find an available GC.
204 // We need to grow the GC pool.
205 pptr = (wxGC *)realloc(wxGCPool,
551b5391 206 (wxGCPoolSize + GC_POOL_ALLOC_SIZE)*sizeof(wxGC));
696f36b7
JS
207 if (pptr != NULL)
208 {
209 // Initialize newly allocated pool.
210 wxGCPool = pptr;
551b5391
RR
211 memset(&wxGCPool[wxGCPoolSize], 0,
212 GC_POOL_ALLOC_SIZE*sizeof(wxGC));
ab9d0a8c
WS
213
214 // Initialize entry we will return.
696f36b7
JS
215 wxGCPool[wxGCPoolSize].m_gc = gdk_gc_new( window );
216 gdk_gc_set_exposures( wxGCPool[wxGCPoolSize].m_gc, FALSE );
217 wxGCPool[wxGCPoolSize].m_type = type;
ab9d0a8c
WS
218 wxGCPool[wxGCPoolSize].m_used = true;
219
696f36b7
JS
220 // Set new value of pool size.
221 wxGCPoolSize += GC_POOL_ALLOC_SIZE;
ab9d0a8c 222
696f36b7
JS
223 // Return newly allocated entry.
224 return wxGCPool[wxGCPoolSize-GC_POOL_ALLOC_SIZE].m_gc;
225 }
ab9d0a8c 226
696f36b7 227 // The realloc failed. Fall through to error.
3d2d8da1 228 wxFAIL_MSG( wxT("No GC available") );
5f170f33 229
3d2d8da1
RR
230 return (GdkGC*) NULL;
231}
232
233static void wxFreePoolGC( GdkGC *gc )
234{
696f36b7 235 for (int i = 0; i < wxGCPoolSize; i++)
3d2d8da1
RR
236 {
237 if (wxGCPool[i].m_gc == gc)
238 {
ab9d0a8c 239 wxGCPool[i].m_used = false;
3d2d8da1
RR
240 return;
241 }
242 }
5f170f33 243
3d2d8da1
RR
244 wxFAIL_MSG( wxT("Wrong GC") );
245}
246
c801d85f 247//-----------------------------------------------------------------------------
ec758a20 248// wxWindowDC
c801d85f
KB
249//-----------------------------------------------------------------------------
250
b0e0d661 251IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC)
c801d85f 252
4bc67cc5 253wxWindowDC::wxWindowDC()
c801d85f 254{
265898fd
RR
255 m_penGC = (GdkGC *) NULL;
256 m_brushGC = (GdkGC *) NULL;
257 m_textGC = (GdkGC *) NULL;
258 m_bgGC = (GdkGC *) NULL;
259 m_cmap = (GdkColormap *) NULL;
ab9d0a8c
WS
260 m_isMemDC = false;
261 m_isScreenDC = false;
bbbbe360 262 m_owner = (wxWindow *)NULL;
8943b403 263 m_context = (PangoContext *)NULL;
cfcc3932 264 m_layout = (PangoLayout *)NULL;
8943b403 265 m_fontdesc = (PangoFontDescription *)NULL;
903f689b 266}
c801d85f 267
ec758a20 268wxWindowDC::wxWindowDC( wxWindow *window )
c801d85f 269{
3cd0b8c5
RR
270 wxASSERT_MSG( window, wxT("DC needs a window") );
271
265898fd
RR
272 m_penGC = (GdkGC *) NULL;
273 m_brushGC = (GdkGC *) NULL;
274 m_textGC = (GdkGC *) NULL;
275 m_bgGC = (GdkGC *) NULL;
276 m_cmap = (GdkColormap *) NULL;
bbbbe360 277 m_owner = (wxWindow *)NULL;
ab9d0a8c
WS
278 m_isMemDC = false;
279 m_isScreenDC = false;
3b245d60 280 m_font = window->GetFont();
7d5af6fa 281
a2053b27 282 GtkWidget *widget = window->m_wxwindow;
7d5af6fa 283
cfcc3932 284 // Some controls don't have m_wxwindow - like wxStaticBox, but the user
b7f1f77f 285 // code should still be able to create wxClientDCs for them, so we will
cfcc3932 286 // use the parent window here then.
b7f1f77f
VZ
287 if ( !widget )
288 {
289 window = window->GetParent();
290 widget = window->m_wxwindow;
291 }
292
223d09f6 293 wxASSERT_MSG( widget, wxT("DC needs a widget") );
7d5af6fa 294
2b5f62a0 295 m_context = window->GtkGetPangoDefaultContext();
cfcc3932
RR
296 m_layout = pango_layout_new( m_context );
297 m_fontdesc = pango_font_description_copy( widget->style->font_desc );
8943b403 298
da048e3d
RR
299 GtkPizza *pizza = GTK_PIZZA( widget );
300 m_window = pizza->bin_window;
7d5af6fa 301
cfcc3932 302 // Window not realized ?
1e133b7d
RR
303 if (!m_window)
304 {
cfcc3932 305 // Don't report problems as per MSW.
ab9d0a8c 306 m_ok = true;
7d5af6fa
VZ
307
308 return;
1e133b7d 309 }
7d5af6fa 310
b7f1f77f 311 m_cmap = gtk_widget_get_colormap( widget ? widget : window->m_widget );
7d5af6fa 312
265898fd 313 SetUpDC();
bbbbe360
RR
314
315 /* this must be done after SetUpDC, bacause SetUpDC calls the
316 repective SetBrush, SetPen, SetBackground etc functions
317 to set up the DC. SetBackground call m_owner->SetBackground
318 and this might not be desired as the standard dc background
319 is white whereas a window might assume gray to be the
320 standard (as e.g. wxStatusBar) */
7d5af6fa 321
bbbbe360 322 m_owner = window;
903f689b 323}
c801d85f 324
4bc67cc5 325wxWindowDC::~wxWindowDC()
c801d85f 326{
265898fd 327 Destroy();
ab9d0a8c 328
cfcc3932
RR
329 if (m_layout)
330 g_object_unref( G_OBJECT( m_layout ) );
331 if (m_fontdesc)
332 pango_font_description_free( m_fontdesc );
903f689b 333}
c801d85f 334
809934d2
RR
335void wxWindowDC::SetUpDC()
336{
ab9d0a8c 337 m_ok = true;
5f170f33 338
809934d2 339 wxASSERT_MSG( !m_penGC, wxT("GCs already created") );
5f170f33 340
f6bcfd97
BP
341 if (m_isScreenDC)
342 {
343 m_penGC = wxGetPoolGC( m_window, wxPEN_SCREEN );
344 m_brushGC = wxGetPoolGC( m_window, wxBRUSH_SCREEN );
345 m_textGC = wxGetPoolGC( m_window, wxTEXT_SCREEN );
346 m_bgGC = wxGetPoolGC( m_window, wxBG_SCREEN );
347 }
348 else
809934d2
RR
349 if (m_isMemDC && (((wxMemoryDC*)this)->m_selected.GetDepth() == 1))
350 {
351 m_penGC = wxGetPoolGC( m_window, wxPEN_MONO );
352 m_brushGC = wxGetPoolGC( m_window, wxBRUSH_MONO );
353 m_textGC = wxGetPoolGC( m_window, wxTEXT_MONO );
354 m_bgGC = wxGetPoolGC( m_window, wxBG_MONO );
355 }
356 else
357 {
358 m_penGC = wxGetPoolGC( m_window, wxPEN_COLOUR );
359 m_brushGC = wxGetPoolGC( m_window, wxBRUSH_COLOUR );
360 m_textGC = wxGetPoolGC( m_window, wxTEXT_COLOUR );
361 m_bgGC = wxGetPoolGC( m_window, wxBG_COLOUR );
362 }
363
364 /* background colour */
365 m_backgroundBrush = *wxWHITE_BRUSH;
366 m_backgroundBrush.GetColour().CalcPixel( m_cmap );
367 GdkColor *bg_col = m_backgroundBrush.GetColour().GetColor();
368
369 /* m_textGC */
370 m_textForegroundColour.CalcPixel( m_cmap );
371 gdk_gc_set_foreground( m_textGC, m_textForegroundColour.GetColor() );
372
373 m_textBackgroundColour.CalcPixel( m_cmap );
374 gdk_gc_set_background( m_textGC, m_textBackgroundColour.GetColor() );
375
376 gdk_gc_set_fill( m_textGC, GDK_SOLID );
377
378 /* m_penGC */
379 m_pen.GetColour().CalcPixel( m_cmap );
380 gdk_gc_set_foreground( m_penGC, m_pen.GetColour().GetColor() );
381 gdk_gc_set_background( m_penGC, bg_col );
5f170f33 382
809934d2 383 gdk_gc_set_line_attributes( m_penGC, 0, GDK_LINE_SOLID, GDK_CAP_NOT_LAST, GDK_JOIN_ROUND );
5f170f33 384
809934d2
RR
385 /* m_brushGC */
386 m_brush.GetColour().CalcPixel( m_cmap );
387 gdk_gc_set_foreground( m_brushGC, m_brush.GetColour().GetColor() );
388 gdk_gc_set_background( m_brushGC, bg_col );
5f170f33 389
809934d2 390 gdk_gc_set_fill( m_brushGC, GDK_SOLID );
5f170f33 391
809934d2
RR
392 /* m_bgGC */
393 gdk_gc_set_background( m_bgGC, bg_col );
394 gdk_gc_set_foreground( m_bgGC, bg_col );
395
396 gdk_gc_set_fill( m_bgGC, GDK_SOLID );
5f170f33 397
809934d2
RR
398 /* ROPs */
399 gdk_gc_set_function( m_textGC, GDK_COPY );
400 gdk_gc_set_function( m_brushGC, GDK_COPY );
401 gdk_gc_set_function( m_penGC, GDK_COPY );
5f170f33 402
809934d2
RR
403 /* clipping */
404 gdk_gc_set_clip_rectangle( m_penGC, (GdkRectangle *) NULL );
405 gdk_gc_set_clip_rectangle( m_brushGC, (GdkRectangle *) NULL );
406 gdk_gc_set_clip_rectangle( m_textGC, (GdkRectangle *) NULL );
407 gdk_gc_set_clip_rectangle( m_bgGC, (GdkRectangle *) NULL );
408
409 if (!hatch_bitmap)
410 {
411 hatch_bitmap = hatches;
412 hatch_bitmap[0] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, bdiag_bits, bdiag_width, bdiag_height );
413 hatch_bitmap[1] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, cdiag_bits, cdiag_width, cdiag_height );
414 hatch_bitmap[2] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, fdiag_bits, fdiag_width, fdiag_height );
415 hatch_bitmap[3] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, cross_bits, cross_width, cross_height );
416 hatch_bitmap[4] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, horiz_bits, horiz_width, horiz_height );
417 hatch_bitmap[5] = gdk_bitmap_create_from_data( (GdkWindow *) NULL, verti_bits, verti_width, verti_height );
418 }
419}
420
376aa62a
VZ
421void wxWindowDC::DoGetSize( int* width, int* height ) const
422{
423 wxCHECK_RET( m_owner, _T("GetSize() doesn't work without window") );
424
425 m_owner->GetSize(width, height);
426}
427
ab9d0a8c 428extern bool wxDoFloodFill(wxDC *dc, wxCoord x, wxCoord y,
06cf7c08 429 const wxColour & col, int style);
b1699cd3 430
387ebd3e 431bool wxWindowDC::DoFloodFill(wxCoord x, wxCoord y,
06cf7c08
VS
432 const wxColour& col, int style)
433{
387ebd3e 434 return wxDoFloodFill(this, x, y, col, style);
903f689b 435}
c801d85f 436
dc1efb1d 437bool wxWindowDC::DoGetPixel( wxCoord x1, wxCoord y1, wxColour *col ) const
c801d85f 438{
dc1efb1d
JS
439 // Generic (and therefore rather inefficient) method.
440 // Could be improved.
441 wxMemoryDC memdc;
442 wxBitmap bitmap(1, 1);
443 memdc.SelectObject(bitmap);
444 memdc.Blit(0, 0, 1, 1, (wxDC*) this, x1, y1);
445 memdc.SelectObject(wxNullBitmap);
c2fa61e8 446
368d59f0 447 wxImage image = bitmap.ConvertToImage();
dc1efb1d 448 col->Set(image.GetRed(0, 0), image.GetGreen(0, 0), image.GetBlue(0, 0));
ab9d0a8c 449 return true;
903f689b 450}
c801d85f 451
72cdf4c9 452void wxWindowDC::DoDrawLine( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2 )
c801d85f 453{
223d09f6 454 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 455
265898fd
RR
456 if (m_pen.GetStyle() != wxTRANSPARENT)
457 {
6db90681
RR
458 if (m_window)
459 gdk_draw_line( m_window, m_penGC, XLOG2DEV(x1), YLOG2DEV(y1), XLOG2DEV(x2), YLOG2DEV(y2) );
7d5af6fa 460
ed880dd4
RR
461 CalcBoundingBox(x1, y1);
462 CalcBoundingBox(x2, y2);
265898fd 463 }
903f689b 464}
c801d85f 465
72cdf4c9 466void wxWindowDC::DoCrossHair( wxCoord x, wxCoord y )
c801d85f 467{
223d09f6 468 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 469
265898fd
RR
470 if (m_pen.GetStyle() != wxTRANSPARENT)
471 {
472 int w = 0;
473 int h = 0;
474 GetSize( &w, &h );
72cdf4c9
VZ
475 wxCoord xx = XLOG2DEV(x);
476 wxCoord yy = YLOG2DEV(y);
6db90681 477 if (m_window)
7d5af6fa 478 {
6db90681
RR
479 gdk_draw_line( m_window, m_penGC, 0, yy, XLOG2DEVREL(w), yy );
480 gdk_draw_line( m_window, m_penGC, xx, 0, xx, YLOG2DEVREL(h) );
7d5af6fa 481 }
265898fd 482 }
903f689b 483}
c801d85f 484
72cdf4c9
VZ
485void wxWindowDC::DoDrawArc( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2,
486 wxCoord xc, wxCoord yc )
c801d85f 487{
223d09f6 488 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 489
72cdf4c9
VZ
490 wxCoord xx1 = XLOG2DEV(x1);
491 wxCoord yy1 = YLOG2DEV(y1);
492 wxCoord xx2 = XLOG2DEV(x2);
493 wxCoord yy2 = YLOG2DEV(y2);
494 wxCoord xxc = XLOG2DEV(xc);
495 wxCoord yyc = YLOG2DEV(yc);
7d5af6fa 496 double dx = xx1 - xxc;
265898fd 497 double dy = yy1 - yyc;
de87c353 498 double radius = sqrt((double)(dx*dx+dy*dy));
72cdf4c9 499 wxCoord r = (wxCoord)radius;
265898fd
RR
500 double radius1, radius2;
501
7d5af6fa 502 if (xx1 == xx2 && yy1 == yy2)
265898fd
RR
503 {
504 radius1 = 0.0;
505 radius2 = 360.0;
7d5af6fa 506 }
c77a6796 507 else if ( wxIsNullDouble(radius) )
265898fd 508 {
c77a6796
VZ
509 radius1 =
510 radius2 = 0.0;
7d5af6fa
VZ
511 }
512 else
265898fd
RR
513 {
514 radius1 = (xx1 - xxc == 0) ?
b0e0d661
VZ
515 (yy1 - yyc < 0) ? 90.0 : -90.0 :
516 -atan2(double(yy1-yyc), double(xx1-xxc)) * RAD2DEG;
265898fd 517 radius2 = (xx2 - xxc == 0) ?
b0e0d661
VZ
518 (yy2 - yyc < 0) ? 90.0 : -90.0 :
519 -atan2(double(yy2-yyc), double(xx2-xxc)) * RAD2DEG;
265898fd 520 }
72cdf4c9
VZ
521 wxCoord alpha1 = wxCoord(radius1 * 64.0);
522 wxCoord alpha2 = wxCoord((radius2 - radius1) * 64.0);
265898fd
RR
523 while (alpha2 <= 0) alpha2 += 360*64;
524 while (alpha1 > 360*64) alpha1 -= 360*64;
525
6db90681
RR
526 if (m_window)
527 {
528 if (m_brush.GetStyle() != wxTRANSPARENT)
e9f88d04
VZ
529 {
530 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
531 {
532 gdk_gc_set_ts_origin( m_textGC,
533 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
534 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
535 gdk_draw_arc( m_window, m_textGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
536 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
537 } else
3ca6a5f0
BP
538 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
539 {
540 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
541 gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
542 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
543 } else
544 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
545 {
546 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
547 gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
548 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
549 } else
e9f88d04
VZ
550 if (m_brush.GetStyle() == wxSTIPPLE)
551 {
552 gdk_gc_set_ts_origin( m_brushGC,
553 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
554 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
555 gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
556 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
557 }
558 else
559 {
560 gdk_draw_arc( m_window, m_brushGC, TRUE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
561 }
562 }
7d5af6fa 563
6db90681 564 if (m_pen.GetStyle() != wxTRANSPARENT)
3d0c4d2e 565 {
6db90681 566 gdk_draw_arc( m_window, m_penGC, FALSE, xxc-r, yyc-r, 2*r,2*r, alpha1, alpha2 );
f469b27c 567
3d0c4d2e
RR
568 gdk_draw_line( m_window, m_penGC, xx1, yy1, xxc, yyc );
569 gdk_draw_line( m_window, m_penGC, xxc, yyc, xx2, yy2 );
570 }
6db90681 571 }
7d5af6fa 572
265898fd
RR
573 CalcBoundingBox (x1, y1);
574 CalcBoundingBox (x2, y2);
903f689b 575}
c801d85f 576
72cdf4c9 577void wxWindowDC::DoDrawEllipticArc( wxCoord x, wxCoord y, wxCoord width, wxCoord height, double sa, double ea )
c801d85f 578{
223d09f6 579 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 580
72cdf4c9
VZ
581 wxCoord xx = XLOG2DEV(x);
582 wxCoord yy = YLOG2DEV(y);
583 wxCoord ww = m_signX * XLOG2DEVREL(width);
584 wxCoord hh = m_signY * YLOG2DEVREL(height);
7d5af6fa 585
265898fd
RR
586 // CMB: handle -ve width and/or height
587 if (ww < 0) { ww = -ww; xx = xx - ww; }
588 if (hh < 0) { hh = -hh; yy = yy - hh; }
7d5af6fa 589
6db90681
RR
590 if (m_window)
591 {
72cdf4c9 592 wxCoord start = wxCoord(sa * 64.0);
3d0c4d2e 593 wxCoord end = wxCoord((ea-sa) * 64.0);
7d5af6fa 594
6db90681 595 if (m_brush.GetStyle() != wxTRANSPARENT)
e9f88d04
VZ
596 {
597 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
598 {
599 gdk_gc_set_ts_origin( m_textGC,
600 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
601 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
602 gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy, ww, hh, start, end );
603 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
604 } else
3ca6a5f0
BP
605 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
606 {
607 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
608 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end );
609 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
610 } else
611 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
612 {
613 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
614 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end );
615 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
616 } else
e9f88d04
VZ
617 if (m_brush.GetStyle() == wxSTIPPLE)
618 {
619 gdk_gc_set_ts_origin( m_brushGC,
620 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
621 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
622 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end );
623 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
624 }
625 else
626 {
627 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, start, end );
628 }
629 }
7d5af6fa 630
6db90681
RR
631 if (m_pen.GetStyle() != wxTRANSPARENT)
632 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, ww, hh, start, end );
633 }
7d5af6fa 634
265898fd
RR
635 CalcBoundingBox (x, y);
636 CalcBoundingBox (x + width, y + height);
903f689b 637}
c801d85f 638
72cdf4c9 639void wxWindowDC::DoDrawPoint( wxCoord x, wxCoord y )
c801d85f 640{
223d09f6 641 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 642
6db90681 643 if ((m_pen.GetStyle() != wxTRANSPARENT) && m_window)
265898fd 644 gdk_draw_point( m_window, m_penGC, XLOG2DEV(x), YLOG2DEV(y) );
7d5af6fa 645
265898fd 646 CalcBoundingBox (x, y);
903f689b 647}
c801d85f 648
72cdf4c9 649void wxWindowDC::DoDrawLines( int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset )
c801d85f 650{
223d09f6 651 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 652
265898fd
RR
653 if (m_pen.GetStyle() == wxTRANSPARENT) return;
654 if (n <= 0) return;
7d5af6fa 655
e90411c2
JS
656 //Check, if scaling is necessary
657 bool doScale(true);
658 long val(10);
659 if (!xoffset)
660 if (!yoffset)
661 if (XLOG2DEV(val)==val)
662 if (YLOG2DEV(val)==val)
663 doScale = false;
664
665 GdkPoint *gpts = NULL;
666
667 if (doScale){
668 gpts = new GdkPoint[n];
6eb37239
VZ
669 if (! gpts)
670 {
671 wxFAIL_MSG( wxT("Cannot allocate PolyLine") );
672 return;
673 }
7d5af6fa 674
ab9d0a8c 675 for (int i = 0; i < n; i++)
265898fd 676 {
72cdf4c9 677 wxCoord x1 = XLOG2DEV(points[i].x + xoffset);
6eb37239 678 wxCoord y1 = YLOG2DEV(points[i].y + yoffset);
7d5af6fa 679
6eb37239 680 CalcBoundingBox( x1 + xoffset, y1 + yoffset );
7d5af6fa 681
6eb37239
VZ
682 gpts[i].x = x1;
683 gpts[i].y = y1;
265898fd 684 }
e90411c2
JS
685 }
686 else {
687 for (int i = 0; i < n; i++) {
688 CalcBoundingBox( points[i].x, points[i].y );
689 }
690
691 //GdkPoint and wxPoint have the same memory allignment, so we can cast one into another
692 gpts = reinterpret_cast<GdkPoint*>(points);
693 }
6eb37239
VZ
694
695 if (m_window)
696 gdk_draw_lines( m_window, m_penGC, gpts, n);
697
e90411c2 698 if (doScale)
6eb37239 699 delete[] gpts;
903f689b 700}
c801d85f 701
72cdf4c9 702void wxWindowDC::DoDrawPolygon( int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset, int WXUNUSED(fillStyle) )
cf7a7e13 703{
223d09f6 704 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 705
4bc67cc5 706 if (n <= 0) return;
7d5af6fa 707
e90411c2
JS
708 //Check, if scaling is necessary
709 bool doScale(true);
710 long val(10);
711 if (!xoffset)
712 if (!yoffset)
713 if (XLOG2DEV(val)==val)
714 if (YLOG2DEV(val)==val){
715 doScale = false;
716 }
717
718 GdkPoint *gdkpoints = NULL;
719
720 if (doScale){
721 gdkpoints = new GdkPoint[n+1]; //FIXME: Why the "+1"
722
265898fd
RR
723 int i;
724 for (i = 0 ; i < n ; i++)
725 {
726 gdkpoints[i].x = XLOG2DEV(points[i].x + xoffset);
727 gdkpoints[i].y = YLOG2DEV(points[i].y + yoffset);
7d5af6fa 728
265898fd
RR
729 CalcBoundingBox( points[i].x + xoffset, points[i].y + yoffset );
730 }
e90411c2
JS
731 }
732 else {
733 int i(0);
734 for (; i < n ; ++i) {
735 CalcBoundingBox( points[i].x, points[i].y );
736 }
737 //GdkPoint and wxPoint have the same memory allignment, so we can cast one into another
738 gdkpoints = reinterpret_cast<GdkPoint*> (points);
739 }
7d5af6fa 740
de2d2cdc 741 if (m_window)
72174350 742 {
e90411c2
JS
743 //I think wxSOLID is the most often used style (it is for me),
744 //so I put it in front of the if ... ifelse's
745 if (m_brush.GetStyle() == wxSOLID)
746 {
747 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
748 }else
e1208c31 749 if (m_brush.GetStyle() != wxTRANSPARENT)
72174350 750 {
e1208c31
RR
751 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
752 {
5f170f33
VZ
753 gdk_gc_set_ts_origin( m_textGC,
754 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
e1208c31
RR
755 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
756 gdk_draw_polygon( m_window, m_textGC, TRUE, gdkpoints, n );
757 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
758 } else
3ca6a5f0
BP
759 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
760 {
761 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
762 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
763 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
764 } else
765 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
766 {
767 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
768 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
769 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
770 } else
e1208c31
RR
771 if (m_brush.GetStyle() == wxSTIPPLE)
772 {
5f170f33
VZ
773 gdk_gc_set_ts_origin( m_brushGC,
774 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
e1208c31
RR
775 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
776 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
777 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
778 }
779 else
780 {
781 gdk_draw_polygon( m_window, m_brushGC, TRUE, gdkpoints, n );
782 }
72174350 783 }
7d5af6fa 784
e1208c31 785 if (m_pen.GetStyle() != wxTRANSPARENT)
b0e0d661 786 {
bb56b0a8 787/*
e1208c31
RR
788 for (i = 0 ; i < n ; i++)
789 {
790 gdk_draw_line( m_window, m_penGC,
791 gdkpoints[i%n].x,
792 gdkpoints[i%n].y,
793 gdkpoints[(i+1)%n].x,
794 gdkpoints[(i+1)%n].y);
795 }
bb56b0a8
JS
796*/
797 gdk_draw_polygon( m_window, m_penGC, FALSE, gdkpoints, n );
ab9d0a8c 798
265898fd 799 }
6db90681 800 }
7d5af6fa 801
e90411c2 802 if (doScale)
265898fd 803 delete[] gdkpoints;
903f689b 804}
c801d85f 805
72cdf4c9 806void wxWindowDC::DoDrawRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
c801d85f 807{
223d09f6 808 wxCHECK_RET( Ok(), wxT("invalid window dc") );
c801d85f 809
72cdf4c9
VZ
810 wxCoord xx = XLOG2DEV(x);
811 wxCoord yy = YLOG2DEV(y);
812 wxCoord ww = m_signX * XLOG2DEVREL(width);
813 wxCoord hh = m_signY * YLOG2DEVREL(height);
7d5af6fa 814
265898fd
RR
815 // CMB: draw nothing if transformed w or h is 0
816 if (ww == 0 || hh == 0) return;
6f65e337 817
265898fd
RR
818 // CMB: handle -ve width and/or height
819 if (ww < 0) { ww = -ww; xx = xx - ww; }
820 if (hh < 0) { hh = -hh; yy = yy - hh; }
6f65e337 821
6db90681
RR
822 if (m_window)
823 {
e1208c31 824 if (m_brush.GetStyle() != wxTRANSPARENT)
72174350 825 {
e1208c31
RR
826 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
827 {
5f170f33
VZ
828 gdk_gc_set_ts_origin( m_textGC,
829 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
e1208c31
RR
830 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
831 gdk_draw_rectangle( m_window, m_textGC, TRUE, xx, yy, ww, hh );
832 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
3ca6a5f0
BP
833 } else
834 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
835 {
836 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
837 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh );
838 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
839 } else
840 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
841 {
842 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
843 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh );
844 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
845 } else
846 if (m_brush.GetStyle() == wxSTIPPLE)
e1208c31 847 {
5f170f33
VZ
848 gdk_gc_set_ts_origin( m_brushGC,
849 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
e1208c31 850 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
72174350 851 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh );
e1208c31
RR
852 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
853 }
854 else
855 {
856 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy, ww, hh );
857 }
72174350 858 }
e1208c31
RR
859
860 if (m_pen.GetStyle() != wxTRANSPARENT)
861 gdk_draw_rectangle( m_window, m_penGC, FALSE, xx, yy, ww-1, hh-1 );
6db90681 862 }
7d5af6fa 863
265898fd
RR
864 CalcBoundingBox( x, y );
865 CalcBoundingBox( x + width, y + height );
903f689b 866}
c801d85f 867
72cdf4c9 868void wxWindowDC::DoDrawRoundedRectangle( wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius )
c801d85f 869{
223d09f6 870 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 871
265898fd 872 if (radius < 0.0) radius = - radius * ((width < height) ? width : height);
7d5af6fa 873
72cdf4c9
VZ
874 wxCoord xx = XLOG2DEV(x);
875 wxCoord yy = YLOG2DEV(y);
876 wxCoord ww = m_signX * XLOG2DEVREL(width);
877 wxCoord hh = m_signY * YLOG2DEVREL(height);
878 wxCoord rr = XLOG2DEVREL((wxCoord)radius);
265898fd
RR
879
880 // CMB: handle -ve width and/or height
881 if (ww < 0) { ww = -ww; xx = xx - ww; }
882 if (hh < 0) { hh = -hh; yy = yy - hh; }
883
884 // CMB: if radius is zero use DrawRectangle() instead to avoid
885 // X drawing errors with small radii
886 if (rr == 0)
887 {
888 DrawRectangle( x, y, width, height );
889 return;
890 }
891
892 // CMB: draw nothing if transformed w or h is 0
893 if (ww == 0 || hh == 0) return;
894
895 // CMB: adjust size if outline is drawn otherwise the result is
896 // 1 pixel too wide and high
897 if (m_pen.GetStyle() != wxTRANSPARENT)
898 {
899 ww--;
900 hh--;
901 }
902
6db90681 903 if (m_window)
265898fd 904 {
6db90681
RR
905 // CMB: ensure dd is not larger than rectangle otherwise we
906 // get an hour glass shape
72cdf4c9 907 wxCoord dd = 2 * rr;
6db90681
RR
908 if (dd > ww) dd = ww;
909 if (dd > hh) dd = hh;
910 rr = dd / 2;
911
912 if (m_brush.GetStyle() != wxTRANSPARENT)
913 {
a56fcaaf
RR
914 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
915 {
5f170f33
VZ
916 gdk_gc_set_ts_origin( m_textGC,
917 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
a56fcaaf
RR
918 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
919 gdk_draw_rectangle( m_window, m_textGC, TRUE, xx+rr, yy, ww-dd+1, hh );
920 gdk_draw_rectangle( m_window, m_textGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
921 gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
922 gdk_draw_arc( m_window, m_textGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
923 gdk_draw_arc( m_window, m_textGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
924 gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
925 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
3ca6a5f0
BP
926 } else
927 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
928 {
929 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
930 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh );
931 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
932 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
933 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
934 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
935 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
936 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
937 } else
938 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
939 {
940 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
941 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh );
942 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
943 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
944 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
945 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
946 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
947 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
948 } else
949 if (m_brush.GetStyle() == wxSTIPPLE)
a56fcaaf 950 {
5f170f33
VZ
951 gdk_gc_set_ts_origin( m_brushGC,
952 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
a56fcaaf
RR
953 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
954 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh );
955 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
956 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
957 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
958 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
959 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
960 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
961 }
962 else
963 {
964 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx+rr, yy, ww-dd+1, hh );
965 gdk_draw_rectangle( m_window, m_brushGC, TRUE, xx, yy+rr, ww, hh-dd+1 );
966 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, dd, dd, 90*64, 90*64 );
967 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
968 gdk_draw_arc( m_window, m_brushGC, TRUE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
969 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
970 }
6db90681 971 }
7d5af6fa 972
6db90681 973 if (m_pen.GetStyle() != wxTRANSPARENT)
7d5af6fa 974 {
3ca6a5f0
BP
975 gdk_draw_line( m_window, m_penGC, xx+rr+1, yy, xx+ww-rr, yy );
976 gdk_draw_line( m_window, m_penGC, xx+rr+1, yy+hh, xx+ww-rr, yy+hh );
977 gdk_draw_line( m_window, m_penGC, xx, yy+rr+1, xx, yy+hh-rr );
978 gdk_draw_line( m_window, m_penGC, xx+ww, yy+rr+1, xx+ww, yy+hh-rr );
6db90681
RR
979 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, dd, dd, 90*64, 90*64 );
980 gdk_draw_arc( m_window, m_penGC, FALSE, xx+ww-dd, yy, dd, dd, 0, 90*64 );
981 gdk_draw_arc( m_window, m_penGC, FALSE, xx+ww-dd, yy+hh-dd, dd, dd, 270*64, 90*64 );
982 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy+hh-dd, dd, dd, 180*64, 90*64 );
7d5af6fa 983 }
265898fd 984 }
7d5af6fa 985
265898fd
RR
986 // this ignores the radius
987 CalcBoundingBox( x, y );
988 CalcBoundingBox( x + width, y + height );
903f689b 989}
c801d85f 990
72cdf4c9 991void wxWindowDC::DoDrawEllipse( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
c801d85f 992{
223d09f6 993 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 994
72cdf4c9
VZ
995 wxCoord xx = XLOG2DEV(x);
996 wxCoord yy = YLOG2DEV(y);
997 wxCoord ww = m_signX * XLOG2DEVREL(width);
998 wxCoord hh = m_signY * YLOG2DEVREL(height);
6f65e337 999
265898fd
RR
1000 // CMB: handle -ve width and/or height
1001 if (ww < 0) { ww = -ww; xx = xx - ww; }
1002 if (hh < 0) { hh = -hh; yy = yy - hh; }
7d5af6fa 1003
6db90681
RR
1004 if (m_window)
1005 {
1006 if (m_brush.GetStyle() != wxTRANSPARENT)
a56fcaaf
RR
1007 {
1008 if ((m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE) && (m_brush.GetStipple()->GetMask()))
1009 {
5f170f33
VZ
1010 gdk_gc_set_ts_origin( m_textGC,
1011 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
a56fcaaf
RR
1012 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
1013 gdk_draw_arc( m_window, m_textGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1014 gdk_gc_set_ts_origin( m_textGC, 0, 0 );
3ca6a5f0
BP
1015 } else
1016 if (IS_15_PIX_HATCH(m_brush.GetStyle()))
1017 {
1018 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 15, m_deviceOriginY % 15 );
1019 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1020 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
1021 } else
1022 if (IS_16_PIX_HATCH(m_brush.GetStyle()))
1023 {
1024 gdk_gc_set_ts_origin( m_brushGC, m_deviceOriginX % 16, m_deviceOriginY % 16 );
1025 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1026 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
1027 } else
1028 if (m_brush.GetStyle() == wxSTIPPLE)
a56fcaaf 1029 {
5f170f33
VZ
1030 gdk_gc_set_ts_origin( m_brushGC,
1031 m_deviceOriginX % m_brush.GetStipple()->GetWidth(),
a56fcaaf
RR
1032 m_deviceOriginY % m_brush.GetStipple()->GetHeight() );
1033 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1034 gdk_gc_set_ts_origin( m_brushGC, 0, 0 );
1035 }
1036 else
1037 {
1038 gdk_draw_arc( m_window, m_brushGC, TRUE, xx, yy, ww, hh, 0, 360*64 );
1039 }
1040 }
7d5af6fa 1041
6db90681
RR
1042 if (m_pen.GetStyle() != wxTRANSPARENT)
1043 gdk_draw_arc( m_window, m_penGC, FALSE, xx, yy, ww, hh, 0, 360*64 );
1044 }
7d5af6fa 1045
44856297 1046 CalcBoundingBox( x, y );
265898fd 1047 CalcBoundingBox( x + width, y + height );
903f689b 1048}
c801d85f 1049
72cdf4c9 1050void wxWindowDC::DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y )
c801d85f 1051{
b0e0d661 1052 // VZ: egcs 1.0.3 refuses to compile this without cast, no idea why
ab9d0a8c 1053 DoDrawBitmap( (const wxBitmap&)icon, x, y, true );
903f689b 1054}
c801d85f 1055
b0e0d661 1056void wxWindowDC::DoDrawBitmap( const wxBitmap &bitmap,
72cdf4c9 1057 wxCoord x, wxCoord y,
b0e0d661 1058 bool useMask )
4bc67cc5 1059{
223d09f6 1060 wxCHECK_RET( Ok(), wxT("invalid window dc") );
7d5af6fa 1061
223d09f6 1062 wxCHECK_RET( bitmap.Ok(), wxT("invalid bitmap") );
7d5af6fa 1063
cf214c35 1064 bool is_mono = (bitmap.GetBitmap() != NULL);
82ea63e6 1065
d90c9596 1066 // scale/translate size and position
265898fd
RR
1067 int xx = XLOG2DEV(x);
1068 int yy = YLOG2DEV(y);
7d5af6fa 1069
4bc67cc5
RR
1070 int w = bitmap.GetWidth();
1071 int h = bitmap.GetHeight();
7d5af6fa 1072
6453876e
RR
1073 CalcBoundingBox( x, y );
1074 CalcBoundingBox( x + w, y + h );
7d5af6fa 1075
6453876e 1076 if (!m_window) return;
7d5af6fa 1077
4bc67cc5
RR
1078 int ww = XLOG2DEVREL(w);
1079 int hh = YLOG2DEVREL(h);
7d5af6fa 1080
d90c9596 1081 // compare to current clipping region
e1208c31 1082 if (!m_currentClippingRegion.IsNull())
3d2d8da1
RR
1083 {
1084 wxRegion tmp( xx,yy,ww,hh );
1085 tmp.Intersect( m_currentClippingRegion );
1086 if (tmp.IsEmpty())
1087 return;
1088 }
5f170f33 1089
ab9d0a8c 1090 // scale bitmap if required
d90c9596 1091 wxBitmap use_bitmap = bitmap;
4bc67cc5 1092 if ((w != ww) || (h != hh))
d90c9596 1093 use_bitmap = use_bitmap.Rescale( 0, 0, ww, hh, ww, hh );
ab9d0a8c 1094
1abedc32
VS
1095#if !GTK_CHECK_VERSION(2,2,0)
1096 // NB: We can't render pixbufs with GTK+ < 2.2, we need to use pixmaps code.
1097 // Pixbufs-based bitmaps with alpha channel don't have a mask, so we
1098 // have to call GetPixmap() here -- it converts the pixbuf into pixmap
1099 // and also creates the mask as a side-effect:
1100 use_bitmap.GetPixmap();
1101#endif
ab9d0a8c 1102
d90c9596 1103 // apply mask if any
463c1fa1 1104 GdkBitmap *mask = (GdkBitmap *) NULL;
4bc67cc5 1105 if (use_bitmap.GetMask()) mask = use_bitmap.GetMask()->GetBitmap();
7d5af6fa 1106
d90c9596 1107 GdkBitmap *new_mask = (GdkBitmap*) NULL;
ab9d0a8c 1108
d90c9596
RR
1109 if (useMask && mask)
1110 {
1111 if (!m_currentClippingRegion.IsNull())
82ea63e6 1112 {
d90c9596
RR
1113 GdkColor col;
1114 new_mask = gdk_pixmap_new( wxGetRootWindow()->window, ww, hh, 1 );
1115 GdkGC *gc = gdk_gc_new( new_mask );
1116 col.pixel = 0;
1117 gdk_gc_set_foreground( gc, &col );
1118 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, ww, hh );
1119 col.pixel = 0;
1120 gdk_gc_set_background( gc, &col );
1121 col.pixel = 1;
1122 gdk_gc_set_foreground( gc, &col );
1123 gdk_gc_set_clip_region( gc, m_currentClippingRegion.GetRegion() );
1124 gdk_gc_set_clip_origin( gc, -xx, -yy );
1125 gdk_gc_set_fill( gc, GDK_OPAQUE_STIPPLED );
1126 gdk_gc_set_stipple( gc, mask );
1127 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, ww, hh );
5e4bf05a 1128 g_object_unref (G_OBJECT (gc));
d90c9596 1129 }
ab9d0a8c 1130
d90c9596
RR
1131 if (is_mono)
1132 {
1133 if (new_mask)
1134 gdk_gc_set_clip_mask( m_textGC, new_mask );
3d2d8da1 1135 else
d90c9596
RR
1136 gdk_gc_set_clip_mask( m_textGC, mask );
1137 gdk_gc_set_clip_origin( m_textGC, xx, yy );
1138 }
1139 else
1140 {
3d2d8da1 1141 if (new_mask)
d90c9596
RR
1142 gdk_gc_set_clip_mask( m_penGC, new_mask );
1143 else
1144 gdk_gc_set_clip_mask( m_penGC, mask );
1145 gdk_gc_set_clip_origin( m_penGC, xx, yy );
b0e0d661 1146 }
d90c9596 1147 }
7d5af6fa 1148
d90c9596
RR
1149 // Draw XPixmap or XBitmap, depending on what the wxBitmap contains. For
1150 // drawing a mono-bitmap (XBitmap) we use the current text GC
82ea63e6 1151 if (is_mono)
d90c9596 1152 {
4e115ed2
VZ
1153 GdkPixmap *bitmap2 = gdk_pixmap_new( wxGetRootWindow()->window, ww, hh, -1 );
1154 GdkGC *gc = gdk_gc_new( bitmap2 );
d90c9596
RR
1155 gdk_gc_set_foreground( gc, m_textForegroundColour.GetColor() );
1156 gdk_gc_set_background( gc, m_textBackgroundColour.GetColor() );
4e115ed2 1157 gdk_wx_draw_bitmap( bitmap2, gc, use_bitmap.GetBitmap(), 0, 0, 0, 0, -1, -1 );
ab9d0a8c 1158
4e115ed2 1159 gdk_draw_drawable( m_window, m_textGC, bitmap2, 0, 0, xx, yy, -1, -1 );
ab9d0a8c 1160
f5af7308 1161 g_object_unref (G_OBJECT (bitmap2));
5e4bf05a 1162 g_object_unref (G_OBJECT (gc));
d90c9596 1163 }
82ea63e6 1164 else
d90c9596 1165 {
feac7937 1166#if GTK_CHECK_VERSION(2,2,0)
cc35003a 1167 if (!gtk_check_version(2,2,0) && use_bitmap.HasPixbuf())
feac7937
VS
1168 {
1169 gdk_draw_pixbuf(m_window, m_penGC,
1170 use_bitmap.GetPixbuf(),
1171 0, 0, xx, yy, -1, -1,
1172 GDK_RGB_DITHER_NORMAL, xx, yy);
1173 }
1174 else
1175#endif
1176 {
15f0ad70
MR
1177 gdk_draw_drawable(m_window, m_penGC,
1178 use_bitmap.GetPixmap(),
1179 0, 0, xx, yy, -1, -1);
feac7937 1180 }
d90c9596 1181 }
72174350 1182
d90c9596 1183 // remove mask again if any
7d5af6fa 1184 if (useMask && mask)
463c1fa1 1185 {
82ea63e6
RR
1186 if (is_mono)
1187 {
1188 gdk_gc_set_clip_mask( m_textGC, (GdkBitmap *) NULL );
1189 gdk_gc_set_clip_origin( m_textGC, 0, 0 );
e1208c31 1190 if (!m_currentClippingRegion.IsNull())
3d2d8da1 1191 gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() );
82ea63e6
RR
1192 }
1193 else
1194 {
1195 gdk_gc_set_clip_mask( m_penGC, (GdkBitmap *) NULL );
1196 gdk_gc_set_clip_origin( m_penGC, 0, 0 );
e1208c31 1197 if (!m_currentClippingRegion.IsNull())
3d2d8da1 1198 gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() );
82ea63e6 1199 }
463c1fa1 1200 }
ab9d0a8c 1201
d90c9596 1202 if (new_mask)
f5af7308 1203 g_object_unref (G_OBJECT (new_mask));
463c1fa1
RR
1204}
1205
1e6feb95
VZ
1206bool wxWindowDC::DoBlit( wxCoord xdest, wxCoord ydest,
1207 wxCoord width, wxCoord height,
1208 wxDC *source,
1209 wxCoord xsrc, wxCoord ysrc,
1210 int logical_func,
0cbff120
JS
1211 bool useMask,
1212 wxCoord xsrcMask, wxCoord ysrcMask )
c801d85f 1213{
ab9d0a8c 1214 wxCHECK_MSG( Ok(), false, wxT("invalid window dc") );
7d5af6fa 1215
ab9d0a8c 1216 wxCHECK_MSG( source, false, wxT("invalid source dc") );
7d5af6fa 1217
ab9d0a8c 1218 if (!m_window) return false;
7d5af6fa 1219
1e6feb95 1220 // transform the source DC coords to the device ones
06201c35
RR
1221 xsrc = source->XLOG2DEV(xsrc);
1222 ysrc = source->YLOG2DEV(ysrc);
1e6feb95 1223
6e13c196
RR
1224 wxClientDC *srcDC = (wxClientDC*)source;
1225 wxMemoryDC *memDC = (wxMemoryDC*)source;
7d5af6fa 1226
ab9d0a8c
WS
1227 bool use_bitmap_method = false;
1228 bool is_mono = false;
7d5af6fa 1229
0cbff120
JS
1230 if (xsrcMask == -1 && ysrcMask == -1)
1231 {
d90c9596
RR
1232 xsrcMask = xsrc;
1233 ysrcMask = ysrc;
0cbff120
JS
1234 }
1235
6e13c196
RR
1236 if (srcDC->m_isMemDC)
1237 {
ab9d0a8c 1238 if (!memDC->m_selected.Ok()) return false;
7d5af6fa 1239
d90c9596
RR
1240 is_mono = (memDC->m_selected.GetDepth() == 1);
1241
1242 // we use the "XCopyArea" way to copy a memory dc into
1243 // a different window if the memory dc BOTH
1244 // a) doesn't have any mask or its mask isn't used
1245 // b) it is clipped
1246 // c) is not 1-bit
7d5af6fa 1247
f234c60c 1248 if (useMask && (memDC->m_selected.GetMask()))
b0e0d661 1249 {
d90c9596
RR
1250 // we HAVE TO use the direct way for memory dcs
1251 // that have mask since the XCopyArea doesn't know
1252 // about masks
ab9d0a8c 1253 use_bitmap_method = true;
b0e0d661 1254 }
d90c9596 1255 else if (is_mono)
b0e0d661 1256 {
d90c9596
RR
1257 // we HAVE TO use the direct way for memory dcs
1258 // that are bitmaps because XCopyArea doesn't cope
1259 // with different bit depths
ab9d0a8c 1260 use_bitmap_method = true;
b0e0d661
VZ
1261 }
1262 else if ((xsrc == 0) && (ysrc == 0) &&
1263 (width == memDC->m_selected.GetWidth()) &&
1264 (height == memDC->m_selected.GetHeight()))
1265 {
d90c9596
RR
1266 // we SHOULD use the direct way if all of the bitmap
1267 // in the memory dc is copied in which case XCopyArea
1268 // wouldn't be able able to boost performace by reducing
1269 // the area to be scaled
ab9d0a8c 1270 use_bitmap_method = true;
b0e0d661
VZ
1271 }
1272 else
1273 {
ab9d0a8c 1274 use_bitmap_method = false;
b0e0d661 1275 }
6e13c196 1276 }
7d5af6fa 1277
265898fd
RR
1278 CalcBoundingBox( xdest, ydest );
1279 CalcBoundingBox( xdest + width, ydest + height );
7d5af6fa 1280
d90c9596 1281 // scale/translate size and position
3d2d8da1
RR
1282 wxCoord xx = XLOG2DEV(xdest);
1283 wxCoord yy = YLOG2DEV(ydest);
1284
1285 wxCoord ww = XLOG2DEVREL(width);
1286 wxCoord hh = YLOG2DEVREL(height);
1287
d90c9596 1288 // compare to current clipping region
e1208c31 1289 if (!m_currentClippingRegion.IsNull())
3d2d8da1
RR
1290 {
1291 wxRegion tmp( xx,yy,ww,hh );
1292 tmp.Intersect( m_currentClippingRegion );
1293 if (tmp.IsEmpty())
ab9d0a8c 1294 return true;
3d2d8da1
RR
1295 }
1296
4bc67cc5
RR
1297 int old_logical_func = m_logicalFunction;
1298 SetLogicalFunction( logical_func );
5f170f33 1299
6e13c196 1300 if (use_bitmap_method)
6f65e337 1301 {
d90c9596 1302 // scale/translate bitmap size
72cdf4c9
VZ
1303 wxCoord bm_width = memDC->m_selected.GetWidth();
1304 wxCoord bm_height = memDC->m_selected.GetHeight();
7d5af6fa 1305
551b5391
RR
1306 // Get clip coords for the bitmap. If we don't
1307 // use wxBitmap::Rescale(), which can clip the
1308 // bitmap, these are the same as the original
1309 // coordinates
1310 wxCoord cx = xx;
1311 wxCoord cy = yy;
1312 wxCoord cw = ww;
1313 wxCoord ch = hh;
ab9d0a8c 1314
d90c9596
RR
1315 // interpret userscale of src too
1316 double xsc,ysc;
1317 memDC->GetUserScale(&xsc,&ysc);
1318 bm_width = (int) (bm_width / xsc);
1319 bm_height = (int) (bm_height / ysc);
1320
72cdf4c9
VZ
1321 wxCoord bm_ww = XLOG2DEVREL( bm_width );
1322 wxCoord bm_hh = YLOG2DEVREL( bm_height );
7d5af6fa 1323
551b5391 1324 // Scale bitmap if required
6e13c196 1325 wxBitmap use_bitmap;
f53df133 1326 if ((memDC->m_selected.GetWidth()!= bm_ww) || ( memDC->m_selected.GetHeight()!= bm_hh))
6e13c196 1327 {
551b5391
RR
1328 // This indicates that the blitting code below will get
1329 // a clipped bitmap and therefore needs to move the origin
1330 // accordingly
1331 wxRegion tmp( xx,yy,ww,hh );
1332 tmp.Intersect( m_currentClippingRegion );
1333 tmp.GetBox(cx,cy,cw,ch);
ab9d0a8c 1334
551b5391
RR
1335 // Scale and clipped bitmap
1336 use_bitmap = memDC->m_selected.Rescale(cx-xx,cy-yy,cw,ch,bm_ww,bm_hh);
6e13c196
RR
1337 }
1338 else
e23d0e95 1339 {
551b5391 1340 // Don't scale bitmap
6e13c196
RR
1341 use_bitmap = memDC->m_selected;
1342 }
7d5af6fa 1343
d90c9596 1344 // apply mask if any
6e13c196
RR
1345 GdkBitmap *mask = (GdkBitmap *) NULL;
1346 if (use_bitmap.GetMask()) mask = use_bitmap.GetMask()->GetBitmap();
7d5af6fa 1347
d90c9596 1348 GdkBitmap *new_mask = (GdkBitmap*) NULL;
ab9d0a8c 1349
7d5af6fa 1350 if (useMask && mask)
6e13c196 1351 {
e1208c31 1352 if (!m_currentClippingRegion.IsNull())
3d2d8da1
RR
1353 {
1354 GdkColor col;
c2fa61e8 1355 new_mask = gdk_pixmap_new( wxGetRootWindow()->window, bm_ww, bm_hh, 1 );
3d2d8da1
RR
1356 GdkGC *gc = gdk_gc_new( new_mask );
1357 col.pixel = 0;
1358 gdk_gc_set_foreground( gc, &col );
b7a49654 1359 gdk_gc_set_ts_origin( gc, -xsrcMask, -ysrcMask);
3d2d8da1
RR
1360 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh );
1361 col.pixel = 0;
1362 gdk_gc_set_background( gc, &col );
1363 col.pixel = 1;
1364 gdk_gc_set_foreground( gc, &col );
1365 gdk_gc_set_clip_region( gc, m_currentClippingRegion.GetRegion() );
d90c9596
RR
1366 // was: gdk_gc_set_clip_origin( gc, -xx, -yy );
1367 gdk_gc_set_clip_origin( gc, -cx, -cy );
3d2d8da1
RR
1368 gdk_gc_set_fill( gc, GDK_OPAQUE_STIPPLED );
1369 gdk_gc_set_stipple( gc, mask );
1370 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh );
5e4bf05a 1371 g_object_unref (G_OBJECT (gc));
3d2d8da1 1372 }
d90c9596 1373
82ea63e6
RR
1374 if (is_mono)
1375 {
3d2d8da1 1376 if (new_mask)
b7a49654 1377 {
3d2d8da1 1378 gdk_gc_set_clip_mask( m_textGC, new_mask );
b7a49654
RR
1379 gdk_gc_set_clip_origin( m_textGC, cx, cy );
1380 }
3d2d8da1 1381 else
b7a49654 1382 {
3d2d8da1 1383 gdk_gc_set_clip_mask( m_textGC, mask );
b7a49654 1384 gdk_gc_set_clip_origin( m_textGC, cx-xsrcMask, cy-ysrcMask );
0a164d4c 1385 }
82ea63e6
RR
1386 }
1387 else
6e13c196 1388 {
3d2d8da1 1389 if (new_mask)
b7a49654 1390 {
3d2d8da1 1391 gdk_gc_set_clip_mask( m_penGC, new_mask );
b7a49654
RR
1392 gdk_gc_set_clip_origin( m_penGC, cx, cy );
1393 }
3d2d8da1 1394 else
b7a49654 1395 {
3d2d8da1 1396 gdk_gc_set_clip_mask( m_penGC, mask );
b7a49654 1397 gdk_gc_set_clip_origin( m_penGC, cx-xsrcMask, cy-ysrcMask );
0a164d4c 1398 }
b0e0d661 1399 }
6e13c196 1400 }
7d5af6fa 1401
d90c9596
RR
1402 // Draw XPixmap or XBitmap, depending on what the wxBitmap contains. For
1403 // drawing a mono-bitmap (XBitmap) we use the current text GC
5f170f33 1404
82ea63e6 1405 if (is_mono)
d90c9596 1406 {
d90c9596
RR
1407 GdkPixmap *bitmap = gdk_pixmap_new( wxGetRootWindow()->window, bm_ww, bm_hh, -1 );
1408 GdkGC *gc = gdk_gc_new( bitmap );
1409 gdk_gc_set_foreground( gc, m_textForegroundColour.GetColor() );
1410 gdk_gc_set_background( gc, m_textBackgroundColour.GetColor() );
1411 gdk_wx_draw_bitmap( bitmap, gc, use_bitmap.GetBitmap(), 0, 0, 0, 0, -1, -1 );
ab9d0a8c 1412
d90c9596 1413 gdk_draw_drawable( m_window, m_textGC, bitmap, xsrc, ysrc, cx, cy, cw, ch );
ab9d0a8c 1414
f5af7308 1415 g_object_unref (G_OBJECT (bitmap));
5e4bf05a 1416 g_object_unref (G_OBJECT (gc));
d90c9596 1417 }
82ea63e6 1418 else
d90c9596 1419 {
15f0ad70
MR
1420 // was: gdk_draw_drawable( m_window, m_penGC, use_bitmap.GetPixmap(), xsrc, ysrc, xx, yy, ww, hh );
1421 gdk_draw_drawable( m_window, m_penGC, use_bitmap.GetPixmap(), xsrc, ysrc, cx, cy, cw, ch );
d90c9596 1422 }
82ea63e6 1423
d90c9596 1424 // remove mask again if any
7d5af6fa 1425 if (useMask && mask)
6e13c196 1426 {
82ea63e6
RR
1427 if (is_mono)
1428 {
1429 gdk_gc_set_clip_mask( m_textGC, (GdkBitmap *) NULL );
1430 gdk_gc_set_clip_origin( m_textGC, 0, 0 );
e1208c31 1431 if (!m_currentClippingRegion.IsNull())
3d2d8da1 1432 gdk_gc_set_clip_region( m_textGC, m_currentClippingRegion.GetRegion() );
82ea63e6
RR
1433 }
1434 else
1435 {
1436 gdk_gc_set_clip_mask( m_penGC, (GdkBitmap *) NULL );
1437 gdk_gc_set_clip_origin( m_penGC, 0, 0 );
e1208c31 1438 if (!m_currentClippingRegion.IsNull())
3d2d8da1 1439 gdk_gc_set_clip_region( m_penGC, m_currentClippingRegion.GetRegion() );
82ea63e6 1440 }
265898fd 1441 }
ab9d0a8c 1442
d90c9596 1443 if (new_mask)
f5af7308 1444 g_object_unref (G_OBJECT (new_mask));
6f65e337 1445 }
d90c9596 1446 else // use_bitmap_method
6e13c196 1447 {
bf9848e7 1448 if ((width != ww) || (height != hh))
b0e0d661 1449 {
d90c9596
RR
1450 // get clip coords
1451 wxRegion tmp( xx,yy,ww,hh );
1452 tmp.Intersect( m_currentClippingRegion );
1453 wxCoord cx,cy,cw,ch;
1454 tmp.GetBox(cx,cy,cw,ch);
ab9d0a8c
WS
1455
1456 // rescale bitmap
d90c9596 1457 wxBitmap bitmap = memDC->m_selected.Rescale( cx-xx, cy-yy, cw, ch, ww, hh );
7d5af6fa 1458
d90c9596 1459 // draw scaled bitmap
15f0ad70
MR
1460 // was: gdk_draw_drawable( m_window, m_penGC, bitmap.GetPixmap(), 0, 0, xx, yy, -1, -1 );
1461 gdk_draw_drawable( m_window, m_penGC, bitmap.GetPixmap(), 0, 0, cx, cy, -1, -1 );
b0e0d661
VZ
1462 }
1463 else
1464 {
ab9d0a8c 1465 // No scaling and not a memory dc with a mask either
993f97ee 1466
d90c9596 1467 // copy including child window contents
a56fcaaf 1468 gdk_gc_set_subwindow( m_penGC, GDK_INCLUDE_INFERIORS );
15f0ad70
MR
1469 gdk_draw_drawable( m_window, m_penGC,
1470 srcDC->GetWindow(),
1471 xsrc, ysrc, xx, yy,
1472 width, height );
a56fcaaf 1473 gdk_gc_set_subwindow( m_penGC, GDK_CLIP_BY_CHILDREN );
b0e0d661 1474 }
6e13c196 1475 }
c801d85f 1476
4bc67cc5 1477 SetLogicalFunction( old_logical_func );
ab9d0a8c
WS
1478
1479 return true;
903f689b 1480}
c801d85f 1481
72cdf4c9 1482void wxWindowDC::DoDrawText( const wxString &text, wxCoord x, wxCoord y )
c801d85f 1483{
223d09f6 1484 wxCHECK_RET( Ok(), wxT("invalid window dc") );
18a2fa37 1485
6db90681 1486 if (!m_window) return;
ab9d0a8c 1487
2b5f62a0 1488 if (text.empty()) return;
7d5af6fa 1489
265898fd
RR
1490 x = XLOG2DEV(x);
1491 y = YLOG2DEV(y);
18a2fa37 1492
cfcc3932 1493 wxCHECK_RET( m_context, wxT("no Pango context") );
61850501 1494 wxCHECK_RET( m_layout, wxT("no Pango layout") );
cfcc3932 1495 wxCHECK_RET( m_fontdesc, wxT("no Pango font description") );
e4da1035 1496
1dbeee57
VS
1497 bool underlined = m_font.Ok() && m_font.GetUnderlined();
1498
fb3ed106 1499#if wxUSE_UNICODE
e4da1035 1500 const wxCharBuffer data = wxConvUTF8.cWC2MB( text );
fb3ed106 1501#else
e4da1035 1502 const wxWCharBuffer wdata = wxConvLocal.cMB2WC( text );
7706daf3
VS
1503 if ( !wdata )
1504 return;
e4da1035 1505 const wxCharBuffer data = wxConvUTF8.cWC2MB( wdata );
fb3ed106 1506#endif
1dbeee57
VS
1507 size_t datalen = strlen((const char*)data);
1508 pango_layout_set_text( m_layout, (const char*) data, datalen);
ab9d0a8c 1509
1dbeee57
VS
1510 if (underlined)
1511 {
1512 PangoAttrList *attrs = pango_attr_list_new();
1513 PangoAttribute *a = pango_attr_underline_new(PANGO_UNDERLINE_SINGLE);
1514 a->start_index = 0;
1515 a->end_index = datalen;
1516 pango_attr_list_insert(attrs, a);
1517 pango_layout_set_attributes(m_layout, attrs);
1518 pango_attr_list_unref(attrs);
1519 }
e4da1035 1520
76b20467 1521 int w,h;
fa499247
RR
1522
1523 if (fabs(m_scaleY - 1.0) > 0.00001)
e4da1035
RR
1524 {
1525 // If there is a user or actually any scale applied to
1526 // the device context, scale the font.
ab9d0a8c 1527
e4da1035
RR
1528 // scale font description
1529 gint oldSize = pango_font_description_get_size( m_fontdesc );
1530 double size = oldSize;
1531 size = size * m_scaleY;
1532 pango_font_description_set_size( m_fontdesc, (gint)size );
ab9d0a8c 1533
e4da1035
RR
1534 // actually apply scaled font
1535 pango_layout_set_font_description( m_layout, m_fontdesc );
ab9d0a8c 1536
76b20467
VS
1537 pango_layout_get_pixel_size( m_layout, &w, &h );
1538 if ( m_backgroundMode == wxSOLID )
1539 {
1540 gdk_gc_set_foreground(m_textGC, m_textBackgroundColour.GetColor());
1541 gdk_draw_rectangle(m_window, m_textGC, TRUE, x, y, w, h);
1542 gdk_gc_set_foreground(m_textGC, m_textForegroundColour.GetColor());
1543 }
ab9d0a8c 1544
e4da1035
RR
1545 // Draw layout.
1546 gdk_draw_layout( m_window, m_textGC, x, y, m_layout );
ab9d0a8c 1547
e4da1035
RR
1548 // reset unscaled size
1549 pango_font_description_set_size( m_fontdesc, oldSize );
ab9d0a8c 1550
61850501 1551 // actually apply unscaled font
e4da1035
RR
1552 pango_layout_set_font_description( m_layout, m_fontdesc );
1553 }
1554 else
1555 {
76b20467
VS
1556 pango_layout_get_pixel_size( m_layout, &w, &h );
1557 if ( m_backgroundMode == wxSOLID )
1558 {
1559 gdk_gc_set_foreground(m_textGC, m_textBackgroundColour.GetColor());
1560 gdk_draw_rectangle(m_window, m_textGC, TRUE, x, y, w, h);
1561 gdk_gc_set_foreground(m_textGC, m_textForegroundColour.GetColor());
1562 }
1563 // Draw layout.
1564 gdk_draw_layout( m_window, m_textGC, x, y, m_layout );
8943b403 1565 }
1dbeee57
VS
1566
1567 if (underlined)
1568 {
1569 // undo underline attributes setting:
1570 pango_layout_set_attributes(m_layout, NULL);
1571 }
ab9d0a8c 1572
2b5f62a0
VZ
1573 wxCoord width = w;
1574 wxCoord height = h;
ab9d0a8c 1575
8943b403
OK
1576 width = wxCoord(width / m_scaleX);
1577 height = wxCoord(height / m_scaleY);
1578 CalcBoundingBox (x + width, y + height);
265898fd 1579 CalcBoundingBox (x, y);
903f689b 1580}
c801d85f 1581
bf47e398
RD
1582
1583// TODO: There is an example of rotating text with GTK2 that would probably be
1584// a better approach here:
1585// http://www.daa.com.au/pipermail/pygtk/2003-April/005052.html
1586
95724b1a
VZ
1587void wxWindowDC::DoDrawRotatedText( const wxString &text, wxCoord x, wxCoord y, double angle )
1588{
c77a6796 1589 if ( wxIsNullDouble(angle) )
95724b1a
VZ
1590 {
1591 DrawText(text, x, y);
1592 return;
1593 }
1594
1595 wxCHECK_RET( Ok(), wxT("invalid window dc") );
1596
1597 if (!m_window) return;
1598
bf47e398
RD
1599 wxCoord w;
1600 wxCoord h;
1601
68567a96 1602 // TODO: implement later without GdkFont for GTK 2.0
bf47e398 1603 GetTextExtent(text, &w, &h, NULL,NULL, &m_font);
ab9d0a8c 1604
9a8c7620
VZ
1605 // draw the string normally
1606 wxBitmap src(w, h);
95724b1a
VZ
1607 wxMemoryDC dc;
1608 dc.SelectObject(src);
1609 dc.SetFont(GetFont());
f1c72f0c 1610 dc.SetBackground(*wxBLACK_BRUSH);
95724b1a
VZ
1611 dc.SetBrush(*wxBLACK_BRUSH);
1612 dc.Clear();
f1c72f0c 1613 dc.SetTextForeground( *wxWHITE );
95724b1a 1614 dc.DrawText(text, 0, 0);
9a8c7620 1615 dc.SelectObject(wxNullBitmap);
95724b1a
VZ
1616
1617 // Calculate the size of the rotated bounding box.
9a8c7620
VZ
1618 double rad = DegToRad(angle);
1619 double dx = cos(rad),
1620 dy = sin(rad);
1621
1622 // the rectngle vertices are counted clockwise with the first one being at
1623 // (0, 0) (or, rather, at (x, y))
1624 double x2 = w*dx,
1625 y2 = -w*dy; // y axis points to the bottom, hence minus
1626 double x4 = h*dy,
1627 y4 = h*dx;
1628 double x3 = x4 + x2,
1629 y3 = y4 + y2;
ab9d0a8c 1630
72174350 1631 // calc max and min
9a8c7620
VZ
1632 wxCoord maxX = (wxCoord)(dmax(x2, dmax(x3, x4)) + 0.5),
1633 maxY = (wxCoord)(dmax(y2, dmax(y3, y4)) + 0.5),
1634 minX = (wxCoord)(dmin(x2, dmin(x3, x4)) - 0.5),
1635 minY = (wxCoord)(dmin(y2, dmin(y3, y4)) - 0.5);
1636
72174350 1637
f1c72f0c 1638 wxImage image = src.ConvertToImage();
9a8c7620 1639
f1c72f0c
RR
1640 image.ConvertColourToAlpha( m_textForegroundColour.Red(),
1641 m_textForegroundColour.Green(),
1642 m_textForegroundColour.Blue() );
1643 image = image.Rotate( rad, wxPoint(0,0) );
ab9d0a8c 1644
1d65e535
RR
1645 int i_angle = (int) angle;
1646 i_angle = i_angle % 360;
c2cb80c8
KH
1647 if (i_angle < 0)
1648 i_angle += 360;
1d65e535
RR
1649 int xoffset = 0;
1650 if ((i_angle >= 90.0) && (i_angle < 270.0))
1651 xoffset = image.GetWidth();
1652 int yoffset = 0;
1653 if ((i_angle >= 0.0) && (i_angle < 180.0))
1654 yoffset = image.GetHeight();
ab9d0a8c 1655
1d65e535
RR
1656 if ((i_angle >= 0) && (i_angle < 90))
1657 yoffset -= (int)( cos(rad)*h );
1658 if ((i_angle >= 90) && (i_angle < 180))
ab9d0a8c 1659 xoffset -= (int)( sin(rad)*h );
1d65e535
RR
1660 if ((i_angle >= 180) && (i_angle < 270))
1661 yoffset -= (int)( cos(rad)*h );
1662 if ((i_angle >= 270) && (i_angle < 360))
1663 xoffset -= (int)( sin(rad)*h );
ab9d0a8c 1664
1d65e535
RR
1665 int i_x = x - xoffset;
1666 int i_y = y - yoffset;
ab9d0a8c 1667
f1c72f0c 1668 src = image;
1d65e535 1669 DoDrawBitmap( src, i_x, i_y, true );
9a8c7620 1670
95724b1a 1671
9a8c7620
VZ
1672 // it would be better to draw with non underlined font and draw the line
1673 // manually here (it would be more straight...)
1674#if 0
1675 if ( m_font.GetUnderlined() )
1676 {
1677 gdk_draw_line( m_window, m_textGC,
1678 XLOG2DEV(x + x4), YLOG2DEV(y + y4 + font->descent),
1679 XLOG2DEV(x + x3), YLOG2DEV(y + y3 + font->descent));
1680 }
1681#endif // 0
1682
9a8c7620
VZ
1683 // update the bounding box
1684 CalcBoundingBox(x + minX, y + minY);
1685 CalcBoundingBox(x + maxX, y + maxY);
95724b1a
VZ
1686}
1687
72cdf4c9
VZ
1688void wxWindowDC::DoGetTextExtent(const wxString &string,
1689 wxCoord *width, wxCoord *height,
1690 wxCoord *descent, wxCoord *externalLeading,
1691 wxFont *theFont) const
c801d85f 1692{
b1f0abe4
VZ
1693 if ( width )
1694 *width = 0;
1695 if ( height )
1696 *height = 0;
1697 if ( descent )
1698 *descent = 0;
1699 if ( externalLeading )
1700 *externalLeading = 0;
1701
ab9d0a8c 1702 if (string.empty())
48d011c8 1703 {
48d011c8
RR
1704 return;
1705 }
ab9d0a8c 1706
cfcc3932 1707 // Set new font description
2b5f62a0 1708 if (theFont)
cfcc3932 1709 pango_layout_set_font_description( m_layout, theFont->GetNativeFontInfo()->description );
ab9d0a8c 1710
2b5f62a0 1711 // Set layout's text
fb3ed106 1712#if wxUSE_UNICODE
e4da1035 1713 const wxCharBuffer data = wxConvUTF8.cWC2MB( string );
a1e101d0 1714 const char *dataUTF8 = (const char *)data;
fb3ed106 1715#else
e4da1035 1716 const wxWCharBuffer wdata = wxConvLocal.cMB2WC( string );
a1e101d0
VZ
1717 if ( !wdata )
1718 return;
ace35c62 1719
e4da1035 1720 const wxCharBuffer data = wxConvUTF8.cWC2MB( wdata );
a1e101d0 1721 const char *dataUTF8 = (const char *)data;
fb3ed106 1722#endif
a1e101d0
VZ
1723
1724 if ( !dataUTF8 )
1725 {
1726 // hardly ideal, but what else can we do if conversion failed?
1727 return;
1728 }
1729
1730 pango_layout_set_text( m_layout, dataUTF8, strlen(dataUTF8) );
ab9d0a8c 1731
48d011c8
RR
1732 if (descent)
1733 {
ace35c62
RR
1734 int h;
1735 pango_layout_get_pixel_size( m_layout, width, &h );
f69e2009
VS
1736 PangoLayoutIter *iter = pango_layout_get_iter(m_layout);
1737 int baseline = pango_layout_iter_get_baseline(iter);
1738 pango_layout_iter_free(iter);
1739 *descent = h - PANGO_PIXELS(baseline);
ace35c62
RR
1740
1741 if (height)
1742 *height = (wxCoord) h;
1743 }
1744 else
1745 {
1746 pango_layout_get_pixel_size( m_layout, width, height );
48d011c8 1747 }
ab9d0a8c 1748
cfcc3932
RR
1749 // Reset old font description
1750 if (theFont)
1751 pango_layout_set_font_description( m_layout, m_fontdesc );
903f689b 1752}
c801d85f 1753
72cdf4c9 1754wxCoord wxWindowDC::GetCharWidth() const
c801d85f 1755{
cfcc3932 1756 pango_layout_set_text( m_layout, "H", 1 );
ace35c62
RR
1757 int w;
1758 pango_layout_get_pixel_size( m_layout, &w, NULL );
2b5f62a0 1759 return w;
903f689b 1760}
c801d85f 1761
72cdf4c9 1762wxCoord wxWindowDC::GetCharHeight() const
c801d85f 1763{
cfcc3932 1764 pango_layout_set_text( m_layout, "H", 1 );
ace35c62
RR
1765 int h;
1766 pango_layout_get_pixel_size( m_layout, NULL, &h );
2b5f62a0 1767 return h;
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)
1832 g_object_unref( G_OBJECT( 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 {
4fcd73bd 2011 if (m_brush.GetStipple()->GetPixmap())
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 );
4fcd73bd 2019 gdk_gc_set_stipple( m_brushGC, m_brush.GetStipple()->GetBitmap() );
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 {
fd128b0c 2062 if (m_backgroundBrush.GetStipple()->GetPixmap())
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 );
fd128b0c 2070 gdk_gc_set_stipple( m_bgGC, m_backgroundBrush.GetStipple()->GetBitmap() );
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}