#include "wx/icon.h"
#include "wx/font.h"
#include "wx/gdicmn.h"
-#include "wx/mac/aga.h"
//-----------------------------------------------------------------------------
// constants
extern int wxPageNumber;
+class wxMacPortStateHelper ;
//-----------------------------------------------------------------------------
// wxDC
//-----------------------------------------------------------------------------
-class WXDLLEXPORT wxMacPortSetter
-{
-public :
- wxMacPortSetter( const wxDC* dc ) ;
- ~wxMacPortSetter() ;
-private :
- AGAPortHelper m_ph ;
-} ;
-
class WXDLLEXPORT wxDC: public wxDCBase
{
DECLARE_DYNAMIC_CLASS(wxDC)
wxCoord XDEV2LOG(wxCoord x) const
{
- long new_x = x - m_deviceOriginX;
+ long new_x = x - m_deviceOriginX ;
if (new_x > 0)
return (wxCoord)((double)(new_x) / m_scaleX + 0.5) * m_signX + m_logicalOriginX;
else
}
wxCoord YDEV2LOG(wxCoord y) const
{
- long new_y = y - m_deviceOriginY;
+ long new_y = y - m_deviceOriginY ;
if (new_y > 0)
return (wxCoord)((double)(new_y) / m_scaleY + 0.5) * m_signY + m_logicalOriginY;
else
{
long new_x = x - m_logicalOriginX;
if (new_x > 0)
- return (wxCoord)((double)(new_x) * m_scaleX + 0.5) * m_signX + m_deviceOriginX;
+ return (wxCoord)((double)(new_x) * m_scaleX + 0.5) * m_signX + m_deviceOriginX ;
else
- return (wxCoord)((double)(new_x) * m_scaleX - 0.5) * m_signX + m_deviceOriginX;
+ return (wxCoord)((double)(new_x) * m_scaleX - 0.5) * m_signX + m_deviceOriginX ;
}
wxCoord XLOG2DEVREL(wxCoord x) const
{
}
wxCoord YLOG2DEV(wxCoord y) const
{
- long new_y = y - m_logicalOriginY;
+ long new_y = y - m_logicalOriginY ;
if (new_y > 0)
- return (wxCoord)((double)(new_y) * m_scaleY + 0.5) * m_signY + m_deviceOriginY;
+ return (wxCoord)((double)(new_y) * m_scaleY + 0.5) * m_signY + m_deviceOriginY ;
else
- return (wxCoord)((double)(new_y) * m_scaleY - 0.5) * m_signY + m_deviceOriginY;
+ return (wxCoord)((double)(new_y) * m_scaleY - 0.5) * m_signY + m_deviceOriginY ;
}
wxCoord YLOG2DEVREL(wxCoord y) const
{
else
return (wxCoord)((double)(y) * m_scaleY - 0.5);
}
+ wxCoord XLOG2DEVMAC(wxCoord x) const
+ {
+ long new_x = x - m_logicalOriginX;
+ if (new_x > 0)
+ return (wxCoord)((double)(new_x) * m_scaleX + 0.5) * m_signX + m_deviceOriginX + m_macLocalOrigin.x ;
+ else
+ return (wxCoord)((double)(new_x) * m_scaleX - 0.5) * m_signX + m_deviceOriginX + m_macLocalOrigin.x ;
+ }
+ wxCoord YLOG2DEVMAC(wxCoord y) const
+ {
+ long new_y = y - m_logicalOriginY ;
+ if (new_y > 0)
+ return (wxCoord)((double)(new_y) * m_scaleY + 0.5) * m_signY + m_deviceOriginY + m_macLocalOrigin.y ;
+ else
+ return (wxCoord)((double)(new_y) * m_scaleY - 0.5) * m_signY + m_deviceOriginY + m_macLocalOrigin.y ;
+ }
- RgnHandle MacGetCurrentClipRgn() { return m_macCurrentClipRgn ; }
- static MacSetupBackgroundForCurrentPort(const wxBrush& background ) ;
+ WXHRGN MacGetCurrentClipRgn() { return m_macCurrentClipRgn ; }
+ static void MacSetupBackgroundForCurrentPort(const wxBrush& background ) ;
//
protected:
// Begin implementation for Mac
public:
- GrafPtr m_macPort ;
- GWorldPtr m_macMask ;
+ WXHDC m_macPort ;
+ WXHBITMAP m_macMask ;
// in order to preserve the const inheritance of the virtual functions, we have to
// use mutable variables starting from CWPro 5
mutable bool m_macPenInstalled ;
mutable bool m_macBrushInstalled ;
- RgnHandle m_macBoundaryClipRgn ;
- RgnHandle m_macCurrentClipRgn ;
- Point m_macLocalOrigin ;
- void MacSetupPort( AGAPortHelper* ph ) const ;
+ WXHRGN m_macBoundaryClipRgn ;
+ WXHRGN m_macCurrentClipRgn ;
+ wxPoint m_macLocalOrigin ;
+ void MacSetupPort( wxMacPortStateHelper* ph ) const ;
+ void MacCleanupPort( wxMacPortStateHelper* ph ) const ;
+ mutable void* m_macATSUIStyle ;
+ mutable wxMacPortStateHelper* m_macCurrentPortStateHelper ;
+ mutable bool m_macFormerAliasState ;
+ mutable short m_macFormerAliasSize ;
+ mutable bool m_macAliasWasEnabled ;
+ mutable void* m_macForegroundPixMap ;
+ mutable void* m_macBackgroundPixMap ;
};
#endif