From: Stefan Csomor Date: Thu, 26 Oct 2006 17:31:41 +0000 (+0000) Subject: adding workarounds for 10.4 only implementations X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2701ef7e86622c4b21a3c960b749033bd2d83298 adding workarounds for 10.4 only implementations git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42460 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/graphics.cpp b/src/mac/carbon/graphics.cpp index 295b0b14d1..24ea7ec442 100755 --- a/src/mac/carbon/graphics.cpp +++ b/src/mac/carbon/graphics.cpp @@ -852,13 +852,23 @@ void wxMacCoreGraphicsMatrix::Invert() // returns true if the elements of the transformation matrix are equal ? bool wxMacCoreGraphicsMatrix::IsEqual( const wxGraphicsMatrix* t) const { + const CGAffineTransform* tm = (CGAffineTransform*) t->GetNativeMatrix(); + return ( + m_matrix.a == tm->a && + m_matrix.b == tm->b && + m_matrix.c == tm->c && + m_matrix.d == tm->d && + m_matrix.tx == tm->tx && + m_matrix.ty == tm->ty ) ; + return CGAffineTransformEqualToTransform(m_matrix, *((CGAffineTransform*) t->GetNativeMatrix())); } // return true if this is the identity matrix bool wxMacCoreGraphicsMatrix::IsIdentity() { - return CGAffineTransformIsIdentity(m_matrix); + return ( m_matrix.a == 1 && m_matrix.d == 1 && + m_matrix.b == 0 && m_matrix.d == 0 && m_matrix.tx == 0 && m_matrix.ty == 0); } // @@ -890,25 +900,18 @@ void wxMacCoreGraphicsMatrix::Rotate( wxDouble angle ) // applies that matrix to the point void wxMacCoreGraphicsMatrix::TransformPoint( wxDouble *x, wxDouble *y ) { - wxDouble x1, y1 ; - - x1 = m_matrix.a * (*x) + m_matrix.c * (*y) + m_matrix.tx ; - y1 = m_matrix.b * (*x) + m_matrix.d * (*y) + m_matrix.ty ; + CGPoint pt = CGPointApplyAffineTransform( CGPointMake(*x,*y), m_matrix); - *x = x1; - *y = y1; + *x = pt.x; + *y = pt.y; } // applies the matrix except for translations void wxMacCoreGraphicsMatrix::TransformDistance( wxDouble *dx, wxDouble *dy ) { - wxDouble x1, y1 ; - - x1 = m_matrix.a * (*dx) + m_matrix.c * (*dy); - y1 = m_matrix.b * (*dx) + m_matrix.d * (*dy); - - *dx = x1; - *dy = y1; + CGSize sz = CGSizeApplyAffineTransform( CGSizeMake(*dx,*dy) , m_matrix ); + *dx = sz.width; + *dy = sz.height; } // returns the native representation