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