class wxMacPortStateHelper;
+#if !wxUSE_GRAPHICS_CONTEXT
+
class WXDLLEXPORT wxGraphicPath
{
public :
}
#if wxMAC_USE_CORE_GRAPHICS
- wxGraphicContext* GetGraphicContext() { return m_graphicContext; }
+ wxGraphicsContext* GetGraphicsContext() { return m_graphicContext; }
#else
WXHRGN MacGetCurrentClipRgn() { return m_macCurrentClipRgn; }
static void MacSetupBackgroundForCurrentPort(const wxBrush& background );
WXHDC m_macPort;
#if wxMAC_USE_CORE_GRAPHICS
- wxGraphicContext *m_graphicContext;
- wxPoint m_macLocalOriginInPort;
+ wxGraphicsContext *m_graphicContext;
#else
void MacInstallPen() const;
void MacInstallBrush() const;
#endif
};
+#endif
+
#endif // _WX_DC_H_