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/region.h"
33 #include "wx/affinematrix2d.h"
35 #define wxUSE_NEW_DC 1
37 class WXDLLIMPEXP_FWD_CORE wxDC
;
38 class WXDLLIMPEXP_FWD_CORE wxClientDC
;
39 class WXDLLIMPEXP_FWD_CORE wxPaintDC
;
40 class WXDLLIMPEXP_FWD_CORE wxWindowDC
;
41 class WXDLLIMPEXP_FWD_CORE wxScreenDC
;
42 class WXDLLIMPEXP_FWD_CORE wxMemoryDC
;
43 class WXDLLIMPEXP_FWD_CORE wxPrinterDC
;
44 class WXDLLIMPEXP_FWD_CORE wxPrintData
;
47 enum wxRasterOperationMode
52 wxOR_REVERSE
, // src OR (NOT dst)
53 wxAND_REVERSE
, // src AND (NOT dst)
56 wxAND_INVERT
, // (NOT src) AND dst
58 wxNOR
, // (NOT src) AND (NOT dst)
59 wxEQUIV
, // (NOT src) XOR dst
60 wxSRC_INVERT
, // (NOT src)
61 wxOR_INVERT
, // (NOT src) OR dst
62 wxNAND
, // (NOT src) OR (NOT dst)
65 #if WXWIN_COMPATIBILITY_2_8
66 ,wxROP_BLACK
= wxCLEAR
,
67 wxBLIT_BLACKNESS
= wxCLEAR
,
69 wxBLIT_SRCINVERT
= wxXOR
,
71 wxBLIT_DSTINVERT
= wxINVERT
,
72 wxROP_MERGEPENNOT
= wxOR_REVERSE
,
73 wxBLIT_00DD0228
= wxOR_REVERSE
,
74 wxROP_MASKPENNOT
= wxAND_REVERSE
,
75 wxBLIT_SRCERASE
= wxAND_REVERSE
,
76 wxROP_COPYPEN
= wxCOPY
,
77 wxBLIT_SRCCOPY
= wxCOPY
,
78 wxROP_MASKPEN
= wxAND
,
79 wxBLIT_SRCAND
= wxAND
,
80 wxROP_MASKNOTPEN
= wxAND_INVERT
,
81 wxBLIT_00220326
= wxAND_INVERT
,
83 wxBLIT_00AA0029
= wxNO_OP
,
84 wxROP_NOTMERGEPEN
= wxNOR
,
85 wxBLIT_NOTSRCERASE
= wxNOR
,
86 wxROP_NOTXORPEN
= wxEQUIV
,
87 wxBLIT_00990066
= wxEQUIV
,
88 wxROP_NOTCOPYPEN
= wxSRC_INVERT
,
89 wxBLIT_NOTSCRCOPY
= wxSRC_INVERT
,
90 wxROP_MERGENOTPEN
= wxOR_INVERT
,
91 wxBLIT_MERGEPAINT
= wxOR_INVERT
,
92 wxROP_NOTMASKPEN
= wxNAND
,
93 wxBLIT_007700E6
= wxNAND
,
94 wxROP_MERGEPEN
= wxOR
,
95 wxBLIT_SRCPAINT
= wxOR
,
97 wxBLIT_WHITENESS
= wxSET
98 #endif //WXWIN_COMPATIBILITY_2_8
102 enum wxFloodFillStyle
118 // Description of text characteristics.
131 int height
, // Total character height.
132 ascent
, // Part of the height above the baseline.
133 descent
, // Part of the height below the baseline.
134 internalLeading
, // Intra-line spacing.
135 externalLeading
, // Inter-line spacing.
136 averageWidth
; // Average font width, a.k.a. "x-width".
139 #if WXWIN_COMPATIBILITY_2_8
141 //-----------------------------------------------------------------------------
142 // wxDrawObject helper class
143 //-----------------------------------------------------------------------------
145 class WXDLLIMPEXP_CORE wxDrawObject
148 wxDEPRECATED_CONSTRUCTOR(wxDrawObject
)()
149 : m_isBBoxValid(false)
150 , m_minX(0), m_minY(0), m_maxX(0), m_maxY(0)
153 virtual ~wxDrawObject() { }
155 virtual void Draw(wxDC
&) const { }
157 virtual void CalcBoundingBox(wxCoord x
, wxCoord y
)
161 if ( x
< m_minX
) m_minX
= x
;
162 if ( y
< m_minY
) m_minY
= y
;
163 if ( x
> m_maxX
) m_maxX
= x
;
164 if ( y
> m_maxY
) m_maxY
= y
;
168 m_isBBoxValid
= true;
177 void ResetBoundingBox()
179 m_isBBoxValid
= false;
181 m_minX
= m_maxX
= m_minY
= m_maxY
= 0;
184 // Get the final bounding box of the PostScript or Metafile picture.
186 wxCoord
MinX() const { return m_minX
; }
187 wxCoord
MaxX() const { return m_maxX
; }
188 wxCoord
MinY() const { return m_minY
; }
189 wxCoord
MaxY() const { return m_maxY
; }
191 //to define the type of object for derived objects
192 virtual int GetType()=0;
195 //for boundingbox calculation
196 bool m_isBBoxValid
:1;
197 //for boundingbox calculation
198 wxCoord m_minX
, m_minY
, m_maxX
, m_maxY
;
201 #endif // WXWIN_COMPATIBILITY_2_8
204 //-----------------------------------------------------------------------------
206 //-----------------------------------------------------------------------------
208 class WXDLLIMPEXP_FWD_CORE wxDCImpl
;
210 class WXDLLIMPEXP_CORE wxDCFactory
214 virtual ~wxDCFactory() {}
216 virtual wxDCImpl
* CreateWindowDC( wxWindowDC
*owner
, wxWindow
*window
) = 0;
217 virtual wxDCImpl
* CreateClientDC( wxClientDC
*owner
, wxWindow
*window
) = 0;
218 virtual wxDCImpl
* CreatePaintDC( wxPaintDC
*owner
, wxWindow
*window
) = 0;
219 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
) = 0;
220 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
, wxBitmap
&bitmap
) = 0;
221 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
, wxDC
*dc
) = 0;
222 virtual wxDCImpl
* CreateScreenDC( wxScreenDC
*owner
) = 0;
223 #if wxUSE_PRINTING_ARCHITECTURE
224 virtual wxDCImpl
* CreatePrinterDC( wxPrinterDC
*owner
, const wxPrintData
&data
) = 0;
227 static void Set(wxDCFactory
*factory
);
228 static wxDCFactory
*Get();
231 static wxDCFactory
*m_factory
;
234 //-----------------------------------------------------------------------------
236 //-----------------------------------------------------------------------------
238 class WXDLLIMPEXP_CORE wxNativeDCFactory
: public wxDCFactory
241 wxNativeDCFactory() {}
243 virtual wxDCImpl
* CreateWindowDC( wxWindowDC
*owner
, wxWindow
*window
);
244 virtual wxDCImpl
* CreateClientDC( wxClientDC
*owner
, wxWindow
*window
);
245 virtual wxDCImpl
* CreatePaintDC( wxPaintDC
*owner
, wxWindow
*window
);
246 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
);
247 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
, wxBitmap
&bitmap
);
248 virtual wxDCImpl
* CreateMemoryDC( wxMemoryDC
*owner
, wxDC
*dc
);
249 virtual wxDCImpl
* CreateScreenDC( wxScreenDC
*owner
);
250 #if wxUSE_PRINTING_ARCHITECTURE
251 virtual wxDCImpl
* CreatePrinterDC( wxPrinterDC
*owner
, const wxPrintData
&data
);
255 //-----------------------------------------------------------------------------
257 //-----------------------------------------------------------------------------
259 class WXDLLIMPEXP_CORE wxDCImpl
: public wxObject
262 wxDCImpl( wxDC
*owner
);
265 wxDC
*GetOwner() const { return m_owner
; }
267 wxWindow
* GetWindow() const { return m_window
; }
269 virtual bool IsOk() const { return m_ok
; }
271 // query capabilities
273 virtual bool CanDrawBitmap() const = 0;
274 virtual bool CanGetTextExtent() const = 0;
277 virtual void* GetCairoContext() const
282 // query dimension, colour deps, resolution
284 virtual void DoGetSize(int *width
, int *height
) const = 0;
285 void GetSize(int *width
, int *height
) const
287 DoGetSize(width
, height
);
291 wxSize
GetSize() const
298 virtual void DoGetSizeMM(int* width
, int* height
) const = 0;
300 virtual int GetDepth() const = 0;
301 virtual wxSize
GetPPI() const = 0;
303 // Right-To-Left (RTL) modes
305 virtual void SetLayoutDirection(wxLayoutDirection
WXUNUSED(dir
)) { }
306 virtual wxLayoutDirection
GetLayoutDirection() const { return wxLayout_Default
; }
310 virtual bool StartDoc(const wxString
& WXUNUSED(message
)) { return true; }
311 virtual void EndDoc() { }
313 virtual void StartPage() { }
314 virtual void EndPage() { }
316 // flushing the content of this dc immediately eg onto screen
317 virtual void Flush() { }
321 virtual void CalcBoundingBox(wxCoord x
, wxCoord y
)
325 if ( x
< m_minX
) m_minX
= x
;
326 if ( y
< m_minY
) m_minY
= y
;
327 if ( x
> m_maxX
) m_maxX
= x
;
328 if ( y
> m_maxY
) m_maxY
= y
;
332 m_isBBoxValid
= true;
340 void ResetBoundingBox()
342 m_isBBoxValid
= false;
344 m_minX
= m_maxX
= m_minY
= m_maxY
= 0;
347 wxCoord
MinX() const { return m_minX
; }
348 wxCoord
MaxX() const { return m_maxX
; }
349 wxCoord
MinY() const { return m_minY
; }
350 wxCoord
MaxY() const { return m_maxY
; }
352 // setters and getters
354 virtual void SetFont(const wxFont
& font
) = 0;
355 virtual const wxFont
& GetFont() const { return m_font
; }
357 virtual void SetPen(const wxPen
& pen
) = 0;
358 virtual const wxPen
& GetPen() const { return m_pen
; }
360 virtual void SetBrush(const wxBrush
& brush
) = 0;
361 virtual const wxBrush
& GetBrush() const { return m_brush
; }
363 virtual void SetBackground(const wxBrush
& brush
) = 0;
364 virtual const wxBrush
& GetBackground() const { return m_backgroundBrush
; }
366 virtual void SetBackgroundMode(int mode
) = 0;
367 virtual int GetBackgroundMode() const { return m_backgroundMode
; }
369 virtual void SetTextForeground(const wxColour
& colour
)
370 { m_textForegroundColour
= colour
; }
371 virtual const wxColour
& GetTextForeground() const
372 { return m_textForegroundColour
; }
374 virtual void SetTextBackground(const wxColour
& colour
)
375 { m_textBackgroundColour
= colour
; }
376 virtual const wxColour
& GetTextBackground() const
377 { return m_textBackgroundColour
; }
380 virtual void SetPalette(const wxPalette
& palette
) = 0;
381 #endif // wxUSE_PALETTE
383 // inherit the DC attributes (font and colours) from the given window
385 // this is called automatically when a window, client or paint DC is
387 virtual void InheritAttributes(wxWindow
*win
);
392 virtual void SetLogicalFunction(wxRasterOperationMode function
) = 0;
393 virtual wxRasterOperationMode
GetLogicalFunction() const
394 { return m_logicalFunction
; }
398 virtual wxCoord
GetCharHeight() const = 0;
399 virtual wxCoord
GetCharWidth() const = 0;
401 // The derived classes should really override DoGetFontMetrics() to return
402 // the correct values in the future but for now provide a default
403 // implementation in terms of DoGetTextExtent() to avoid breaking the
404 // compilation of all other ports as wxMSW is the only one to implement it.
405 virtual void DoGetFontMetrics(int *height
,
408 int *internalLeading
,
409 int *externalLeading
,
410 int *averageWidth
) const;
412 virtual void DoGetTextExtent(const wxString
& string
,
413 wxCoord
*x
, wxCoord
*y
,
414 wxCoord
*descent
= NULL
,
415 wxCoord
*externalLeading
= NULL
,
416 const wxFont
*theFont
= NULL
) const = 0;
417 virtual void GetMultiLineTextExtent(const wxString
& string
,
420 wxCoord
*heightLine
= NULL
,
421 const wxFont
*font
= NULL
) const;
422 virtual bool DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const;
426 virtual void Clear() = 0;
430 virtual void DoSetClippingRegion(wxCoord x
, wxCoord y
,
431 wxCoord width
, wxCoord height
) = 0;
433 // NB: this function works with device coordinates, not the logical ones!
434 virtual void DoSetDeviceClippingRegion(const wxRegion
& region
) = 0;
436 virtual void DoGetClippingBox(wxCoord
*x
, wxCoord
*y
,
437 wxCoord
*w
, wxCoord
*h
) const
444 *w
= m_clipX2
- m_clipX1
;
446 *h
= m_clipY2
- m_clipY1
;
449 virtual void DestroyClippingRegion() { ResetClipping(); }
452 // coordinates conversions and transforms
454 virtual wxCoord
DeviceToLogicalX(wxCoord x
) const;
455 virtual wxCoord
DeviceToLogicalY(wxCoord y
) const;
456 virtual wxCoord
DeviceToLogicalXRel(wxCoord x
) const;
457 virtual wxCoord
DeviceToLogicalYRel(wxCoord y
) const;
458 virtual wxCoord
LogicalToDeviceX(wxCoord x
) const;
459 virtual wxCoord
LogicalToDeviceY(wxCoord y
) const;
460 virtual wxCoord
LogicalToDeviceXRel(wxCoord x
) const;
461 virtual wxCoord
LogicalToDeviceYRel(wxCoord y
) const;
463 virtual void SetMapMode(wxMappingMode mode
);
464 virtual wxMappingMode
GetMapMode() const { return m_mappingMode
; }
466 virtual void SetUserScale(double x
, double y
);
467 virtual void GetUserScale(double *x
, double *y
) const
469 if ( x
) *x
= m_userScaleX
;
470 if ( y
) *y
= m_userScaleY
;
473 virtual void SetLogicalScale(double x
, double y
);
474 virtual void GetLogicalScale(double *x
, double *y
)
476 if ( x
) *x
= m_logicalScaleX
;
477 if ( y
) *y
= m_logicalScaleY
;
480 virtual void SetLogicalOrigin(wxCoord x
, wxCoord y
);
481 virtual void DoGetLogicalOrigin(wxCoord
*x
, wxCoord
*y
) const
483 if ( x
) *x
= m_logicalOriginX
;
484 if ( y
) *y
= m_logicalOriginY
;
487 virtual void SetDeviceOrigin(wxCoord x
, wxCoord y
);
488 virtual void DoGetDeviceOrigin(wxCoord
*x
, wxCoord
*y
) const
490 if ( x
) *x
= m_deviceOriginX
;
491 if ( y
) *y
= m_deviceOriginY
;
494 #if wxUSE_DC_TRANSFORM_MATRIX
495 // Transform matrix support is not available in most ports right now
496 // (currently only wxMSW provides it) so do nothing in these methods by
498 virtual bool CanUseTransformMatrix() const
500 virtual bool SetTransformMatrix(const wxAffineMatrix2D
& WXUNUSED(matrix
))
502 virtual wxAffineMatrix2D
GetTransformMatrix() const
503 { return wxAffineMatrix2D(); }
504 virtual void ResetTransformMatrix()
506 #endif // wxUSE_DC_TRANSFORM_MATRIX
508 virtual void SetDeviceLocalOrigin( wxCoord x
, wxCoord y
);
510 virtual void ComputeScaleAndOrigin();
512 // this needs to overidden if the axis is inverted
513 virtual void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
);
516 // Native Windows functions using the underlying HDC don't honour GDI+
517 // transformations which may be applied to it. Using this function we can
518 // transform the coordinates manually before passing them to such functions
519 // (as in e.g. wxRendererMSW code). It doesn't do anything if this is not a
521 virtual wxRect
MSWApplyGDIPlusTransform(const wxRect
& r
) const
528 // ---------------------------------------------------------
529 // the actual drawing API
531 virtual bool DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
532 wxFloodFillStyle style
= wxFLOOD_SURFACE
) = 0;
534 virtual void DoGradientFillLinear(const wxRect
& rect
,
535 const wxColour
& initialColour
,
536 const wxColour
& destColour
,
537 wxDirection nDirection
= wxEAST
);
539 virtual void DoGradientFillConcentric(const wxRect
& rect
,
540 const wxColour
& initialColour
,
541 const wxColour
& destColour
,
542 const wxPoint
& circleCenter
);
544 virtual bool DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const = 0;
546 virtual void DoDrawPoint(wxCoord x
, wxCoord y
) = 0;
547 virtual void DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
) = 0;
549 virtual void DoDrawArc(wxCoord x1
, wxCoord y1
,
550 wxCoord x2
, wxCoord y2
,
551 wxCoord xc
, wxCoord yc
) = 0;
552 virtual void DoDrawCheckMark(wxCoord x
, wxCoord y
,
553 wxCoord width
, wxCoord height
);
554 virtual void DoDrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
555 double sa
, double ea
) = 0;
557 virtual void DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
) = 0;
558 virtual void DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
559 wxCoord width
, wxCoord height
,
561 virtual void DoDrawEllipse(wxCoord x
, wxCoord y
,
562 wxCoord width
, wxCoord height
) = 0;
564 virtual void DoCrossHair(wxCoord x
, wxCoord y
) = 0;
566 virtual void DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
) = 0;
567 virtual void DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
568 bool useMask
= false) = 0;
570 virtual void DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
) = 0;
571 virtual void DoDrawRotatedText(const wxString
& text
,
572 wxCoord x
, wxCoord y
, double angle
) = 0;
574 virtual bool DoBlit(wxCoord xdest
, wxCoord ydest
,
575 wxCoord width
, wxCoord height
,
577 wxCoord xsrc
, wxCoord ysrc
,
578 wxRasterOperationMode rop
= wxCOPY
,
579 bool useMask
= false,
580 wxCoord xsrcMask
= wxDefaultCoord
,
581 wxCoord ysrcMask
= wxDefaultCoord
) = 0;
583 virtual bool DoStretchBlit(wxCoord xdest
, wxCoord ydest
,
584 wxCoord dstWidth
, wxCoord dstHeight
,
586 wxCoord xsrc
, wxCoord ysrc
,
587 wxCoord srcWidth
, wxCoord srcHeight
,
588 wxRasterOperationMode rop
= wxCOPY
,
589 bool useMask
= false,
590 wxCoord xsrcMask
= wxDefaultCoord
,
591 wxCoord ysrcMask
= wxDefaultCoord
);
593 virtual wxBitmap
DoGetAsBitmap(const wxRect
*WXUNUSED(subrect
)) const
594 { return wxNullBitmap
; }
597 virtual void DoDrawLines(int n
, wxPoint points
[],
598 wxCoord xoffset
, wxCoord yoffset
) = 0;
599 virtual void DrawLines(const wxPointList
*list
,
600 wxCoord xoffset
, wxCoord yoffset
);
602 virtual void DoDrawPolygon(int n
, wxPoint points
[],
603 wxCoord xoffset
, wxCoord yoffset
,
604 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
) = 0;
605 virtual void DoDrawPolyPolygon(int n
, int count
[], wxPoint points
[],
606 wxCoord xoffset
, wxCoord yoffset
,
607 wxPolygonFillMode fillStyle
);
608 void DrawPolygon(const wxPointList
*list
,
609 wxCoord xoffset
, wxCoord yoffset
,
610 wxPolygonFillMode fillStyle
);
614 void DrawSpline(wxCoord x1
, wxCoord y1
,
615 wxCoord x2
, wxCoord y2
,
616 wxCoord x3
, wxCoord y3
);
617 void DrawSpline(int n
, wxPoint points
[]);
618 void DrawSpline(const wxPointList
*points
) { DoDrawSpline(points
); }
620 virtual void DoDrawSpline(const wxPointList
*points
);
623 // ---------------------------------------------------------
624 // wxMemoryDC Impl API
626 virtual void DoSelect(const wxBitmap
& WXUNUSED(bmp
))
629 virtual const wxBitmap
& GetSelectedBitmap() const
630 { return wxNullBitmap
; }
631 virtual wxBitmap
& GetSelectedBitmap()
632 { return wxNullBitmap
; }
634 // ---------------------------------------------------------
635 // wxPrinterDC Impl API
637 virtual wxRect
GetPaperRect() const
638 { int w
= 0; int h
= 0; DoGetSize( &w
, &h
); return wxRect(0,0,w
,h
); }
640 virtual int GetResolution() const
647 // unset clipping variables (after clipping region was destroyed)
652 m_clipX1
= m_clipX2
= m_clipY1
= m_clipY2
= 0;
656 //! Generic method to draw ellipses, circles and arcs with current pen and brush.
657 /*! \param x Upper left corner of bounding box.
658 * \param y Upper left corner of bounding box.
659 * \param w Width of bounding box.
660 * \param h Height of bounding box.
661 * \param sa Starting angle of arc
662 * (counterclockwise, start at 3 o'clock, 360 is full circle).
663 * \param ea Ending angle of arc.
664 * \param angle Rotation angle, the Arc will be rotated after
665 * calculating begin and end.
667 void DrawEllipticArcRot( wxCoord x
, wxCoord y
,
668 wxCoord width
, wxCoord height
,
669 double sa
= 0, double ea
= 0, double angle
= 0 )
670 { DoDrawEllipticArcRot( x
, y
, width
, height
, sa
, ea
, angle
); }
672 void DrawEllipticArcRot( const wxPoint
& pt
,
674 double sa
= 0, double ea
= 0, double angle
= 0 )
675 { DoDrawEllipticArcRot( pt
.x
, pt
.y
, sz
.x
, sz
.y
, sa
, ea
, angle
); }
677 void DrawEllipticArcRot( const wxRect
& rect
,
678 double sa
= 0, double ea
= 0, double angle
= 0 )
679 { DoDrawEllipticArcRot( rect
.x
, rect
.y
, rect
.width
, rect
.height
, sa
, ea
, angle
); }
681 virtual void DoDrawEllipticArcRot( wxCoord x
, wxCoord y
,
682 wxCoord w
, wxCoord h
,
683 double sa
= 0, double ea
= 0, double angle
= 0 );
685 //! Rotates points around center.
686 /*! This is a quite straight method, it calculates in pixels
687 * and so it produces rounding errors.
688 * \param points The points inside will be rotated.
689 * \param angle Rotating angle (counterclockwise, start at 3 o'clock, 360 is full circle).
690 * \param center Center of rotation.
692 void Rotate( wxPointList
* points
, double angle
, wxPoint center
= wxPoint(0,0) );
694 // used by DrawEllipticArcRot
695 // Careful: wxList gets filled with points you have to delete later.
696 void CalculateEllipticPoints( wxPointList
* points
,
697 wxCoord xStart
, wxCoord yStart
,
698 wxCoord w
, wxCoord h
,
699 double sa
, double ea
);
700 #endif // __WXWINCE__
702 // returns adjustment factor for converting wxFont "point size"; in wx
703 // it is point size on screen and needs to be multiplied by this value
704 // for rendering on higher-resolution DCs such as printer ones
705 static float GetFontPointSizeAdjustment(float dpi
);
707 // window on which the DC draws or NULL
714 bool m_isInteractive
:1;
715 bool m_isBBoxValid
:1;
717 // coordinate system variables
719 wxCoord m_logicalOriginX
, m_logicalOriginY
;
720 wxCoord m_deviceOriginX
, m_deviceOriginY
; // Usually 0,0, can be change by user
722 wxCoord m_deviceLocalOriginX
, m_deviceLocalOriginY
; // non-zero if native top-left corner
723 // is not at 0,0. This was the case under
724 // Mac's GrafPorts (coordinate system
725 // used toplevel window's origin) and
726 // e.g. for Postscript, where the native
727 // origin in the bottom left corner.
728 double m_logicalScaleX
, m_logicalScaleY
;
729 double m_userScaleX
, m_userScaleY
;
730 double m_scaleX
, m_scaleY
; // calculated from logical scale and user scale
732 int m_signX
, m_signY
; // Used by SetAxisOrientation() to invert the axes
734 // what is a mm on a screen you don't know the size of?
735 double m_mm_to_pix_x
,
738 // bounding and clipping boxes
739 wxCoord m_minX
, m_minY
, m_maxX
, m_maxY
;
740 wxCoord m_clipX1
, m_clipY1
, m_clipX2
, m_clipY2
;
742 wxRasterOperationMode m_logicalFunction
;
743 int m_backgroundMode
;
744 wxMappingMode m_mappingMode
;
748 wxBrush m_backgroundBrush
;
749 wxColour m_textForegroundColour
;
750 wxColour m_textBackgroundColour
;
755 bool m_hasCustomPalette
;
756 #endif // wxUSE_PALETTE
759 DECLARE_ABSTRACT_CLASS(wxDCImpl
)
763 class WXDLLIMPEXP_CORE wxDC
: public wxObject
766 // copy attributes (font, colours and writing direction) from another DC
767 void CopyAttributes(const wxDC
& dc
);
769 virtual ~wxDC() { delete m_pimpl
; }
773 const wxDCImpl
*GetImpl() const
776 wxWindow
*GetWindow() const
777 { return m_pimpl
->GetWindow(); }
780 { return m_pimpl
&& m_pimpl
->IsOk(); }
782 // query capabilities
784 bool CanDrawBitmap() const
785 { return m_pimpl
->CanDrawBitmap(); }
786 bool CanGetTextExtent() const
787 { return m_pimpl
->CanGetTextExtent(); }
789 // query dimension, colour deps, resolution
791 void GetSize(int *width
, int *height
) const
792 { m_pimpl
->DoGetSize(width
, height
); }
793 wxSize
GetSize() const
794 { return m_pimpl
->GetSize(); }
796 void GetSizeMM(int* width
, int* height
) const
797 { m_pimpl
->DoGetSizeMM(width
, height
); }
798 wxSize
GetSizeMM() const
801 m_pimpl
->DoGetSizeMM(&w
, &h
);
806 { return m_pimpl
->GetDepth(); }
807 wxSize
GetPPI() const
808 { return m_pimpl
->GetPPI(); }
810 virtual int GetResolution() const
811 { return m_pimpl
->GetResolution(); }
813 // Right-To-Left (RTL) modes
815 void SetLayoutDirection(wxLayoutDirection dir
)
816 { m_pimpl
->SetLayoutDirection( dir
); }
817 wxLayoutDirection
GetLayoutDirection() const
818 { return m_pimpl
->GetLayoutDirection(); }
822 bool StartDoc(const wxString
& message
)
823 { return m_pimpl
->StartDoc(message
); }
825 { m_pimpl
->EndDoc(); }
828 { m_pimpl
->StartPage(); }
830 { m_pimpl
->EndPage(); }
834 void CalcBoundingBox(wxCoord x
, wxCoord y
)
835 { m_pimpl
->CalcBoundingBox(x
,y
); }
836 void ResetBoundingBox()
837 { m_pimpl
->ResetBoundingBox(); }
840 { return m_pimpl
->MinX(); }
842 { return m_pimpl
->MaxX(); }
844 { return m_pimpl
->MinY(); }
846 { return m_pimpl
->MaxY(); }
848 // setters and getters
850 void SetFont(const wxFont
& font
)
851 { m_pimpl
->SetFont( font
); }
852 const wxFont
& GetFont() const
853 { return m_pimpl
->GetFont(); }
855 void SetPen(const wxPen
& pen
)
856 { m_pimpl
->SetPen( pen
); }
857 const wxPen
& GetPen() const
858 { return m_pimpl
->GetPen(); }
860 void SetBrush(const wxBrush
& brush
)
861 { m_pimpl
->SetBrush( brush
); }
862 const wxBrush
& GetBrush() const
863 { return m_pimpl
->GetBrush(); }
865 void SetBackground(const wxBrush
& brush
)
866 { m_pimpl
->SetBackground( brush
); }
867 const wxBrush
& GetBackground() const
868 { return m_pimpl
->GetBackground(); }
870 void SetBackgroundMode(int mode
)
871 { m_pimpl
->SetBackgroundMode( mode
); }
872 int GetBackgroundMode() const
873 { return m_pimpl
->GetBackgroundMode(); }
875 void SetTextForeground(const wxColour
& colour
)
876 { m_pimpl
->SetTextForeground(colour
); }
877 const wxColour
& GetTextForeground() const
878 { return m_pimpl
->GetTextForeground(); }
880 void SetTextBackground(const wxColour
& colour
)
881 { m_pimpl
->SetTextBackground(colour
); }
882 const wxColour
& GetTextBackground() const
883 { return m_pimpl
->GetTextBackground(); }
886 void SetPalette(const wxPalette
& palette
)
887 { m_pimpl
->SetPalette(palette
); }
888 #endif // wxUSE_PALETTE
892 void SetLogicalFunction(wxRasterOperationMode function
)
893 { m_pimpl
->SetLogicalFunction(function
); }
894 wxRasterOperationMode
GetLogicalFunction() const
895 { return m_pimpl
->GetLogicalFunction(); }
899 wxCoord
GetCharHeight() const
900 { return m_pimpl
->GetCharHeight(); }
901 wxCoord
GetCharWidth() const
902 { return m_pimpl
->GetCharWidth(); }
904 wxFontMetrics
GetFontMetrics() const
907 m_pimpl
->DoGetFontMetrics(&fm
.height
, &fm
.ascent
, &fm
.descent
,
908 &fm
.internalLeading
, &fm
.externalLeading
,
913 void GetTextExtent(const wxString
& string
,
914 wxCoord
*x
, wxCoord
*y
,
915 wxCoord
*descent
= NULL
,
916 wxCoord
*externalLeading
= NULL
,
917 const wxFont
*theFont
= NULL
) const
918 { m_pimpl
->DoGetTextExtent(string
, x
, y
, descent
, externalLeading
, theFont
); }
920 wxSize
GetTextExtent(const wxString
& string
) const
923 m_pimpl
->DoGetTextExtent(string
, &w
, &h
);
927 void GetMultiLineTextExtent(const wxString
& string
,
930 wxCoord
*heightLine
= NULL
,
931 const wxFont
*font
= NULL
) const
932 { m_pimpl
->GetMultiLineTextExtent( string
, width
, height
, heightLine
, font
); }
934 wxSize
GetMultiLineTextExtent(const wxString
& string
) const
937 m_pimpl
->GetMultiLineTextExtent(string
, &w
, &h
);
941 bool GetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const
942 { return m_pimpl
->DoGetPartialTextExtents(text
, widths
); }
947 { m_pimpl
->Clear(); }
951 void SetClippingRegion(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
952 { m_pimpl
->DoSetClippingRegion(x
, y
, width
, height
); }
953 void SetClippingRegion(const wxPoint
& pt
, const wxSize
& sz
)
954 { m_pimpl
->DoSetClippingRegion(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
955 void SetClippingRegion(const wxRect
& rect
)
956 { m_pimpl
->DoSetClippingRegion(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
958 // unlike the functions above, the coordinates of the region used in this
959 // one are in device coordinates, not the logical ones
960 void SetDeviceClippingRegion(const wxRegion
& region
)
961 { m_pimpl
->DoSetDeviceClippingRegion(region
); }
963 // this function is deprecated because its name is confusing: you may
964 // expect it to work with logical coordinates but, in fact, it does exactly
965 // the same thing as SetDeviceClippingRegion()
967 // please review the code using it and either replace it with calls to
968 // SetDeviceClippingRegion() or correct it if it was [wrongly] passing
969 // logical coordinates to this function
970 wxDEPRECATED_INLINE(void SetClippingRegion(const wxRegion
& region
),
971 SetDeviceClippingRegion(region
); )
973 void DestroyClippingRegion()
974 { m_pimpl
->DestroyClippingRegion(); }
976 void GetClippingBox(wxCoord
*x
, wxCoord
*y
, wxCoord
*w
, wxCoord
*h
) const
977 { m_pimpl
->DoGetClippingBox(x
, y
, w
, h
); }
978 void GetClippingBox(wxRect
& rect
) const
979 { m_pimpl
->DoGetClippingBox(&rect
.x
, &rect
.y
, &rect
.width
, &rect
.height
); }
981 // coordinates conversions and transforms
983 wxCoord
DeviceToLogicalX(wxCoord x
) const
984 { return m_pimpl
->DeviceToLogicalX(x
); }
985 wxCoord
DeviceToLogicalY(wxCoord y
) const
986 { return m_pimpl
->DeviceToLogicalY(y
); }
987 wxCoord
DeviceToLogicalXRel(wxCoord x
) const
988 { return m_pimpl
->DeviceToLogicalXRel(x
); }
989 wxCoord
DeviceToLogicalYRel(wxCoord y
) const
990 { return m_pimpl
->DeviceToLogicalYRel(y
); }
991 wxCoord
LogicalToDeviceX(wxCoord x
) const
992 { return m_pimpl
->LogicalToDeviceX(x
); }
993 wxCoord
LogicalToDeviceY(wxCoord y
) const
994 { return m_pimpl
->LogicalToDeviceY(y
); }
995 wxCoord
LogicalToDeviceXRel(wxCoord x
) const
996 { return m_pimpl
->LogicalToDeviceXRel(x
); }
997 wxCoord
LogicalToDeviceYRel(wxCoord y
) const
998 { return m_pimpl
->LogicalToDeviceYRel(y
); }
1000 void SetMapMode(wxMappingMode mode
)
1001 { m_pimpl
->SetMapMode(mode
); }
1002 wxMappingMode
GetMapMode() const
1003 { return m_pimpl
->GetMapMode(); }
1005 void SetUserScale(double x
, double y
)
1006 { m_pimpl
->SetUserScale(x
,y
); }
1007 void GetUserScale(double *x
, double *y
) const
1008 { m_pimpl
->GetUserScale( x
, y
); }
1010 void SetLogicalScale(double x
, double y
)
1011 { m_pimpl
->SetLogicalScale( x
, y
); }
1012 void GetLogicalScale(double *x
, double *y
)
1013 { m_pimpl
->GetLogicalScale( x
, y
); }
1015 void SetLogicalOrigin(wxCoord x
, wxCoord y
)
1016 { m_pimpl
->SetLogicalOrigin(x
,y
); }
1017 void GetLogicalOrigin(wxCoord
*x
, wxCoord
*y
) const
1018 { m_pimpl
->DoGetLogicalOrigin(x
, y
); }
1019 wxPoint
GetLogicalOrigin() const
1020 { wxCoord x
, y
; m_pimpl
->DoGetLogicalOrigin(&x
, &y
); return wxPoint(x
, y
); }
1022 void SetDeviceOrigin(wxCoord x
, wxCoord y
)
1023 { m_pimpl
->SetDeviceOrigin( x
, y
); }
1024 void GetDeviceOrigin(wxCoord
*x
, wxCoord
*y
) const
1025 { m_pimpl
->DoGetDeviceOrigin(x
, y
); }
1026 wxPoint
GetDeviceOrigin() const
1027 { wxCoord x
, y
; m_pimpl
->DoGetDeviceOrigin(&x
, &y
); return wxPoint(x
, y
); }
1029 void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
)
1030 { m_pimpl
->SetAxisOrientation(xLeftRight
, yBottomUp
); }
1032 #if wxUSE_DC_TRANSFORM_MATRIX
1033 bool CanUseTransformMatrix() const
1034 { return m_pimpl
->CanUseTransformMatrix(); }
1036 bool SetTransformMatrix(const wxAffineMatrix2D
&matrix
)
1037 { return m_pimpl
->SetTransformMatrix(matrix
); }
1039 wxAffineMatrix2D
GetTransformMatrix() const
1040 { return m_pimpl
->GetTransformMatrix(); }
1042 void ResetTransformMatrix()
1043 { m_pimpl
->ResetTransformMatrix(); }
1044 #endif // wxUSE_DC_TRANSFORM_MATRIX
1047 void SetDeviceLocalOrigin( wxCoord x
, wxCoord y
)
1048 { m_pimpl
->SetDeviceLocalOrigin( x
, y
); }
1051 // -----------------------------------------------
1052 // the actual drawing API
1054 bool FloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
1055 wxFloodFillStyle style
= wxFLOOD_SURFACE
)
1056 { return m_pimpl
->DoFloodFill(x
, y
, col
, style
); }
1057 bool FloodFill(const wxPoint
& pt
, const wxColour
& col
,
1058 wxFloodFillStyle style
= wxFLOOD_SURFACE
)
1059 { return m_pimpl
->DoFloodFill(pt
.x
, pt
.y
, col
, style
); }
1061 // fill the area specified by rect with a radial gradient, starting from
1062 // initialColour in the centre of the cercle and fading to destColour.
1063 void GradientFillConcentric(const wxRect
& rect
,
1064 const wxColour
& initialColour
,
1065 const wxColour
& destColour
)
1066 { m_pimpl
->DoGradientFillConcentric( rect
, initialColour
, destColour
,
1067 wxPoint(rect
.GetWidth() / 2,
1068 rect
.GetHeight() / 2)); }
1070 void GradientFillConcentric(const wxRect
& rect
,
1071 const wxColour
& initialColour
,
1072 const wxColour
& destColour
,
1073 const wxPoint
& circleCenter
)
1074 { m_pimpl
->DoGradientFillConcentric(rect
, initialColour
, destColour
, circleCenter
); }
1076 // fill the area specified by rect with a linear gradient
1077 void GradientFillLinear(const wxRect
& rect
,
1078 const wxColour
& initialColour
,
1079 const wxColour
& destColour
,
1080 wxDirection nDirection
= wxEAST
)
1081 { m_pimpl
->DoGradientFillLinear(rect
, initialColour
, destColour
, nDirection
); }
1083 bool GetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
1084 { return m_pimpl
->DoGetPixel(x
, y
, col
); }
1085 bool GetPixel(const wxPoint
& pt
, wxColour
*col
) const
1086 { return m_pimpl
->DoGetPixel(pt
.x
, pt
.y
, col
); }
1088 void DrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
1089 { m_pimpl
->DoDrawLine(x1
, y1
, x2
, y2
); }
1090 void DrawLine(const wxPoint
& pt1
, const wxPoint
& pt2
)
1091 { m_pimpl
->DoDrawLine(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
); }
1093 void CrossHair(wxCoord x
, wxCoord y
)
1094 { m_pimpl
->DoCrossHair(x
, y
); }
1095 void CrossHair(const wxPoint
& pt
)
1096 { m_pimpl
->DoCrossHair(pt
.x
, pt
.y
); }
1098 void DrawArc(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
,
1099 wxCoord xc
, wxCoord yc
)
1100 { m_pimpl
->DoDrawArc(x1
, y1
, x2
, y2
, xc
, yc
); }
1101 void DrawArc(const wxPoint
& pt1
, const wxPoint
& pt2
, const wxPoint
& centre
)
1102 { m_pimpl
->DoDrawArc(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
, centre
.x
, centre
.y
); }
1104 void DrawCheckMark(wxCoord x
, wxCoord y
,
1105 wxCoord width
, wxCoord height
)
1106 { m_pimpl
->DoDrawCheckMark(x
, y
, width
, height
); }
1107 void DrawCheckMark(const wxRect
& rect
)
1108 { m_pimpl
->DoDrawCheckMark(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
1110 void DrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
1111 double sa
, double ea
)
1112 { m_pimpl
->DoDrawEllipticArc(x
, y
, w
, h
, sa
, ea
); }
1113 void DrawEllipticArc(const wxPoint
& pt
, const wxSize
& sz
,
1114 double sa
, double ea
)
1115 { m_pimpl
->DoDrawEllipticArc(pt
.x
, pt
.y
, sz
.x
, sz
.y
, sa
, ea
); }
1117 void DrawPoint(wxCoord x
, wxCoord y
)
1118 { m_pimpl
->DoDrawPoint(x
, y
); }
1119 void DrawPoint(const wxPoint
& pt
)
1120 { m_pimpl
->DoDrawPoint(pt
.x
, pt
.y
); }
1122 void DrawLines(int n
, wxPoint points
[],
1123 wxCoord xoffset
= 0, wxCoord yoffset
= 0)
1124 { m_pimpl
->DoDrawLines(n
, points
, xoffset
, yoffset
); }
1125 void DrawLines(const wxPointList
*list
,
1126 wxCoord xoffset
= 0, wxCoord yoffset
= 0)
1127 { m_pimpl
->DrawLines( list
, xoffset
, yoffset
); }
1128 #if WXWIN_COMPATIBILITY_2_8
1129 wxDEPRECATED( void DrawLines(const wxList
*list
,
1130 wxCoord xoffset
= 0, wxCoord yoffset
= 0) );
1131 #endif // WXWIN_COMPATIBILITY_2_8
1133 void DrawPolygon(int n
, wxPoint points
[],
1134 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
1135 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
)
1136 { m_pimpl
->DoDrawPolygon(n
, points
, xoffset
, yoffset
, fillStyle
); }
1137 void DrawPolygon(const wxPointList
*list
,
1138 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
1139 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
)
1140 { m_pimpl
->DrawPolygon( list
, xoffset
, yoffset
, fillStyle
); }
1141 void DrawPolyPolygon(int n
, int count
[], wxPoint points
[],
1142 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
1143 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
)
1144 { m_pimpl
->DoDrawPolyPolygon(n
, count
, points
, xoffset
, yoffset
, fillStyle
); }
1145 #if WXWIN_COMPATIBILITY_2_8
1146 wxDEPRECATED( void DrawPolygon(const wxList
*list
,
1147 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
1148 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
) );
1149 #endif // WXWIN_COMPATIBILITY_2_8
1151 void DrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
1152 { m_pimpl
->DoDrawRectangle(x
, y
, width
, height
); }
1153 void DrawRectangle(const wxPoint
& pt
, const wxSize
& sz
)
1154 { m_pimpl
->DoDrawRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
1155 void DrawRectangle(const wxRect
& rect
)
1156 { m_pimpl
->DoDrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
1158 void DrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
,
1160 { m_pimpl
->DoDrawRoundedRectangle(x
, y
, width
, height
, radius
); }
1161 void DrawRoundedRectangle(const wxPoint
& pt
, const wxSize
& sz
,
1163 { m_pimpl
->DoDrawRoundedRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
, radius
); }
1164 void DrawRoundedRectangle(const wxRect
& r
, double radius
)
1165 { m_pimpl
->DoDrawRoundedRectangle(r
.x
, r
.y
, r
.width
, r
.height
, radius
); }
1167 void DrawCircle(wxCoord x
, wxCoord y
, wxCoord radius
)
1168 { m_pimpl
->DoDrawEllipse(x
- radius
, y
- radius
, 2*radius
, 2*radius
); }
1169 void DrawCircle(const wxPoint
& pt
, wxCoord radius
)
1170 { m_pimpl
->DoDrawEllipse(pt
.x
- radius
, pt
.y
- radius
, 2*radius
, 2*radius
); }
1172 void DrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
1173 { m_pimpl
->DoDrawEllipse(x
, y
, width
, height
); }
1174 void DrawEllipse(const wxPoint
& pt
, const wxSize
& sz
)
1175 { m_pimpl
->DoDrawEllipse(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
1176 void DrawEllipse(const wxRect
& rect
)
1177 { m_pimpl
->DoDrawEllipse(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
1179 void DrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
1180 { m_pimpl
->DoDrawIcon(icon
, x
, y
); }
1181 void DrawIcon(const wxIcon
& icon
, const wxPoint
& pt
)
1182 { m_pimpl
->DoDrawIcon(icon
, pt
.x
, pt
.y
); }
1184 void DrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
1185 bool useMask
= false)
1186 { m_pimpl
->DoDrawBitmap(bmp
, x
, y
, useMask
); }
1187 void DrawBitmap(const wxBitmap
&bmp
, const wxPoint
& pt
,
1188 bool useMask
= false)
1189 { m_pimpl
->DoDrawBitmap(bmp
, pt
.x
, pt
.y
, useMask
); }
1191 void DrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
1192 { m_pimpl
->DoDrawText(text
, x
, y
); }
1193 void DrawText(const wxString
& text
, const wxPoint
& pt
)
1194 { m_pimpl
->DoDrawText(text
, pt
.x
, pt
.y
); }
1196 void DrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
, double angle
)
1197 { m_pimpl
->DoDrawRotatedText(text
, x
, y
, angle
); }
1198 void DrawRotatedText(const wxString
& text
, const wxPoint
& pt
, double angle
)
1199 { m_pimpl
->DoDrawRotatedText(text
, pt
.x
, pt
.y
, angle
); }
1201 // this version puts both optional bitmap and the text into the given
1202 // rectangle and aligns is as specified by alignment parameter; it also
1203 // will emphasize the character with the given index if it is != -1 and
1204 // return the bounding rectangle if required
1205 void DrawLabel(const wxString
& text
,
1206 const wxBitmap
& image
,
1208 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
1209 int indexAccel
= -1,
1210 wxRect
*rectBounding
= NULL
);
1212 void DrawLabel(const wxString
& text
, const wxRect
& rect
,
1213 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
1214 int indexAccel
= -1)
1215 { DrawLabel(text
, wxNullBitmap
, rect
, alignment
, indexAccel
); }
1217 bool Blit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
1218 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
1219 wxRasterOperationMode rop
= wxCOPY
, bool useMask
= false,
1220 wxCoord xsrcMask
= wxDefaultCoord
, wxCoord ysrcMask
= wxDefaultCoord
)
1222 return m_pimpl
->DoBlit(xdest
, ydest
, width
, height
,
1223 source
, xsrc
, ysrc
, rop
, useMask
, xsrcMask
, ysrcMask
);
1225 bool Blit(const wxPoint
& destPt
, const wxSize
& sz
,
1226 wxDC
*source
, const wxPoint
& srcPt
,
1227 wxRasterOperationMode rop
= wxCOPY
, bool useMask
= false,
1228 const wxPoint
& srcPtMask
= wxDefaultPosition
)
1230 return m_pimpl
->DoBlit(destPt
.x
, destPt
.y
, sz
.x
, sz
.y
,
1231 source
, srcPt
.x
, srcPt
.y
, rop
, useMask
, srcPtMask
.x
, srcPtMask
.y
);
1234 bool StretchBlit(wxCoord dstX
, wxCoord dstY
,
1235 wxCoord dstWidth
, wxCoord dstHeight
,
1237 wxCoord srcX
, wxCoord srcY
,
1238 wxCoord srcWidth
, wxCoord srcHeight
,
1239 wxRasterOperationMode rop
= wxCOPY
, bool useMask
= false,
1240 wxCoord srcMaskX
= wxDefaultCoord
, wxCoord srcMaskY
= wxDefaultCoord
)
1242 return m_pimpl
->DoStretchBlit(dstX
, dstY
, dstWidth
, dstHeight
,
1243 source
, srcX
, srcY
, srcWidth
, srcHeight
, rop
, useMask
, srcMaskX
, srcMaskY
);
1245 bool StretchBlit(const wxPoint
& dstPt
, const wxSize
& dstSize
,
1246 wxDC
*source
, const wxPoint
& srcPt
, const wxSize
& srcSize
,
1247 wxRasterOperationMode rop
= wxCOPY
, bool useMask
= false,
1248 const wxPoint
& srcMaskPt
= wxDefaultPosition
)
1250 return m_pimpl
->DoStretchBlit(dstPt
.x
, dstPt
.y
, dstSize
.x
, dstSize
.y
,
1251 source
, srcPt
.x
, srcPt
.y
, srcSize
.x
, srcSize
.y
, rop
, useMask
, srcMaskPt
.x
, srcMaskPt
.y
);
1254 wxBitmap
GetAsBitmap(const wxRect
*subrect
= (const wxRect
*) NULL
) const
1256 return m_pimpl
->DoGetAsBitmap(subrect
);
1260 void DrawSpline(wxCoord x1
, wxCoord y1
,
1261 wxCoord x2
, wxCoord y2
,
1262 wxCoord x3
, wxCoord y3
)
1263 { m_pimpl
->DrawSpline(x1
,y1
,x2
,y2
,x3
,y3
); }
1264 void DrawSpline(int n
, wxPoint points
[])
1265 { m_pimpl
->DrawSpline(n
,points
); }
1266 void DrawSpline(const wxPointList
*points
)
1267 { m_pimpl
->DrawSpline(points
); }
1268 #endif // wxUSE_SPLINES
1271 #if WXWIN_COMPATIBILITY_2_8
1272 // for compatibility with the old code when wxCoord was long everywhere
1273 wxDEPRECATED( void GetTextExtent(const wxString
& string
,
1275 long *descent
= NULL
,
1276 long *externalLeading
= NULL
,
1277 const wxFont
*theFont
= NULL
) const );
1278 wxDEPRECATED( void GetLogicalOrigin(long *x
, long *y
) const );
1279 wxDEPRECATED( void GetDeviceOrigin(long *x
, long *y
) const );
1280 wxDEPRECATED( void GetClippingBox(long *x
, long *y
, long *w
, long *h
) const );
1282 wxDEPRECATED( void DrawObject(wxDrawObject
* drawobject
) );
1283 #endif // WXWIN_COMPATIBILITY_2_8
1286 // GetHDC() is the simplest way to retrieve an HDC From a wxDC but only
1287 // works if this wxDC is GDI-based and fails for GDI+ contexts (and
1288 // anything else without HDC, e.g. wxPostScriptDC)
1289 WXHDC
GetHDC() const;
1291 // don't use these methods manually, use GetTempHDC() instead
1292 virtual WXHDC
AcquireHDC() { return GetHDC(); }
1293 virtual void ReleaseHDC(WXHDC
WXUNUSED(hdc
)) { }
1295 // helper class holding the result of GetTempHDC() with std::auto_ptr<>-like
1296 // semantics, i.e. it is moved when copied
1302 m_hdc(dc
.AcquireHDC())
1306 TempHDC(const TempHDC
& thdc
)
1310 const_cast<TempHDC
&>(thdc
).m_hdc
= 0;
1316 m_dc
.ReleaseHDC(m_hdc
);
1319 WXHDC
GetHDC() const { return m_hdc
; }
1325 wxDECLARE_NO_ASSIGN_CLASS(TempHDC
);
1328 // GetTempHDC() also works for wxGCDC (but still not for wxPostScriptDC &c)
1329 TempHDC
GetTempHDC() { return TempHDC(*this); }
1333 // ctor takes ownership of the pointer
1334 wxDC(wxDCImpl
*pimpl
) : m_pimpl(pimpl
) { }
1336 wxDCImpl
* const m_pimpl
;
1339 DECLARE_ABSTRACT_CLASS(wxDC
)
1340 wxDECLARE_NO_COPY_CLASS(wxDC
);
1343 // ----------------------------------------------------------------------------
1344 // helper class: you can use it to temporarily change the DC text colour and
1345 // restore it automatically when the object goes out of scope
1346 // ----------------------------------------------------------------------------
1348 class WXDLLIMPEXP_CORE wxDCTextColourChanger
1351 wxDCTextColourChanger(wxDC
& dc
) : m_dc(dc
), m_colFgOld() { }
1353 wxDCTextColourChanger(wxDC
& dc
, const wxColour
& col
) : m_dc(dc
)
1358 ~wxDCTextColourChanger()
1360 if ( m_colFgOld
.IsOk() )
1361 m_dc
.SetTextForeground(m_colFgOld
);
1364 void Set(const wxColour
& col
)
1366 if ( !m_colFgOld
.IsOk() )
1367 m_colFgOld
= m_dc
.GetTextForeground();
1368 m_dc
.SetTextForeground(col
);
1374 wxColour m_colFgOld
;
1376 wxDECLARE_NO_COPY_CLASS(wxDCTextColourChanger
);
1379 // ----------------------------------------------------------------------------
1380 // helper class: you can use it to temporarily change the DC pen and
1381 // restore it automatically when the object goes out of scope
1382 // ----------------------------------------------------------------------------
1384 class WXDLLIMPEXP_CORE wxDCPenChanger
1387 wxDCPenChanger(wxDC
& dc
, const wxPen
& pen
) : m_dc(dc
), m_penOld(dc
.GetPen())
1394 if ( m_penOld
.IsOk() )
1395 m_dc
.SetPen(m_penOld
);
1403 wxDECLARE_NO_COPY_CLASS(wxDCPenChanger
);
1406 // ----------------------------------------------------------------------------
1407 // helper class: you can use it to temporarily change the DC brush and
1408 // restore it automatically when the object goes out of scope
1409 // ----------------------------------------------------------------------------
1411 class WXDLLIMPEXP_CORE wxDCBrushChanger
1414 wxDCBrushChanger(wxDC
& dc
, const wxBrush
& brush
) : m_dc(dc
), m_brushOld(dc
.GetBrush())
1416 m_dc
.SetBrush(brush
);
1421 if ( m_brushOld
.IsOk() )
1422 m_dc
.SetBrush(m_brushOld
);
1430 wxDECLARE_NO_COPY_CLASS(wxDCBrushChanger
);
1433 // ----------------------------------------------------------------------------
1434 // another small helper class: sets the clipping region in its ctor and
1435 // destroys it in the dtor
1436 // ----------------------------------------------------------------------------
1438 class WXDLLIMPEXP_CORE wxDCClipper
1441 wxDCClipper(wxDC
& dc
, const wxRegion
& r
) : m_dc(dc
)
1442 { dc
.SetClippingRegion(r
.GetBox()); }
1443 wxDCClipper(wxDC
& dc
, const wxRect
& r
) : m_dc(dc
)
1444 { dc
.SetClippingRegion(r
.x
, r
.y
, r
.width
, r
.height
); }
1445 wxDCClipper(wxDC
& dc
, wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
) : m_dc(dc
)
1446 { dc
.SetClippingRegion(x
, y
, w
, h
); }
1448 ~wxDCClipper() { m_dc
.DestroyClippingRegion(); }
1453 wxDECLARE_NO_COPY_CLASS(wxDCClipper
);
1456 // ----------------------------------------------------------------------------
1457 // helper class: you can use it to temporarily change the DC font and
1458 // restore it automatically when the object goes out of scope
1459 // ----------------------------------------------------------------------------
1461 class WXDLLIMPEXP_CORE wxDCFontChanger
1464 wxDCFontChanger(wxDC
& dc
)
1465 : m_dc(dc
), m_fontOld()
1469 wxDCFontChanger(wxDC
& dc
, const wxFont
& font
)
1470 : m_dc(dc
), m_fontOld(dc
.GetFont())
1475 void Set(const wxFont
& font
)
1477 if ( !m_fontOld
.IsOk() )
1478 m_fontOld
= m_dc
.GetFont();
1484 if ( m_fontOld
.IsOk() )
1485 m_dc
.SetFont(m_fontOld
);
1493 wxDECLARE_NO_COPY_CLASS(wxDCFontChanger
);
1497 #endif // _WX_DC_H_BASE_