1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
19 #include "wx/gdicmn.h"
21 //-----------------------------------------------------------------------------
23 //-----------------------------------------------------------------------------
27 #define MM_ISOTROPIC 1
28 #define MM_ANISOTROPIC 2
37 class wxMacPortStateHelper
;
39 #if !wxUSE_GRAPHICS_CONTEXT
41 class WXDLLEXPORT wxGraphicPath
44 virtual ~wxGraphicPath() {}
46 virtual void MoveToPoint( wxCoord x1
, wxCoord y1
) = 0;
48 virtual void AddLineToPoint( wxCoord x1
, wxCoord y1
) = 0;
50 virtual void AddQuadCurveToPoint( wxCoord cx1
, wxCoord cy1
, wxCoord x1
, wxCoord y1
) = 0;
52 virtual void AddRectangle( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
) = 0;
54 virtual void AddCircle( wxCoord x
, wxCoord y
, wxCoord r
) = 0;
56 // draws a an arc to two tangents connecting (current) to (x1,y1) and (x1,y1) to (x2,y2), also a straight line from (current) to (x1,y1)
57 virtual void AddArcToPoint( wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
, wxCoord r
) = 0 ;
59 virtual void AddArc( wxCoord x
, wxCoord y
, wxCoord r
, double startAngle
, double endAngle
, bool clockwise
) = 0 ;
61 virtual void CloseSubpath() = 0;
64 class WXDLLEXPORT wxGraphicContext
67 virtual ~wxGraphicContext() {}
69 virtual wxGraphicPath
* CreatePath() = 0;
71 virtual void PushState() = 0 ;
73 virtual void PopState() = 0 ;
75 virtual void Clip( const wxRegion
®ion
) = 0;
77 virtual void SetPen( const wxPen
&pen
) = 0;
79 virtual void SetBrush( const wxBrush
&brush
) = 0;
81 virtual void SetFont( const wxFont
&font
) = 0 ;
83 virtual void SetTextColor( const wxColour
&col
) = 0 ;
85 virtual void StrokePath( const wxGraphicPath
*path
) = 0;
87 virtual void DrawPath( const wxGraphicPath
*path
, int fillStyle
= wxWINDING_RULE
) = 0;
89 virtual void FillPath( const wxGraphicPath
*path
, const wxColor
&fillColor
, int fillStyle
= wxWINDING_RULE
) = 0;
91 virtual void DrawBitmap( const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
) = 0 ;
93 virtual void DrawIcon( const wxIcon
&icon
, wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
) = 0 ;
95 virtual void DrawText( const wxString
&str
, wxCoord x
, wxCoord y
, double angle
) = 0 ;
97 virtual void GetTextExtent( const wxString
&text
, wxCoord
*width
, wxCoord
*height
,
98 wxCoord
*descent
, wxCoord
*externalLeading
) const = 0 ;
100 virtual void GetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const = 0 ;
102 virtual void Translate( wxCoord dx
, wxCoord dy
) = 0 ;
104 virtual void Scale( wxCoord xScale
, wxCoord yScale
) = 0 ;
107 class WXDLLEXPORT wxDC
: public wxDCBase
109 DECLARE_DYNAMIC_CLASS(wxDC
)
110 DECLARE_NO_COPY_CLASS(wxDC
)
116 // implement base class pure virtuals
117 // ----------------------------------
119 virtual void Clear();
121 virtual bool StartDoc( const wxString
& WXUNUSED(message
) ) { return true; }
122 virtual void EndDoc(void) {}
124 virtual void StartPage(void) {}
125 virtual void EndPage(void) {}
127 virtual void SetFont(const wxFont
& font
);
128 virtual void SetPen(const wxPen
& pen
);
129 virtual void SetBrush(const wxBrush
& brush
);
130 virtual void SetBackground(const wxBrush
& brush
);
131 virtual void SetBackgroundMode(int mode
);
132 virtual void SetPalette(const wxPalette
& palette
);
134 virtual void DestroyClippingRegion();
136 virtual wxCoord
GetCharHeight() const;
137 virtual wxCoord
GetCharWidth() const;
139 virtual bool CanDrawBitmap() const;
140 virtual bool CanGetTextExtent() const;
141 virtual int GetDepth() const;
142 virtual wxSize
GetPPI() const;
144 virtual void SetLogicalFunction(int function
);
146 virtual void SetTextForeground(const wxColour
& colour
);
147 virtual void SetTextBackground(const wxColour
& colour
);
150 wxCoord
XDEV2LOG(wxCoord x
) const { return DeviceToLogicalX( x
); }
151 wxCoord
XDEV2LOGREL(wxCoord x
) const { return DeviceToLogicalXRel( x
); }
152 wxCoord
YDEV2LOG(wxCoord y
) const { return DeviceToLogicalY( y
); }
153 wxCoord
YDEV2LOGREL(wxCoord y
) const { return DeviceToLogicalYRel( y
); }
154 wxCoord
XLOG2DEV(wxCoord x
) const { return LogicalToDeviceX( x
); }
155 wxCoord
XLOG2DEVREL(wxCoord x
) const { return LogicalToDeviceXRel( x
); }
156 wxCoord
YLOG2DEV(wxCoord y
) const { return LogicalToDeviceY( y
); }
157 wxCoord
YLOG2DEVREL(wxCoord y
) const { return LogicalToDeviceYRel( y
); }
158 // probably no longer needed
159 wxCoord
XLOG2DEVMAC(wxCoord x
) const { return LogicalToDeviceX( x
); }
160 wxCoord
YLOG2DEVMAC(wxCoord y
) const { return LogicalToDeviceY( y
); }
162 #if wxMAC_USE_CORE_GRAPHICS
163 wxGraphicsContext
* GetGraphicsContext() { return m_graphicContext
; }
165 WXHRGN
MacGetCurrentClipRgn() { return m_macCurrentClipRgn
; }
166 static void MacSetupBackgroundForCurrentPort(const wxBrush
& background
);
170 virtual void DoGetTextExtent(const wxString
& string
,
171 wxCoord
*x
, wxCoord
*y
,
172 wxCoord
*descent
= NULL
,
173 wxCoord
*externalLeading
= NULL
,
174 const wxFont
*theFont
= NULL
) const;
176 virtual bool DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const;
178 virtual bool DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
179 int style
= wxFLOOD_SURFACE
);
181 virtual bool DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const;
183 virtual void DoDrawPoint(wxCoord x
, wxCoord y
);
185 #if wxMAC_USE_CORE_GRAPHICS && wxUSE_SPLINES
186 virtual void DoDrawSpline(wxList
*points
);
189 virtual void DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
);
191 virtual void DoDrawArc(wxCoord x1
, wxCoord y1
,
192 wxCoord x2
, wxCoord y2
,
193 wxCoord xc
, wxCoord yc
);
195 virtual void DoDrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
196 double sa
, double ea
);
198 virtual void DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
199 virtual void DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
200 wxCoord width
, wxCoord height
,
202 virtual void DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
204 virtual void DoCrossHair(wxCoord x
, wxCoord y
);
206 virtual void DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
);
207 virtual void DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
208 bool useMask
= false);
210 virtual void DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
);
211 virtual void DoDrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
,
214 virtual bool DoBlit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
215 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
216 int rop
= wxCOPY
, bool useMask
= false, wxCoord xsrcMask
= -1, wxCoord ysrcMask
= -1);
218 virtual bool DoStretchBlit(wxCoord xdest
, wxCoord ydest
,
219 wxCoord dstWidth
, wxCoord dstHeight
,
221 wxCoord xsrc
, wxCoord ysrc
,
222 wxCoord srcWidth
, wxCoord srcHeight
,
223 int rop
= wxCOPY
, bool useMask
= false,
224 wxCoord xsrcMask
= wxDefaultCoord
, wxCoord ysrcMask
= wxDefaultCoord
);
226 // this is gnarly - we can't even call this function DoSetClippingRegion()
227 // because of virtual function hiding
229 virtual void DoSetClippingRegionAsRegion(const wxRegion
& region
);
230 virtual void DoSetClippingRegion(wxCoord x
, wxCoord y
,
231 wxCoord width
, wxCoord height
);
233 virtual void DoGetSizeMM(int *width
, int *height
) const;
235 virtual void DoDrawLines(int n
, wxPoint points
[],
236 wxCoord xoffset
, wxCoord yoffset
);
237 virtual void DoDrawPolygon(int n
, wxPoint points
[],
238 wxCoord xoffset
, wxCoord yoffset
,
239 int fillStyle
= wxODDEVEN_RULE
);
243 double m_mm_to_pix_x
, m_mm_to_pix_y
;
245 // To be set using SetDeviceOrigin()
246 // by external classes such as wxScrolledWindow
247 long m_externalDeviceOriginX
, m_externalDeviceOriginY
;
249 #if !wxMAC_USE_CORE_GRAPHICS
250 // If un-scrolled is non-zero or d.o. changes with scrolling.
251 // Set using SetInternalDeviceOrigin().
252 long m_internalDeviceOriginX
, m_internalDeviceOriginY
;
258 bool m_needComputeScaleX
, m_needComputeScaleY
;
262 void MacInstallFont() const;
264 // in order to preserve the const inheritance of the virtual functions,
265 // we have to use mutable variables starting from CWPro 5
266 wxPoint m_macLocalOrigin
;
267 mutable void *m_macATSUIStyle
;
271 #if wxMAC_USE_CORE_GRAPHICS
272 wxGraphicsContext
*m_graphicContext
;
274 void MacInstallPen() const;
275 void MacInstallBrush() const;
277 void MacSetupPort( wxMacPortStateHelper
*ph
) const;
278 void MacCleanupPort( wxMacPortStateHelper
*ph
) const;
280 mutable wxMacPortStateHelper
*m_macCurrentPortStateHelper
;
282 mutable bool m_macFontInstalled
;
283 mutable bool m_macPenInstalled
;
284 mutable bool m_macBrushInstalled
;
286 WXHRGN m_macBoundaryClipRgn
;
287 WXHRGN m_macCurrentClipRgn
;
288 mutable bool m_macFormerAliasState
;
289 mutable short m_macFormerAliasSize
;
290 mutable bool m_macAliasWasEnabled
;
291 mutable void *m_macForegroundPixMap
;
292 mutable void *m_macBackgroundPixMap
;