X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4130e41449b4f5a8749b596e78ac019d67f33169..eec960fa8987d15fd87e249c8441474188124425:/src/mac/carbon/dcclient.cpp diff --git a/src/mac/carbon/dcclient.cpp b/src/mac/carbon/dcclient.cpp index 07304d1ecd..73d0d4d301 100644 --- a/src/mac/carbon/dcclient.cpp +++ b/src/mac/carbon/dcclient.cpp @@ -23,6 +23,7 @@ #include "wx/region.h" #endif +#include "wx/graphics.h" #include "wx/mac/private.h" //----------------------------------------------------------------------------- @@ -119,7 +120,6 @@ wxWindowDC::wxWindowDC(wxWindow *window) if (!rootwindow) return; - WindowRef windowref = (WindowRef) rootwindow->MacGetWindowRef() ; int x , y ; x = y = 0 ; window->MacWindowToRootWindow( &x , &y ) ; @@ -127,19 +127,31 @@ wxWindowDC::wxWindowDC(wxWindow *window) #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 ) ) ; - else - 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 ) ; @@ -153,23 +165,24 @@ wxWindowDC::wxWindowDC(wxWindow *window) wxWindowDC::~wxWindowDC() { #if wxMAC_USE_CORE_GRAPHICS - if ( m_release && m_graphicContext ) - { -// 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 } @@ -185,7 +198,7 @@ wxClientDC::wxClientDC() #if wxMAC_USE_CORE_GRAPHICS wxClientDC::wxClientDC(wxWindow *window) : - wxWindowDC( window ) + wxWindowDC( window ) { wxPoint origin = window->GetClientAreaOrigin() ; wxSize size = window->GetClientSize() ; @@ -194,7 +207,8 @@ wxClientDC::wxClientDC(wxWindow *window) : y = origin.y ; window->MacWindowToRootWindow( &x , &y ) ; m_window->GetClientSize( &m_width , &m_height); - SetClippingRegion( 0 , 0 , m_width , m_height ) ; + SetDeviceOrigin( origin.x, origin.y ); + SetClippingRegion( 0 , 0 , m_width , m_height ) ; } #else wxClientDC::wxClientDC(wxWindow *window) @@ -251,7 +265,7 @@ wxPaintDC::wxPaintDC() #if wxMAC_USE_CORE_GRAPHICS wxPaintDC::wxPaintDC(wxWindow *window) : - wxWindowDC( window ) + wxWindowDC( window ) { wxPoint origin = window->GetClientAreaOrigin() ; wxSize size = window->GetClientSize() ; @@ -260,7 +274,8 @@ wxPaintDC::wxPaintDC(wxWindow *window) : y = origin.y ; window->MacWindowToRootWindow( &x , &y ) ; m_window->GetClientSize( &m_width , &m_height); - SetClippingRegion( 0 , 0 , m_width , m_height ) ; + SetDeviceOrigin( origin.x, origin.y ); + SetClippingRegion( 0 , 0 , m_width , m_height ) ; } #else wxPaintDC::wxPaintDC(wxWindow *window)