5 #pragma interface "dcbase.h"
6 #pragma implementation "dcbase.h"
9 // ----------------------------------------------------------------------------
10 // headers which we must include here
11 // ----------------------------------------------------------------------------
13 #include "wx/object.h" // the base class
15 #include "wx/cursor.h" // we have member variables of these classes
16 #include "wx/font.h" // so we can't do without them
17 #include "wx/colour.h"
20 #include "wx/palette.h"
22 #include "wx/list.h" // we use wxList in inline functions
24 // ---------------------------------------------------------------------------
26 // ---------------------------------------------------------------------------
28 // type which should be used (whenever possible, i.e. as long as it doesn't
29 // break compatibility) for screen coordinates
32 // ---------------------------------------------------------------------------
34 // ---------------------------------------------------------------------------
36 WXDLLEXPORT_DATA(extern int) wxPageNumber
;
38 // ---------------------------------------------------------------------------
39 // wxDC is the device context - object on which any drawing is done
40 // ---------------------------------------------------------------------------
42 class WXDLLEXPORT wxDCBase
: public wxObject
44 DECLARE_ABSTRACT_CLASS(wxDCBase
)
52 m_minX
= m_minY
= m_maxX
= m_maxY
= 0;
54 m_signX
= m_signY
= 1;
56 m_logicalOriginX
= m_logicalOriginY
=
57 m_deviceOriginX
= m_deviceOriginY
= 0;
59 m_logicalScaleX
= m_logicalScaleY
=
60 m_userScaleX
= m_userScaleY
=
61 m_scaleX
= m_scaleY
= 1.0;
63 m_logicalFunction
= -1;
65 m_backgroundMode
= wxTRANSPARENT
;
67 m_mappingMode
= wxMM_TEXT
;
69 m_backgroundBrush
= *wxWHITE_BRUSH
;
71 m_textForegroundColour
= *wxBLACK
;
72 m_textBackgroundColour
= *wxWHITE
;
74 m_colour
= wxColourDisplay();
79 virtual void BeginDrawing() { }
80 virtual void EndDrawing() { }
85 void FloodFill(long x
, long y
, const wxColour
& col
,
86 int style
= wxFLOOD_SURFACE
)
87 { DoFloodFill(x
, y
, col
, style
); }
88 void FloodFill(const wxPoint
& pt
, const wxColour
& col
,
89 int style
= wxFLOOD_SURFACE
)
90 { DoFloodFill(pt
.x
, pt
.y
, col
, style
); }
92 bool GetPixel(long x
, long y
, wxColour
*col
) const
93 { return DoGetPixel(x
, y
, col
); }
94 bool GetPixel(const wxPoint
& pt
, wxColour
*col
) const
95 { return DoGetPixel(pt
.x
, pt
.y
, col
); }
97 void DrawLine(long x1
, long y1
, long x2
, long y2
)
98 { DoDrawLine(x1
, y1
, x2
, y2
); }
99 void DrawLine(const wxPoint
& pt1
, const wxPoint
& pt2
)
100 { DoDrawLine(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
); }
102 void CrossHair(long x
, long y
)
103 { DoCrossHair(x
, y
); }
104 void CrossHair(const wxPoint
& pt
)
105 { DoCrossHair(pt
.x
, pt
.y
); }
107 void DrawArc(long x1
, long y1
, long x2
, long y2
, long xc
, long yc
)
108 { DoDrawArc(x1
, y1
, x2
, y2
, xc
, yc
); }
109 void DrawArc(const wxPoint
& pt1
, const wxPoint
& pt2
, const wxPoint
& centre
)
110 { DoDrawArc(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
, centre
.x
, centre
.y
); }
112 void DrawEllipticArc(long x
, long y
, long w
, long h
, double sa
, double ea
)
113 { DoDrawEllipticArc(x
, y
, w
, h
, sa
, ea
); }
114 void DrawEllipticArc(const wxPoint
& pt
, const wxSize
& sz
,
115 double sa
, double ea
)
116 { DoDrawEllipticArc(pt
.x
, pt
.y
, sz
.x
, sz
.y
, sa
, ea
); }
118 void DrawPoint(long x
, long y
)
119 { DoDrawPoint(x
, y
); }
120 void DrawPoint(const wxPoint
& pt
)
121 { DoDrawPoint(pt
.x
, pt
.y
); }
123 void DrawLines(int n
, wxPoint points
[], long xoffset
= 0, long yoffset
= 0)
124 { DoDrawLines(n
, points
, xoffset
, yoffset
); }
125 void DrawLines(const wxList
*list
, long xoffset
= 0, long yoffset
= 0);
127 void DrawPolygon(int n
, wxPoint points
[],
128 long xoffset
= 0, long yoffset
= 0,
129 int fillStyle
= wxODDEVEN_RULE
)
130 { DoDrawPolygon(n
, points
, xoffset
, yoffset
, fillStyle
); }
132 void DrawPolygon(const wxList
*list
,
133 long xoffset
= 0, long yoffset
= 0,
134 int fillStyle
= wxODDEVEN_RULE
);
136 void DrawRectangle(long x
, long y
, long width
, long height
)
137 { DoDrawRectangle(x
, y
, width
, height
); }
138 void DrawRectangle(const wxPoint
& pt
, const wxSize
& sz
)
139 { DoDrawRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
140 void DrawRectangle(const wxRect
& rect
)
141 { DoDrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
143 void DrawRoundedRectangle(long x
, long y
, long width
, long height
,
145 { DoDrawRoundedRectangle(x
, y
, width
, height
, radius
); }
146 void DrawRoundedRectangle(const wxPoint
& pt
, const wxSize
& sz
,
148 { DoDrawRoundedRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
, radius
); }
149 void DrawRoundedRectangle(const wxRect
& r
, double radius
)
150 { DoDrawRoundedRectangle(r
.x
, r
.y
, r
.width
, r
.height
, radius
); }
152 void DrawCircle(long x
, long y
, long radius
)
153 { DoDrawEllipse(x
- radius
, y
- radius
, 2*radius
, 2*radius
); }
154 void DrawEllipse(long x
, long y
, long width
, long height
)
155 { DoDrawEllipse(x
, y
, width
, height
); }
156 void DrawEllipse(const wxPoint
& pt
, const wxSize
& sz
)
157 { DoDrawEllipse(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
158 void DrawEllipse(const wxRect
& rect
)
159 { DoDrawEllipse(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
161 void DrawIcon(const wxIcon
& icon
, long x
, long y
)
162 { DoDrawIcon(icon
, x
, y
); }
163 void DrawIcon(const wxIcon
& icon
, const wxPoint
& pt
)
164 { DoDrawIcon(icon
, pt
.x
, pt
.y
); }
166 void DrawBitmap(const wxBitmap
&bmp
, long x
, long y
, bool useMask
= FALSE
)
167 { DoDrawBitmap(bmp
, x
, y
, useMask
); }
168 void DrawBitmap(const wxBitmap
&bmp
, const wxPoint
& pt
,
169 bool useMask
= FALSE
)
170 { DoDrawBitmap(bmp
, pt
.x
, pt
.y
, useMask
); }
172 void DrawText(const wxString
& text
, long x
, long y
)
173 { DoDrawText(text
, x
, y
); }
174 void DrawText(const wxString
& text
, const wxPoint
& pt
)
175 { DoDrawText(text
, pt
.x
, pt
.y
); }
177 bool Blit(long xdest
, long ydest
, long width
, long height
,
178 wxDC
*source
, long xsrc
, long ysrc
,
179 int rop
= wxCOPY
, bool useMask
= FALSE
)
181 return DoBlit(xdest
, ydest
, width
, height
,
182 source
, xsrc
, ysrc
, rop
, useMask
);
184 bool Blit(const wxPoint
& destPt
, const wxSize
& sz
,
185 wxDC
*source
, const wxPoint
& srcPt
,
186 int rop
= wxCOPY
, bool useMask
= FALSE
)
188 return DoBlit(destPt
.x
, destPt
.y
, sz
.x
, sz
.y
,
189 source
, srcPt
.x
, srcPt
.y
, rop
, useMask
);
193 // TODO: this API needs fixing (wxPointList, why (!const) "wxList *"?)
194 void DrawSpline(long x1
, long y1
, long x2
, long y2
, long x3
, long y3
);
195 void DrawSpline(int n
, wxPoint points
[]);
197 void DrawSpline(wxList
*points
) { DoDrawSpline(points
); }
198 #endif // wxUSE_SPLINES
200 // global DC operations
201 // --------------------
203 virtual void Clear() = 0;
205 virtual bool StartDoc(const wxString
& message
) = 0;
206 virtual void EndDoc() = 0;
208 virtual void StartPage() = 0;
209 virtual void EndPage() = 0;
211 // set objects to use for drawing
212 // ------------------------------
214 virtual void SetFont(const wxFont
& font
) = 0;
215 virtual void SetPen(const wxPen
& pen
) = 0;
216 virtual void SetBrush(const wxBrush
& brush
) = 0;
217 virtual void SetBackground(const wxBrush
& brush
) = 0;
218 virtual void SetBackgroundMode(int mode
) = 0;
219 virtual void SetPalette(const wxPalette
& palette
) = 0;
224 void SetClippingRegion(long x
, long y
, long width
, long height
)
225 { DoSetClippingRegion(x
, y
, width
, height
); }
226 void SetClippingRegion(const wxPoint
& pt
, const wxSize
& sz
)
227 { DoSetClippingRegion(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
228 void SetClippingRegion(const wxRect
& rect
)
229 { DoSetClippingRegion(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
230 void SetClippingRegion(const wxRegion
& region
)
231 { DoSetClippingRegionAsRegion(region
); }
233 virtual void DestroyClippingRegion() = 0;
235 void GetClippingBox(long *x
, long *y
, long *w
, long *h
) const
236 { DoGetClippingBox(x
, y
, w
, h
); }
237 void GetClippingBox(wxRect
& rect
) const
238 { DoGetClippingBox(&rect
.x
, &rect
.y
, &rect
.width
, &rect
.height
); }
243 virtual long GetCharHeight() const = 0;
244 virtual long GetCharWidth() const = 0;
245 virtual void GetTextExtent(const wxString
& string
,
247 long *descent
= NULL
,
248 long *externalLeading
= NULL
,
249 wxFont
*theFont
= NULL
) const = 0;
251 // size and resolution
252 // -------------------
255 void GetSize(int *width
, int *height
) const
256 { DoGetSize(width
, height
); }
257 wxSize
GetSize() const
266 void GetSizeMM(int* width
, int* height
) const
267 { DoGetSizeMM(width
, height
); }
268 wxSize
GetSizeMM() const
276 // coordinates conversions
277 // -----------------------
279 // This group of functions does actual conversion of the input, as you'd
281 long DeviceToLogicalX(long x
) const;
282 long DeviceToLogicalY(long y
) const;
283 long DeviceToLogicalXRel(long x
) const;
284 long DeviceToLogicalYRel(long y
) const;
285 long LogicalToDeviceX(long x
) const;
286 long LogicalToDeviceY(long y
) const;
287 long LogicalToDeviceXRel(long x
) const;
288 long LogicalToDeviceYRel(long y
) const;
290 // query DC capabilities
291 // ---------------------
293 virtual bool CanDrawBitmap() const = 0;
294 virtual bool CanGetTextExtent() const = 0;
297 virtual int GetDepth() const = 0;
299 // Resolution in Pixels per inch
300 virtual wxSize
GetPPI() const = 0;
302 virtual bool Ok() const { return m_ok
; }
308 const wxBrush
& GetBackground() const { return m_backgroundBrush
; }
309 const wxBrush
& GetBrush() const { return m_brush
; }
310 const wxFont
& GetFont() const { return m_font
; }
311 const wxPen
& GetPen() const { return m_pen
; }
312 const wxColour
& GetTextBackground() const { return m_textBackgroundColour
; }
313 const wxColour
& GetTextForeground() const { return m_textForegroundColour
; }
316 wxBrush
& GetBackground() { return m_backgroundBrush
; }
317 wxBrush
& GetBrush() { return m_brush
; }
318 wxFont
& GetFont() { return m_font
; }
319 wxPen
& GetPen() { return m_pen
; }
320 wxColour
& GetTextBackground() { return m_textBackgroundColour
; }
321 wxColour
& GetTextForeground() { return m_textForegroundColour
; }
323 virtual void SetTextForeground(const wxColour
& colour
)
324 { m_textForegroundColour
= colour
; }
325 virtual void SetTextBackground(const wxColour
& colour
)
326 { m_textBackgroundColour
= colour
; }
328 int GetMapMode() const { return m_mappingMode
; }
329 virtual void SetMapMode(int mode
) = 0;
331 virtual void GetUserScale(double *x
, double *y
) const
333 if ( x
) *x
= m_userScaleX
;
334 if ( y
) *y
= m_userScaleY
;
336 virtual void SetUserScale(double x
, double y
) = 0;
338 virtual void GetLogicalScale(double *x
, double *y
)
340 if ( x
) *x
= m_logicalScaleX
;
341 if ( y
) *y
= m_logicalScaleY
;
343 virtual void SetLogicalScale(double x
, double y
)
349 void GetLogicalOrigin(long *x
, long *y
) const
350 { DoGetLogicalOrigin(x
, y
); }
351 wxPoint
GetLogicalOrigin() const
352 { long x
, y
; DoGetLogicalOrigin(&x
, &y
); return wxPoint(x
, y
); }
353 virtual void SetLogicalOrigin(long x
, long y
) = 0;
355 void GetDeviceOrigin(long *x
, long *y
) const
356 { DoGetDeviceOrigin(x
, y
); }
357 wxPoint
GetDeviceOrigin() const
358 { long x
, y
; DoGetDeviceOrigin(&x
, &y
); return wxPoint(x
, y
); }
359 virtual void SetDeviceOrigin(long x
, long y
) = 0;
361 virtual void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
) = 0;
363 int GetLogicalFunction() const { return m_logicalFunction
; }
364 virtual void SetLogicalFunction(int function
) = 0;
366 // Sometimes we need to override optimization, e.g. if other software is
367 // drawing onto our surface and we can't be sure of who's done what.
369 // FIXME: is this (still) used?
370 virtual void SetOptimization(bool WXUNUSED(opt
)) { }
371 virtual bool GetOptimization() { return FALSE
; }
376 virtual void CalcBoundingBox(long x
, long y
)
378 if (x
< m_minX
) m_minX
= x
;
379 if (y
< m_minY
) m_minY
= y
;
380 if (x
> m_maxX
) m_maxX
= x
;
381 if (y
> m_maxY
) m_maxY
= y
;
384 // Get the final bounding box of the PostScript or Metafile picture.
385 long MinX() const { return m_minX
; }
386 long MaxX() const { return m_maxX
; }
387 long MinY() const { return m_minY
; }
388 long MaxY() const { return m_maxY
; }
390 // misc old functions
391 // ------------------
393 #if WXWIN_COMPATIBILITY
394 virtual void SetColourMap(const wxPalette
& palette
) { SetPalette(palette
); }
395 void GetTextExtent(const wxString
& string
, float *x
, float *y
,
396 float *descent
= NULL
, float *externalLeading
= NULL
,
397 wxFont
*theFont
= NULL
, bool use16bit
= FALSE
) const ;
398 void GetSize(float* width
, float* height
) const { int w
, h
; GetSize(& w
, & h
); *width
= w
; *height
= h
; }
399 void GetSizeMM(float *width
, float *height
) const { long w
, h
; GetSizeMM(& w
, & h
); *width
= (float) w
; *height
= (float) h
; }
400 #endif // WXWIN_COMPATIBILITY
403 // the pure virtual functions which should be implemented by wxDC
404 virtual void DoFloodFill(long x
, long y
, const wxColour
& col
,
405 int style
= wxFLOOD_SURFACE
) = 0;
407 virtual bool DoGetPixel(long x
, long y
, wxColour
*col
) const = 0;
409 virtual void DoDrawPoint(long x
, long y
) = 0;
410 virtual void DoDrawLine(long x1
, long y1
, long x2
, long y2
) = 0;
412 virtual void DoDrawArc(long x1
, long y1
,
414 long xc
, long yc
) = 0;
415 virtual void DoDrawEllipticArc(long x
, long y
, long w
, long h
,
416 double sa
, double ea
) = 0;
418 virtual void DoDrawRectangle(long x
, long y
, long width
, long height
) = 0;
419 virtual void DoDrawRoundedRectangle(long x
, long y
,
420 long width
, long height
,
422 virtual void DoDrawEllipse(long x
, long y
, long width
, long height
) = 0;
424 virtual void DoCrossHair(long x
, long y
) = 0;
426 virtual void DoDrawIcon(const wxIcon
& icon
, long x
, long y
) = 0;
427 virtual void DoDrawBitmap(const wxBitmap
&bmp
, long x
, long y
,
428 bool useMask
= FALSE
) = 0;
430 virtual void DoDrawText(const wxString
& text
, long x
, long y
) = 0;
432 virtual bool DoBlit(long xdest
, long ydest
, long width
, long height
,
433 wxDC
*source
, long xsrc
, long ysrc
,
434 int rop
= wxCOPY
, bool useMask
= FALSE
) = 0;
436 virtual void DoGetSize(int *width
, int *height
) const = 0;
437 virtual void DoGetSizeMM(int* width
, int* height
) const = 0;
439 virtual void DoDrawLines(int n
, wxPoint points
[],
440 long xoffset
, long yoffset
) = 0;
441 virtual void DoDrawPolygon(int n
, wxPoint points
[],
442 long xoffset
, long yoffset
,
443 int fillStyle
= wxODDEVEN_RULE
) = 0;
445 virtual void DoSetClippingRegionAsRegion(const wxRegion
& region
) = 0;
446 virtual void DoSetClippingRegion(long x
, long y
,
447 long width
, long height
) = 0;
449 // FIXME are these functions really different?
450 virtual void DoGetClippingRegion(long *x
, long *y
,
452 { DoGetClippingBox(x
, y
, w
, h
); }
453 virtual void DoGetClippingBox(long *x
, long *y
,
454 long *w
, long *h
) const
458 if ( x
) *x
= m_clipX1
;
459 if ( y
) *y
= m_clipY1
;
460 if ( w
) *w
= m_clipX2
- m_clipX1
;
461 if ( h
) *h
= m_clipY2
- m_clipY1
;
465 *x
= *y
= *w
= *h
= 0;
469 virtual void DoGetLogicalOrigin(long *x
, long *y
) const
471 if ( x
) *x
= m_logicalOriginX
;
472 if ( y
) *y
= m_logicalOriginY
;
475 virtual void DoGetDeviceOrigin(long *x
, long *y
) const
477 if ( x
) *x
= m_deviceOriginX
;
478 if ( y
) *y
= m_deviceOriginY
;
482 virtual void DoDrawSpline(wxList
*points
) = 0;
490 bool m_isInteractive
:1;
492 // coordinate system variables
494 // TODO short descriptions of what exactly they are would be nice...
496 long m_logicalOriginX
, m_logicalOriginY
;
497 long m_deviceOriginX
, m_deviceOriginY
;
499 double m_logicalScaleX
, m_logicalScaleY
;
500 double m_userScaleX
, m_userScaleY
;
501 double m_scaleX
, m_scaleY
;
503 // Used by SetAxisOrientation() to invert the axes
504 int m_signX
, m_signY
;
506 // bounding and clipping boxes
507 long m_minX
, m_minY
, m_maxX
, m_maxY
;
508 long m_clipX1
, m_clipY1
, m_clipX2
, m_clipY2
;
510 int m_logicalFunction
;
511 int m_backgroundMode
;
517 wxBrush m_backgroundBrush
;
518 wxColour m_textForegroundColour
;
519 wxColour m_textBackgroundColour
;
524 DECLARE_NO_COPY_CLASS(wxDCBase
);
527 // ----------------------------------------------------------------------------
528 // now include the declaration of wxDC class
529 // ----------------------------------------------------------------------------
531 #if defined(__WXMSW__)
532 #include "wx/msw/dc.h"
533 #elif defined(__WXMOTIF__)
534 #include "wx/motif/dc.h"
535 #elif defined(__WXGTK__)
536 #include "wx/gtk/dc.h"
537 #elif defined(__WXQT__)
538 #include "wx/qt/dc.h"
539 #elif defined(__WXMAC__)
540 #include "wx/mac/dc.h"
541 #elif defined(__WXSTUBS__)
542 #include "wx/stubs/dc.h"