1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Markus Holzem, Chris Breeze
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "dcclient.h"
14 #include "wx/dcclient.h"
15 #include "wx/dcmemory.h"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
34 static GdkPixmap
*hatches
[num_hatches
];
35 static GdkPixmap
**hatch_bitmap
= (GdkPixmap
**) NULL
;
37 //-----------------------------------------------------------------------------
39 //-----------------------------------------------------------------------------
41 #define RAD2DEG 57.2957795131
43 //-----------------------------------------------------------------------------
44 // temporary implementation of the missing GDK function
45 //-----------------------------------------------------------------------------
46 #include "gdk/gdkprivate.h"
47 void gdk_draw_bitmap (GdkDrawable
*drawable
,
57 GdkWindowPrivate
*drawable_private
;
58 GdkWindowPrivate
*src_private
;
59 GdkGCPrivate
*gc_private
;
61 g_return_if_fail (drawable
!= NULL
);
62 g_return_if_fail (src
!= NULL
);
63 g_return_if_fail (gc
!= NULL
);
65 drawable_private
= (GdkWindowPrivate
*) drawable
;
66 src_private
= (GdkWindowPrivate
*) src
;
67 if (drawable_private
->destroyed
|| src_private
->destroyed
)
70 gc_private
= (GdkGCPrivate
*) gc
;
72 if (width
== -1) width
= src_private
->width
;
73 if (height
== -1) height
= src_private
->height
;
75 XCopyPlane( drawable_private
->xdisplay
,
77 drawable_private
->xwindow
,
85 //-----------------------------------------------------------------------------
87 //-----------------------------------------------------------------------------
89 IMPLEMENT_DYNAMIC_CLASS(wxWindowDC
,wxDC
)
91 wxWindowDC::wxWindowDC()
93 m_penGC
= (GdkGC
*) NULL
;
94 m_brushGC
= (GdkGC
*) NULL
;
95 m_textGC
= (GdkGC
*) NULL
;
96 m_bgGC
= (GdkGC
*) NULL
;
97 m_cmap
= (GdkColormap
*) NULL
;
99 m_owner
= (wxWindow
*)NULL
;
102 wxWindowDC::wxWindowDC( wxWindow
*window
)
104 m_penGC
= (GdkGC
*) NULL
;
105 m_brushGC
= (GdkGC
*) NULL
;
106 m_textGC
= (GdkGC
*) NULL
;
107 m_bgGC
= (GdkGC
*) NULL
;
108 m_cmap
= (GdkColormap
*) NULL
;
109 m_owner
= (wxWindow
*)NULL
;
112 GtkWidget
*widget
= window
->m_wxwindow
;
114 m_window
= widget
->window
;
115 if (!m_window
) return;
116 if (window
->m_wxwindow
)
117 m_cmap
= gtk_widget_get_colormap( window
->m_wxwindow
);
119 m_cmap
= gtk_widget_get_colormap( window
->m_widget
);
125 /* this must be done after SetUpDC, bacause SetUpDC calls the
126 repective SetBrush, SetPen, SetBackground etc functions
127 to set up the DC. SetBackground call m_owner->SetBackground
128 and this might not be desired as the standard dc background
129 is white whereas a window might assume gray to be the
130 standard (as e.g. wxStatusBar) */
135 wxWindowDC::~wxWindowDC()
140 void wxWindowDC::FloodFill( long WXUNUSED(x
), long WXUNUSED(y
),
141 const wxColour
&WXUNUSED(col
), int WXUNUSED(style
) )
143 wxFAIL_MSG( "wxWindowDC::FloodFill not implemented" );
146 bool wxWindowDC::GetPixel( long WXUNUSED(x1
), long WXUNUSED(y1
), wxColour
*WXUNUSED(col
) ) const
148 wxFAIL_MSG( "wxWindowDC::GetPixel not implemented" );
152 void wxWindowDC::DrawLine( long x1
, long y1
, long x2
, long y2
)
154 wxCHECK_RET( Ok(), "invalid window dc" );
156 if (m_pen
.GetStyle() != wxTRANSPARENT
)
158 gdk_draw_line( m_window
, m_penGC
,
159 XLOG2DEV(x1
), YLOG2DEV(y1
), XLOG2DEV(x2
), YLOG2DEV(y2
) );
161 CalcBoundingBox(x1
, y1
);
162 CalcBoundingBox(x2
, y2
);
166 void wxWindowDC::CrossHair( long x
, long y
)
168 wxCHECK_RET( Ok(), "invalid window dc" );
170 if (m_pen
.GetStyle() != wxTRANSPARENT
)
175 long xx
= XLOG2DEV(x
);
176 long yy
= YLOG2DEV(y
);
177 gdk_draw_line( m_window
, m_penGC
, 0, yy
, XLOG2DEVREL(w
), yy
);
178 gdk_draw_line( m_window
, m_penGC
, xx
, 0, xx
, YLOG2DEVREL(h
) );
182 void wxWindowDC::DrawArc( long x1
, long y1
, long x2
, long y2
, double xc
, double yc
)
184 wxCHECK_RET( Ok(), "invalid window dc" );
186 long xx1
= XLOG2DEV(x1
);
187 long yy1
= YLOG2DEV(y1
);
188 long xx2
= XLOG2DEV(x2
);
189 long yy2
= YLOG2DEV(y2
);
190 long xxc
= XLOG2DEV((long)xc
);
191 long yyc
= YLOG2DEV((long)yc
);
192 double dx
= xx1
- xxc
;
193 double dy
= yy1
- yyc
;
194 double radius
= sqrt(dx
*dx
+dy
*dy
);
195 long r
= (long)radius
;
196 double radius1
, radius2
;
198 if (xx1
== xx2
&& yy1
== yy2
)
206 radius1
= radius2
= 0.0;
210 radius1
= (xx1
- xxc
== 0) ?
211 (yy1
- yyc
< 0) ? 90.0 : -90.0 :
212 -atan2(double(yy1
-yyc
), double(xx1
-xxc
)) * RAD2DEG
;
213 radius2
= (xx2
- xxc
== 0) ?
214 (yy2
- yyc
< 0) ? 90.0 : -90.0 :
215 -atan2(double(yy2
-yyc
), double(xx2
-xxc
)) * RAD2DEG
;
217 long alpha1
= long(radius1
* 64.0);
218 long alpha2
= long((radius2
- radius1
) * 64.0);
219 while (alpha2
<= 0) alpha2
+= 360*64;
220 while (alpha1
> 360*64) alpha1
-= 360*64;
222 if (m_brush
.GetStyle() != wxTRANSPARENT
)
223 gdk_draw_arc( m_window
, m_brushGC
, TRUE
, xxc
-r
, yyc
-r
, 2*r
,2*r
, alpha1
, alpha2
);
225 if (m_pen
.GetStyle() != wxTRANSPARENT
)
226 gdk_draw_arc( m_window
, m_penGC
, FALSE
, xxc
-r
, yyc
-r
, 2*r
,2*r
, alpha1
, alpha2
);
228 CalcBoundingBox (x1
, y1
);
229 CalcBoundingBox (x2
, y2
);
232 void wxWindowDC::DrawEllipticArc( long x
, long y
, long width
, long height
, double sa
, double ea
)
234 wxCHECK_RET( Ok(), "invalid window dc" );
236 long xx
= XLOG2DEV(x
);
237 long yy
= YLOG2DEV(y
);
238 long ww
= m_signX
* XLOG2DEVREL(width
);
239 long hh
= m_signY
* YLOG2DEVREL(height
);
241 // CMB: handle -ve width and/or height
242 if (ww
< 0) { ww
= -ww
; xx
= xx
- ww
; }
243 if (hh
< 0) { hh
= -hh
; yy
= yy
- hh
; }
245 long start
= long(sa
* 64.0);
246 long end
= long(ea
* 64.0);
247 if (m_brush
.GetStyle() != wxTRANSPARENT
)
248 gdk_draw_arc( m_window
, m_brushGC
, TRUE
, xx
, yy
, ww
, hh
, start
, end
);
250 if (m_pen
.GetStyle() != wxTRANSPARENT
)
251 gdk_draw_arc( m_window
, m_penGC
, FALSE
, xx
, yy
, ww
, hh
, start
, end
);
253 CalcBoundingBox (x
, y
);
254 CalcBoundingBox (x
+ width
, y
+ height
);
257 void wxWindowDC::DrawPoint( long x
, long y
)
259 wxCHECK_RET( Ok(), "invalid window dc" );
261 if (m_pen
.GetStyle() != wxTRANSPARENT
)
262 gdk_draw_point( m_window
, m_penGC
, XLOG2DEV(x
), YLOG2DEV(y
) );
264 CalcBoundingBox (x
, y
);
267 void wxWindowDC::DrawLines( int n
, wxPoint points
[], long xoffset
, long yoffset
)
269 wxCHECK_RET( Ok(), "invalid window dc" );
271 if (m_pen
.GetStyle() == wxTRANSPARENT
) return;
274 CalcBoundingBox( points
[0].x
+ xoffset
, points
[0].y
+ yoffset
);
276 for (int i
= 0; i
< n
-1; i
++)
278 long x1
= XLOG2DEV(points
[i
].x
+ xoffset
);
279 long x2
= XLOG2DEV(points
[i
+1].x
+ xoffset
);
280 long y1
= YLOG2DEV(points
[i
].y
+ yoffset
); // oh, what a waste
281 long y2
= YLOG2DEV(points
[i
+1].y
+ yoffset
);
282 gdk_draw_line( m_window
, m_penGC
, x1
, y1
, x2
, y2
);
284 CalcBoundingBox( points
[i
+1].x
+ xoffset
, points
[i
+1].y
+ yoffset
);
288 void wxWindowDC::DrawLines( wxList
*points
, long xoffset
, long yoffset
)
290 wxCHECK_RET( Ok(), "invalid window dc" );
292 if (m_pen
.GetStyle() == wxTRANSPARENT
) return;
294 wxNode
*node
= points
->First();
297 wxPoint
*pt
= (wxPoint
*)node
->Data();
298 CalcBoundingBox( pt
->x
+ xoffset
, pt
->y
+ yoffset
);
302 wxPoint
*point
= (wxPoint
*)node
->Data();
303 wxPoint
*npoint
= (wxPoint
*)node
->Next()->Data();
304 long x1
= XLOG2DEV(point
->x
+ xoffset
);
305 long x2
= XLOG2DEV(npoint
->x
+ xoffset
);
306 long y1
= YLOG2DEV(point
->y
+ yoffset
); // and a waste again...
307 long y2
= YLOG2DEV(npoint
->y
+ yoffset
);
308 gdk_draw_line( m_window
, m_penGC
, x1
, y1
, x2
, y2
);
311 CalcBoundingBox( npoint
->x
+ xoffset
, npoint
->y
+ yoffset
);
315 void wxWindowDC::DrawPolygon( int n
, wxPoint points
[], long xoffset
, long yoffset
, int WXUNUSED(fillStyle
) )
317 wxCHECK_RET( Ok(), "invalid window dc" );
321 GdkPoint
*gdkpoints
= new GdkPoint
[n
+1];
323 for (i
= 0 ; i
< n
; i
++)
325 gdkpoints
[i
].x
= XLOG2DEV(points
[i
].x
+ xoffset
);
326 gdkpoints
[i
].y
= YLOG2DEV(points
[i
].y
+ yoffset
);
328 CalcBoundingBox( points
[i
].x
+ xoffset
, points
[i
].y
+ yoffset
);
331 if (m_brush
.GetStyle() != wxTRANSPARENT
)
332 gdk_draw_polygon (m_window
, m_brushGC
, TRUE
, gdkpoints
, n
);
336 if (m_pen
.GetStyle() != wxTRANSPARENT
)
337 for (i
= 0 ; i
< n
; i
++)
339 gdk_draw_line( m_window
, m_penGC
,
342 gdkpoints
[(i
+1)%n
].x
,
343 gdkpoints
[(i
+1)%n
].y
);
349 void wxWindowDC::DrawPolygon( wxList
*lines
, long xoffset
, long yoffset
, int WXUNUSED(fillStyle
))
351 wxCHECK_RET( Ok(), "invalid window dc" );
353 int n
= lines
->Number();
356 GdkPoint
*gdkpoints
= new GdkPoint
[n
];
357 wxNode
*node
= lines
->First();
361 wxPoint
*p
= (wxPoint
*) node
->Data();
362 gdkpoints
[cnt
].x
= XLOG2DEV(p
->x
+ xoffset
);
363 gdkpoints
[cnt
].y
= YLOG2DEV(p
->y
+ yoffset
);
367 CalcBoundingBox( p
->x
+ xoffset
, p
->y
+ yoffset
);
370 if (m_brush
.GetStyle() != wxTRANSPARENT
)
371 gdk_draw_polygon (m_window
, m_brushGC
, TRUE
, gdkpoints
, n
);
375 if (m_pen
.GetStyle() != wxTRANSPARENT
)
378 for (i
= 0 ; i
< n
; i
++)
380 gdk_draw_line( m_window
, m_penGC
,
383 gdkpoints
[(i
+1)%n
].x
,
384 gdkpoints
[(i
+1)%n
].y
);
390 void wxWindowDC::DrawRectangle( long x
, long y
, long width
, long height
)
392 wxCHECK_RET( Ok(), "invalid window dc" );
394 long xx
= XLOG2DEV(x
);
395 long yy
= YLOG2DEV(y
);
396 long ww
= m_signX
* XLOG2DEVREL(width
);
397 long hh
= m_signY
* YLOG2DEVREL(height
);
399 // CMB: draw nothing if transformed w or h is 0
400 if (ww
== 0 || hh
== 0) return;
402 // CMB: handle -ve width and/or height
403 if (ww
< 0) { ww
= -ww
; xx
= xx
- ww
; }
404 if (hh
< 0) { hh
= -hh
; yy
= yy
- hh
; }
406 if (m_brush
.GetStyle() != wxTRANSPARENT
)
407 gdk_draw_rectangle( m_window
, m_brushGC
, TRUE
, xx
, yy
, ww
, hh
);
409 if (m_pen
.GetStyle() != wxTRANSPARENT
)
410 gdk_draw_rectangle( m_window
, m_penGC
, FALSE
, xx
, yy
, ww
-1, hh
-1 );
412 CalcBoundingBox( x
, y
);
413 CalcBoundingBox( x
+ width
, y
+ height
);
416 void wxWindowDC::DrawRoundedRectangle( long x
, long y
, long width
, long height
, double radius
)
418 wxCHECK_RET( Ok(), "invalid window dc" );
420 if (radius
< 0.0) radius
= - radius
* ((width
< height
) ? width
: height
);
422 long xx
= XLOG2DEV(x
);
423 long yy
= YLOG2DEV(y
);
424 long ww
= m_signX
* XLOG2DEVREL(width
);
425 long hh
= m_signY
* YLOG2DEVREL(height
);
426 long rr
= XLOG2DEVREL((long)radius
);
428 // CMB: handle -ve width and/or height
429 if (ww
< 0) { ww
= -ww
; xx
= xx
- ww
; }
430 if (hh
< 0) { hh
= -hh
; yy
= yy
- hh
; }
432 // CMB: if radius is zero use DrawRectangle() instead to avoid
433 // X drawing errors with small radii
436 DrawRectangle( x
, y
, width
, height
);
440 // CMB: draw nothing if transformed w or h is 0
441 if (ww
== 0 || hh
== 0) return;
443 // CMB: adjust size if outline is drawn otherwise the result is
444 // 1 pixel too wide and high
445 if (m_pen
.GetStyle() != wxTRANSPARENT
)
451 // CMB: ensure dd is not larger than rectangle otherwise we
452 // get an hour glass shape
454 if (dd
> ww
) dd
= ww
;
455 if (dd
> hh
) dd
= hh
;
458 if (m_brush
.GetStyle() != wxTRANSPARENT
)
460 gdk_draw_rectangle( m_window
, m_brushGC
, TRUE
, xx
+rr
, yy
, ww
-dd
+1, hh
);
461 gdk_draw_rectangle( m_window
, m_brushGC
, TRUE
, xx
, yy
+rr
, ww
, hh
-dd
+1 );
462 gdk_draw_arc( m_window
, m_brushGC
, TRUE
, xx
, yy
, dd
, dd
, 90*64, 90*64 );
463 gdk_draw_arc( m_window
, m_brushGC
, TRUE
, xx
+ww
-dd
, yy
, dd
, dd
, 0, 90*64 );
464 gdk_draw_arc( m_window
, m_brushGC
, TRUE
, xx
+ww
-dd
, yy
+hh
-dd
, dd
, dd
, 270*64, 90*64 );
465 gdk_draw_arc( m_window
, m_brushGC
, TRUE
, xx
, yy
+hh
-dd
, dd
, dd
, 180*64, 90*64 );
468 if (m_pen
.GetStyle() != wxTRANSPARENT
)
470 gdk_draw_line( m_window
, m_penGC
, xx
+rr
, yy
, xx
+ww
-rr
, yy
);
471 gdk_draw_line( m_window
, m_penGC
, xx
+rr
, yy
+hh
, xx
+ww
-rr
, yy
+hh
);
472 gdk_draw_line( m_window
, m_penGC
, xx
, yy
+rr
, xx
, yy
+hh
-rr
);
473 gdk_draw_line( m_window
, m_penGC
, xx
+ww
, yy
+rr
, xx
+ww
, yy
+hh
-rr
);
474 gdk_draw_arc( m_window
, m_penGC
, FALSE
, xx
, yy
, dd
, dd
, 90*64, 90*64 );
475 gdk_draw_arc( m_window
, m_penGC
, FALSE
, xx
+ww
-dd
, yy
, dd
, dd
, 0, 90*64 );
476 gdk_draw_arc( m_window
, m_penGC
, FALSE
, xx
+ww
-dd
, yy
+hh
-dd
, dd
, dd
, 270*64, 90*64 );
477 gdk_draw_arc( m_window
, m_penGC
, FALSE
, xx
, yy
+hh
-dd
, dd
, dd
, 180*64, 90*64 );
480 // this ignores the radius
481 CalcBoundingBox( x
, y
);
482 CalcBoundingBox( x
+ width
, y
+ height
);
485 void wxWindowDC::DrawEllipse( long x
, long y
, long width
, long height
)
487 wxCHECK_RET( Ok(), "invalid window dc" );
489 long xx
= XLOG2DEV(x
);
490 long yy
= YLOG2DEV(y
);
491 long ww
= m_signX
* XLOG2DEVREL(width
);
492 long hh
= m_signY
* YLOG2DEVREL(height
);
494 // CMB: handle -ve width and/or height
495 if (ww
< 0) { ww
= -ww
; xx
= xx
- ww
; }
496 if (hh
< 0) { hh
= -hh
; yy
= yy
- hh
; }
498 if (m_brush
.GetStyle() != wxTRANSPARENT
)
499 gdk_draw_arc( m_window
, m_brushGC
, TRUE
, xx
, yy
, ww
, hh
, 0, 360*64 );
501 if (m_pen
.GetStyle() != wxTRANSPARENT
)
502 gdk_draw_arc( m_window
, m_penGC
, FALSE
, xx
, yy
, ww
, hh
, 0, 360*64 );
504 CalcBoundingBox( x
- width
, y
- height
);
505 CalcBoundingBox( x
+ width
, y
+ height
);
508 bool wxWindowDC::CanDrawBitmap() const
513 void wxWindowDC::DrawIcon( const wxIcon
&icon
, long x
, long y
)
515 DrawBitmap( icon
, x
, y
, TRUE
);
518 void wxWindowDC::DrawBitmap( const wxBitmap
&bitmap
, long x
, long y
, bool useMask
)
520 wxCHECK_RET( Ok(), "invalid window dc" );
522 if (!bitmap
.Ok()) return;
524 /* scale/translate size and position */
526 int xx
= XLOG2DEV(x
);
527 int yy
= YLOG2DEV(y
);
529 int w
= bitmap
.GetWidth();
530 int h
= bitmap
.GetHeight();
532 int ww
= XLOG2DEVREL(w
);
533 int hh
= YLOG2DEVREL(h
);
535 /* scale bitmap if required */
539 if ((w
!= ww
) || (h
!= hh
))
541 wxImage
image( bitmap
);
542 image
= image
.Scale( ww
, hh
);
544 use_bitmap
= image
.ConvertToBitmap();
551 /* apply mask if any */
553 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
554 if (use_bitmap
.GetMask()) mask
= use_bitmap
.GetMask()->GetBitmap();
558 gdk_gc_set_clip_mask( m_penGC
, mask
);
559 gdk_gc_set_clip_origin( m_penGC
, xx
, yy
);
562 /* draw XPixmap or XBitmap, depending on what the wxBitmap contains */
564 GdkPixmap
*pm
= use_bitmap
.GetPixmap();
567 gdk_draw_pixmap( m_window
, m_penGC
, pm
, 0, 0, xx
, yy
, -1, -1 );
571 GdkBitmap
*bm
= use_bitmap
.GetBitmap();
574 gdk_draw_bitmap( m_window
, m_penGC
, bm
, 0, 0, xx
, yy
, -1, -1 );
578 /* remove mask again if any */
582 gdk_gc_set_clip_mask( m_penGC
, (GdkBitmap
*) NULL
);
583 gdk_gc_set_clip_origin( m_penGC
, 0, 0 );
586 CalcBoundingBox( x
, y
);
587 CalcBoundingBox( x
+ w
, y
+ h
);
590 bool wxWindowDC::Blit( long xdest
, long ydest
, long width
, long height
,
591 wxDC
*source
, long xsrc
, long ysrc
, int logical_func
, bool useMask
)
593 /* this is the nth try to get this utterly useless function to
594 work. it now completely ignores the scaling or translation
595 of the source dc, but scales correctly on the target dc and
596 knows about possible mask information in a memory dc. */
598 wxCHECK_MSG( Ok(), FALSE
, "invalid window dc" );
600 wxCHECK_MSG( source
, FALSE
, "invalid source dc" );
602 wxClientDC
*srcDC
= (wxClientDC
*)source
;
603 wxMemoryDC
*memDC
= (wxMemoryDC
*)source
;
605 bool use_bitmap_method
= FALSE
;
607 if (srcDC
->m_isMemDC
)
609 if (!memDC
->m_selected
.Ok()) return FALSE
;
611 /* we use the "XCopyArea" way to copy a memory dc into
612 y different window if the memory dc BOTH
613 a) doesn't have any mask or its mask isn't used
615 we HAVE TO use the direct way for memory dcs
616 that have mask since the XCopyArea doesn't know
617 about masks and we SHOULD use the direct way if
618 all of the bitmap in the memory dc is copied in
619 which case XCopyArea wouldn't be able able to
620 boost performace by reducing the area to be scaled */
622 use_bitmap_method
= ( (useMask
&& (memDC
->m_selected
.GetMask())) ||
623 ((xsrc
== 0) && (ysrc
== 0) &&
624 (width
== memDC
->m_selected
.GetWidth()) &&
625 (height
== memDC
->m_selected
.GetHeight()) )
629 CalcBoundingBox( xdest
, ydest
);
630 CalcBoundingBox( xdest
+ width
, ydest
+ height
);
632 int old_logical_func
= m_logicalFunction
;
633 SetLogicalFunction( logical_func
);
635 if (use_bitmap_method
)
637 /* scale/translate bitmap size */
639 long bm_width
= memDC
->m_selected
.GetWidth();
640 long bm_height
= memDC
->m_selected
.GetHeight();
642 long bm_ww
= XLOG2DEVREL( bm_width
);
643 long bm_hh
= YLOG2DEVREL( bm_height
);
645 /* scale bitmap if required */
649 if ((bm_width
!= bm_ww
) || (bm_height
!= bm_hh
))
651 wxImage
image( memDC
->m_selected
);
652 image
= image
.Scale( bm_ww
, bm_hh
);
654 use_bitmap
= image
.ConvertToBitmap();
658 use_bitmap
= memDC
->m_selected
;
661 /* scale/translate size and position */
663 long xx
= XLOG2DEV(xdest
);
664 long yy
= YLOG2DEV(ydest
);
666 long ww
= XLOG2DEVREL(width
);
667 long hh
= YLOG2DEVREL(height
);
669 /* apply mask if any */
671 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
672 if (use_bitmap
.GetMask()) mask
= use_bitmap
.GetMask()->GetBitmap();
676 gdk_gc_set_clip_mask( m_penGC
, mask
);
677 gdk_gc_set_clip_origin( m_penGC
, xx
, yy
);
680 /* draw XPixmap or XBitmap, depending on what the wxBitmap contains */
682 GdkPixmap
*pm
= use_bitmap
.GetPixmap();
685 gdk_draw_pixmap( m_window
, m_penGC
, pm
, 0, 0, xx
, yy
, ww
, hh
);
689 GdkBitmap
*bm
= use_bitmap
.GetBitmap();
692 gdk_draw_bitmap( m_window
, m_penGC
, bm
, 0, 0, xx
, yy
, ww
, hh
);
696 /* remove mask again if any */
700 gdk_gc_set_clip_mask( m_penGC
, (GdkBitmap
*) NULL
);
701 gdk_gc_set_clip_origin( m_penGC
, 0, 0 );
704 else /* use_bitmap_method */
706 /* scale/translate size and position */
708 long xx
= XLOG2DEV(xdest
);
709 long yy
= YLOG2DEV(ydest
);
711 long ww
= XLOG2DEVREL(width
);
712 long hh
= YLOG2DEVREL(height
);
714 if ((width
!= ww
) || (height
!= hh
))
716 /* draw source window into a bitmap as we cannot scale
717 a window in contrast to a bitmap. this would actually
718 work with memory dcs as well, but we'd lose the mask
719 information and waste one step in this process since
720 a memory already has a bitmap. all this is slightly
721 inefficient as we could take an XImage directly from
722 an X window, but we'd then also have to care that
723 the window is not outside the screen (in which case
724 we'd get a BadMatch or what not).
725 Is a double XGetImage and combined XGetPixel and
726 XPutPixel really faster? I'm not sure. look at wxXt
727 for a different implementation of the same problem. */
729 wxBitmap
bitmap( width
, height
);
730 gdk_window_copy_area( bitmap
.GetPixmap(), m_penGC
, 0, 0,
732 xsrc
, ysrc
, width
, height
);
736 wxImage
image( bitmap
);
737 image
= image
.Scale( ww
, hh
);
739 /* convert to bitmap */
741 bitmap
= image
.ConvertToBitmap();
743 /* draw scaled bitmap */
745 gdk_draw_pixmap( m_window
, m_penGC
, bitmap
.GetPixmap(), 0, 0, xx
, yy
, -1, -1 );
750 /* no scaling and not a memory dc with a mask either */
752 gdk_window_copy_area( m_window
, m_penGC
, xx
, yy
,
754 xsrc
, ysrc
, width
, height
);
758 SetLogicalFunction( old_logical_func
);
762 void wxWindowDC::DrawText( const wxString
&text
, long x
, long y
, bool WXUNUSED(use16
) )
764 wxCHECK_RET( Ok(), "invalid window dc" );
766 GdkFont
*font
= m_font
.GetInternalFont( m_scaleY
);
771 /* CMB 21/5/98: draw text background if mode is wxSOLID */
772 if (m_backgroundMode
== wxSOLID
)
774 long width
= gdk_string_width( font
, text
);
775 long height
= font
->ascent
+ font
->descent
;
776 gdk_gc_set_foreground( m_textGC
, m_textBackgroundColour
.GetColor() );
777 gdk_draw_rectangle( m_window
, m_textGC
, TRUE
, x
, y
, width
, height
);
778 gdk_gc_set_foreground( m_textGC
, m_textForegroundColour
.GetColor() );
780 gdk_draw_string( m_window
, font
, m_textGC
, x
, y
+ font
->ascent
, text
);
782 /* CMB 17/7/98: simple underline: ignores scaling and underlying
783 X font's XA_UNDERLINE_POSITION and XA_UNDERLINE_THICKNESS
784 properties (see wxXt implementation) */
785 if (m_font
.GetUnderlined())
787 long width
= gdk_string_width( font
, text
);
788 long ul_y
= y
+ font
->ascent
;
789 if (font
->descent
> 0) ul_y
++;
790 gdk_draw_line( m_window
, m_textGC
, x
, ul_y
, x
+ width
, ul_y
);
794 GetTextExtent (text
, &w
, &h
);
795 CalcBoundingBox (x
+ w
, y
+ h
);
796 CalcBoundingBox (x
, y
);
799 bool wxWindowDC::CanGetTextExtent() const
804 void wxWindowDC::GetTextExtent( const wxString
&string
, long *width
, long *height
,
805 long *descent
, long *externalLeading
,
806 wxFont
*theFont
, bool WXUNUSED(use16
) )
808 wxCHECK_RET( Ok(), "invalid window dc" );
810 wxFont fontToUse
= m_font
;
811 if (theFont
) fontToUse
= *theFont
;
813 GdkFont
*font
= fontToUse
.GetInternalFont( m_scaleY
);
814 if (width
) (*width
) = long(gdk_string_width( font
, string
) / m_scaleX
);
815 if (height
) (*height
) = long((font
->ascent
+ font
->descent
) / m_scaleY
);
816 if (descent
) (*descent
) = long(font
->descent
/ m_scaleY
);
817 if (externalLeading
) (*externalLeading
) = 0; // ??
820 long wxWindowDC::GetCharWidth()
822 wxCHECK_MSG( Ok(), 0, "invalid window dc" );
824 GdkFont
*font
= m_font
.GetInternalFont( m_scaleY
);
825 return long(gdk_string_width( font
, "H" ) / m_scaleX
);
828 long wxWindowDC::GetCharHeight()
830 wxCHECK_MSG( Ok(), 0, "invalid window dc" );
832 GdkFont
*font
= m_font
.GetInternalFont( m_scaleY
);
833 return long((font
->ascent
+ font
->descent
) / m_scaleY
);
836 void wxWindowDC::Clear()
838 wxCHECK_RET( Ok(), "invalid window dc" );
842 gdk_window_clear( m_window
);
847 GetSize( &width
, &height
);
848 gdk_draw_rectangle( m_window
, m_bgGC
, TRUE
, 0, 0, width
, height
);
852 void wxWindowDC::SetFont( const wxFont
&font
)
854 wxCHECK_RET( Ok(), "invalid window dc" );
859 void wxWindowDC::SetPen( const wxPen
&pen
)
861 wxCHECK_RET( Ok(), "invalid window dc" );
863 if (m_pen
== pen
) return;
867 if (!m_pen
.Ok()) return;
869 gint width
= m_pen
.GetWidth();
870 // CMB: if width is non-zero scale it with the dc
877 // X doesn't allow different width in x and y and so we take
879 double w
= 0.5 + (abs(XLOG2DEVREL(width
)) + abs(YLOG2DEVREL(width
))) / 2.0;
883 GdkLineStyle lineStyle
= GDK_LINE_SOLID
;
884 switch (m_pen
.GetStyle())
886 case wxSOLID
: { lineStyle
= GDK_LINE_SOLID
; break; }
887 case wxDOT
: { lineStyle
= GDK_LINE_ON_OFF_DASH
; break; }
888 case wxLONG_DASH
: { lineStyle
= GDK_LINE_ON_OFF_DASH
; break; }
889 case wxSHORT_DASH
: { lineStyle
= GDK_LINE_ON_OFF_DASH
; break; }
890 case wxDOT_DASH
: { lineStyle
= GDK_LINE_DOUBLE_DASH
; break; }
893 GdkCapStyle capStyle
= GDK_CAP_ROUND
;
894 switch (m_pen
.GetCap())
896 case wxCAP_ROUND
: { capStyle
= (width
<= 1) ? GDK_CAP_NOT_LAST
: GDK_CAP_ROUND
; break; }
897 case wxCAP_PROJECTING
: { capStyle
= GDK_CAP_PROJECTING
; break; }
898 case wxCAP_BUTT
: { capStyle
= GDK_CAP_BUTT
; break; }
901 GdkJoinStyle joinStyle
= GDK_JOIN_ROUND
;
902 switch (m_pen
.GetJoin())
904 case wxJOIN_BEVEL
: { joinStyle
= GDK_JOIN_BEVEL
; break; }
905 case wxJOIN_ROUND
: { joinStyle
= GDK_JOIN_ROUND
; break; }
906 case wxJOIN_MITER
: { joinStyle
= GDK_JOIN_MITER
; break; }
909 gdk_gc_set_line_attributes( m_penGC
, width
, lineStyle
, capStyle
, joinStyle
);
911 m_pen
.GetColour().CalcPixel( m_cmap
);
912 gdk_gc_set_foreground( m_penGC
, m_pen
.GetColour().GetColor() );
915 void wxWindowDC::SetBrush( const wxBrush
&brush
)
917 wxCHECK_RET( Ok(), "invalid window dc" );
919 if (m_brush
== brush
) return;
923 if (!m_brush
.Ok()) return;
925 m_brush
.GetColour().CalcPixel( m_cmap
);
926 gdk_gc_set_foreground( m_brushGC
, m_brush
.GetColour().GetColor() );
928 GdkFill fillStyle
= GDK_SOLID
;
929 switch (m_brush
.GetStyle())
935 fillStyle
= GDK_STIPPLED
;
938 gdk_gc_set_fill( m_brushGC
, fillStyle
);
940 if (m_brush
.GetStyle() == wxSTIPPLE
)
942 gdk_gc_set_stipple( m_brushGC
, m_brush
.GetStipple()->GetPixmap() );
945 if (IS_HATCH(m_brush
.GetStyle()))
947 int num
= m_brush
.GetStyle() - wxBDIAGONAL_HATCH
;
948 gdk_gc_set_stipple( m_brushGC
, hatches
[num
] );
952 void wxWindowDC::SetBackground( const wxBrush
&brush
)
954 /* CMB 21/7/98: Added SetBackground. Sets background brush
955 * for Clear() and bg colour for shapes filled with cross-hatch brush */
957 wxCHECK_RET( Ok(), "invalid window dc" );
959 if (m_backgroundBrush
== brush
) return;
961 m_backgroundBrush
= brush
;
963 if (!m_backgroundBrush
.Ok()) return;
967 m_owner
->SetBackgroundColour( m_backgroundBrush
.GetColour() );
970 m_backgroundBrush
.GetColour().CalcPixel( m_cmap
);
971 gdk_gc_set_background( m_brushGC
, m_backgroundBrush
.GetColour().GetColor() );
972 gdk_gc_set_background( m_penGC
, m_backgroundBrush
.GetColour().GetColor() );
973 gdk_gc_set_background( m_bgGC
, m_backgroundBrush
.GetColour().GetColor() );
974 gdk_gc_set_foreground( m_bgGC
, m_backgroundBrush
.GetColour().GetColor() );
976 GdkFill fillStyle
= GDK_SOLID
;
977 switch (m_backgroundBrush
.GetStyle())
983 fillStyle
= GDK_STIPPLED
;
986 gdk_gc_set_fill( m_bgGC
, fillStyle
);
988 if (m_backgroundBrush
.GetStyle() == wxSTIPPLE
)
990 gdk_gc_set_stipple( m_bgGC
, m_backgroundBrush
.GetStipple()->GetPixmap() );
993 if (IS_HATCH(m_backgroundBrush
.GetStyle()))
995 int num
= m_backgroundBrush
.GetStyle() - wxBDIAGONAL_HATCH
;
996 gdk_gc_set_stipple( m_bgGC
, hatches
[num
] );
1000 void wxWindowDC::SetLogicalFunction( int function
)
1002 wxCHECK_RET( Ok(), "invalid window dc" );
1004 if (m_logicalFunction
== function
) return;
1006 GdkFunction mode
= GDK_COPY
;
1009 case wxXOR
: mode
= GDK_INVERT
; break;
1010 case wxINVERT
: mode
= GDK_INVERT
; break;
1014 m_logicalFunction
= function
;
1015 gdk_gc_set_function( m_penGC
, mode
);
1016 gdk_gc_set_function( m_brushGC
, mode
);
1017 gdk_gc_set_function( m_textGC
, mode
);
1020 void wxWindowDC::SetTextForeground( const wxColour
&col
)
1022 wxCHECK_RET( Ok(), "invalid window dc" );
1024 if (m_textForegroundColour
== col
) return;
1026 m_textForegroundColour
= col
;
1027 if (!m_textForegroundColour
.Ok()) return;
1029 m_textForegroundColour
.CalcPixel( m_cmap
);
1030 gdk_gc_set_foreground( m_textGC
, m_textForegroundColour
.GetColor() );
1033 void wxWindowDC::SetTextBackground( const wxColour
&col
)
1035 wxCHECK_RET( Ok(), "invalid window dc" );
1037 if (m_textBackgroundColour
== col
) return;
1039 m_textBackgroundColour
= col
;
1040 if (!m_textBackgroundColour
.Ok()) return;
1042 m_textBackgroundColour
.CalcPixel( m_cmap
);
1043 gdk_gc_set_background( m_textGC
, m_textBackgroundColour
.GetColor() );
1046 void wxWindowDC::SetBackgroundMode( int mode
)
1048 wxCHECK_RET( Ok(), "invalid window dc" );
1050 m_backgroundMode
= mode
;
1052 // CMB 21/7/98: fill style of cross-hatch brushes is affected by
1053 // transparent/solid background mode
1055 if (m_brush
.GetStyle() != wxSOLID
&& m_brush
.GetStyle() != wxTRANSPARENT
)
1057 gdk_gc_set_fill( m_brushGC
,
1058 (m_backgroundMode
== wxTRANSPARENT
) ? GDK_STIPPLED
: GDK_OPAQUE_STIPPLED
);
1062 void wxWindowDC::SetPalette( const wxPalette
& WXUNUSED(palette
) )
1064 wxFAIL_MSG( "wxWindowDC::SetPalette not implemented" );
1067 void wxWindowDC::SetClippingRegion( long x
, long y
, long width
, long height
)
1069 wxCHECK_RET( Ok(), "invalid window dc" );
1071 wxDC::SetClippingRegion( x
, y
, width
, height
);
1074 rect
.x
= XLOG2DEV(x
);
1075 rect
.y
= YLOG2DEV(y
);
1076 rect
.width
= XLOG2DEVREL(width
);
1077 rect
.height
= YLOG2DEVREL(height
);
1078 gdk_gc_set_clip_rectangle( m_penGC
, &rect
);
1079 gdk_gc_set_clip_rectangle( m_brushGC
, &rect
);
1080 gdk_gc_set_clip_rectangle( m_textGC
, &rect
);
1081 gdk_gc_set_clip_rectangle( m_bgGC
, &rect
);
1084 void wxWindowDC::SetClippingRegion( const wxRegion
®ion
)
1086 wxCHECK_RET( Ok(), "invalid window dc" );
1090 DestroyClippingRegion();
1094 gdk_gc_set_clip_region( m_penGC
, region
.GetRegion() );
1095 gdk_gc_set_clip_region( m_brushGC
, region
.GetRegion() );
1096 gdk_gc_set_clip_region( m_textGC
, region
.GetRegion() );
1097 gdk_gc_set_clip_region( m_bgGC
, region
.GetRegion() );
1100 void wxWindowDC::DestroyClippingRegion()
1102 wxCHECK_RET( Ok(), "invalid window dc" );
1104 wxDC::DestroyClippingRegion();
1106 gdk_gc_set_clip_rectangle( m_penGC
, (GdkRectangle
*) NULL
);
1107 gdk_gc_set_clip_rectangle( m_brushGC
, (GdkRectangle
*) NULL
);
1108 gdk_gc_set_clip_rectangle( m_textGC
, (GdkRectangle
*) NULL
);
1109 gdk_gc_set_clip_rectangle( m_bgGC
, (GdkRectangle
*) NULL
);
1112 void wxWindowDC::SetUpDC()
1116 m_logicalFunction
= wxCOPY
;
1117 m_penGC
= gdk_gc_new( m_window
);
1118 m_brushGC
= gdk_gc_new( m_window
);
1119 m_textGC
= gdk_gc_new( m_window
);
1120 m_bgGC
= gdk_gc_new( m_window
);
1122 wxColour
tmp_col( m_textForegroundColour
);
1123 m_textForegroundColour
= wxNullColour
;
1124 SetTextForeground( tmp_col
);
1125 tmp_col
= m_textBackgroundColour
;
1126 m_textBackgroundColour
= wxNullColour
;
1127 SetTextBackground( tmp_col
);
1129 wxPen
tmp_pen( m_pen
);
1133 wxFont
tmp_font( m_font
);
1134 m_font
= wxNullFont
;
1135 SetFont( tmp_font
);
1137 wxBrush
tmp_brush( m_brush
);
1138 m_brush
= wxNullBrush
;
1139 SetBrush( tmp_brush
);
1141 tmp_brush
= m_backgroundBrush
;
1142 m_backgroundBrush
= wxNullBrush
;
1143 SetBackground( tmp_brush
);
1147 hatch_bitmap
= hatches
;
1148 hatch_bitmap
[0] = gdk_bitmap_create_from_data( (GdkWindow
*) NULL
, bdiag_bits
, bdiag_width
, bdiag_height
);
1149 hatch_bitmap
[1] = gdk_bitmap_create_from_data( (GdkWindow
*) NULL
, cdiag_bits
, cdiag_width
, cdiag_height
);
1150 hatch_bitmap
[2] = gdk_bitmap_create_from_data( (GdkWindow
*) NULL
, fdiag_bits
, fdiag_width
, fdiag_height
);
1151 hatch_bitmap
[3] = gdk_bitmap_create_from_data( (GdkWindow
*) NULL
, cross_bits
, cross_width
, cross_height
);
1152 hatch_bitmap
[4] = gdk_bitmap_create_from_data( (GdkWindow
*) NULL
, horiz_bits
, horiz_width
, horiz_height
);
1153 hatch_bitmap
[5] = gdk_bitmap_create_from_data( (GdkWindow
*) NULL
, verti_bits
, verti_width
, verti_height
);
1157 void wxWindowDC::Destroy()
1159 if (m_penGC
) gdk_gc_unref( m_penGC
);
1160 m_penGC
= (GdkGC
*) NULL
;
1161 if (m_brushGC
) gdk_gc_unref( m_brushGC
);
1162 m_brushGC
= (GdkGC
*) NULL
;
1163 if (m_textGC
) gdk_gc_unref( m_textGC
);
1164 m_textGC
= (GdkGC
*) NULL
;
1165 if (m_bgGC
) gdk_gc_unref( m_bgGC
);
1166 m_bgGC
= (GdkGC
*) NULL
;
1169 GdkWindow
*wxWindowDC::GetWindow()
1174 // ----------------------------------- spline code ----------------------------------------
1176 void wx_quadratic_spline(double a1
, double b1
, double a2
, double b2
,
1177 double a3
, double b3
, double a4
, double b4
);
1178 void wx_clear_stack();
1179 int wx_spline_pop(double *x1
, double *y1
, double *x2
, double *y2
, double *x3
,
1180 double *y3
, double *x4
, double *y4
);
1181 void wx_spline_push(double x1
, double y1
, double x2
, double y2
, double x3
, double y3
,
1182 double x4
, double y4
);
1183 static bool wx_spline_add_point(double x
, double y
);
1184 static void wx_spline_draw_point_array(wxDC
*dc
);
1186 wxList wx_spline_point_list
;
1188 #define half(z1, z2) ((z1+z2)/2.0)
1191 /* iterative version */
1193 void wx_quadratic_spline(double a1
, double b1
, double a2
, double b2
, double a3
, double b3
, double a4
,
1196 register double xmid
, ymid
;
1197 double x1
, y1
, x2
, y2
, x3
, y3
, x4
, y4
;
1200 wx_spline_push(a1
, b1
, a2
, b2
, a3
, b3
, a4
, b4
);
1202 while (wx_spline_pop(&x1
, &y1
, &x2
, &y2
, &x3
, &y3
, &x4
, &y4
)) {
1203 xmid
= (double)half(x2
, x3
);
1204 ymid
= (double)half(y2
, y3
);
1205 if (fabs(x1
- xmid
) < THRESHOLD
&& fabs(y1
- ymid
) < THRESHOLD
&&
1206 fabs(xmid
- x4
) < THRESHOLD
&& fabs(ymid
- y4
) < THRESHOLD
) {
1207 wx_spline_add_point( x1
, y1
);
1208 wx_spline_add_point( xmid
, ymid
);
1210 wx_spline_push(xmid
, ymid
, (double)half(xmid
, x3
), (double)half(ymid
, y3
),
1211 (double)half(x3
, x4
), (double)half(y3
, y4
), x4
, y4
);
1212 wx_spline_push(x1
, y1
, (double)half(x1
, x2
), (double)half(y1
, y2
),
1213 (double)half(x2
, xmid
), (double)half(y2
, ymid
), xmid
, ymid
);
1218 /* utilities used by spline drawing routines */
1220 typedef struct wx_spline_stack_struct
{
1221 double x1
, y1
, x2
, y2
, x3
, y3
, x4
, y4
;
1224 #define SPLINE_STACK_DEPTH 20
1225 static Stack wx_spline_stack
[SPLINE_STACK_DEPTH
];
1226 static Stack
*wx_stack_top
;
1227 static int wx_stack_count
;
1229 void wx_clear_stack()
1231 wx_stack_top
= wx_spline_stack
;
1235 void wx_spline_push(double x1
, double y1
, double x2
, double y2
, double x3
, double y3
, double x4
, double y4
)
1237 wx_stack_top
->x1
= x1
;
1238 wx_stack_top
->y1
= y1
;
1239 wx_stack_top
->x2
= x2
;
1240 wx_stack_top
->y2
= y2
;
1241 wx_stack_top
->x3
= x3
;
1242 wx_stack_top
->y3
= y3
;
1243 wx_stack_top
->x4
= x4
;
1244 wx_stack_top
->y4
= y4
;
1249 int wx_spline_pop(double *x1
, double *y1
, double *x2
, double *y2
,
1250 double *x3
, double *y3
, double *x4
, double *y4
)
1252 if (wx_stack_count
== 0)
1256 *x1
= wx_stack_top
->x1
;
1257 *y1
= wx_stack_top
->y1
;
1258 *x2
= wx_stack_top
->x2
;
1259 *y2
= wx_stack_top
->y2
;
1260 *x3
= wx_stack_top
->x3
;
1261 *y3
= wx_stack_top
->y3
;
1262 *x4
= wx_stack_top
->x4
;
1263 *y4
= wx_stack_top
->y4
;
1267 static bool wx_spline_add_point(double x
, double y
)
1269 wxPoint
*point
= new wxPoint
;
1272 wx_spline_point_list
.Append((wxObject
*)point
);
1276 static void wx_spline_draw_point_array(wxDC
*dc
)
1278 dc
->DrawLines(&wx_spline_point_list
, 0, 0 );
1279 wxNode
*node
= wx_spline_point_list
.First();
1282 wxPoint
*point
= (wxPoint
*)node
->Data();
1285 node
= wx_spline_point_list
.First();
1289 void wxWindowDC::DrawSpline( wxList
*points
)
1291 wxCHECK_RET( Ok(), "invalid window dc" );
1294 double cx1
, cy1
, cx2
, cy2
, cx3
, cy3
, cx4
, cy4
;
1295 double x1
, y1
, x2
, y2
;
1297 wxNode
*node
= points
->First();
1298 p
= (wxPoint
*)node
->Data();
1303 node
= node
->Next();
1304 p
= (wxPoint
*)node
->Data();
1308 cx1
= (double)((x1
+ x2
) / 2);
1309 cy1
= (double)((y1
+ y2
) / 2);
1310 cx2
= (double)((cx1
+ x2
) / 2);
1311 cy2
= (double)((cy1
+ y2
) / 2);
1313 wx_spline_add_point(x1
, y1
);
1315 while ((node
= node
->Next()) != NULL
)
1317 p
= (wxPoint
*)node
->Data();
1322 cx4
= (double)(x1
+ x2
) / 2;
1323 cy4
= (double)(y1
+ y2
) / 2;
1324 cx3
= (double)(x1
+ cx4
) / 2;
1325 cy3
= (double)(y1
+ cy4
) / 2;
1327 wx_quadratic_spline(cx1
, cy1
, cx2
, cy2
, cx3
, cy3
, cx4
, cy4
);
1331 cx2
= (double)(cx1
+ x2
) / 2;
1332 cy2
= (double)(cy1
+ y2
) / 2;
1335 wx_spline_add_point( cx1
, cy1
);
1336 wx_spline_add_point( x2
, y2
);
1338 wx_spline_draw_point_array( this );
1342 //-----------------------------------------------------------------------------
1344 //-----------------------------------------------------------------------------
1346 IMPLEMENT_DYNAMIC_CLASS(wxPaintDC
,wxWindowDC
)
1348 wxPaintDC::wxPaintDC()
1353 wxPaintDC::wxPaintDC( wxWindow
*win
)
1358 //-----------------------------------------------------------------------------
1360 //-----------------------------------------------------------------------------
1362 IMPLEMENT_DYNAMIC_CLASS(wxClientDC
,wxWindowDC
)
1364 wxClientDC::wxClientDC()
1369 wxClientDC::wxClientDC( wxWindow
*win
)