1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 #if wxMAC_USE_CORE_GRAPHICS
19 #include "wx/mac/uma.h"
20 #include "wx/dcmemory.h"
21 #include "wx/dcprint.h"
22 #include "wx/region.h"
30 // in case our functions were defined outside std, we make it known all the same
36 #include "wx/mac/private.h"
38 IMPLEMENT_ABSTRACT_CLASS(wxDC
, wxObject
)
40 //-----------------------------------------------------------------------------
42 //-----------------------------------------------------------------------------
44 #if !defined( __DARWIN__ ) || defined(__MWERKS__)
46 const double M_PI
= 3.14159265358979 ;
50 const double RAD2DEG
= 180.0 / M_PI
;
51 const short kEmulatedMode
= -1 ;
52 const short kUnsupportedMode
= -2 ;
54 extern TECObjectRef s_TECNativeCToUnicode
;
58 // The textctrl implementation still needs that (needs what?) for the non-HIView implementation
60 wxMacWindowClipper::wxMacWindowClipper( const wxWindow
* win
) :
61 wxMacPortSaver( (GrafPtr
) GetWindowPort((WindowRef
) win
->MacGetTopLevelWindowRef()) )
63 m_newPort
= (GrafPtr
) GetWindowPort((WindowRef
) win
->MacGetTopLevelWindowRef()) ;
64 m_formerClip
= NewRgn() ;
65 m_newClip
= NewRgn() ;
66 GetClip( m_formerClip
) ;
70 // guard against half constructed objects, this just leads to a empty clip
74 win
->MacWindowToRootWindow( &x
, &y
) ;
75 // get area including focus rect
76 CopyRgn( (RgnHandle
) ((wxWindow
*)win
)->MacGetVisibleRegion(true).GetWXHRGN() , m_newClip
) ;
77 if ( !EmptyRgn( m_newClip
) )
78 OffsetRgn( m_newClip
, x
, y
) ;
81 SetClip( m_newClip
) ;
85 wxMacWindowClipper::~wxMacWindowClipper()
87 SetPort( m_newPort
) ;
88 SetClip( m_formerClip
) ;
89 DisposeRgn( m_newClip
) ;
90 DisposeRgn( m_formerClip
) ;
93 wxMacWindowStateSaver::wxMacWindowStateSaver( const wxWindow
* win
) :
94 wxMacWindowClipper( win
)
96 // the port is already set at this point
97 m_newPort
= (GrafPtr
) GetWindowPort((WindowRef
) win
->MacGetTopLevelWindowRef()) ;
98 GetThemeDrawingState( &m_themeDrawingState
) ;
101 wxMacWindowStateSaver::~wxMacWindowStateSaver()
103 SetPort( m_newPort
) ;
104 SetThemeDrawingState( m_themeDrawingState
, true ) ;
107 // minimal implementation only used for appearance drawing < 10.3
109 wxMacPortSetter::wxMacPortSetter( const wxDC
* dc
) :
110 m_ph( (GrafPtr
) dc
->m_macPort
)
112 wxASSERT( dc
->Ok() ) ;
115 // dc->MacSetupPort(&m_ph) ;
118 wxMacPortSetter::~wxMacPortSetter()
120 // m_dc->MacCleanupPort(&m_ph) ;
123 //-----------------------------------------------------------------------------
125 //-----------------------------------------------------------------------------
127 static inline double dmin(double a
, double b
) { return a
< b
? a
: b
; }
128 static inline double dmax(double a
, double b
) { return a
> b
? a
: b
; }
129 static inline double DegToRad(double deg
) { return (deg
* M_PI
) / 180.0; }
131 //-----------------------------------------------------------------------------
132 // device context implementation
134 // more and more of the dc functionality should be implemented by calling
135 // the appropricate wxMacCGContext, but we will have to do that step by step
136 // also coordinate conversions should be moved to native matrix ops
137 //-----------------------------------------------------------------------------
139 // we always stock two context states, one at entry, to be able to preserve the
140 // state we were called with, the other one after changing to HI Graphics orientation
141 // (this one is used for getting back clippings etc)
143 wxMacCGPath::wxMacCGPath()
145 m_path
= CGPathCreateMutable() ;
148 wxMacCGPath::~wxMacCGPath()
150 CGPathRelease( m_path
) ;
153 // opens (starts) a new subpath
154 void wxMacCGPath::MoveToPoint( wxCoord x1
, wxCoord y1
)
156 CGPathMoveToPoint( m_path
, NULL
, x1
, y1
) ;
159 void wxMacCGPath::AddLineToPoint( wxCoord x1
, wxCoord y1
)
161 CGPathAddLineToPoint( m_path
, NULL
, x1
, y1
) ;
164 void wxMacCGPath::AddQuadCurveToPoint( wxCoord cx1
, wxCoord cy1
, wxCoord x1
, wxCoord y1
)
166 CGPathAddQuadCurveToPoint( m_path
, NULL
, cx1
, cy1
, x1
, y1
);
169 void wxMacCGPath::AddRectangle( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
171 CGRect cgRect
= { { x
, y
} , { w
, h
} } ;
172 CGPathAddRect( m_path
, NULL
, cgRect
) ;
175 void wxMacCGPath::AddCircle( wxCoord x
, wxCoord y
, wxCoord r
)
177 CGPathAddArc( m_path
, NULL
, x
, y
, r
, 0.0 , 2 * M_PI
, true ) ;
180 // closes the current subpath
181 void wxMacCGPath::CloseSubpath()
183 CGPathCloseSubpath( m_path
) ;
186 CGPathRef
wxMacCGPath::GetPath() const
191 wxMacCGContext::wxMacCGContext( CGrafPtr port
)
197 wxMacCGContext::wxMacCGContext( CGContextRef cgcontext
)
200 m_cgContext
= cgcontext
;
201 CGContextSaveGState( m_cgContext
) ;
202 CGContextSaveGState( m_cgContext
) ;
205 wxMacCGContext::wxMacCGContext()
211 wxMacCGContext::~wxMacCGContext()
215 CGContextSynchronize( m_cgContext
) ;
216 CGContextRestoreGState( m_cgContext
) ;
217 CGContextRestoreGState( m_cgContext
) ;
221 CGContextRelease( m_cgContext
) ;
225 void wxMacCGContext::Clip( const wxRegion
®ion
)
227 // ClipCGContextToRegion ( m_cgContext, &bounds , (RgnHandle) dc->m_macCurrentClipRgn ) ;
230 void wxMacCGContext::StrokePath( const wxGraphicPath
*p
)
232 const wxMacCGPath
* path
= dynamic_cast< const wxMacCGPath
*>( p
) ;
233 CGContextAddPath( m_cgContext
, path
->GetPath() ) ;
234 CGContextStrokePath( m_cgContext
) ;
237 void wxMacCGContext::DrawPath( const wxGraphicPath
*p
, int fillStyle
)
239 const wxMacCGPath
* path
= dynamic_cast< const wxMacCGPath
*>( p
) ;
240 CGPathDrawingMode mode
= m_mode
;
242 if ( fillStyle
== wxODDEVEN_RULE
)
244 if ( mode
== kCGPathFill
)
245 mode
= kCGPathEOFill
;
246 else if ( mode
== kCGPathFillStroke
)
247 mode
= kCGPathEOFillStroke
;
250 CGContextAddPath( m_cgContext
, path
->GetPath() ) ;
251 CGContextDrawPath( m_cgContext
, mode
) ;
254 void wxMacCGContext::FillPath( const wxGraphicPath
*p
, const wxColor
&fillColor
, int fillStyle
)
256 const wxMacCGPath
* path
= dynamic_cast< const wxMacCGPath
*>( p
) ;
257 CGContextSaveGState( m_cgContext
) ;
259 RGBColor col
= MAC_WXCOLORREF( fillColor
.GetPixel() ) ;
260 CGContextSetRGBFillColor( m_cgContext
, col
.red
/ 65536.0 , col
.green
/ 65536.0 , col
.blue
/ 65536.0 , 1.0 ) ;
261 CGPathDrawingMode mode
= kCGPathFill
;
263 if ( fillStyle
== wxODDEVEN_RULE
)
264 mode
= kCGPathEOFill
;
266 CGContextBeginPath( m_cgContext
) ;
267 CGContextAddPath( m_cgContext
, path
->GetPath() ) ;
268 CGContextClosePath( m_cgContext
) ;
269 CGContextDrawPath( m_cgContext
, mode
) ;
271 CGContextRestoreGState( m_cgContext
) ;
274 wxGraphicPath
* wxMacCGContext::CreatePath()
276 // make sure that we now have a real cgref, before doing
277 // anything with paths
278 CGContextRef cg
= GetNativeContext() ;
281 return new wxMacCGPath() ;
284 // in case we only got a QDPort only create a cgref now
286 CGContextRef
wxMacCGContext::GetNativeContext()
288 if ( m_cgContext
== NULL
)
291 GetPortBounds( (CGrafPtr
) m_qdPort
, &bounds
) ;
292 OSStatus status
= CreateCGContextForPort((CGrafPtr
) m_qdPort
, &m_cgContext
) ;
293 CGContextSaveGState( m_cgContext
) ;
295 wxASSERT_MSG( status
== noErr
, wxT("Cannot nest wxDCs on the same window") ) ;
297 CGContextTranslateCTM( m_cgContext
, 0 , bounds
.bottom
- bounds
.top
) ;
298 CGContextScaleCTM( m_cgContext
, 1 , -1 ) ;
300 CGContextSaveGState( m_cgContext
) ;
302 SetBrush( m_brush
) ;
308 void wxMacCGContext::SetNativeContext( CGContextRef cg
)
310 // we allow either setting or clearing but not replacing
311 wxASSERT( m_cgContext
== NULL
|| cg
== NULL
) ;
314 CGContextSaveGState( cg
) ;
319 #pragma mark wxMacCGPattern, ImagePattern, HatchPattern classes
321 // CGPattern wrapper class: always allocate on heap, never call destructor
328 // is guaranteed to be called only with a non-Null CGContextRef
329 virtual void Render( CGContextRef ctxRef
) = 0 ;
331 operator CGPatternRef() const { return m_patternRef
; }
334 virtual ~wxMacCGPattern()
336 // as this is called only when the m_patternRef is been released;
337 // don't release it again
340 static void _Render( void *info
, CGContextRef ctxRef
)
342 wxMacCGPattern
* self
= (wxMacCGPattern
*) info
;
343 if ( self
&& ctxRef
)
344 self
->Render( ctxRef
) ;
347 static void _Dispose( void *info
)
349 wxMacCGPattern
* self
= (wxMacCGPattern
*) info
;
353 CGPatternRef m_patternRef
;
355 static const CGPatternCallbacks ms_Callbacks
;
358 const CGPatternCallbacks
wxMacCGPattern::ms_Callbacks
= { 0, &wxMacCGPattern::_Render
, &wxMacCGPattern::_Dispose
};
360 class ImagePattern
: public wxMacCGPattern
363 ImagePattern( const wxBitmap
* bmp
, CGAffineTransform transform
)
365 wxASSERT( bmp
&& bmp
->Ok() ) ;
367 Init( (CGImageRef
) bmp
->CGImageCreate() , transform
) ;
370 // ImagePattern takes ownership of CGImageRef passed in
371 ImagePattern( CGImageRef image
, CGAffineTransform transform
)
376 Init( image
, transform
) ;
379 virtual void Render( CGContextRef ctxRef
)
382 HIViewDrawCGImage( ctxRef
, &m_imageBounds
, m_image
);
386 void Init( CGImageRef image
, CGAffineTransform transform
)
391 m_imageBounds
= CGRectMake( 0.0, 0.0, (float)CGImageGetWidth( m_image
), (float)CGImageGetHeight( m_image
) ) ;
392 m_patternRef
= CGPatternCreate( this , m_imageBounds
, transform
,
393 m_imageBounds
.size
.width
, m_imageBounds
.size
.height
,
394 kCGPatternTilingNoDistortion
, true , &wxMacCGPattern::ms_Callbacks
) ;
401 CGImageRelease( m_image
) ;
405 CGRect m_imageBounds
;
408 class HatchPattern
: public wxMacCGPattern
411 HatchPattern( int hatchstyle
, CGAffineTransform transform
)
413 m_hatch
= hatchstyle
;
414 m_imageBounds
= CGRectMake( 0.0, 0.0, 8.0 , 8.0 ) ;
415 m_patternRef
= CGPatternCreate( this , m_imageBounds
, transform
,
416 m_imageBounds
.size
.width
, m_imageBounds
.size
.height
,
417 kCGPatternTilingNoDistortion
, false , &wxMacCGPattern::ms_Callbacks
) ;
420 void StrokeLineSegments( CGContextRef ctxRef
, const CGPoint pts
[] , size_t count
)
422 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
423 if ( UMAGetSystemVersion() >= 0x1040 )
425 CGContextStrokeLineSegments( ctxRef
, pts
, count
) ;
430 CGContextBeginPath( ctxRef
);
431 for (size_t i
= 0; i
< count
; i
+= 2)
433 CGContextMoveToPoint(ctxRef
, pts
[i
].x
, pts
[i
].y
);
434 CGContextAddLineToPoint(ctxRef
, pts
[i
+1].x
, pts
[i
+1].y
);
436 CGContextStrokePath(ctxRef
);
440 virtual void Render( CGContextRef ctxRef
)
444 case wxBDIAGONAL_HATCH
:
448 { 8.0 , 0.0 } , { 0.0 , 8.0 }
450 StrokeLineSegments( ctxRef
, pts
, 2 ) ;
454 case wxCROSSDIAG_HATCH
:
458 { 0.0 , 0.0 } , { 8.0 , 8.0 } ,
459 { 8.0 , 0.0 } , { 0.0 , 8.0 }
461 StrokeLineSegments( ctxRef
, pts
, 4 ) ;
465 case wxFDIAGONAL_HATCH
:
469 { 0.0 , 0.0 } , { 8.0 , 8.0 }
471 StrokeLineSegments( ctxRef
, pts
, 2 ) ;
479 { 0.0 , 4.0 } , { 8.0 , 4.0 } ,
480 { 4.0 , 0.0 } , { 4.0 , 8.0 } ,
482 StrokeLineSegments( ctxRef
, pts
, 4 ) ;
486 case wxHORIZONTAL_HATCH
:
490 { 0.0 , 4.0 } , { 8.0 , 4.0 } ,
492 StrokeLineSegments( ctxRef
, pts
, 2 ) ;
496 case wxVERTICAL_HATCH
:
500 { 4.0 , 0.0 } , { 4.0 , 8.0 } ,
502 StrokeLineSegments( ctxRef
, pts
, 2 ) ;
514 CGRect m_imageBounds
;
520 void wxMacCGContext::SetPen( const wxPen
&pen
)
523 if ( m_cgContext
== NULL
)
526 bool fill
= m_brush
.GetStyle() != wxTRANSPARENT
;
527 bool stroke
= pen
.GetStyle() != wxTRANSPARENT
;
530 // we can benchmark performance, should go into a setting later
531 CGContextSetShouldAntialias( m_cgContext
, false ) ;
537 m_mode
= kCGPathFill
; // just a default
541 RGBColor col
= MAC_WXCOLORREF( pen
.GetColour().GetPixel() ) ;
542 CGContextSetRGBStrokeColor( m_cgContext
, col
.red
/ 65536.0 , col
.green
/ 65536.0 , col
.blue
/ 65536.0 , 1.0 ) ;
544 // TODO * m_dc->m_scaleX
545 float penWidth
= pen
.GetWidth();
548 CGContextSetLineWidth( m_cgContext
, penWidth
) ;
551 switch ( pen
.GetCap() )
554 cap
= kCGLineCapRound
;
557 case wxCAP_PROJECTING
:
558 cap
= kCGLineCapSquare
;
562 cap
= kCGLineCapButt
;
566 cap
= kCGLineCapButt
;
571 switch ( pen
.GetJoin() )
574 join
= kCGLineJoinBevel
;
578 join
= kCGLineJoinMiter
;
582 join
= kCGLineJoinRound
;
586 join
= kCGLineJoinMiter
;
590 m_mode
= kCGPathStroke
;
593 const float *lengths
= NULL
;
594 float *userLengths
= NULL
;
596 const float dashUnit
= penWidth
< 1.0 ? 1.0 : penWidth
;
598 const float dotted
[] = { dashUnit
, dashUnit
+ 2.0 };
599 const float short_dashed
[] = { 9.0 , 6.0 };
600 const float dashed
[] = { 19.0 , 9.0 };
601 const float dotted_dashed
[] = { 9.0 , 6.0 , 3.0 , 3.0 };
603 switch ( pen
.GetStyle() )
610 count
= WXSIZEOF(dotted
);
615 count
= WXSIZEOF(dashed
) ;
619 lengths
= short_dashed
;
620 count
= WXSIZEOF(short_dashed
) ;
624 lengths
= dotted_dashed
;
625 count
= WXSIZEOF(dotted_dashed
);
630 count
= pen
.GetDashes( &dashes
) ;
631 if ((dashes
!= NULL
) && (count
> 0))
633 userLengths
= new float[count
] ;
634 for( int i
= 0 ; i
< count
; ++i
)
636 userLengths
[i
] = dashes
[i
] * dashUnit
;
638 if ( i
% 2 == 1 && userLengths
[i
] < dashUnit
+ 2.0 )
639 userLengths
[i
] = dashUnit
+ 2.0 ;
640 else if ( i
% 2 == 0 && userLengths
[i
] < dashUnit
)
641 userLengths
[i
] = dashUnit
;
644 lengths
= userLengths
;
649 float alphaArray
[1] = { 1.0 } ;
650 wxBitmap
* bmp
= pen
.GetStipple() ;
651 if ( bmp
&& bmp
->Ok() )
653 wxMacCFRefHolder
<CGColorSpaceRef
> patternSpace( CGColorSpaceCreatePattern( NULL
) ) ;
654 CGContextSetStrokeColorSpace( m_cgContext
, patternSpace
) ;
655 wxMacCFRefHolder
<CGPatternRef
> pattern( *( new ImagePattern( bmp
, CGContextGetCTM( m_cgContext
) ) ) );
656 CGContextSetStrokePattern( m_cgContext
, pattern
, alphaArray
) ;
663 wxMacCFRefHolder
<CGColorSpaceRef
> patternSpace( CGColorSpaceCreatePattern( wxMacGetGenericRGBColorSpace() ) ) ;
664 CGContextSetStrokeColorSpace( m_cgContext
, patternSpace
) ;
665 wxMacCFRefHolder
<CGPatternRef
> pattern( *( new HatchPattern( pen
.GetStyle() , CGContextGetCTM( m_cgContext
) ) ) );
667 RGBColor col
= MAC_WXCOLORREF( pen
.GetColour().GetPixel() ) ;
668 float colorArray
[4] = { col
.red
/ 65536.0 , col
.green
/ 65536.0 , col
.blue
/ 65536.0 , 1.0 } ;
670 CGContextSetStrokePattern( m_cgContext
, pattern
, colorArray
) ;
675 if ((lengths
!= NULL
) && (count
> 0))
677 CGContextSetLineDash( m_cgContext
, 0 , lengths
, count
) ;
678 // force the line cap, otherwise we get artifacts (overlaps) and just solid lines
679 cap
= kCGLineCapButt
;
683 CGContextSetLineDash( m_cgContext
, 0 , NULL
, 0 ) ;
686 CGContextSetLineCap( m_cgContext
, cap
) ;
687 CGContextSetLineJoin( m_cgContext
, join
) ;
689 delete[] userLengths
;
692 if ( fill
&& stroke
)
693 m_mode
= kCGPathFillStroke
;
697 void wxMacCGContext::SetBrush( const wxBrush
&brush
)
700 if ( m_cgContext
== NULL
)
703 bool fill
= brush
.GetStyle() != wxTRANSPARENT
;
704 bool stroke
= m_pen
.GetStyle() != wxTRANSPARENT
;
707 // we can benchmark performance, should go into a setting later
708 CGContextSetShouldAntialias( m_cgContext
, false ) ;
714 m_mode
= kCGPathFill
; // just a default
718 if ( brush
.GetStyle() == wxSOLID
)
720 RGBColor col
= MAC_WXCOLORREF( brush
.GetColour().GetPixel() ) ;
721 CGContextSetRGBFillColor( m_cgContext
, col
.red
/ 65536.0 , col
.green
/ 65536.0 , col
.blue
/ 65536.0 , 1.0 ) ;
723 else if ( brush
.IsHatch() )
725 wxMacCFRefHolder
<CGColorSpaceRef
> patternSpace( CGColorSpaceCreatePattern( wxMacGetGenericRGBColorSpace() ) ) ;
726 CGContextSetFillColorSpace( m_cgContext
, patternSpace
) ;
727 wxMacCFRefHolder
<CGPatternRef
> pattern( *( new HatchPattern( brush
.GetStyle() , CGContextGetCTM( m_cgContext
) ) ) );
729 RGBColor col
= MAC_WXCOLORREF( brush
.GetColour().GetPixel() ) ;
730 float colorArray
[4] = { col
.red
/ 65536.0 , col
.green
/ 65536.0 , col
.blue
/ 65536.0 , 1.0 } ;
732 CGContextSetFillPattern( m_cgContext
, pattern
, colorArray
) ;
736 // now brush is a bitmap
737 float alphaArray
[1] = { 1.0 } ;
738 wxBitmap
* bmp
= brush
.GetStipple() ;
739 if ( bmp
&& bmp
->Ok() )
741 wxMacCFRefHolder
<CGColorSpaceRef
> patternSpace( CGColorSpaceCreatePattern( NULL
) ) ;
742 CGContextSetFillColorSpace( m_cgContext
, patternSpace
) ;
743 wxMacCFRefHolder
<CGPatternRef
> pattern( *( new ImagePattern( bmp
, CGContextGetCTM( m_cgContext
) ) ) );
744 CGContextSetFillPattern( m_cgContext
, pattern
, alphaArray
) ;
748 m_mode
= kCGPathFill
;
751 if ( fill
&& stroke
)
752 m_mode
= kCGPathFillStroke
;
754 m_mode
= kCGPathStroke
;
758 void AddEllipticArcToPath(CGContextRef c
, CGPoint center
, float a
, float b
, float fromDegree
, float toDegree
)
760 CGContextSaveGState(c
);
761 CGContextTranslateCTM(c
, center
.x
, center
.y
);
762 CGContextScaleCTM(c
, a
, b
);
763 CGContextMoveToPoint(c
, 1, 0);
764 CGContextAddArc(c
, 0, 0, 1, DegToRad(fromDegree
), DegToRad(toDegree
), 0);
765 CGContextClosePath(c
);
766 CGContextRestoreGState(c
);
769 void AddRoundedRectToPath(CGContextRef c
, CGRect rect
, float ovalWidth
,
773 if (ovalWidth
== 0 || ovalHeight
== 0)
775 CGContextAddRect(c
, rect
);
779 CGContextSaveGState(c
);
780 CGContextTranslateCTM(c
, CGRectGetMinX(rect
), CGRectGetMinY(rect
));
781 CGContextScaleCTM(c
, ovalWidth
, ovalHeight
);
782 fw
= CGRectGetWidth(rect
) / ovalWidth
;
783 fh
= CGRectGetHeight(rect
) / ovalHeight
;
784 CGContextMoveToPoint(c
, fw
, fh
/2);
785 CGContextAddArcToPoint(c
, fw
, fh
, fw
/2, fh
, 1);
786 CGContextAddArcToPoint(c
, 0, fh
, 0, fh
/2, 1);
787 CGContextAddArcToPoint(c
, 0, 0, fw
/2, 0, 1);
788 CGContextAddArcToPoint(c
, fw
, 0, fw
, fh
/2, 1);
789 CGContextClosePath(c
);
790 CGContextRestoreGState(c
);
799 m_mm_to_pix_x
= mm2pt
;
800 m_mm_to_pix_y
= mm2pt
;
802 m_externalDeviceOriginX
= 0;
803 m_externalDeviceOriginY
= 0;
804 m_logicalScaleX
= 1.0;
805 m_logicalScaleY
= 1.0;
810 m_needComputeScaleX
=
811 m_needComputeScaleY
= false;
815 m_macLocalOrigin
.y
= 0 ;
817 m_pen
= *wxBLACK_PEN
;
818 m_font
= *wxNORMAL_FONT
;
819 m_brush
= *wxWHITE_BRUSH
;
821 m_macATSUIStyle
= NULL
;
822 m_graphicContext
= NULL
;
827 if ( m_macATSUIStyle
)
829 ::ATSUDisposeStyle((ATSUStyle
)m_macATSUIStyle
);
830 m_macATSUIStyle
= NULL
;
833 delete m_graphicContext
;
836 void wxDC::DoDrawBitmap( const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool useMask
)
838 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawBitmap - invalid DC") );
839 wxCHECK_RET( bmp
.Ok(), wxT("wxDC(cg)::DoDrawBitmap - invalid bitmap") );
841 wxCoord xx
= XLOG2DEVMAC(x
);
842 wxCoord yy
= YLOG2DEVMAC(y
);
843 wxCoord w
= bmp
.GetWidth();
844 wxCoord h
= bmp
.GetHeight();
845 wxCoord ww
= XLOG2DEVREL(w
);
846 wxCoord hh
= YLOG2DEVREL(h
);
848 CGContextRef cg
= ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ;
849 CGImageRef image
= (CGImageRef
)( bmp
.CGImageCreate() ) ;
850 HIRect r
= CGRectMake( xx
, yy
, ww
, hh
) ;
851 HIViewDrawCGImage( cg
, &r
, image
) ;
852 CGImageRelease( image
) ;
855 void wxDC::DoDrawIcon( const wxIcon
&icon
, wxCoord x
, wxCoord y
)
857 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawIcon - invalid DC") );
858 wxCHECK_RET( icon
.Ok(), wxT("wxDC(cg)::DoDrawIcon - invalid icon") );
860 wxCoord xx
= XLOG2DEVMAC(x
);
861 wxCoord yy
= YLOG2DEVMAC(y
);
862 wxCoord w
= icon
.GetWidth();
863 wxCoord h
= icon
.GetHeight();
864 wxCoord ww
= XLOG2DEVREL(w
);
865 wxCoord hh
= YLOG2DEVREL(h
);
867 CGContextRef cg
= ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ;
868 CGRect r
= CGRectMake( 00 , 00 , ww
, hh
) ;
869 CGContextSaveGState( cg
);
870 CGContextTranslateCTM( cg
, xx
, yy
+ hh
);
871 CGContextScaleCTM( cg
, 1, -1 );
872 PlotIconRefInContext( cg
, &r
, kAlignNone
, kTransformNone
,
873 NULL
, kPlotIconRefNormalFlags
, MAC_WXHICON( icon
.GetHICON() ) ) ;
874 CGContextRestoreGState( cg
) ;
877 void wxDC::DoSetClippingRegion( wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
879 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoSetClippingRegion - invalid DC") );
881 wxCoord xx
, yy
, ww
, hh
;
884 ww
= XLOG2DEVREL(width
);
885 hh
= YLOG2DEVREL(height
);
887 CGContextRef cgContext
= ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ;
888 CGRect clipRect
= CGRectMake( xx
, yy
, ww
, hh
) ;
889 CGContextClipToRect( cgContext
, clipRect
) ;
891 // SetRectRgn( (RgnHandle) m_macCurrentClipRgn , xx , yy , xx + ww , yy + hh ) ;
892 // SectRgn( (RgnHandle) m_macCurrentClipRgn , (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ;
896 m_clipX1
= wxMax( m_clipX1
, xx
);
897 m_clipY1
= wxMax( m_clipY1
, yy
);
898 m_clipX2
= wxMin( m_clipX2
, (xx
+ ww
) );
899 m_clipY2
= wxMin( m_clipY2
, (yy
+ hh
) );
911 // TODO: as soon as we don't reset the context for each operation anymore
912 // we have to update the context as well
915 void wxDC::DoSetClippingRegionAsRegion( const wxRegion
®ion
)
917 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoSetClippingRegionAsRegion - invalid DC") );
921 DestroyClippingRegion();
926 region
.GetBox( x
, y
, w
, h
);
927 wxCoord xx
, yy
, ww
, hh
;
933 // if we have a scaling that we cannot map onto native regions
934 // we must use the box
935 if ( ww
!= w
|| hh
!= h
)
937 wxDC::DoSetClippingRegion( x
, y
, w
, h
);
942 CopyRgn( (RgnHandle
) region
.GetWXHRGN() , (RgnHandle
) m_macCurrentClipRgn
) ;
943 if ( xx
!= x
|| yy
!= y
)
944 OffsetRgn( (RgnHandle
) m_macCurrentClipRgn
, xx
- x
, yy
- y
) ;
945 SectRgn( (RgnHandle
)m_macCurrentClipRgn
, (RgnHandle
)m_macBoundaryClipRgn
, (RgnHandle
)m_macCurrentClipRgn
) ;
950 m_clipX1
= wxMax( m_clipX1
, xx
);
951 m_clipY1
= wxMax( m_clipY1
, yy
);
952 m_clipX2
= wxMin( m_clipX2
, (xx
+ ww
) );
953 m_clipY2
= wxMin( m_clipY2
, (yy
+ hh
) );
967 void wxDC::DestroyClippingRegion()
969 // CopyRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ;
971 CGContextRef cgContext
= ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ;
972 CGContextRestoreGState( cgContext
);
973 CGContextSaveGState( cgContext
);
975 m_graphicContext
->SetPen( m_pen
) ;
976 m_graphicContext
->SetBrush( m_brush
) ;
981 void wxDC::DoGetSizeMM( int* width
, int* height
) const
987 *width
= long( double(w
) / (m_scaleX
* m_mm_to_pix_x
) );
989 *height
= long( double(h
) / (m_scaleY
* m_mm_to_pix_y
) );
992 void wxDC::SetTextForeground( const wxColour
&col
)
994 wxCHECK_RET( Ok(), wxT("wxDC(cg)::SetTextForeground - invalid DC") );
996 if ( col
!= m_textForegroundColour
)
998 m_textForegroundColour
= col
;
1003 void wxDC::SetTextBackground( const wxColour
&col
)
1005 wxCHECK_RET( Ok(), wxT("wxDC(cg)::SetTextBackground - invalid DC") );
1007 m_textBackgroundColour
= col
;
1010 void wxDC::SetMapMode( int mode
)
1015 SetLogicalScale( twips2mm
* m_mm_to_pix_x
, twips2mm
* m_mm_to_pix_y
);
1019 SetLogicalScale( pt2mm
* m_mm_to_pix_x
, pt2mm
* m_mm_to_pix_y
);
1023 SetLogicalScale( m_mm_to_pix_x
, m_mm_to_pix_y
);
1027 SetLogicalScale( m_mm_to_pix_x
/ 10.0, m_mm_to_pix_y
/ 10.0 );
1032 SetLogicalScale( 1.0, 1.0 );
1036 if (mode
!= wxMM_TEXT
)
1038 m_needComputeScaleX
=
1039 m_needComputeScaleY
= true;
1043 void wxDC::SetUserScale( double x
, double y
)
1045 // allow negative ? -> no
1048 ComputeScaleAndOrigin();
1051 void wxDC::SetLogicalScale( double x
, double y
)
1054 m_logicalScaleX
= x
;
1055 m_logicalScaleY
= y
;
1056 ComputeScaleAndOrigin();
1059 void wxDC::SetLogicalOrigin( wxCoord x
, wxCoord y
)
1061 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
1062 m_logicalOriginY
= y
* m_signY
;
1063 ComputeScaleAndOrigin();
1066 void wxDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
1068 m_externalDeviceOriginX
= x
;
1069 m_externalDeviceOriginY
= y
;
1070 ComputeScaleAndOrigin();
1073 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
1075 m_signX
= (xLeftRight
? 1 : -1);
1076 m_signY
= (yBottomUp
? -1 : 1);
1077 ComputeScaleAndOrigin();
1080 wxSize
wxDC::GetPPI() const
1082 return wxSize(72, 72);
1085 int wxDC::GetDepth() const
1090 void wxDC::ComputeScaleAndOrigin()
1092 // CMB: copy scale to see if it changes
1093 double origScaleX
= m_scaleX
;
1094 double origScaleY
= m_scaleY
;
1095 m_scaleX
= m_logicalScaleX
* m_userScaleX
;
1096 m_scaleY
= m_logicalScaleY
* m_userScaleY
;
1097 m_deviceOriginX
= m_externalDeviceOriginX
;
1098 m_deviceOriginY
= m_externalDeviceOriginY
;
1100 // CMB: if scale has changed call SetPen to recalulate the line width
1101 if (m_scaleX
!= origScaleX
|| m_scaleY
!= origScaleY
)
1103 // this is a bit artificial, but we need to force wxDC to think
1104 // the pen has changed
1105 wxPen
pen( GetPen() );
1112 void wxDC::SetPalette( const wxPalette
& palette
)
1116 void wxDC::SetBackgroundMode( int mode
)
1118 m_backgroundMode
= mode
;
1121 void wxDC::SetFont( const wxFont
&font
)
1127 void wxDC::SetPen( const wxPen
&pen
)
1133 if ( m_graphicContext
)
1135 if ( m_pen
.GetStyle() == wxSOLID
|| m_pen
.GetStyle() == wxTRANSPARENT
)
1137 m_graphicContext
->SetPen( m_pen
) ;
1141 // we have to compensate for moved device origins etc. otherwise patterned pens are standing still
1142 // eg when using a wxScrollWindow and scrolling around
1143 CGContextRef cgContext
= ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ;
1144 int origX
= XLOG2DEVMAC(0) ;
1145 int origY
= YLOG2DEVMAC(0) ;
1146 CGContextTranslateCTM( cgContext
, origX
, origY
);
1147 m_graphicContext
->SetPen( m_pen
) ;
1148 CGContextTranslateCTM( cgContext
, -origX
, -origY
);
1153 void wxDC::SetBrush( const wxBrush
&brush
)
1155 if (m_brush
== brush
)
1159 if ( m_graphicContext
)
1161 if ( brush
.GetStyle() == wxSOLID
|| brush
.GetStyle() == wxTRANSPARENT
)
1163 m_graphicContext
->SetBrush( m_brush
) ;
1167 // we have to compensate for moved device origins etc. otherwise patterned brushes are standing still
1168 // eg when using a wxScrollWindow and scrolling around
1169 CGContextRef cgContext
= ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ;
1170 int origX
= XLOG2DEVMAC(0) ;
1171 int origY
= YLOG2DEVMAC(0) ;
1172 CGContextTranslateCTM( cgContext
, origX
, origY
);
1173 m_graphicContext
->SetBrush( m_brush
) ;
1174 CGContextTranslateCTM( cgContext
, -origX
, -origY
);
1179 void wxDC::SetBackground( const wxBrush
&brush
)
1181 if (m_backgroundBrush
== brush
)
1184 m_backgroundBrush
= brush
;
1185 if (!m_backgroundBrush
.Ok())
1189 void wxDC::SetLogicalFunction( int function
)
1191 if (m_logicalFunction
== function
)
1194 m_logicalFunction
= function
;
1197 extern bool wxDoFloodFill(wxDC
*dc
, wxCoord x
, wxCoord y
,
1198 const wxColour
& col
, int style
);
1200 bool wxDC::DoFloodFill(wxCoord x
, wxCoord y
,
1201 const wxColour
& col
, int style
)
1203 return wxDoFloodFill(this, x
, y
, col
, style
);
1206 bool wxDC::DoGetPixel( wxCoord x
, wxCoord y
, wxColour
*col
) const
1208 wxCHECK_MSG( Ok(), false, wxT("wxDC(cg)::DoGetPixel - invalid DC") );
1210 wxMacPortSaver
helper((CGrafPtr
)m_macPort
) ;
1213 // NB: GetCPixel is a deprecated QD call, and a slow one at that
1215 XLOG2DEVMAC(x
) + m_macLocalOriginInPort
.x
- m_macLocalOrigin
.x
,
1216 YLOG2DEVMAC(y
) + m_macLocalOriginInPort
.y
- m_macLocalOrigin
.y
, &colour
);
1218 // convert from Mac colour to wx
1219 col
->Set( colour
.red
>> 8, colour
.green
>> 8, colour
.blue
>> 8 );
1224 void wxDC::DoDrawLine( wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
1226 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawLine - invalid DC") );
1228 if ( m_logicalFunction
!= wxCOPY
)
1231 wxCoord xx1
= XLOG2DEVMAC(x1
) ;
1232 wxCoord yy1
= YLOG2DEVMAC(y1
) ;
1233 wxCoord xx2
= XLOG2DEVMAC(x2
) ;
1234 wxCoord yy2
= YLOG2DEVMAC(y2
) ;
1236 wxGraphicPath
* path
= m_graphicContext
->CreatePath() ;
1237 path
->MoveToPoint( xx1
, yy1
) ;
1238 path
->AddLineToPoint( xx2
, yy2
) ;
1239 path
->CloseSubpath() ;
1240 m_graphicContext
->StrokePath( path
) ;
1243 CalcBoundingBox(x1
, y1
);
1244 CalcBoundingBox(x2
, y2
);
1247 void wxDC::DoCrossHair( wxCoord x
, wxCoord y
)
1249 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoCrossHair - invalid DC") );
1251 if ( m_logicalFunction
!= wxCOPY
)
1257 wxCoord xx
= XLOG2DEVMAC(x
);
1258 wxCoord yy
= YLOG2DEVMAC(y
);
1260 wxGraphicPath
* path
= m_graphicContext
->CreatePath() ;
1261 path
->MoveToPoint( XLOG2DEVMAC(0), yy
) ;
1262 path
->AddLineToPoint( XLOG2DEVMAC(w
), yy
) ;
1263 path
->CloseSubpath() ;
1264 path
->MoveToPoint( xx
, YLOG2DEVMAC(0) ) ;
1265 path
->AddLineToPoint( xx
, YLOG2DEVMAC(h
) ) ;
1266 path
->CloseSubpath() ;
1267 m_graphicContext
->StrokePath( path
) ;
1270 CalcBoundingBox(x
, y
);
1271 CalcBoundingBox(x
+ w
, y
+ h
);
1274 void wxDC::DoDrawArc( wxCoord x1
, wxCoord y1
,
1275 wxCoord x2
, wxCoord y2
,
1276 wxCoord xc
, wxCoord yc
)
1278 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawArc - invalid DC") );
1280 if ( m_logicalFunction
!= wxCOPY
)
1283 wxCoord xx1
= XLOG2DEVMAC(x1
);
1284 wxCoord yy1
= YLOG2DEVMAC(y1
);
1285 wxCoord xx2
= XLOG2DEVMAC(x2
);
1286 wxCoord yy2
= YLOG2DEVMAC(y2
);
1287 wxCoord xxc
= XLOG2DEVMAC(xc
);
1288 wxCoord yyc
= YLOG2DEVMAC(yc
);
1290 double dx
= xx1
- xxc
;
1291 double dy
= yy1
- yyc
;
1292 double radius
= sqrt((double)(dx
* dx
+ dy
* dy
));
1293 wxCoord rad
= (wxCoord
)radius
;
1295 if (xx1
== xx2
&& yy1
== yy2
)
1300 else if (radius
== 0.0)
1306 sa
= (xx1
- xxc
== 0) ?
1307 (yy1
- yyc
< 0) ? 90.0 : -90.0 :
1308 -atan2(double(yy1
- yyc
), double(xx1
- xxc
)) * RAD2DEG
;
1309 ea
= (xx2
- xxc
== 0) ?
1310 (yy2
- yyc
< 0) ? 90.0 : -90.0 :
1311 -atan2(double(yy2
- yyc
), double(xx2
- xxc
)) * RAD2DEG
;
1314 bool fill
= m_brush
.GetStyle() != wxTRANSPARENT
;
1315 wxMacCGContext
* mctx
= ((wxMacCGContext
*) m_graphicContext
) ;
1316 CGContextRef ctx
= mctx
->GetNativeContext() ;
1317 CGContextSaveGState( ctx
) ;
1318 CGContextTranslateCTM( ctx
, xxc
, yyc
);
1319 CGContextScaleCTM( ctx
, 1 , -1 ) ;
1321 CGContextMoveToPoint( ctx
, 0 , 0 ) ;
1322 CGContextAddArc( ctx
, 0, 0 , rad
, DegToRad(sa
), DegToRad(ea
), 0);
1324 CGContextAddLineToPoint( ctx
, 0 , 0 ) ;
1325 CGContextRestoreGState( ctx
) ;
1326 CGContextDrawPath( ctx
, mctx
->GetDrawingMode() ) ;
1329 void wxDC::DoDrawEllipticArc( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
1330 double sa
, double ea
)
1332 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawEllipticArc - invalid DC") );
1334 if ( m_logicalFunction
!= wxCOPY
)
1337 wxCoord xx
= XLOG2DEVMAC(x
);
1338 wxCoord yy
= YLOG2DEVMAC(y
);
1339 wxCoord ww
= m_signX
* XLOG2DEVREL(w
);
1340 wxCoord hh
= m_signY
* YLOG2DEVREL(h
);
1342 // handle -ve width and/or height
1354 bool fill
= m_brush
.GetStyle() != wxTRANSPARENT
;
1356 wxMacCGContext
* mctx
= ((wxMacCGContext
*) m_graphicContext
) ;
1357 CGContextRef ctx
= mctx
->GetNativeContext() ;
1359 CGContextSaveGState( ctx
) ;
1360 CGContextTranslateCTM( ctx
, xx
+ ww
/ 2, yy
+ hh
/ 2);
1361 CGContextScaleCTM( ctx
, 1 * ww
/ 2 , -1 * hh
/ 2 ) ;
1363 CGContextMoveToPoint( ctx
, 0 , 0 ) ;
1364 CGContextAddArc( ctx
, 0, 0, 1, DegToRad(sa
), DegToRad(ea
), 0);
1366 CGContextAddLineToPoint( ctx
, 0 , 0 ) ;
1367 CGContextRestoreGState( ctx
) ;
1368 CGContextDrawPath( ctx
, mctx
->GetDrawingMode() ) ;
1371 void wxDC::DoDrawPoint( wxCoord x
, wxCoord y
)
1373 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawPoint - invalid DC") );
1375 DoDrawLine( x
, y
, x
+ 1 , y
+ 1 ) ;
1378 void wxDC::DoDrawLines(int n
, wxPoint points
[],
1379 wxCoord xoffset
, wxCoord yoffset
)
1381 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawLines - invalid DC") );
1383 if ( m_logicalFunction
!= wxCOPY
)
1386 wxCoord x1
, x2
, y1
, y2
;
1387 x1
= XLOG2DEVMAC(points
[0].x
+ xoffset
);
1388 y1
= YLOG2DEVMAC(points
[0].y
+ yoffset
);
1389 wxGraphicPath
* path
= m_graphicContext
->CreatePath() ;
1390 path
->MoveToPoint( x1
, y1
) ;
1391 for (int i
= 1; i
< n
; i
++)
1393 x2
= XLOG2DEVMAC(points
[i
].x
+ xoffset
);
1394 y2
= YLOG2DEVMAC(points
[i
].y
+ yoffset
);
1396 path
->AddLineToPoint( x2
, y2
) ;
1399 m_graphicContext
->StrokePath( path
) ;
1404 void wxDC::DoDrawSpline(wxList
*points
)
1406 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawSpline - invalid DC") );
1408 if ( m_logicalFunction
!= wxCOPY
)
1411 wxGraphicPath
* path
= m_graphicContext
->CreatePath() ;
1413 wxList::compatibility_iterator node
= points
->GetFirst();
1414 if (node
== wxList::compatibility_iterator())
1418 wxPoint
*p
= (wxPoint
*)node
->GetData();
1423 node
= node
->GetNext();
1424 p
= (wxPoint
*)node
->GetData();
1428 wxCoord cx1
= ( x1
+ x2
) / 2;
1429 wxCoord cy1
= ( y1
+ y2
) / 2;
1431 path
->MoveToPoint( XLOG2DEVMAC( x1
) , XLOG2DEVMAC( y1
) ) ;
1432 path
->AddLineToPoint( XLOG2DEVMAC( cx1
) , XLOG2DEVMAC( cy1
) ) ;
1435 while ((node
= node
->GetNext()) != NULL
)
1437 while ((node
= node
->GetNext()))
1438 #endif // !wxUSE_STL
1440 p
= (wxPoint
*)node
->GetData();
1445 wxCoord cx4
= (x1
+ x2
) / 2;
1446 wxCoord cy4
= (y1
+ y2
) / 2;
1448 path
->AddQuadCurveToPoint( XLOG2DEVMAC( x1
) , XLOG2DEVMAC( y1
) ,
1449 XLOG2DEVMAC( cx4
) , XLOG2DEVMAC( cy4
) ) ;
1455 path
->AddLineToPoint( XLOG2DEVMAC( x2
) , XLOG2DEVMAC( y2
) ) ;
1457 m_graphicContext
->StrokePath( path
) ;
1462 void wxDC::DoDrawPolygon( int n
, wxPoint points
[],
1463 wxCoord xoffset
, wxCoord yoffset
,
1466 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawPolygon - invalid DC") );
1468 if ( n
<= 0 || (m_brush
.GetStyle() == wxTRANSPARENT
&& m_pen
.GetStyle() == wxTRANSPARENT
) )
1470 if ( m_logicalFunction
!= wxCOPY
)
1473 wxCoord x1
, x2
, y1
, y2
;
1474 x2
= x1
= XLOG2DEVMAC(points
[0].x
+ xoffset
);
1475 y2
= y1
= YLOG2DEVMAC(points
[0].y
+ yoffset
);
1477 wxGraphicPath
* path
= m_graphicContext
->CreatePath() ;
1478 path
->MoveToPoint( x1
, y1
) ;
1479 for (int i
= 1; i
< n
; i
++)
1481 x2
= XLOG2DEVMAC(points
[i
].x
+ xoffset
);
1482 y2
= YLOG2DEVMAC(points
[i
].y
+ yoffset
);
1484 path
->AddLineToPoint( x2
, y2
) ;
1487 if ( x1
!= x2
|| y1
!= y2
)
1488 path
->AddLineToPoint( x1
, y1
) ;
1490 path
->CloseSubpath() ;
1491 m_graphicContext
->DrawPath( path
, fillStyle
) ;
1496 void wxDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
1498 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawRectangle - invalid DC") );
1500 if ( m_logicalFunction
!= wxCOPY
)
1503 wxCoord xx
= XLOG2DEVMAC(x
);
1504 wxCoord yy
= YLOG2DEVMAC(y
);
1505 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
1506 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
1508 // CMB: draw nothing if transformed w or h is 0
1509 if (ww
== 0 || hh
== 0)
1512 // CMB: handle -ve width and/or height
1524 wxGraphicPath
* path
= m_graphicContext
->CreatePath() ;
1525 path
->AddRectangle( xx
, yy
, ww
, hh
) ;
1526 m_graphicContext
->DrawPath( path
) ;
1530 void wxDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
1531 wxCoord width
, wxCoord height
,
1534 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawRoundedRectangle - invalid DC") );
1536 if ( m_logicalFunction
!= wxCOPY
)
1540 radius
= - radius
* ((width
< height
) ? width
: height
);
1541 wxCoord xx
= XLOG2DEVMAC(x
);
1542 wxCoord yy
= YLOG2DEVMAC(y
);
1543 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
1544 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
1546 // CMB: draw nothing if transformed w or h is 0
1547 if (ww
== 0 || hh
== 0)
1550 // CMB: handle -ve width and/or height
1562 wxMacCGContext
* mctx
= ((wxMacCGContext
*) m_graphicContext
) ;
1563 CGContextRef ctx
= mctx
->GetNativeContext() ;
1564 AddRoundedRectToPath( ctx
, CGRectMake( xx
, yy
, ww
, hh
) , 16 ,16 ) ;
1565 CGContextDrawPath( ctx
, mctx
->GetDrawingMode() ) ;
1568 void wxDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
1570 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawEllipse - invalid DC") );
1572 if ( m_logicalFunction
!= wxCOPY
)
1575 wxCoord xx
= XLOG2DEVMAC(x
);
1576 wxCoord yy
= YLOG2DEVMAC(y
);
1577 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
1578 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
1579 // CMB: draw nothing if transformed w or h is 0
1580 if (ww
== 0 || hh
== 0)
1583 // CMB: handle -ve width and/or height
1595 wxMacCGContext
* mctx
= ((wxMacCGContext
*) m_graphicContext
) ;
1596 CGContextRef ctx
= mctx
->GetNativeContext() ;
1597 CGContextSaveGState( ctx
) ;
1598 CGContextTranslateCTM( ctx
, xx
+ ww
/ 2, yy
+ hh
/ 2);
1599 CGContextScaleCTM( ctx
, ww
/ 2 , hh
/ 2 ) ;
1600 CGContextAddArc( ctx
, 0, 0, 1, 0 , 2 * M_PI
, 0);
1601 CGContextRestoreGState( ctx
) ;
1602 CGContextDrawPath( ctx
, mctx
->GetDrawingMode() ) ;
1605 bool wxDC::CanDrawBitmap(void) const
1610 bool wxDC::DoBlit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
1611 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
, int logical_func
, bool useMask
,
1612 wxCoord xsrcMask
, wxCoord ysrcMask
)
1614 wxCHECK_MSG( Ok(), false, wxT("wxDC(cg)::DoBlit - invalid DC") );
1615 wxCHECK_MSG( source
->Ok(), false, wxT("wxDC(cg)::DoBlit - invalid source DC") );
1617 if ( logical_func
== wxNO_OP
)
1620 if (xsrcMask
== -1 && ysrcMask
== -1)
1626 wxCoord yysrc
= source
->YLOG2DEVMAC(ysrc
) ;
1627 wxCoord xxsrc
= source
->XLOG2DEVMAC(xsrc
) ;
1628 wxCoord wwsrc
= source
->XLOG2DEVREL(width
) ;
1629 wxCoord hhsrc
= source
->YLOG2DEVREL(height
) ;
1631 wxCoord yydest
= YLOG2DEVMAC(ydest
) ;
1632 wxCoord xxdest
= XLOG2DEVMAC(xdest
) ;
1633 wxCoord wwdest
= XLOG2DEVREL(width
) ;
1634 wxCoord hhdest
= YLOG2DEVREL(height
) ;
1636 wxMemoryDC
* memdc
= dynamic_cast<wxMemoryDC
*>(source
) ;
1637 if ( memdc
&& logical_func
== wxCOPY
)
1639 wxBitmap blit
= memdc
->GetSelectedObject() ;
1641 wxASSERT_MSG( blit
.Ok() , wxT("Invalid bitmap for blitting") ) ;
1643 wxCoord bmpwidth
= blit
.GetWidth();
1644 wxCoord bmpheight
= blit
.GetHeight();
1646 if ( xxsrc
!= 0 || yysrc
!= 0 || bmpwidth
!= wwsrc
|| bmpheight
!= hhsrc
)
1648 wwsrc
= wxMin( wwsrc
, bmpwidth
- xxsrc
) ;
1649 hhsrc
= wxMin( hhsrc
, bmpheight
- yysrc
) ;
1650 if ( wwsrc
> 0 && hhsrc
> 0 )
1652 if ( xxsrc
>= 0 && yysrc
>= 0 )
1654 wxRect
subrect( xxsrc
, yysrc
, wwsrc
, hhsrc
) ;
1655 blit
= blit
.GetSubBitmap( subrect
) ;
1659 // in this case we'd probably have to adjust the different coordinates, but
1660 // we have to find out proper contract first
1661 blit
= wxNullBitmap
;
1666 blit
= wxNullBitmap
;
1672 CGContextRef cg
= ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ;
1673 CGImageRef image
= (CGImageRef
)( blit
.CGImageCreate() ) ;
1674 HIRect r
= CGRectMake( xxdest
, yydest
, wwdest
, hhdest
) ;
1675 HIViewDrawCGImage( cg
, &r
, image
) ;
1676 CGImageRelease( image
) ;
1682 CGContextRef cg
= (wxMacCGContext
*)(source
->GetGraphicContext())->GetNativeContext() ;
1683 void *data
= CGBitmapContextGetData( cg
) ;
1686 return false ; // wxFAIL_MSG( wxT("Blitting is only supported from bitmap contexts") ) ;
1692 void wxDC::DoDrawRotatedText(const wxString
& str
, wxCoord x
, wxCoord y
,
1695 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawRotatedText - invalid DC") );
1696 wxCHECK_RET( m_macATSUIStyle
!= NULL
, wxT("wxDC(cg)::DoDrawRotatedText - no valid font set") );
1698 if ( str
.Length() == 0 )
1700 if ( m_logicalFunction
!= wxCOPY
)
1703 OSStatus status
= noErr
;
1704 ATSUTextLayout atsuLayout
;
1705 UniCharCount chars
= str
.Length() ;
1706 UniChar
* ubuf
= NULL
;
1708 #if SIZEOF_WCHAR_T == 4
1709 wxMBConvUTF16 converter
;
1711 size_t unicharlen
= converter
.WC2MB( NULL
, str
.wc_str() , 0 ) ;
1712 ubuf
= (UniChar
*) malloc( unicharlen
+ 2 ) ;
1713 converter
.WC2MB( (char*) ubuf
, str
.wc_str(), unicharlen
+ 2 ) ;
1715 const wxWCharBuffer wchar
= str
.wc_str( wxConvLocal
) ;
1716 size_t unicharlen
= converter
.WC2MB( NULL
, wchar
.data() , 0 ) ;
1717 ubuf
= (UniChar
*) malloc( unicharlen
+ 2 ) ;
1718 converter
.WC2MB( (char*) ubuf
, wchar
.data() , unicharlen
+ 2 ) ;
1720 chars
= unicharlen
/ 2 ;
1723 ubuf
= (UniChar
*) str
.wc_str() ;
1725 wxWCharBuffer wchar
= str
.wc_str( wxConvLocal
) ;
1726 chars
= wxWcslen( wchar
.data() ) ;
1727 ubuf
= (UniChar
*) wchar
.data() ;
1731 int drawX
= XLOG2DEVMAC(x
) ;
1732 int drawY
= YLOG2DEVMAC(y
) ;
1734 status
= ::ATSUCreateTextLayoutWithTextPtr( (UniCharArrayPtr
) ubuf
, 0 , chars
, chars
, 1 ,
1735 &chars
, (ATSUStyle
*) &m_macATSUIStyle
, &atsuLayout
) ;
1737 wxASSERT_MSG( status
== noErr
, wxT("couldn't create the layout of the rotated text") );
1739 status
= ::ATSUSetTransientFontMatching( atsuLayout
, true ) ;
1740 wxASSERT_MSG( status
== noErr
, wxT("couldn't setup transient font matching") );
1742 int iAngle
= int( angle
);
1743 if ( abs(iAngle
) > 0 )
1745 Fixed atsuAngle
= IntToFixed( iAngle
) ;
1746 ATSUAttributeTag atsuTags
[] =
1748 kATSULineRotationTag
,
1750 ByteCount atsuSizes
[sizeof(atsuTags
) / sizeof(ATSUAttributeTag
)] =
1754 ATSUAttributeValuePtr atsuValues
[sizeof(atsuTags
) / sizeof(ATSUAttributeTag
)] =
1758 status
= ::ATSUSetLayoutControls(atsuLayout
, sizeof(atsuTags
) / sizeof(ATSUAttributeTag
),
1759 atsuTags
, atsuSizes
, atsuValues
) ;
1763 CGContextRef cgContext
= ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ;
1764 ATSUAttributeTag atsuTags
[] =
1768 ByteCount atsuSizes
[sizeof(atsuTags
) / sizeof(ATSUAttributeTag
)] =
1770 sizeof( CGContextRef
) ,
1772 ATSUAttributeValuePtr atsuValues
[sizeof(atsuTags
) / sizeof(ATSUAttributeTag
)] =
1776 status
= ::ATSUSetLayoutControls(atsuLayout
, sizeof(atsuTags
) / sizeof(ATSUAttributeTag
),
1777 atsuTags
, atsuSizes
, atsuValues
) ;
1780 ATSUTextMeasurement textBefore
, textAfter
;
1781 ATSUTextMeasurement ascent
, descent
;
1783 status
= ::ATSUGetUnjustifiedBounds( atsuLayout
, kATSUFromTextBeginning
, kATSUToTextEnd
,
1784 &textBefore
, &textAfter
, &ascent
, &descent
);
1786 wxASSERT_MSG( status
== noErr
, wxT("couldn't measure the rotated text") );
1790 if ( m_backgroundMode
== wxSOLID
)
1792 wxGraphicPath
* path
= m_graphicContext
->CreatePath() ;
1796 path
->AddLineToPoint(
1797 (int) (drawX
+ sin(angle
/ RAD2DEG
) * FixedToInt(ascent
+ descent
)) ,
1798 (int) (drawY
+ cos(angle
/ RAD2DEG
) * FixedToInt(ascent
+ descent
)) ) ;
1799 path
->AddLineToPoint(
1800 (int) (drawX
+ sin(angle
/ RAD2DEG
) * FixedToInt(ascent
+ descent
) + cos(angle
/ RAD2DEG
) * FixedToInt(textAfter
)) ,
1801 (int) (drawY
+ cos(angle
/ RAD2DEG
) * FixedToInt(ascent
+ descent
) - sin(angle
/ RAD2DEG
) * FixedToInt(textAfter
)) ) ;
1802 path
->AddLineToPoint(
1803 (int) (drawX
+ cos(angle
/ RAD2DEG
) * FixedToInt(textAfter
)) ,
1804 (int) (drawY
- sin(angle
/ RAD2DEG
) * FixedToInt(textAfter
)) ) ;
1806 m_graphicContext
->FillPath( path
, m_textBackgroundColour
) ;
1810 drawX
+= (int)(sin(angle
/ RAD2DEG
) * FixedToInt(ascent
));
1811 drawY
+= (int)(cos(angle
/ RAD2DEG
) * FixedToInt(ascent
));
1813 status
= ::ATSUMeasureTextImage( atsuLayout
, kATSUFromTextBeginning
, kATSUToTextEnd
,
1814 IntToFixed(drawX
) , IntToFixed(drawY
) , &rect
);
1815 wxASSERT_MSG( status
== noErr
, wxT("couldn't measure the rotated text") );
1817 CGContextSaveGState(((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext());
1818 CGContextTranslateCTM(((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext(), drawX
, drawY
);
1819 CGContextScaleCTM(((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext(), 1, -1);
1820 status
= ::ATSUDrawText( atsuLayout
, kATSUFromTextBeginning
, kATSUToTextEnd
,
1821 IntToFixed(0) , IntToFixed(0) );
1823 wxASSERT_MSG( status
== noErr
, wxT("couldn't draw the rotated text") );
1825 CGContextRestoreGState( ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ) ;
1827 CalcBoundingBox(XDEV2LOG(rect
.left
), YDEV2LOG(rect
.top
) );
1828 CalcBoundingBox(XDEV2LOG(rect
.right
), YDEV2LOG(rect
.bottom
) );
1830 ::ATSUDisposeTextLayout(atsuLayout
);
1832 #if SIZEOF_WCHAR_T == 4
1837 void wxDC::DoDrawText(const wxString
& strtext
, wxCoord x
, wxCoord y
)
1839 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoDrawText - invalid DC") );
1841 DoDrawRotatedText( strtext
, x
, y
, 0.0 ) ;
1844 bool wxDC::CanGetTextExtent() const
1846 wxCHECK_MSG( Ok(), false, wxT("wxDC(cg)::CanGetTextExtent - invalid DC") );
1851 void wxDC::DoGetTextExtent( const wxString
&str
, wxCoord
*width
, wxCoord
*height
,
1852 wxCoord
*descent
, wxCoord
*externalLeading
,
1853 wxFont
*theFont
) const
1855 wxCHECK_RET( Ok(), wxT("wxDC(cg)::DoGetTextExtent - invalid DC") );
1857 wxFont formerFont
= m_font
;
1860 // work around the const-ness
1861 *((wxFont
*)(&m_font
)) = *theFont
;
1865 if ( str
.Length() == 0 )
1868 wxCHECK_RET( m_macATSUIStyle
!= NULL
, wxT("wxDC(cg)::DoGetTextExtent - no valid font set") ) ;
1870 OSStatus status
= noErr
;
1871 ATSUTextLayout atsuLayout
;
1872 UniCharCount chars
= str
.Length() ;
1873 UniChar
* ubuf
= NULL
;
1875 #if SIZEOF_WCHAR_T == 4
1876 wxMBConvUTF16 converter
;
1878 size_t unicharlen
= converter
.WC2MB( NULL
, str
.wc_str() , 0 ) ;
1879 ubuf
= (UniChar
*) malloc( unicharlen
+ 2 ) ;
1880 converter
.WC2MB( (char*) ubuf
, str
.wc_str(), unicharlen
+ 2 ) ;
1882 const wxWCharBuffer wchar
= str
.wc_str( wxConvLocal
) ;
1883 size_t unicharlen
= converter
.WC2MB( NULL
, wchar
.data() , 0 ) ;
1884 ubuf
= (UniChar
*) malloc( unicharlen
+ 2 ) ;
1885 converter
.WC2MB( (char*) ubuf
, wchar
.data() , unicharlen
+ 2 ) ;
1887 chars
= unicharlen
/ 2 ;
1890 ubuf
= (UniChar
*) str
.wc_str() ;
1892 wxWCharBuffer wchar
= str
.wc_str( wxConvLocal
) ;
1893 chars
= wxWcslen( wchar
.data() ) ;
1894 ubuf
= (UniChar
*) wchar
.data() ;
1898 status
= ::ATSUCreateTextLayoutWithTextPtr( (UniCharArrayPtr
) ubuf
, 0 , chars
, chars
, 1 ,
1899 &chars
, (ATSUStyle
*) &m_macATSUIStyle
, &atsuLayout
) ;
1901 wxASSERT_MSG( status
== noErr
, wxT("couldn't create the layout of the text") );
1903 ATSUTextMeasurement textBefore
, textAfter
;
1904 ATSUTextMeasurement textAscent
, textDescent
;
1906 status
= ::ATSUGetUnjustifiedBounds( atsuLayout
, kATSUFromTextBeginning
, kATSUToTextEnd
,
1907 &textBefore
, &textAfter
, &textAscent
, &textDescent
);
1910 *height
= YDEV2LOGREL( FixedToInt(textAscent
+ textDescent
) ) ;
1912 *descent
=YDEV2LOGREL( FixedToInt(textDescent
) );
1913 if ( externalLeading
)
1914 *externalLeading
= 0 ;
1916 *width
= XDEV2LOGREL( FixedToInt(textAfter
- textBefore
) ) ;
1918 ::ATSUDisposeTextLayout(atsuLayout
);
1920 #if SIZEOF_WCHAR_T == 4
1926 // work around the constness
1927 *((wxFont
*)(&m_font
)) = formerFont
;
1932 bool wxDC::DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const
1934 wxCHECK_MSG( Ok(), false, wxT("wxDC(cg)::DoGetPartialTextExtents - invalid DC") );
1937 widths
.Add(0, text
.Length());
1939 if (text
.Length() == 0)
1942 ATSUTextLayout atsuLayout
;
1943 UniCharCount chars
= text
.Length() ;
1944 UniChar
* ubuf
= NULL
;
1946 #if SIZEOF_WCHAR_T == 4
1947 wxMBConvUTF16 converter
;
1949 size_t unicharlen
= converter
.WC2MB( NULL
, text
.wc_str() , 0 ) ;
1950 ubuf
= (UniChar
*) malloc( unicharlen
+ 2 ) ;
1951 converter
.WC2MB( (char*) ubuf
, text
.wc_str(), unicharlen
+ 2 ) ;
1953 const wxWCharBuffer wchar
= text
.wc_str( wxConvLocal
) ;
1954 size_t unicharlen
= converter
.WC2MB( NULL
, wchar
.data() , 0 ) ;
1955 ubuf
= (UniChar
*) malloc( unicharlen
+ 2 ) ;
1956 converter
.WC2MB( (char*) ubuf
, wchar
.data() , unicharlen
+ 2 ) ;
1958 chars
= unicharlen
/ 2 ;
1961 ubuf
= (UniChar
*) text
.wc_str() ;
1963 wxWCharBuffer wchar
= text
.wc_str( wxConvLocal
) ;
1964 chars
= wxWcslen( wchar
.data() ) ;
1965 ubuf
= (UniChar
*) wchar
.data() ;
1970 status
= ::ATSUCreateTextLayoutWithTextPtr( (UniCharArrayPtr
) ubuf
, 0 , chars
, chars
, 1 ,
1971 &chars
, (ATSUStyle
*) &m_macATSUIStyle
, &atsuLayout
) ;
1973 for ( int pos
= 0; pos
< (int)chars
; pos
++ )
1975 unsigned long actualNumberOfBounds
= 0;
1976 ATSTrapezoid glyphBounds
;
1978 // We get a single bound, since the text should only require one. If it requires more, there is an issue
1980 result
= ATSUGetGlyphBounds( atsuLayout
, 0, 0, kATSUFromTextBeginning
, pos
+ 1,
1981 kATSUseDeviceOrigins
, 1, &glyphBounds
, &actualNumberOfBounds
);
1982 if (result
!= noErr
|| actualNumberOfBounds
!= 1 )
1985 widths
[pos
] = XDEV2LOGREL(FixedToInt( glyphBounds
.upperRight
.x
- glyphBounds
.upperLeft
.x
));
1986 //unsigned char uch = s[i];
1989 ::ATSUDisposeTextLayout(atsuLayout
);
1993 wxCoord
wxDC::GetCharWidth(void) const
1996 DoGetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
) ;
2001 wxCoord
wxDC::GetCharHeight(void) const
2004 DoGetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
) ;
2009 void wxDC::Clear(void)
2011 wxCHECK_RET( Ok(), wxT("wxDC(cg)::Clear - invalid DC") );
2013 if (m_backgroundBrush
.Ok() && m_backgroundBrush
.GetStyle() != wxTRANSPARENT
)
2015 HIRect rect
= CGRectMake( -10000 , -10000 , 20000 , 20000 ) ;
2016 CGContextRef cg
= ((wxMacCGContext
*)(m_graphicContext
))->GetNativeContext() ;
2017 switch ( m_backgroundBrush
.MacGetBrushKind() )
2019 case kwxMacBrushTheme
:
2021 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
2022 if ( HIThemeSetFill
!= 0 )
2024 HIThemeSetFill( m_backgroundBrush
.MacGetTheme(), NULL
, cg
, kHIThemeOrientationNormal
);
2025 CGContextFillRect(cg
, rect
);
2032 GetThemeBrushAsColor( m_backgroundBrush
.MacGetTheme(), 32, true, &color
);
2033 CGContextSetRGBFillColor( cg
, (float) color
.red
/ 65536,
2034 (float) color
.green
/ 65536, (float) color
.blue
/ 65536, 1 );
2035 CGContextFillRect( cg
, rect
);
2038 // reset to normal value
2039 RGBColor col
= MAC_WXCOLORREF( GetBrush().GetColour().GetPixel() ) ;
2040 CGContextSetRGBFillColor( cg
, col
.red
/ 65536.0, col
.green
/ 65536.0, col
.blue
/ 65536.0, 1.0 );
2044 case kwxMacBrushThemeBackground
:
2046 wxFAIL_MSG( wxT("There shouldn't be theme backgrounds under Quartz") ) ;
2048 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
2049 if ( UMAGetSystemVersion() >= 0x1030 )
2051 HIThemeBackgroundDrawInfo drawInfo
;
2052 drawInfo
.version
= 0 ;
2053 drawInfo
.state
= kThemeStateActive
;
2054 drawInfo
.kind
= m_backgroundBrush
.MacGetThemeBackground(NULL
) ;
2055 if ( drawInfo
.kind
== kThemeBackgroundMetal
)
2056 HIThemeDrawBackground( &rect
, &drawInfo
, cg
,
2057 kHIThemeOrientationNormal
) ;
2058 HIThemeApplyBackground( &rect
, &drawInfo
, cg
,
2059 kHIThemeOrientationNormal
) ;
2065 case kwxMacBrushColour
:
2067 RGBColor col
= MAC_WXCOLORREF( m_backgroundBrush
.GetColour().GetPixel()) ;
2068 CGContextSetRGBFillColor( cg
, col
.red
/ 65536.0 , col
.green
/ 65536.0 , col
.blue
/ 65536.0 , 1.0 ) ;
2069 CGContextFillRect(cg
, rect
);
2071 // reset to normal value
2072 col
= MAC_WXCOLORREF( GetBrush().GetColour().GetPixel() ) ;
2073 CGContextSetRGBFillColor( cg
, col
.red
/ 65536.0 , col
.green
/ 65536.0 , col
.blue
/ 65536.0 , 1.0 ) ;
2078 wxFAIL_MSG( wxT("unknown brush kind") ) ;
2084 void wxDC::MacInstallFont() const
2086 wxCHECK_RET( Ok(), wxT("wxDC(cg)::MacInstallFont - invalid DC") );
2088 if ( m_macATSUIStyle
)
2090 ::ATSUDisposeStyle((ATSUStyle
)m_macATSUIStyle
);
2091 m_macATSUIStyle
= NULL
;
2096 OSStatus status
= noErr
;
2097 status
= ATSUCreateAndCopyStyle( (ATSUStyle
) m_font
.MacGetATSUStyle() , (ATSUStyle
*) &m_macATSUIStyle
) ;
2099 wxASSERT_MSG( status
== noErr
, wxT("couldn't set create ATSU style") ) ;
2101 Fixed atsuSize
= IntToFixed( int(m_scaleY
* m_font
.MacGetFontSize()) ) ;
2102 RGBColor atsuColor
= MAC_WXCOLORREF( m_textForegroundColour
.GetPixel() ) ;
2103 ATSUAttributeTag atsuTags
[] =
2108 ByteCount atsuSizes
[sizeof(atsuTags
) / sizeof(ATSUAttributeTag
)] =
2111 sizeof( RGBColor
) ,
2113 // Boolean kTrue = true ;
2114 // Boolean kFalse = false ;
2115 // ATSUVerticalCharacterType kHorizontal = kATSUStronglyHorizontal;
2116 ATSUAttributeValuePtr atsuValues
[sizeof(atsuTags
) / sizeof(ATSUAttributeTag
)] =
2122 status
= ::ATSUSetAttributes((ATSUStyle
)m_macATSUIStyle
, sizeof(atsuTags
)/sizeof(ATSUAttributeTag
) ,
2123 atsuTags
, atsuSizes
, atsuValues
);
2125 wxASSERT_MSG( status
== noErr
, wxT("couldn't Modify ATSU style") ) ;
2131 // ---------------------------------------------------------------------------
2132 // coordinates transformations
2133 // ---------------------------------------------------------------------------
2135 wxCoord
wxDCBase::DeviceToLogicalX(wxCoord x
) const
2137 return ((wxDC
*)this)->XDEV2LOG(x
);
2140 wxCoord
wxDCBase::DeviceToLogicalY(wxCoord y
) const
2142 return ((wxDC
*)this)->YDEV2LOG(y
);
2145 wxCoord
wxDCBase::DeviceToLogicalXRel(wxCoord x
) const
2147 return ((wxDC
*)this)->XDEV2LOGREL(x
);
2150 wxCoord
wxDCBase::DeviceToLogicalYRel(wxCoord y
) const
2152 return ((wxDC
*)this)->YDEV2LOGREL(y
);
2155 wxCoord
wxDCBase::LogicalToDeviceX(wxCoord x
) const
2157 return ((wxDC
*)this)->XLOG2DEV(x
);
2160 wxCoord
wxDCBase::LogicalToDeviceY(wxCoord y
) const
2162 return ((wxDC
*)this)->YLOG2DEV(y
);
2165 wxCoord
wxDCBase::LogicalToDeviceXRel(wxCoord x
) const
2167 return ((wxDC
*)this)->XLOG2DEVREL(x
);
2170 wxCoord
wxDCBase::LogicalToDeviceYRel(wxCoord y
) const
2172 return ((wxDC
*)this)->YLOG2DEVREL(y
);
2175 #endif // wxMAC_USE_CORE_GRAPHICS