1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DC_H_BASE_
13 #define _WX_DC_H_BASE_
15 // ----------------------------------------------------------------------------
16 // headers which we must include here
17 // ----------------------------------------------------------------------------
19 #include "wx/object.h" // the base class
21 #include "wx/intl.h" // for wxLayoutDirection
22 #include "wx/cursor.h" // we have member variables of these classes
23 #include "wx/font.h" // so we can't do without them
24 #include "wx/colour.h"
25 #include "wx/bitmap.h" // for wxNullBitmap
28 #include "wx/palette.h"
29 #include "wx/dynarray.h"
32 #include "wx/cmndata.h"
34 #define wxUSE_NEW_DC 1
36 class WXDLLIMPEXP_FWD_CORE wxDC
;
37 class WXDLLIMPEXP_FWD_CORE wxClientDC
;
38 class WXDLLIMPEXP_FWD_CORE wxPaintDC
;
39 class WXDLLIMPEXP_FWD_CORE wxWindowDC
;
40 class WXDLLIMPEXP_FWD_CORE wxScreenDC
;
41 class WXDLLIMPEXP_FWD_CORE wxMemoryDC
;
42 class WXDLLIMPEXP_FWD_CORE wxPrinterDC
;
43 class WXDLLIMPEXP_FWD_CORE wxPrintData
;
45 //-----------------------------------------------------------------------------
46 // wxDrawObject helper class
47 //-----------------------------------------------------------------------------
49 class WXDLLIMPEXP_CORE wxDrawObject
54 : m_isBBoxValid(false)
55 , m_minX(0), m_minY(0), m_maxX(0), m_maxY(0)
58 virtual ~wxDrawObject() { }
60 virtual void Draw(wxDC
&) const { }
62 virtual void CalcBoundingBox(wxCoord x
, wxCoord y
)
66 if ( x
< m_minX
) m_minX
= x
;
67 if ( y
< m_minY
) m_minY
= y
;
68 if ( x
> m_maxX
) m_maxX
= x
;
69 if ( y
> m_maxY
) m_maxY
= y
;
82 void ResetBoundingBox()
84 m_isBBoxValid
= false;
86 m_minX
= m_maxX
= m_minY
= m_maxY
= 0;
89 // Get the final bounding box of the PostScript or Metafile picture.
91 wxCoord
MinX() const { return m_minX
; }
92 wxCoord
MaxX() const { return m_maxX
; }
93 wxCoord
MinY() const { return m_minY
; }
94 wxCoord
MaxY() const { return m_maxY
; }
96 //to define the type of object for derived objects
97 virtual int GetType()=0;
100 //for boundingbox calculation
101 bool m_isBBoxValid
:1;
102 //for boundingbox calculation
103 wxCoord m_minX
, m_minY
, m_maxX
, m_maxY
;
107 //-----------------------------------------------------------------------------
109 //-----------------------------------------------------------------------------
111 class WXDLLIMPEXP_FWD_CORE wxDCImpl
;
113 class WXDLLIMPEXP_CORE wxDCFactory
117 virtual ~wxDCFactory() {}
119 virtual wxDCImpl
* CreateWindowDC( wxWindowDC
*owner
) = 0;
120 virtual wxDCImpl
* CreateWindowDC( wxWindowDC
*owner
, wxWindow
*window
) = 0;
121 virtual wxDCImpl
* CreateClientDC( wxClientDC
*owner
) = 0;
122 virtual wxDCImpl
* CreateClientDC( wxClientDC
*owner
, wxWindow
*window
) = 0;
123 virtual wxDCImpl
* CreatePaintDC( wxPaintDC
*owner
) = 0;
124 virtual wxDCImpl
* CreatePaintDC( wxPaintDC
*owner
, wxWindow
*window
) = 0;
125 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
) = 0;
126 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
, wxBitmap
&bitmap
) = 0;
127 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
, wxDC
*dc
) = 0;
128 virtual wxDCImpl
* CreateScreenDC( wxScreenDC
*owner
) = 0;
129 #if wxUSE_PRINTING_ARCHITECTURE
130 virtual wxDCImpl
* CreatePrinterDC( wxPrinterDC
*owner
, const wxPrintData
&data
) = 0;
133 static void Set(wxDCFactory
*factory
);
134 static wxDCFactory
*Get();
137 static wxDCFactory
*m_factory
;
140 //-----------------------------------------------------------------------------
142 //-----------------------------------------------------------------------------
144 class WXDLLIMPEXP_CORE wxNativeDCFactory
: public wxDCFactory
147 wxNativeDCFactory() {}
149 virtual wxDCImpl
* CreateWindowDC( wxWindowDC
*owner
);
150 virtual wxDCImpl
* CreateWindowDC( wxWindowDC
*owner
, wxWindow
*window
);
151 virtual wxDCImpl
* CreateClientDC( wxClientDC
*owner
);
152 virtual wxDCImpl
* CreateClientDC( wxClientDC
*owner
, wxWindow
*window
);
153 virtual wxDCImpl
* CreatePaintDC( wxPaintDC
*owner
);
154 virtual wxDCImpl
* CreatePaintDC( wxPaintDC
*owner
, wxWindow
*window
);
155 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
);
156 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
, wxBitmap
&bitmap
);
157 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
, wxDC
*dc
);
158 virtual wxDCImpl
* CreateScreenDC( wxScreenDC
*owner
);
159 #if wxUSE_PRINTING_ARCHITECTURE
160 virtual wxDCImpl
* CreatePrinterDC( wxPrinterDC
*owner
, const wxPrintData
&data
);
164 //-----------------------------------------------------------------------------
166 //-----------------------------------------------------------------------------
168 class WXDLLIMPEXP_CORE wxDCImpl
: public wxObject
171 wxDCImpl( wxDC
*owner
);
174 wxDC
*GetOwner() const { return m_owner
; }
176 wxWindow
* GetWindow() const { return m_window
; }
178 virtual bool IsOk() const { return m_ok
; }
180 // query capabilities
182 virtual bool CanDrawBitmap() const = 0;
183 virtual bool CanGetTextExtent() const = 0;
186 virtual void* GetCairoContext() const
191 // query dimension, colour deps, resolution
193 virtual void DoGetSize(int *width
, int *height
) const = 0;
194 void GetSize(int *width
, int *height
) const
196 DoGetSize(width
, height
);
200 wxSize
GetSize() const
207 virtual void DoGetSizeMM(int* width
, int* height
) const = 0;
209 virtual int GetDepth() const = 0;
210 virtual wxSize
GetPPI() const = 0;
212 // Right-To-Left (RTL) modes
214 virtual void SetLayoutDirection(wxLayoutDirection
WXUNUSED(dir
)) { }
215 virtual wxLayoutDirection
GetLayoutDirection() const { return wxLayout_Default
; }
219 virtual bool StartDoc(const wxString
& WXUNUSED(message
)) { return true; }
220 virtual void EndDoc() { }
222 virtual void StartPage() { }
223 virtual void EndPage() { }
225 // flushing the content of this dc immediately eg onto screen
226 virtual void Flush() { }
230 virtual void CalcBoundingBox(wxCoord x
, wxCoord y
)
234 if ( x
< m_minX
) m_minX
= x
;
235 if ( y
< m_minY
) m_minY
= y
;
236 if ( x
> m_maxX
) m_maxX
= x
;
237 if ( y
> m_maxY
) m_maxY
= y
;
241 m_isBBoxValid
= true;
249 void ResetBoundingBox()
251 m_isBBoxValid
= false;
253 m_minX
= m_maxX
= m_minY
= m_maxY
= 0;
256 wxCoord
MinX() const { return m_minX
; }
257 wxCoord
MaxX() const { return m_maxX
; }
258 wxCoord
MinY() const { return m_minY
; }
259 wxCoord
MaxY() const { return m_maxY
; }
261 // setters and getters
263 virtual void SetFont(const wxFont
& font
) = 0;
264 virtual const wxFont
& GetFont() const { return m_font
; }
266 virtual void SetPen(const wxPen
& pen
) = 0;
267 virtual const wxPen
& GetPen() const { return m_pen
; }
269 virtual void SetBrush(const wxBrush
& brush
) = 0;
270 virtual const wxBrush
& GetBrush() const { return m_brush
; }
272 virtual void SetBackground(const wxBrush
& brush
) = 0;
273 virtual const wxBrush
& GetBackground() const { return m_backgroundBrush
; }
275 virtual void SetBackgroundMode(int mode
) = 0;
276 virtual int GetBackgroundMode() const { return m_backgroundMode
; }
278 virtual void SetTextForeground(const wxColour
& colour
)
279 { m_textForegroundColour
= colour
; }
280 virtual const wxColour
& GetTextForeground() const { return m_textForegroundColour
; }
282 virtual void SetTextBackground(const wxColour
& colour
)
283 { m_textBackgroundColour
= colour
; }
284 virtual const wxColour
& GetTextBackground() const { return m_textBackgroundColour
; }
287 virtual void SetPalette(const wxPalette
& palette
) = 0;
288 #endif // wxUSE_PALETTE
292 virtual void SetLogicalFunction(int function
) = 0;
293 virtual int GetLogicalFunction() const { return m_logicalFunction
; }
297 virtual wxCoord
GetCharHeight() const = 0;
298 virtual wxCoord
GetCharWidth() const = 0;
299 virtual void DoGetTextExtent(const wxString
& string
,
300 wxCoord
*x
, wxCoord
*y
,
301 wxCoord
*descent
= NULL
,
302 wxCoord
*externalLeading
= NULL
,
303 const wxFont
*theFont
= NULL
) const = 0;
304 virtual void GetMultiLineTextExtent(const wxString
& string
,
307 wxCoord
*heightLine
= NULL
,
308 const wxFont
*font
= NULL
) const;
309 virtual bool DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const;
313 virtual void Clear() = 0;
317 virtual void DoSetClippingRegion(wxCoord x
, wxCoord y
,
318 wxCoord width
, wxCoord height
) = 0;
319 virtual void DoSetClippingRegionAsRegion(const wxRegion
& region
) = 0;
321 virtual void DoGetClippingBox(wxCoord
*x
, wxCoord
*y
,
322 wxCoord
*w
, wxCoord
*h
) const
329 *w
= m_clipX2
- m_clipX1
;
331 *h
= m_clipY2
- m_clipY1
;
334 virtual void DestroyClippingRegion() { ResetClipping(); }
337 // coordinates conversions and transforms
339 virtual wxCoord
DeviceToLogicalX(wxCoord x
) const;
340 virtual wxCoord
DeviceToLogicalY(wxCoord y
) const;
341 virtual wxCoord
DeviceToLogicalXRel(wxCoord x
) const;
342 virtual wxCoord
DeviceToLogicalYRel(wxCoord y
) const;
343 virtual wxCoord
LogicalToDeviceX(wxCoord x
) const;
344 virtual wxCoord
LogicalToDeviceY(wxCoord y
) const;
345 virtual wxCoord
LogicalToDeviceXRel(wxCoord x
) const;
346 virtual wxCoord
LogicalToDeviceYRel(wxCoord y
) const;
348 virtual void SetMapMode(int mode
);
349 virtual int GetMapMode() const { return m_mappingMode
; }
351 virtual void SetUserScale(double x
, double y
);
352 virtual void GetUserScale(double *x
, double *y
) const
354 if ( x
) *x
= m_userScaleX
;
355 if ( y
) *y
= m_userScaleY
;
358 virtual void SetLogicalScale(double x
, double y
);
359 virtual void GetLogicalScale(double *x
, double *y
)
361 if ( x
) *x
= m_logicalScaleX
;
362 if ( y
) *y
= m_logicalScaleY
;
365 virtual void SetLogicalOrigin(wxCoord x
, wxCoord y
);
366 virtual void DoGetLogicalOrigin(wxCoord
*x
, wxCoord
*y
) const
368 if ( x
) *x
= m_logicalOriginX
;
369 if ( y
) *y
= m_logicalOriginY
;
372 virtual void SetDeviceOrigin(wxCoord x
, wxCoord y
);
373 virtual void DoGetDeviceOrigin(wxCoord
*x
, wxCoord
*y
) const
375 if ( x
) *x
= m_deviceOriginX
;
376 if ( y
) *y
= m_deviceOriginY
;
379 virtual void SetDeviceLocalOrigin( wxCoord x
, wxCoord y
);
381 virtual void ComputeScaleAndOrigin();
383 // this needs to overidden if the axis is inverted
384 virtual void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
);
386 // ---------------------------------------------------------
387 // the actual drawing API
389 virtual bool DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
390 int style
= wxFLOOD_SURFACE
) = 0;
392 virtual void DoGradientFillLinear(const wxRect
& rect
,
393 const wxColour
& initialColour
,
394 const wxColour
& destColour
,
395 wxDirection nDirection
= wxEAST
);
397 virtual void DoGradientFillConcentric(const wxRect
& rect
,
398 const wxColour
& initialColour
,
399 const wxColour
& destColour
,
400 const wxPoint
& circleCenter
);
402 virtual bool DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const = 0;
404 virtual void DoDrawPoint(wxCoord x
, wxCoord y
) = 0;
405 virtual void DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
) = 0;
407 virtual void DoDrawArc(wxCoord x1
, wxCoord y1
,
408 wxCoord x2
, wxCoord y2
,
409 wxCoord xc
, wxCoord yc
) = 0;
410 virtual void DoDrawCheckMark(wxCoord x
, wxCoord y
,
411 wxCoord width
, wxCoord height
);
412 virtual void DoDrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
413 double sa
, double ea
) = 0;
415 virtual void DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
) = 0;
416 virtual void DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
417 wxCoord width
, wxCoord height
,
419 virtual void DoDrawEllipse(wxCoord x
, wxCoord y
,
420 wxCoord width
, wxCoord height
) = 0;
422 virtual void DoCrossHair(wxCoord x
, wxCoord y
) = 0;
424 virtual void DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
) = 0;
425 virtual void DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
426 bool useMask
= false) = 0;
428 virtual void DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
) = 0;
429 virtual void DoDrawRotatedText(const wxString
& text
,
430 wxCoord x
, wxCoord y
, double angle
) = 0;
432 virtual bool DoBlit(wxCoord xdest
, wxCoord ydest
,
433 wxCoord width
, wxCoord height
,
435 wxCoord xsrc
, wxCoord ysrc
,
437 bool useMask
= false,
438 wxCoord xsrcMask
= wxDefaultCoord
,
439 wxCoord ysrcMask
= wxDefaultCoord
) = 0;
441 virtual bool DoStretchBlit(wxCoord xdest
, wxCoord ydest
,
442 wxCoord dstWidth
, wxCoord dstHeight
,
444 wxCoord xsrc
, wxCoord ysrc
,
445 wxCoord srcWidth
, wxCoord srcHeight
,
447 bool useMask
= false,
448 wxCoord xsrcMask
= wxDefaultCoord
,
449 wxCoord ysrcMask
= wxDefaultCoord
);
451 virtual wxBitmap
DoGetAsBitmap(const wxRect
*WXUNUSED(subrect
)) const
452 { return wxNullBitmap
; }
455 virtual void DoDrawLines(int n
, wxPoint points
[],
456 wxCoord xoffset
, wxCoord yoffset
) = 0;
457 virtual void DrawLines(const wxPointList
*list
,
458 wxCoord xoffset
, wxCoord yoffset
);
460 virtual void DoDrawPolygon(int n
, wxPoint points
[],
461 wxCoord xoffset
, wxCoord yoffset
,
462 int fillStyle
= wxODDEVEN_RULE
) = 0;
463 virtual void DoDrawPolyPolygon(int n
, int count
[], wxPoint points
[],
464 wxCoord xoffset
, wxCoord yoffset
,
466 void DrawPolygon(const wxPointList
*list
,
467 wxCoord xoffset
, wxCoord yoffset
,
472 void DrawSpline(wxCoord x1
, wxCoord y1
,
473 wxCoord x2
, wxCoord y2
,
474 wxCoord x3
, wxCoord y3
);
475 void DrawSpline(int n
, wxPoint points
[]);
476 void DrawSpline(const wxPointList
*points
) { DoDrawSpline(points
); }
478 virtual void DoDrawSpline(const wxPointList
*points
);
481 // ---------------------------------------------------------
482 // wxMemoryDC Impl API
484 virtual void DoSelect(const wxBitmap
& WXUNUSED(bmp
))
487 virtual const wxBitmap
& GetSelectedBitmap() const
488 { return wxNullBitmap
; }
489 virtual wxBitmap
& GetSelectedBitmap()
490 { return wxNullBitmap
; }
492 // ---------------------------------------------------------
493 // wxPrinterDC Impl API
495 virtual wxRect
GetPaperRect()
496 { int w
= 0; int h
= 0; DoGetSize( &w
, &h
); return wxRect(0,0,w
,h
); }
498 virtual int GetResolution()
505 // unset clipping variables (after clipping region was destroyed)
510 m_clipX1
= m_clipX2
= m_clipY1
= m_clipY2
= 0;
514 //! Generic method to draw ellipses, circles and arcs with current pen and brush.
515 /*! \param x Upper left corner of bounding box.
516 * \param y Upper left corner of bounding box.
517 * \param w Width of bounding box.
518 * \param h Height of bounding box.
519 * \param sa Starting angle of arc
520 * (counterclockwise, start at 3 o'clock, 360 is full circle).
521 * \param ea Ending angle of arc.
522 * \param angle Rotation angle, the Arc will be rotated after
523 * calculating begin and end.
525 void DrawEllipticArcRot( wxCoord x
, wxCoord y
,
526 wxCoord width
, wxCoord height
,
527 double sa
= 0, double ea
= 0, double angle
= 0 )
528 { DoDrawEllipticArcRot( x
, y
, width
, height
, sa
, ea
, angle
); }
530 void DrawEllipticArcRot( const wxPoint
& pt
,
532 double sa
= 0, double ea
= 0, double angle
= 0 )
533 { DoDrawEllipticArcRot( pt
.x
, pt
.y
, sz
.x
, sz
.y
, sa
, ea
, angle
); }
535 void DrawEllipticArcRot( const wxRect
& rect
,
536 double sa
= 0, double ea
= 0, double angle
= 0 )
537 { DoDrawEllipticArcRot( rect
.x
, rect
.y
, rect
.width
, rect
.height
, sa
, ea
, angle
); }
539 virtual void DoDrawEllipticArcRot( wxCoord x
, wxCoord y
,
540 wxCoord w
, wxCoord h
,
541 double sa
= 0, double ea
= 0, double angle
= 0 );
543 //! Rotates points around center.
544 /*! This is a quite straight method, it calculates in pixels
545 * and so it produces rounding errors.
546 * \param points The points inside will be rotated.
547 * \param angle Rotating angle (counterclockwise, start at 3 o'clock, 360 is full circle).
548 * \param center Center of rotation.
550 void Rotate( wxPointList
* points
, double angle
, wxPoint center
= wxPoint(0,0) );
552 // used by DrawEllipticArcRot
553 // Careful: wxList gets filled with points you have to delete later.
554 void CalculateEllipticPoints( wxPointList
* points
,
555 wxCoord xStart
, wxCoord yStart
,
556 wxCoord w
, wxCoord h
,
557 double sa
, double ea
);
558 #endif // __WXWINCE__
561 // window on which the DC draws or NULL
568 bool m_isInteractive
:1;
569 bool m_isBBoxValid
:1;
571 // coordinate system variables
573 wxCoord m_logicalOriginX
, m_logicalOriginY
;
574 wxCoord m_deviceOriginX
, m_deviceOriginY
; // Usually 0,0, can be change by user
576 wxCoord m_deviceLocalOriginX
, m_deviceLocalOriginY
; // non-zero if native top-left corner
577 // is not at 0,0. This was the case under
578 // Mac's GrafPorts (coordinate system
579 // used toplevel window's origin) and
580 // e.g. for Postscript, where the native
581 // origin in the bottom left corner.
582 double m_logicalScaleX
, m_logicalScaleY
;
583 double m_userScaleX
, m_userScaleY
;
584 double m_scaleX
, m_scaleY
; // calculated from logical scale and user scale
586 int m_signX
, m_signY
; // Used by SetAxisOrientation() to invert the axes
588 // what is a mm on a screen you don't know the size of?
589 double m_mm_to_pix_x
,
592 // bounding and clipping boxes
593 wxCoord m_minX
, m_minY
, m_maxX
, m_maxY
;
594 wxCoord m_clipX1
, m_clipY1
, m_clipX2
, m_clipY2
;
596 int m_logicalFunction
;
597 int m_backgroundMode
;
602 wxBrush m_backgroundBrush
;
603 wxColour m_textForegroundColour
;
604 wxColour m_textBackgroundColour
;
609 bool m_hasCustomPalette
;
610 #endif // wxUSE_PALETTE
613 DECLARE_ABSTRACT_CLASS(wxDCImpl
)
617 class WXDLLIMPEXP_CORE wxDC
: public wxObject
620 virtual ~wxDC() { delete m_pimpl
; }
624 const wxDCImpl
*GetImpl() const
627 wxWindow
*GetWindow() const
628 { return m_pimpl
->GetWindow(); }
631 { return m_pimpl
&& m_pimpl
->IsOk(); }
633 // query capabilities
635 bool CanDrawBitmap() const
636 { return m_pimpl
->CanDrawBitmap(); }
637 bool CanGetTextExtent() const
638 { return m_pimpl
->CanGetTextExtent(); }
640 // query dimension, colour deps, resolution
642 void GetSize(int *width
, int *height
) const
643 { m_pimpl
->DoGetSize(width
, height
); }
644 wxSize
GetSize() const
645 { return m_pimpl
->GetSize(); }
647 void GetSizeMM(int* width
, int* height
) const
648 { m_pimpl
->DoGetSizeMM(width
, height
); }
649 wxSize
GetSizeMM() const
652 m_pimpl
->DoGetSizeMM(&w
, &h
);
657 { return m_pimpl
->GetDepth(); }
658 wxSize
GetPPI() const
659 { return m_pimpl
->GetPPI(); }
661 virtual int GetResolution()
662 { return m_pimpl
->GetResolution(); }
664 // Right-To-Left (RTL) modes
666 void SetLayoutDirection(wxLayoutDirection dir
)
667 { m_pimpl
->SetLayoutDirection( dir
); }
668 wxLayoutDirection
GetLayoutDirection() const
669 { return m_pimpl
->GetLayoutDirection(); }
673 bool StartDoc(const wxString
& message
)
674 { return m_pimpl
->StartDoc(message
); }
676 { m_pimpl
->EndDoc(); }
679 { m_pimpl
->StartPage(); }
681 { m_pimpl
->EndPage(); }
685 void CalcBoundingBox(wxCoord x
, wxCoord y
)
686 { m_pimpl
->CalcBoundingBox(x
,y
); }
687 void ResetBoundingBox()
688 { m_pimpl
->ResetBoundingBox(); }
691 { return m_pimpl
->MinX(); }
693 { return m_pimpl
->MaxX(); }
695 { return m_pimpl
->MinY(); }
697 { return m_pimpl
->MaxY(); }
699 // setters and getters
701 void SetFont(const wxFont
& font
)
702 { m_pimpl
->SetFont( font
); }
703 const wxFont
& GetFont() const
704 { return m_pimpl
->GetFont(); }
706 void SetPen(const wxPen
& pen
)
707 { m_pimpl
->SetPen( pen
); }
708 const wxPen
& GetPen() const
709 { return m_pimpl
->GetPen(); }
711 void SetBrush(const wxBrush
& brush
)
712 { m_pimpl
->SetBrush( brush
); }
713 const wxBrush
& GetBrush() const
714 { return m_pimpl
->GetBrush(); }
716 void SetBackground(const wxBrush
& brush
)
717 { m_pimpl
->SetBackground( brush
); }
718 const wxBrush
& GetBackground() const
719 { return m_pimpl
->GetBackground(); }
721 void SetBackgroundMode(int mode
)
722 { m_pimpl
->SetBackgroundMode( mode
); }
723 int GetBackgroundMode() const
724 { return m_pimpl
->GetBackgroundMode(); }
726 void SetTextForeground(const wxColour
& colour
)
727 { m_pimpl
->SetTextForeground(colour
); }
728 const wxColour
& GetTextForeground() const
729 { return m_pimpl
->GetTextForeground(); }
731 void SetTextBackground(const wxColour
& colour
)
732 { m_pimpl
->SetTextBackground(colour
); }
733 const wxColour
& GetTextBackground() const
734 { return m_pimpl
->GetTextBackground(); }
737 void SetPalette(const wxPalette
& palette
)
738 { m_pimpl
->SetPalette(palette
); }
739 #endif // wxUSE_PALETTE
743 void SetLogicalFunction(int function
)
744 { m_pimpl
->SetLogicalFunction(function
); }
745 int GetLogicalFunction() const
746 { return m_pimpl
->GetLogicalFunction(); }
750 wxCoord
GetCharHeight() const
751 { return m_pimpl
->GetCharHeight(); }
752 wxCoord
GetCharWidth() const
753 { return m_pimpl
->GetCharWidth(); }
755 void GetTextExtent(const wxString
& string
,
756 wxCoord
*x
, wxCoord
*y
,
757 wxCoord
*descent
= NULL
,
758 wxCoord
*externalLeading
= NULL
,
759 const wxFont
*theFont
= NULL
) const
760 { m_pimpl
->DoGetTextExtent(string
, x
, y
, descent
, externalLeading
, theFont
); }
762 wxSize
GetTextExtent(const wxString
& string
) const
765 m_pimpl
->DoGetTextExtent(string
, &w
, &h
);
769 void GetMultiLineTextExtent(const wxString
& string
,
772 wxCoord
*heightLine
= NULL
,
773 const wxFont
*font
= NULL
) const
774 { m_pimpl
->GetMultiLineTextExtent( string
, width
, height
, heightLine
, font
); }
776 wxSize
GetMultiLineTextExtent(const wxString
& string
) const
779 m_pimpl
->GetMultiLineTextExtent(string
, &w
, &h
);
783 bool GetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const
784 { return m_pimpl
->DoGetPartialTextExtents(text
, widths
); }
789 { m_pimpl
->Clear(); }
793 void SetClippingRegion(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
794 { m_pimpl
->DoSetClippingRegion(x
, y
, width
, height
); }
795 void SetClippingRegion(const wxPoint
& pt
, const wxSize
& sz
)
796 { m_pimpl
->DoSetClippingRegion(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
797 void SetClippingRegion(const wxRect
& rect
)
798 { m_pimpl
->DoSetClippingRegion(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
799 void SetClippingRegion(const wxRegion
& region
)
800 { m_pimpl
->DoSetClippingRegionAsRegion(region
); }
802 void DestroyClippingRegion()
803 { m_pimpl
->DestroyClippingRegion(); }
805 void GetClippingBox(wxCoord
*x
, wxCoord
*y
, wxCoord
*w
, wxCoord
*h
) const
806 { m_pimpl
->DoGetClippingBox(x
, y
, w
, h
); }
807 void GetClippingBox(wxRect
& rect
) const
808 { m_pimpl
->DoGetClippingBox(&rect
.x
, &rect
.y
, &rect
.width
, &rect
.height
); }
810 // coordinates conversions and transforms
812 wxCoord
DeviceToLogicalX(wxCoord x
) const
813 { return m_pimpl
->DeviceToLogicalX(x
); }
814 wxCoord
DeviceToLogicalY(wxCoord y
) const
815 { return m_pimpl
->DeviceToLogicalY(y
); }
816 wxCoord
DeviceToLogicalXRel(wxCoord x
) const
817 { return m_pimpl
->DeviceToLogicalXRel(x
); }
818 wxCoord
DeviceToLogicalYRel(wxCoord y
) const
819 { return m_pimpl
->DeviceToLogicalYRel(y
); }
820 wxCoord
LogicalToDeviceX(wxCoord x
) const
821 { return m_pimpl
->LogicalToDeviceX(x
); }
822 wxCoord
LogicalToDeviceY(wxCoord y
) const
823 { return m_pimpl
->LogicalToDeviceY(y
); }
824 wxCoord
LogicalToDeviceXRel(wxCoord x
) const
825 { return m_pimpl
->LogicalToDeviceXRel(x
); }
826 wxCoord
LogicalToDeviceYRel(wxCoord y
) const
827 { return m_pimpl
->LogicalToDeviceYRel(y
); }
829 void SetMapMode(int mode
)
830 { m_pimpl
->SetMapMode(mode
); }
831 int GetMapMode() const
832 { return m_pimpl
->GetMapMode(); }
834 void SetUserScale(double x
, double y
)
835 { m_pimpl
->SetUserScale(x
,y
); }
836 void GetUserScale(double *x
, double *y
) const
837 { m_pimpl
->GetUserScale( x
, y
); }
839 void SetLogicalScale(double x
, double y
)
840 { m_pimpl
->SetLogicalScale( x
, y
); }
841 void GetLogicalScale(double *x
, double *y
)
842 { m_pimpl
->GetLogicalScale( x
, y
); }
844 void SetLogicalOrigin(wxCoord x
, wxCoord y
)
845 { m_pimpl
->SetLogicalOrigin(x
,y
); }
846 void GetLogicalOrigin(wxCoord
*x
, wxCoord
*y
) const
847 { m_pimpl
->DoGetLogicalOrigin(x
, y
); }
848 wxPoint
GetLogicalOrigin() const
849 { wxCoord x
, y
; m_pimpl
->DoGetLogicalOrigin(&x
, &y
); return wxPoint(x
, y
); }
851 void SetDeviceOrigin(wxCoord x
, wxCoord y
)
852 { m_pimpl
->SetDeviceOrigin( x
, y
); }
853 void GetDeviceOrigin(wxCoord
*x
, wxCoord
*y
) const
854 { m_pimpl
->DoGetDeviceOrigin(x
, y
); }
855 wxPoint
GetDeviceOrigin() const
856 { wxCoord x
, y
; m_pimpl
->DoGetDeviceOrigin(&x
, &y
); return wxPoint(x
, y
); }
858 void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
)
859 { m_pimpl
->SetAxisOrientation(xLeftRight
, yBottomUp
); }
862 void SetDeviceLocalOrigin( wxCoord x
, wxCoord y
)
863 { m_pimpl
->SetDeviceLocalOrigin( x
, y
); }
866 // draw generic object
868 void DrawObject(wxDrawObject
* drawobject
)
870 drawobject
->Draw(*this);
871 CalcBoundingBox(drawobject
->MinX(),drawobject
->MinY());
872 CalcBoundingBox(drawobject
->MaxX(),drawobject
->MaxY());
875 // -----------------------------------------------
876 // the actual drawing API
878 bool FloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
879 int style
= wxFLOOD_SURFACE
)
880 { return m_pimpl
->DoFloodFill(x
, y
, col
, style
); }
881 bool FloodFill(const wxPoint
& pt
, const wxColour
& col
,
882 int style
= wxFLOOD_SURFACE
)
883 { return m_pimpl
->DoFloodFill(pt
.x
, pt
.y
, col
, style
); }
885 // fill the area specified by rect with a radial gradient, starting from
886 // initialColour in the centre of the cercle and fading to destColour.
887 void GradientFillConcentric(const wxRect
& rect
,
888 const wxColour
& initialColour
,
889 const wxColour
& destColour
)
890 { m_pimpl
->DoGradientFillConcentric( rect
, initialColour
, destColour
,
891 wxPoint(rect
.GetWidth() / 2,
892 rect
.GetHeight() / 2)); }
894 void GradientFillConcentric(const wxRect
& rect
,
895 const wxColour
& initialColour
,
896 const wxColour
& destColour
,
897 const wxPoint
& circleCenter
)
898 { m_pimpl
->DoGradientFillConcentric(rect
, initialColour
, destColour
, circleCenter
); }
900 // fill the area specified by rect with a linear gradient
901 void GradientFillLinear(const wxRect
& rect
,
902 const wxColour
& initialColour
,
903 const wxColour
& destColour
,
904 wxDirection nDirection
= wxEAST
)
905 { m_pimpl
->DoGradientFillLinear(rect
, initialColour
, destColour
, nDirection
); }
907 bool GetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
908 { return m_pimpl
->DoGetPixel(x
, y
, col
); }
909 bool GetPixel(const wxPoint
& pt
, wxColour
*col
) const
910 { return m_pimpl
->DoGetPixel(pt
.x
, pt
.y
, col
); }
912 void DrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
913 { m_pimpl
->DoDrawLine(x1
, y1
, x2
, y2
); }
914 void DrawLine(const wxPoint
& pt1
, const wxPoint
& pt2
)
915 { m_pimpl
->DoDrawLine(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
); }
917 void CrossHair(wxCoord x
, wxCoord y
)
918 { m_pimpl
->DoCrossHair(x
, y
); }
919 void CrossHair(const wxPoint
& pt
)
920 { m_pimpl
->DoCrossHair(pt
.x
, pt
.y
); }
922 void DrawArc(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
,
923 wxCoord xc
, wxCoord yc
)
924 { m_pimpl
->DoDrawArc(x1
, y1
, x2
, y2
, xc
, yc
); }
925 void DrawArc(const wxPoint
& pt1
, const wxPoint
& pt2
, const wxPoint
& centre
)
926 { m_pimpl
->DoDrawArc(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
, centre
.x
, centre
.y
); }
928 void DrawCheckMark(wxCoord x
, wxCoord y
,
929 wxCoord width
, wxCoord height
)
930 { m_pimpl
->DoDrawCheckMark(x
, y
, width
, height
); }
931 void DrawCheckMark(const wxRect
& rect
)
932 { m_pimpl
->DoDrawCheckMark(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
934 void DrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
935 double sa
, double ea
)
936 { m_pimpl
->DoDrawEllipticArc(x
, y
, w
, h
, sa
, ea
); }
937 void DrawEllipticArc(const wxPoint
& pt
, const wxSize
& sz
,
938 double sa
, double ea
)
939 { m_pimpl
->DoDrawEllipticArc(pt
.x
, pt
.y
, sz
.x
, sz
.y
, sa
, ea
); }
941 void DrawPoint(wxCoord x
, wxCoord y
)
942 { m_pimpl
->DoDrawPoint(x
, y
); }
943 void DrawPoint(const wxPoint
& pt
)
944 { m_pimpl
->DoDrawPoint(pt
.x
, pt
.y
); }
946 void DrawLines(int n
, wxPoint points
[],
947 wxCoord xoffset
= 0, wxCoord yoffset
= 0)
948 { m_pimpl
->DoDrawLines(n
, points
, xoffset
, yoffset
); }
949 void DrawLines(const wxPointList
*list
,
950 wxCoord xoffset
= 0, wxCoord yoffset
= 0)
951 { m_pimpl
->DrawLines( list
, xoffset
, yoffset
); }
952 #if WXWIN_COMPATIBILITY_2_8
953 wxDEPRECATED( void DrawLines(const wxList
*list
,
954 wxCoord xoffset
= 0, wxCoord yoffset
= 0) );
955 #endif // WXWIN_COMPATIBILITY_2_8
957 void DrawPolygon(int n
, wxPoint points
[],
958 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
959 int fillStyle
= wxODDEVEN_RULE
)
960 { m_pimpl
->DoDrawPolygon(n
, points
, xoffset
, yoffset
, fillStyle
); }
961 void DrawPolygon(const wxPointList
*list
,
962 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
963 int fillStyle
= wxODDEVEN_RULE
)
964 { m_pimpl
->DrawPolygon( list
, xoffset
, yoffset
, fillStyle
); }
965 void DrawPolyPolygon(int n
, int count
[], wxPoint points
[],
966 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
967 int fillStyle
= wxODDEVEN_RULE
)
968 { m_pimpl
->DoDrawPolyPolygon(n
, count
, points
, xoffset
, yoffset
, fillStyle
); }
969 #if WXWIN_COMPATIBILITY_2_8
970 wxDEPRECATED( void DrawPolygon(const wxList
*list
,
971 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
972 int fillStyle
= wxODDEVEN_RULE
) );
973 #endif // WXWIN_COMPATIBILITY_2_8
975 void DrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
976 { m_pimpl
->DoDrawRectangle(x
, y
, width
, height
); }
977 void DrawRectangle(const wxPoint
& pt
, const wxSize
& sz
)
978 { m_pimpl
->DoDrawRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
979 void DrawRectangle(const wxRect
& rect
)
980 { m_pimpl
->DoDrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
982 void DrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
,
984 { m_pimpl
->DoDrawRoundedRectangle(x
, y
, width
, height
, radius
); }
985 void DrawRoundedRectangle(const wxPoint
& pt
, const wxSize
& sz
,
987 { m_pimpl
->DoDrawRoundedRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
, radius
); }
988 void DrawRoundedRectangle(const wxRect
& r
, double radius
)
989 { m_pimpl
->DoDrawRoundedRectangle(r
.x
, r
.y
, r
.width
, r
.height
, radius
); }
991 void DrawCircle(wxCoord x
, wxCoord y
, wxCoord radius
)
992 { m_pimpl
->DoDrawEllipse(x
- radius
, y
- radius
, 2*radius
, 2*radius
); }
993 void DrawCircle(const wxPoint
& pt
, wxCoord radius
)
994 { m_pimpl
->DoDrawEllipse(pt
.x
- radius
, pt
.y
- radius
, 2*radius
, 2*radius
); }
996 void DrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
997 { m_pimpl
->DoDrawEllipse(x
, y
, width
, height
); }
998 void DrawEllipse(const wxPoint
& pt
, const wxSize
& sz
)
999 { m_pimpl
->DoDrawEllipse(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
1000 void DrawEllipse(const wxRect
& rect
)
1001 { m_pimpl
->DoDrawEllipse(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
1003 void DrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
1004 { m_pimpl
->DoDrawIcon(icon
, x
, y
); }
1005 void DrawIcon(const wxIcon
& icon
, const wxPoint
& pt
)
1006 { m_pimpl
->DoDrawIcon(icon
, pt
.x
, pt
.y
); }
1008 void DrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
1009 bool useMask
= false)
1010 { m_pimpl
->DoDrawBitmap(bmp
, x
, y
, useMask
); }
1011 void DrawBitmap(const wxBitmap
&bmp
, const wxPoint
& pt
,
1012 bool useMask
= false)
1013 { m_pimpl
->DoDrawBitmap(bmp
, pt
.x
, pt
.y
, useMask
); }
1015 void DrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
1016 { m_pimpl
->DoDrawText(text
, x
, y
); }
1017 void DrawText(const wxString
& text
, const wxPoint
& pt
)
1018 { m_pimpl
->DoDrawText(text
, pt
.x
, pt
.y
); }
1020 void DrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
, double angle
)
1021 { m_pimpl
->DoDrawRotatedText(text
, x
, y
, angle
); }
1022 void DrawRotatedText(const wxString
& text
, const wxPoint
& pt
, double angle
)
1023 { m_pimpl
->DoDrawRotatedText(text
, pt
.x
, pt
.y
, angle
); }
1025 // this version puts both optional bitmap and the text into the given
1026 // rectangle and aligns is as specified by alignment parameter; it also
1027 // will emphasize the character with the given index if it is != -1 and
1028 // return the bounding rectangle if required
1029 void DrawLabel(const wxString
& text
,
1030 const wxBitmap
& image
,
1032 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
1033 int indexAccel
= -1,
1034 wxRect
*rectBounding
= NULL
);
1036 void DrawLabel(const wxString
& text
, const wxRect
& rect
,
1037 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
1038 int indexAccel
= -1)
1039 { DrawLabel(text
, wxNullBitmap
, rect
, alignment
, indexAccel
); }
1041 bool Blit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
1042 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
1043 int rop
= wxCOPY
, bool useMask
= false, wxCoord xsrcMask
= wxDefaultCoord
, wxCoord ysrcMask
= wxDefaultCoord
)
1045 return m_pimpl
->DoBlit(xdest
, ydest
, width
, height
,
1046 source
, xsrc
, ysrc
, rop
, useMask
, xsrcMask
, ysrcMask
);
1048 bool Blit(const wxPoint
& destPt
, const wxSize
& sz
,
1049 wxDC
*source
, const wxPoint
& srcPt
,
1050 int rop
= wxCOPY
, bool useMask
= false, const wxPoint
& srcPtMask
= wxDefaultPosition
)
1052 return m_pimpl
->DoBlit(destPt
.x
, destPt
.y
, sz
.x
, sz
.y
,
1053 source
, srcPt
.x
, srcPt
.y
, rop
, useMask
, srcPtMask
.x
, srcPtMask
.y
);
1056 bool StretchBlit(wxCoord dstX
, wxCoord dstY
,
1057 wxCoord dstWidth
, wxCoord dstHeight
,
1059 wxCoord srcX
, wxCoord srcY
,
1060 wxCoord srcWidth
, wxCoord srcHeight
,
1061 int rop
= wxCOPY
, bool useMask
= false,
1062 wxCoord srcMaskX
= wxDefaultCoord
, wxCoord srcMaskY
= wxDefaultCoord
)
1064 return m_pimpl
->DoStretchBlit(dstX
, dstY
, dstWidth
, dstHeight
,
1065 source
, srcX
, srcY
, srcWidth
, srcHeight
, rop
, useMask
, srcMaskX
, srcMaskY
);
1067 bool StretchBlit(const wxPoint
& dstPt
, const wxSize
& dstSize
,
1068 wxDC
*source
, const wxPoint
& srcPt
, const wxSize
& srcSize
,
1069 int rop
= wxCOPY
, bool useMask
= false, const wxPoint
& srcMaskPt
= wxDefaultPosition
)
1071 return m_pimpl
->DoStretchBlit(dstPt
.x
, dstPt
.y
, dstSize
.x
, dstSize
.y
,
1072 source
, srcPt
.x
, srcPt
.y
, srcSize
.x
, srcSize
.y
, rop
, useMask
, srcMaskPt
.x
, srcMaskPt
.y
);
1075 wxBitmap
GetAsBitmap(const wxRect
*subrect
= (const wxRect
*) NULL
) const
1077 return m_pimpl
->DoGetAsBitmap(subrect
);
1081 void DrawSpline(wxCoord x1
, wxCoord y1
,
1082 wxCoord x2
, wxCoord y2
,
1083 wxCoord x3
, wxCoord y3
)
1084 { m_pimpl
->DrawSpline(x1
,y1
,x2
,y2
,x3
,y3
); }
1085 void DrawSpline(int n
, wxPoint points
[])
1086 { m_pimpl
->DrawSpline(n
,points
); }
1087 void DrawSpline(const wxPointList
*points
)
1088 { m_pimpl
->DrawSpline(points
); }
1089 #endif // wxUSE_SPLINES
1092 #if WXWIN_COMPATIBILITY_2_8
1093 // for compatibility with the old code when wxCoord was long everywhere
1094 wxDEPRECATED( void GetTextExtent(const wxString
& string
,
1096 long *descent
= NULL
,
1097 long *externalLeading
= NULL
,
1098 const wxFont
*theFont
= NULL
) const );
1099 wxDEPRECATED( void GetLogicalOrigin(long *x
, long *y
) const );
1100 wxDEPRECATED( void GetDeviceOrigin(long *x
, long *y
) const );
1101 wxDEPRECATED( void GetClippingBox(long *x
, long *y
, long *w
, long *h
) const );
1102 #endif // WXWIN_COMPATIBILITY_2_8
1106 // ctor takes ownership of the pointer
1107 wxDC(wxDCImpl
*pimpl
) : m_pimpl(pimpl
) { }
1109 wxDCImpl
* const m_pimpl
;
1112 DECLARE_ABSTRACT_CLASS(wxDC
)
1113 DECLARE_NO_COPY_CLASS(wxDC
)
1116 // ----------------------------------------------------------------------------
1117 // helper class: you can use it to temporarily change the DC text colour and
1118 // restore it automatically when the object goes out of scope
1119 // ----------------------------------------------------------------------------
1121 class WXDLLIMPEXP_CORE wxDCTextColourChanger
1124 wxDCTextColourChanger(wxDC
& dc
) : m_dc(dc
), m_colFgOld() { }
1126 wxDCTextColourChanger(wxDC
& dc
, const wxColour
& col
) : m_dc(dc
)
1131 ~wxDCTextColourChanger()
1133 if ( m_colFgOld
.Ok() )
1134 m_dc
.SetTextForeground(m_colFgOld
);
1137 void Set(const wxColour
& col
)
1139 if ( !m_colFgOld
.Ok() )
1140 m_colFgOld
= m_dc
.GetTextForeground();
1141 m_dc
.SetTextForeground(col
);
1147 wxColour m_colFgOld
;
1149 DECLARE_NO_COPY_CLASS(wxDCTextColourChanger
)
1152 // ----------------------------------------------------------------------------
1153 // helper class: you can use it to temporarily change the DC pen and
1154 // restore it automatically when the object goes out of scope
1155 // ----------------------------------------------------------------------------
1157 class WXDLLIMPEXP_CORE wxDCPenChanger
1160 wxDCPenChanger(wxDC
& dc
, const wxPen
& pen
) : m_dc(dc
), m_penOld(dc
.GetPen())
1167 if ( m_penOld
.Ok() )
1168 m_dc
.SetPen(m_penOld
);
1176 DECLARE_NO_COPY_CLASS(wxDCPenChanger
)
1179 // ----------------------------------------------------------------------------
1180 // helper class: you can use it to temporarily change the DC brush and
1181 // restore it automatically when the object goes out of scope
1182 // ----------------------------------------------------------------------------
1184 class WXDLLIMPEXP_CORE wxDCBrushChanger
1187 wxDCBrushChanger(wxDC
& dc
, const wxBrush
& brush
) : m_dc(dc
), m_brushOld(dc
.GetBrush())
1189 m_dc
.SetBrush(brush
);
1194 if ( m_brushOld
.Ok() )
1195 m_dc
.SetBrush(m_brushOld
);
1203 DECLARE_NO_COPY_CLASS(wxDCBrushChanger
)
1206 // ----------------------------------------------------------------------------
1207 // another small helper class: sets the clipping region in its ctor and
1208 // destroys it in the dtor
1209 // ----------------------------------------------------------------------------
1211 class WXDLLIMPEXP_CORE wxDCClipper
1214 wxDCClipper(wxDC
& dc
, const wxRegion
& r
) : m_dc(dc
)
1215 { dc
.SetClippingRegion(r
); }
1216 wxDCClipper(wxDC
& dc
, const wxRect
& r
) : m_dc(dc
)
1217 { dc
.SetClippingRegion(r
.x
, r
.y
, r
.width
, r
.height
); }
1218 wxDCClipper(wxDC
& dc
, wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
) : m_dc(dc
)
1219 { dc
.SetClippingRegion(x
, y
, w
, h
); }
1221 ~wxDCClipper() { m_dc
.DestroyClippingRegion(); }
1226 DECLARE_NO_COPY_CLASS(wxDCClipper
)
1229 #endif // _WX_DC_H_BASE_