#include "wx/region.h"
#endif
+#include "wx/graphics.h"
#include "wx/mac/private.h"
//-----------------------------------------------------------------------------
if (!rootwindow)
return;
- WindowRef windowref = (WindowRef) rootwindow->MacGetWindowRef() ;
int x , y ;
x = y = 0 ;
window->MacWindowToRootWindow( &x , &y ) ;
#if wxMAC_USE_CORE_GRAPHICS
m_window->GetSize( &m_width , &m_height);
- CGContextRef cg = (CGContextRef) window->MacGetCGContextRef();
- m_release = false;
+ CGContextRef cg = (CGContextRef) window->MacGetCGContextRef();
+ m_release = false;
if ( cg == NULL )
- {
- SetGraphicsContext( wxGraphicsContext::Create( window ) ) ;
- SetDeviceOrigin( x, y );
- }
- else
- {
- CGContextSaveGState( cg );
- m_release = true ;
- // make sure the context is having its origin at the wx-window coordinates of the
- // view (read at the top of window.cpp about the differences)
- if ( window->MacGetLeftBorderSize() != 0 || window->MacGetTopBorderSize() != 0 )
- CGContextTranslateCTM( cg , -window->MacGetLeftBorderSize() , -window->MacGetTopBorderSize() );
-
- SetGraphicsContext( wxGraphicsContext::CreateFromNative( cg ) );
- }
- m_graphicContext->SetPen( m_pen ) ;
- m_graphicContext->SetBrush( m_brush ) ;
- SetClippingRegion( 0 , 0 , m_width , m_height ) ;
+ {
+ SetGraphicsContext( wxGraphicsContext::Create( window ) ) ;
+ SetDeviceOrigin( x, y );
+ }
+ else
+ {
+ CGContextSaveGState( cg );
+ m_release = true ;
+ // make sure the context is having its origin at the wx-window coordinates of the
+ // view (read at the top of window.cpp about the differences)
+ if ( window->MacGetLeftBorderSize() != 0 || window->MacGetTopBorderSize() != 0 )
+ CGContextTranslateCTM( cg , -window->MacGetLeftBorderSize() , -window->MacGetTopBorderSize() );
+
+ SetGraphicsContext( wxGraphicsContext::CreateFromNative( cg ) );
+ }
+ m_graphicContext->SetPen( m_pen ) ;
+ m_graphicContext->SetBrush( m_brush ) ;
+ SetClippingRegion( 0 , 0 , m_width , m_height ) ;
#else
- m_macLocalOrigin.x = x ;
- m_macLocalOrigin.y = y ;
- m_macPort = UMAGetWindowPort( windowref ) ;
+ m_macLocalOrigin.x = x ;
+ m_macLocalOrigin.y = y ;
+ m_macPort = UMAGetWindowPort( (WindowRef) rootwindow->MacGetWindowRef() ) ;
CopyRgn( (RgnHandle) window->MacGetVisibleRegion(true).GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ;
OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , m_macLocalOrigin.x , m_macLocalOrigin.y ) ;
wxWindowDC::~wxWindowDC()
{
#if wxMAC_USE_CORE_GRAPHICS
- if ( m_release && m_graphicContext )
- {
- CGContextRef cg = (CGContextRef) m_window->MacGetCGContextRef();
- CGContextRestoreGState(cg);
-// CGContextRef cg = (CGContextRef) m_graphicContext->GetNativeContext() ;
- }
+ if ( m_release && m_graphicContext )
+ {
+ CGContextRef cg = (CGContextRef) m_window->MacGetCGContextRef();
+ CGContextRestoreGState(cg);
+ //CGContextRef cg = (CGContextRef) m_graphicContext->GetNativeContext() ;
+ }
#endif
}
void wxWindowDC::DoGetSize( int* width, int* height ) const
{
- wxCHECK_RET( m_window, _T("GetSize() doesn't work without window") );
-
#if wxMAC_USE_CORE_GRAPHICS
- if ( width )
- *width = m_width;
- if ( height )
- *height = m_height;
+ if ( width )
+ *width = m_width;
+ if ( height )
+ *height = m_height;
#else
+ wxCHECK_RET( m_window, _T("GetSize() doesn't work without window") );
m_window->GetSize(width, height);
#endif
}
#if wxMAC_USE_CORE_GRAPHICS
wxClientDC::wxClientDC(wxWindow *window) :
- wxWindowDC( window )
+ wxWindowDC( window )
{
wxPoint origin = window->GetClientAreaOrigin() ;
wxSize size = window->GetClientSize() ;
y = origin.y ;
window->MacWindowToRootWindow( &x , &y ) ;
m_window->GetClientSize( &m_width , &m_height);
- SetDeviceOrigin( origin.x, origin.y );
- SetClippingRegion( 0 , 0 , m_width , m_height ) ;
+ SetDeviceOrigin( origin.x, origin.y );
+ SetClippingRegion( 0 , 0 , m_width , m_height ) ;
}
#else
wxClientDC::wxClientDC(wxWindow *window)
#if wxMAC_USE_CORE_GRAPHICS
wxPaintDC::wxPaintDC(wxWindow *window) :
- wxWindowDC( window )
+ wxWindowDC( window )
{
wxPoint origin = window->GetClientAreaOrigin() ;
wxSize size = window->GetClientSize() ;
y = origin.y ;
window->MacWindowToRootWindow( &x , &y ) ;
m_window->GetClientSize( &m_width , &m_height);
- SetDeviceOrigin( origin.x, origin.y );
- SetClippingRegion( 0 , 0 , m_width , m_height ) ;
+ SetDeviceOrigin( origin.x, origin.y );
+ SetClippingRegion( 0 , 0 , m_width , m_height ) ;
}
#else
wxPaintDC::wxPaintDC(wxWindow *window)