1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DC_H_BASE_
13 #define _WX_DC_H_BASE_
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "dcbase.h"
19 // ----------------------------------------------------------------------------
20 // headers which we must include here
21 // ----------------------------------------------------------------------------
23 #include "wx/object.h" // the base class
25 #include "wx/cursor.h" // we have member variables of these classes
26 #include "wx/font.h" // so we can't do without them
27 #include "wx/colour.h"
30 #include "wx/palette.h"
31 #include "wx/list.h" // we use wxList in inline functions
33 class WXDLLEXPORT wxDC
;
34 class WXDLLEXPORT wxDCBase
;
36 class WXDLLEXPORT wxDrawObject
41 : m_isBBoxValid(FALSE
)
42 , m_minX(0), m_minY(0), m_maxX(0), m_maxY(0)
45 virtual ~wxDrawObject() { }
47 virtual void Draw(wxDCBase
&) const { }
49 virtual void CalcBoundingBox(wxCoord x
, wxCoord y
)
53 if ( x
< m_minX
) m_minX
= x
;
54 if ( y
< m_minY
) m_minY
= y
;
55 if ( x
> m_maxX
) m_maxX
= x
;
56 if ( y
> m_maxY
) m_maxY
= y
;
69 void ResetBoundingBox()
71 m_isBBoxValid
= FALSE
;
73 m_minX
= m_maxX
= m_minY
= m_maxY
= 0;
76 // Get the final bounding box of the PostScript or Metafile picture.
78 wxCoord
MinX() const { return m_minX
; }
79 wxCoord
MaxX() const { return m_maxX
; }
80 wxCoord
MinY() const { return m_minY
; }
81 wxCoord
MaxY() const { return m_maxY
; }
83 //to define the type of object for derived objects
84 virtual int GetType()=0;
87 //for boundingbox calculation
89 //for boundingbox calculation
90 wxCoord m_minX
, m_minY
, m_maxX
, m_maxY
;
93 // ---------------------------------------------------------------------------
95 // ---------------------------------------------------------------------------
97 WXDLLEXPORT_DATA(extern int) wxPageNumber
;
99 // ---------------------------------------------------------------------------
100 // wxDC is the device context - object on which any drawing is done
101 // ---------------------------------------------------------------------------
103 class WXDLLEXPORT wxDCBase
: public wxObject
107 : m_colour(wxColourDisplay())
111 , m_isBBoxValid(FALSE
)
112 , m_logicalOriginX(0), m_logicalOriginY(0)
113 , m_deviceOriginX(0), m_deviceOriginY(0)
114 , m_logicalScaleX(1.0), m_logicalScaleY(1.0)
115 , m_userScaleX(1.0), m_userScaleY(1.0)
116 , m_scaleX(1.0), m_scaleY(1.0)
117 , m_signX(1), m_signY(1)
118 , m_minX(0), m_minY(0), m_maxX(0), m_maxY(0)
119 , m_clipX1(0), m_clipY1(0), m_clipX2(0), m_clipY2(0)
120 , m_logicalFunction(wxCOPY
)
121 , m_backgroundMode(wxTRANSPARENT
)
122 , m_mappingMode(wxMM_TEXT
)
125 , m_backgroundBrush(*wxTRANSPARENT_BRUSH
)
126 , m_textForegroundColour(*wxBLACK
)
127 , m_textBackgroundColour(*wxWHITE
)
131 , m_hasCustomPalette(FALSE
)
132 #endif // wxUSE_PALETTE
139 virtual void BeginDrawing() { }
140 virtual void EndDrawing() { }
142 // graphic primitives
143 // ------------------
145 virtual void DrawObject(wxDrawObject
* drawobject
)
147 drawobject
->Draw(*this);
148 CalcBoundingBox(drawobject
->MinX(),drawobject
->MinY());
149 CalcBoundingBox(drawobject
->MaxX(),drawobject
->MaxY());
152 bool FloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
153 int style
= wxFLOOD_SURFACE
)
154 { return DoFloodFill(x
, y
, col
, style
); }
155 bool FloodFill(const wxPoint
& pt
, const wxColour
& col
,
156 int style
= wxFLOOD_SURFACE
)
157 { return DoFloodFill(pt
.x
, pt
.y
, col
, style
); }
159 bool GetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
160 { return DoGetPixel(x
, y
, col
); }
161 bool GetPixel(const wxPoint
& pt
, wxColour
*col
) const
162 { return DoGetPixel(pt
.x
, pt
.y
, col
); }
164 void DrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
165 { DoDrawLine(x1
, y1
, x2
, y2
); }
166 void DrawLine(const wxPoint
& pt1
, const wxPoint
& pt2
)
167 { DoDrawLine(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
); }
169 void CrossHair(wxCoord x
, wxCoord y
)
170 { DoCrossHair(x
, y
); }
171 void CrossHair(const wxPoint
& pt
)
172 { DoCrossHair(pt
.x
, pt
.y
); }
174 void DrawArc(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
,
175 wxCoord xc
, wxCoord yc
)
176 { DoDrawArc(x1
, y1
, x2
, y2
, xc
, yc
); }
177 void DrawArc(const wxPoint
& pt1
, const wxPoint
& pt2
, const wxPoint
& centre
)
178 { DoDrawArc(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
, centre
.x
, centre
.y
); }
180 void DrawCheckMark(wxCoord x
, wxCoord y
,
181 wxCoord width
, wxCoord height
)
182 { DoDrawCheckMark(x
, y
, width
, height
); }
183 void DrawCheckMark(const wxRect
& rect
)
184 { DoDrawCheckMark(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
186 void DrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
187 double sa
, double ea
)
188 { DoDrawEllipticArc(x
, y
, w
, h
, sa
, ea
); }
189 void DrawEllipticArc(const wxPoint
& pt
, const wxSize
& sz
,
190 double sa
, double ea
)
191 { DoDrawEllipticArc(pt
.x
, pt
.y
, sz
.x
, sz
.y
, sa
, ea
); }
193 void DrawPoint(wxCoord x
, wxCoord y
)
194 { DoDrawPoint(x
, y
); }
195 void DrawPoint(const wxPoint
& pt
)
196 { DoDrawPoint(pt
.x
, pt
.y
); }
198 void DrawLines(int n
, wxPoint points
[],
199 wxCoord xoffset
= 0, wxCoord yoffset
= 0)
200 { DoDrawLines(n
, points
, xoffset
, yoffset
); }
201 void DrawLines(const wxList
*list
,
202 wxCoord xoffset
= 0, wxCoord yoffset
= 0);
204 void DrawPolygon(int n
, wxPoint points
[],
205 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
206 int fillStyle
= wxODDEVEN_RULE
)
207 { DoDrawPolygon(n
, points
, xoffset
, yoffset
, fillStyle
); }
209 void DrawPolygon(const wxList
*list
,
210 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
211 int fillStyle
= wxODDEVEN_RULE
);
213 void DrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
214 { DoDrawRectangle(x
, y
, width
, height
); }
215 void DrawRectangle(const wxPoint
& pt
, const wxSize
& sz
)
216 { DoDrawRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
217 void DrawRectangle(const wxRect
& rect
)
218 { DoDrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
220 void DrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
,
222 { DoDrawRoundedRectangle(x
, y
, width
, height
, radius
); }
223 void DrawRoundedRectangle(const wxPoint
& pt
, const wxSize
& sz
,
225 { DoDrawRoundedRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
, radius
); }
226 void DrawRoundedRectangle(const wxRect
& r
, double radius
)
227 { DoDrawRoundedRectangle(r
.x
, r
.y
, r
.width
, r
.height
, radius
); }
229 void DrawCircle(wxCoord x
, wxCoord y
, wxCoord radius
)
230 { DoDrawEllipse(x
- radius
, y
- radius
, 2*radius
, 2*radius
); }
231 void DrawCircle(const wxPoint
& pt
, wxCoord radius
)
232 { DrawCircle(pt
.x
, pt
.y
, radius
); }
234 void DrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
235 { DoDrawEllipse(x
, y
, width
, height
); }
236 void DrawEllipse(const wxPoint
& pt
, const wxSize
& sz
)
237 { DoDrawEllipse(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
238 void DrawEllipse(const wxRect
& rect
)
239 { DoDrawEllipse(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
241 void DrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
242 { DoDrawIcon(icon
, x
, y
); }
243 void DrawIcon(const wxIcon
& icon
, const wxPoint
& pt
)
244 { DoDrawIcon(icon
, pt
.x
, pt
.y
); }
246 void DrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
247 bool useMask
= FALSE
)
248 { DoDrawBitmap(bmp
, x
, y
, useMask
); }
249 void DrawBitmap(const wxBitmap
&bmp
, const wxPoint
& pt
,
250 bool useMask
= FALSE
)
251 { DoDrawBitmap(bmp
, pt
.x
, pt
.y
, useMask
); }
253 void DrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
254 { DoDrawText(text
, x
, y
); }
255 void DrawText(const wxString
& text
, const wxPoint
& pt
)
256 { DoDrawText(text
, pt
.x
, pt
.y
); }
258 void DrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
, double angle
)
259 { DoDrawRotatedText(text
, x
, y
, angle
); }
260 void DrawRotatedText(const wxString
& text
, const wxPoint
& pt
, double angle
)
261 { DoDrawRotatedText(text
, pt
.x
, pt
.y
, angle
); }
263 // this version puts both optional bitmap and the text into the given
264 // rectangle and aligns is as specified by alignment parameter; it also
265 // will emphasize the character with the given index if it is != -1 and
266 // return the bounding rectangle if required
267 virtual void DrawLabel(const wxString
& text
,
268 const wxBitmap
& image
,
270 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
272 wxRect
*rectBounding
= NULL
);
274 void DrawLabel(const wxString
& text
, const wxRect
& rect
,
275 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
277 { DrawLabel(text
, wxNullBitmap
, rect
, alignment
, indexAccel
); }
279 bool Blit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
280 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
281 int rop
= wxCOPY
, bool useMask
= FALSE
, wxCoord xsrcMask
= -1, wxCoord ysrcMask
= -1)
283 return DoBlit(xdest
, ydest
, width
, height
,
284 source
, xsrc
, ysrc
, rop
, useMask
, xsrcMask
, ysrcMask
);
286 bool Blit(const wxPoint
& destPt
, const wxSize
& sz
,
287 wxDC
*source
, const wxPoint
& srcPt
,
288 int rop
= wxCOPY
, bool useMask
= FALSE
, const wxPoint
& srcPtMask
= wxPoint(-1, -1))
290 return DoBlit(destPt
.x
, destPt
.y
, sz
.x
, sz
.y
,
291 source
, srcPt
.x
, srcPt
.y
, rop
, useMask
, srcPtMask
.x
, srcPtMask
.y
);
295 // TODO: this API needs fixing (wxPointList, why (!const) "wxList *"?)
296 void DrawSpline(wxCoord x1
, wxCoord y1
,
297 wxCoord x2
, wxCoord y2
,
298 wxCoord x3
, wxCoord y3
);
299 void DrawSpline(int n
, wxPoint points
[]);
301 void DrawSpline(wxList
*points
) { DoDrawSpline(points
); }
302 #endif // wxUSE_SPLINES
304 // global DC operations
305 // --------------------
307 virtual void Clear() = 0;
309 virtual bool StartDoc(const wxString
& WXUNUSED(message
)) { return TRUE
; }
310 virtual void EndDoc() { }
312 virtual void StartPage() { }
313 virtual void EndPage() { }
315 // set objects to use for drawing
316 // ------------------------------
318 virtual void SetFont(const wxFont
& font
) = 0;
319 virtual void SetPen(const wxPen
& pen
) = 0;
320 virtual void SetBrush(const wxBrush
& brush
) = 0;
321 virtual void SetBackground(const wxBrush
& brush
) = 0;
322 virtual void SetBackgroundMode(int mode
) = 0;
324 virtual void SetPalette(const wxPalette
& palette
) = 0;
325 #endif // wxUSE_PALETTE
330 void SetClippingRegion(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
331 { DoSetClippingRegion(x
, y
, width
, height
); }
332 void SetClippingRegion(const wxPoint
& pt
, const wxSize
& sz
)
333 { DoSetClippingRegion(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
334 void SetClippingRegion(const wxRect
& rect
)
335 { DoSetClippingRegion(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
336 void SetClippingRegion(const wxRegion
& region
)
337 { DoSetClippingRegionAsRegion(region
); }
339 virtual void DestroyClippingRegion() = 0;
341 void GetClippingBox(wxCoord
*x
, wxCoord
*y
, wxCoord
*w
, wxCoord
*h
) const
342 { DoGetClippingBox(x
, y
, w
, h
); }
343 void GetClippingBox(wxRect
& rect
) const
346 DoGetClippingBox(&rect
.x
, &rect
.y
, &rect
.width
, &rect
.height
);
348 // Necessary to use intermediate variables for 16-bit compilation
349 // REMOVE ME if the above is OK for all current platforms
351 DoGetClippingBox(&x
, &y
, &w
, &h
);
352 rect
.x
= x
; rect
.y
= y
; rect
.width
= w
; rect
.height
= h
;
359 virtual wxCoord
GetCharHeight() const = 0;
360 virtual wxCoord
GetCharWidth() const = 0;
362 // only works for single line strings
363 void GetTextExtent(const wxString
& string
,
364 wxCoord
*x
, wxCoord
*y
,
365 wxCoord
*descent
= NULL
,
366 wxCoord
*externalLeading
= NULL
,
367 wxFont
*theFont
= NULL
) const
368 { DoGetTextExtent(string
, x
, y
, descent
, externalLeading
, theFont
); }
370 // works for single as well as multi-line strings
371 virtual void GetMultiLineTextExtent(const wxString
& text
,
374 wxCoord
*heightLine
= NULL
,
375 wxFont
*font
= NULL
);
377 // size and resolution
378 // -------------------
381 void GetSize(int *width
, int *height
) const
382 { DoGetSize(width
, height
); }
383 wxSize
GetSize() const
392 void GetSizeMM(int* width
, int* height
) const
393 { DoGetSizeMM(width
, height
); }
394 wxSize
GetSizeMM() const
402 // coordinates conversions
403 // -----------------------
405 // This group of functions does actual conversion of the input, as you'd
407 wxCoord
DeviceToLogicalX(wxCoord x
) const;
408 wxCoord
DeviceToLogicalY(wxCoord y
) const;
409 wxCoord
DeviceToLogicalXRel(wxCoord x
) const;
410 wxCoord
DeviceToLogicalYRel(wxCoord y
) const;
411 wxCoord
LogicalToDeviceX(wxCoord x
) const;
412 wxCoord
LogicalToDeviceY(wxCoord y
) const;
413 wxCoord
LogicalToDeviceXRel(wxCoord x
) const;
414 wxCoord
LogicalToDeviceYRel(wxCoord y
) const;
416 // query DC capabilities
417 // ---------------------
419 virtual bool CanDrawBitmap() const = 0;
420 virtual bool CanGetTextExtent() const = 0;
423 virtual int GetDepth() const = 0;
425 // Resolution in Pixels per inch
426 virtual wxSize
GetPPI() const = 0;
428 virtual bool Ok() const { return m_ok
; }
434 int GetBackgroundMode() const { return m_backgroundMode
; }
435 const wxBrush
& GetBackground() const { return m_backgroundBrush
; }
436 const wxBrush
& GetBrush() const { return m_brush
; }
437 const wxFont
& GetFont() const { return m_font
; }
438 const wxPen
& GetPen() const { return m_pen
; }
439 const wxColour
& GetTextBackground() const { return m_textBackgroundColour
; }
440 const wxColour
& GetTextForeground() const { return m_textForegroundColour
; }
443 wxBrush
& GetBackground() { return m_backgroundBrush
; }
444 wxBrush
& GetBrush() { return m_brush
; }
445 wxFont
& GetFont() { return m_font
; }
446 wxPen
& GetPen() { return m_pen
; }
447 wxColour
& GetTextBackground() { return m_textBackgroundColour
; }
448 wxColour
& GetTextForeground() { return m_textForegroundColour
; }
450 virtual void SetTextForeground(const wxColour
& colour
)
451 { m_textForegroundColour
= colour
; }
452 virtual void SetTextBackground(const wxColour
& colour
)
453 { m_textBackgroundColour
= colour
; }
455 int GetMapMode() const { return m_mappingMode
; }
456 virtual void SetMapMode(int mode
) = 0;
458 virtual void GetUserScale(double *x
, double *y
) const
460 if ( x
) *x
= m_userScaleX
;
461 if ( y
) *y
= m_userScaleY
;
463 virtual void SetUserScale(double x
, double y
) = 0;
465 virtual void GetLogicalScale(double *x
, double *y
)
467 if ( x
) *x
= m_logicalScaleX
;
468 if ( y
) *y
= m_logicalScaleY
;
470 virtual void SetLogicalScale(double x
, double y
)
476 void GetLogicalOrigin(wxCoord
*x
, wxCoord
*y
) const
477 { DoGetLogicalOrigin(x
, y
); }
478 wxPoint
GetLogicalOrigin() const
479 { wxCoord x
, y
; DoGetLogicalOrigin(&x
, &y
); return wxPoint(x
, y
); }
480 virtual void SetLogicalOrigin(wxCoord x
, wxCoord y
) = 0;
482 void GetDeviceOrigin(wxCoord
*x
, wxCoord
*y
) const
483 { DoGetDeviceOrigin(x
, y
); }
484 wxPoint
GetDeviceOrigin() const
485 { wxCoord x
, y
; DoGetDeviceOrigin(&x
, &y
); return wxPoint(x
, y
); }
486 virtual void SetDeviceOrigin(wxCoord x
, wxCoord y
) = 0;
488 virtual void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
) = 0;
490 int GetLogicalFunction() const { return m_logicalFunction
; }
491 virtual void SetLogicalFunction(int function
) = 0;
493 // Sometimes we need to override optimization, e.g. if other software is
494 // drawing onto our surface and we can't be sure of who's done what.
496 // FIXME: is this (still) used?
497 virtual void SetOptimization(bool WXUNUSED(opt
)) { }
498 virtual bool GetOptimization() { return FALSE
; }
503 virtual void CalcBoundingBox(wxCoord x
, wxCoord y
)
507 if ( x
< m_minX
) m_minX
= x
;
508 if ( y
< m_minY
) m_minY
= y
;
509 if ( x
> m_maxX
) m_maxX
= x
;
510 if ( y
> m_maxY
) m_maxY
= y
;
514 m_isBBoxValid
= TRUE
;
523 void ResetBoundingBox()
525 m_isBBoxValid
= FALSE
;
527 m_minX
= m_maxX
= m_minY
= m_maxY
= 0;
530 // Get the final bounding box of the PostScript or Metafile picture.
531 wxCoord
MinX() const { return m_minX
; }
532 wxCoord
MaxX() const { return m_maxX
; }
533 wxCoord
MinY() const { return m_minY
; }
534 wxCoord
MaxY() const { return m_maxY
; }
536 // misc old functions
537 // ------------------
539 // for compatibility with the old code when wxCoord was long everywhere
541 void GetTextExtent(const wxString
& string
,
543 long *descent
= NULL
,
544 long *externalLeading
= NULL
,
545 wxFont
*theFont
= NULL
) const
547 wxCoord x2
, y2
, descent2
, externalLeading2
;
548 DoGetTextExtent(string
, &x2
, &y2
,
549 &descent2
, &externalLeading2
,
557 if ( externalLeading
)
558 *externalLeading
= externalLeading2
;
561 void GetLogicalOrigin(long *x
, long *y
) const
564 DoGetLogicalOrigin(&x2
, &y2
);
571 void GetDeviceOrigin(long *x
, long *y
) const
574 DoGetDeviceOrigin(&x2
, &y2
);
580 void GetClippingBox(long *x
, long *y
, long *w
, long *h
) const
583 DoGetClippingBox(&xx
, &yy
, &ww
, &hh
);
591 #if WXWIN_COMPATIBILITY
593 void GetTextExtent(const wxString
& string
, float *x
, float *y
,
594 float *descent
= NULL
, float *externalLeading
= NULL
,
595 wxFont
*theFont
= NULL
, bool use16bit
= FALSE
) const ;
596 void GetSize(float* width
, float* height
) const { int w
, h
; GetSize(& w
, & h
); *width
= w
; *height
= h
; }
597 void GetSizeMM(float *width
, float *height
) const { int w
, h
; GetSizeMM(& w
, & h
); *width
= (float) w
; *height
= (float) h
; }
599 #endif // WXWIN_COMPATIBILITY
602 // the pure virtual functions which should be implemented by wxDC
603 virtual bool DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
604 int style
= wxFLOOD_SURFACE
) = 0;
606 virtual bool DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const = 0;
608 virtual void DoDrawPoint(wxCoord x
, wxCoord y
) = 0;
609 virtual void DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
) = 0;
611 virtual void DoDrawArc(wxCoord x1
, wxCoord y1
,
612 wxCoord x2
, wxCoord y2
,
613 wxCoord xc
, wxCoord yc
) = 0;
614 virtual void DoDrawCheckMark(wxCoord x
, wxCoord y
,
615 wxCoord width
, wxCoord height
);
616 virtual void DoDrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
617 double sa
, double ea
) = 0;
619 virtual void DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
) = 0;
620 virtual void DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
621 wxCoord width
, wxCoord height
,
623 virtual void DoDrawEllipse(wxCoord x
, wxCoord y
,
624 wxCoord width
, wxCoord height
) = 0;
626 virtual void DoCrossHair(wxCoord x
, wxCoord y
) = 0;
628 virtual void DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
) = 0;
629 virtual void DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
630 bool useMask
= FALSE
) = 0;
632 virtual void DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
) = 0;
633 virtual void DoDrawRotatedText(const wxString
& text
,
634 wxCoord x
, wxCoord y
, double angle
) = 0;
636 virtual bool DoBlit(wxCoord xdest
, wxCoord ydest
,
637 wxCoord width
, wxCoord height
,
638 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
639 int rop
= wxCOPY
, bool useMask
= FALSE
, wxCoord xsrcMask
= -1, wxCoord ysrcMask
= -1) = 0;
641 virtual void DoGetSize(int *width
, int *height
) const = 0;
642 virtual void DoGetSizeMM(int* width
, int* height
) const = 0;
644 virtual void DoDrawLines(int n
, wxPoint points
[],
645 wxCoord xoffset
, wxCoord yoffset
) = 0;
646 virtual void DoDrawPolygon(int n
, wxPoint points
[],
647 wxCoord xoffset
, wxCoord yoffset
,
648 int fillStyle
= wxODDEVEN_RULE
) = 0;
650 virtual void DoSetClippingRegionAsRegion(const wxRegion
& region
) = 0;
651 virtual void DoSetClippingRegion(wxCoord x
, wxCoord y
,
652 wxCoord width
, wxCoord height
) = 0;
654 // FIXME are these functions really different?
655 virtual void DoGetClippingRegion(wxCoord
*x
, wxCoord
*y
,
656 wxCoord
*w
, wxCoord
*h
)
657 { DoGetClippingBox(x
, y
, w
, h
); }
658 virtual void DoGetClippingBox(wxCoord
*x
, wxCoord
*y
,
659 wxCoord
*w
, wxCoord
*h
) const
663 if ( x
) *x
= m_clipX1
;
664 if ( y
) *y
= m_clipY1
;
665 if ( w
) *w
= m_clipX2
- m_clipX1
;
666 if ( h
) *h
= m_clipY2
- m_clipY1
;
670 *x
= *y
= *w
= *h
= 0;
674 virtual void DoGetLogicalOrigin(wxCoord
*x
, wxCoord
*y
) const
676 if ( x
) *x
= m_logicalOriginX
;
677 if ( y
) *y
= m_logicalOriginY
;
680 virtual void DoGetDeviceOrigin(wxCoord
*x
, wxCoord
*y
) const
682 if ( x
) *x
= m_deviceOriginX
;
683 if ( y
) *y
= m_deviceOriginY
;
686 virtual void DoGetTextExtent(const wxString
& string
,
687 wxCoord
*x
, wxCoord
*y
,
688 wxCoord
*descent
= NULL
,
689 wxCoord
*externalLeading
= NULL
,
690 wxFont
*theFont
= NULL
) const = 0;
693 virtual void DoDrawSpline(wxList
*points
);
701 bool m_isInteractive
:1;
702 bool m_isBBoxValid
:1;
704 // coordinate system variables
706 // TODO short descriptions of what exactly they are would be nice...
708 wxCoord m_logicalOriginX
, m_logicalOriginY
;
709 wxCoord m_deviceOriginX
, m_deviceOriginY
;
711 double m_logicalScaleX
, m_logicalScaleY
;
712 double m_userScaleX
, m_userScaleY
;
713 double m_scaleX
, m_scaleY
;
715 // Used by SetAxisOrientation() to invert the axes
716 int m_signX
, m_signY
;
718 // bounding and clipping boxes
719 wxCoord m_minX
, m_minY
, m_maxX
, m_maxY
;
720 wxCoord m_clipX1
, m_clipY1
, m_clipX2
, m_clipY2
;
722 int m_logicalFunction
;
723 int m_backgroundMode
;
729 wxBrush m_backgroundBrush
;
730 wxColour m_textForegroundColour
;
731 wxColour m_textBackgroundColour
;
736 bool m_hasCustomPalette
;
737 #endif // wxUSE_PALETTE
740 DECLARE_NO_COPY_CLASS(wxDCBase
)
741 DECLARE_ABSTRACT_CLASS(wxDCBase
)
744 // ----------------------------------------------------------------------------
745 // now include the declaration of wxDC class
746 // ----------------------------------------------------------------------------
748 #if defined(__WXMSW__)
749 #include "wx/msw/dc.h"
750 #elif defined(__WXMOTIF__)
751 #include "wx/motif/dc.h"
752 #elif defined(__WXGTK__)
753 #include "wx/gtk/dc.h"
754 #elif defined(__WXX11__)
755 #include "wx/x11/dc.h"
756 #elif defined(__WXMGL__)
757 #include "wx/mgl/dc.h"
758 #elif defined(__WXMAC__)
759 #include "wx/mac/dc.h"
760 #elif defined(__WXCOCOA__)
761 #include "wx/cocoa/dc.h"
762 #elif defined(__WXPM__)
763 #include "wx/os2/dc.h"
766 // ----------------------------------------------------------------------------
767 // helper class: you can use it to temporarily change the DC text colour and
768 // restore it automatically when the object goes out of scope
769 // ----------------------------------------------------------------------------
771 class WXDLLEXPORT wxDCTextColourChanger
774 wxDCTextColourChanger(wxDC
& dc
) : m_dc(dc
), m_colFgOld() { }
776 ~wxDCTextColourChanger()
778 if ( m_colFgOld
.Ok() )
779 m_dc
.SetTextForeground(m_colFgOld
);
782 void Set(const wxColour
& col
)
784 if ( !m_colFgOld
.Ok() )
785 m_colFgOld
= m_dc
.GetTextForeground();
786 m_dc
.SetTextForeground(col
);
795 // ----------------------------------------------------------------------------
796 // another small helper class: sets the clipping region in its ctor and
797 // destroys it in the dtor
798 // ----------------------------------------------------------------------------
800 class WXDLLEXPORT wxDCClipper
803 wxDCClipper(wxDC
& dc
, const wxRect
& r
) : m_dc(dc
)
804 { dc
.SetClippingRegion(r
.x
, r
.y
, r
.width
, r
.height
); }
805 wxDCClipper(wxDC
& dc
, wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
) : m_dc(dc
)
806 { dc
.SetClippingRegion(x
, y
, w
, h
); }
808 ~wxDCClipper() { m_dc
.DestroyClippingRegion(); }