const wxRect& rect,
int flags)
{
- const int CORNER = 1;
-
- const wxCoord x = rect.x-1,
- y = rect.y-1,
- w = rect.width,
- h = rect.height;
+ const wxCoord x = dc.XLOG2DEV(rect.x-1),
+ y = dc.YLOG2DEV(rect.y-1),
+ w = dc.XLOG2DEVREL(rect.width),
+ h = dc.YLOG2DEVREL(rect.height);
int major,minor;
wxGetOsVersion( &major, &minor );
{
CGContextRef cgContext ;
#if wxMAC_USE_CORE_GRAPHICS
- cgContext = dynamic_cast<wxMacCGContext*>(dc.GetGraphicContext())->GetNativeContext() ;
+ cgContext = ((wxMacCGContext*)(dc.GetGraphicContext()))->GetNativeContext() ;
#else
Rect bounds ;
GetPortBounds( (CGrafPtr) dc.m_macPort , &bounds ) ;
QDBeginCGContext( (CGrafPtr) dc.m_macPort , &cgContext ) ;
CGContextTranslateCTM( cgContext , 0 , bounds.bottom - bounds.top ) ;
CGContextScaleCTM( cgContext , 1 , -1 ) ;
+ HIShapeReplacePathInCGContext( HIShapeCreateWithQDRgn( (RgnHandle) dc.m_macCurrentClipRgn ) , cgContext ) ;
+ CGContextClip( cgContext ) ;
HIViewConvertRect( &headerRect , (HIViewRef) win->GetHandle() , (HIViewRef) win->MacGetTopLevelWindow()->GetHandle() ) ;
#endif
{
{
CGContextRef cgContext ;
#if wxMAC_USE_CORE_GRAPHICS
- cgContext = dynamic_cast<wxMacCGContext*>(dc.GetGraphicContext())->GetNativeContext() ;
+ cgContext = ((wxMacCGContext*)(dc.GetGraphicContext()))->GetNativeContext() ;
#else
Rect bounds ;
GetPortBounds( (CGrafPtr) dc.m_macPort , &bounds ) ;