]> git.saurik.com Git - wxWidgets.git/blame - src/osx/carbon/graphics.cpp
removing old codewarrior files
[wxWidgets.git] / src / osx / carbon / graphics.cpp
CommitLineData
489468fe 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: src/osx/carbon/graphics.cpp
489468fe
SC
3// Purpose: wxDC class
4// Author: Stefan Csomor
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bf02a7f9 8// copyright: (c) Stefan Csomor
489468fe
SC
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/wxprec.h"
13
14#include "wx/graphics.h"
15#include "wx/private/graphics.h"
16
17#ifndef WX_PRECOMP
18 #include "wx/dcclient.h"
19 #include "wx/dcmemory.h"
20 #include "wx/dcprint.h"
21 #include "wx/log.h"
22 #include "wx/region.h"
23 #include "wx/image.h"
24 #include "wx/icon.h"
25#endif
26
27
28#ifdef __MSL__
29 #if __MSL__ >= 0x6000
30 #include "math.h"
31 // in case our functions were defined outside std, we make it known all the same
32 namespace std { }
33 using namespace std;
34 #endif
35#endif
36
37#ifdef __WXMAC__
b2680ced 38 #include "wx/osx/private.h"
1f0c8f31 39 #include "wx/osx/dcprint.h"
b2680ced
SC
40 #include "wx/osx/dcclient.h"
41 #include "wx/osx/dcmemory.h"
f28b6f06 42 #include "wx/osx/private.h"
489468fe
SC
43#else
44 #include "CoreServices/CoreServices.h"
45 #include "ApplicationServices/ApplicationServices.h"
1f0c8f31 46 #include "wx/osx/core/cfstring.h"
489468fe
SC
47 #include "wx/cocoa/dcclient.h"
48#endif
49
50#ifdef __WXCOCOA__
51
52CGColorSpaceRef wxMacGetGenericRGBColorSpace()
53{
54 static wxCFRef<CGColorSpaceRef> genericRGBColorSpace;
55
56 if (genericRGBColorSpace == NULL)
57 {
58 genericRGBColorSpace.reset( CGColorSpaceCreateWithName( kCGColorSpaceGenericRGB ) );
59 }
60
61 return genericRGBColorSpace;
62}
63
64int UMAGetSystemVersion()
65{
66 return 0x1050;
67}
68
69
292e5e1f 70#define wxOSX_USE_CORE_TEXT 1
489468fe
SC
71
72#endif
73
15fc716c 74#if wxOSX_USE_COCOA_OR_IPHONE
b4ff8b3e
SC
75extern CGContextRef wxOSXGetContextFromCurrentContext() ;
76#if wxOSX_USE_COCOA
f28b6f06 77extern bool wxOSXLockFocus( WXWidget view) ;
15fc716c
SC
78extern void wxOSXUnlockFocus( WXWidget view) ;
79#endif
b4ff8b3e 80#endif
15fc716c 81
bf02a7f9
SC
82#if 1 // MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
83
84// TODO test whether this private API also works under 10.3
85
86// copying values from NSCompositingModes (see also webkit and cairo sources)
87
88typedef enum CGCompositeOperation {
89 kCGCompositeOperationClear = 0,
90 kCGCompositeOperationCopy = 1,
91 kCGCompositeOperationSourceOver = 2,
92 kCGCompositeOperationSourceIn = 3,
93 kCGCompositeOperationSourceOut = 4,
94 kCGCompositeOperationSourceAtop = 5,
95 kCGCompositeOperationDestinationOver = 6,
96 kCGCompositeOperationDestinationIn = 7,
97 kCGCompositeOperationDestinationOut = 8,
98 kCGCompositeOperationDestinationAtop = 9,
99 kCGCompositeOperationXOR = 10,
100 kCGCompositeOperationPlusDarker = 11,
03647350 101// NS only, unsupported by CG : Highlight
bf02a7f9
SC
102 kCGCompositeOperationPlusLighter = 12
103} CGCompositeOperation ;
104
105extern "C"
106{
107 CG_EXTERN void CGContextSetCompositeOperation (CGContextRef context, int operation);
108} ;
109
110#endif
15fc716c 111
489468fe
SC
112//-----------------------------------------------------------------------------
113// constants
114//-----------------------------------------------------------------------------
115
116#if !defined( __DARWIN__ ) || defined(__MWERKS__)
117#ifndef M_PI
118const double M_PI = 3.14159265358979;
119#endif
120#endif
121
122static const double RAD2DEG = 180.0 / M_PI;
123
124//
125// Pen, Brushes and Fonts
126//
127
128#pragma mark -
129#pragma mark wxMacCoreGraphicsPattern, ImagePattern, HatchPattern classes
130
131OSStatus wxMacDrawCGImage(
132 CGContextRef inContext,
133 const CGRect * inBounds,
134 CGImageRef inImage)
135{
b2680ced
SC
136#if wxOSX_USE_CARBON
137 return HIViewDrawCGImage( inContext, inBounds, inImage );
138#else
021db427
SC
139 CGContextSaveGState(inContext);
140 CGContextTranslateCTM(inContext, inBounds->origin.x, inBounds->origin.y + inBounds->size.height);
141 CGRect r = *inBounds;
142 r.origin.x = r.origin.y = 0;
143 CGContextScaleCTM(inContext, 1, -1);
144 CGContextDrawImage(inContext, r, inImage );
145 CGContextRestoreGState(inContext);
489468fe 146 return noErr;
489468fe
SC
147#endif
148}
149
150CGColorRef wxMacCreateCGColor( const wxColour& col )
151{
152 CGColorRef retval = 0;
153#ifdef __WXMAC__
154 retval = col.CreateCGColor();
155#else
156// TODO add conversion NSColor - CGColorRef (obj-c)
157#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
158 if ( CGColorCreateGenericRGB )
159 retval = CGColorCreateGenericRGB( col.Red() / 255.0 , col.Green() / 255.0, col.Blue() / 255.0, col.Alpha() / 255.0 );
160 else
161#endif
162 {
163 CGFloat components[4] = { col.Red() / 255.0, col.Green() / 255.0, col.Blue() / 255.0, col.Alpha() / 255.0 } ;
164 retval = CGColorCreate( wxMacGetGenericRGBColorSpace() , components ) ;
165 }
166
167#endif
168 return retval;
169}
170
292e5e1f 171#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 && wxOSX_USE_CORE_TEXT
489468fe
SC
172
173CTFontRef wxMacCreateCTFont( const wxFont& font )
174{
175#ifdef __WXMAC__
aa6208d9 176 return wxCFRetain((CTFontRef) font.OSXGetCTFont());
489468fe
SC
177#else
178 return CTFontCreateWithName( wxCFStringRef( font.GetFaceName(), wxLocale::GetSystemEncoding() ) , font.GetPointSize() , NULL );
179#endif
180}
181
182#endif
183
184// CGPattern wrapper class: always allocate on heap, never call destructor
185
186class wxMacCoreGraphicsPattern
187{
188public :
189 wxMacCoreGraphicsPattern() {}
190
191 // is guaranteed to be called only with a non-Null CGContextRef
192 virtual void Render( CGContextRef ctxRef ) = 0;
193
194 operator CGPatternRef() const { return m_patternRef; }
195
196protected :
197 virtual ~wxMacCoreGraphicsPattern()
198 {
199 // as this is called only when the m_patternRef is been released;
200 // don't release it again
201 }
202
203 static void _Render( void *info, CGContextRef ctxRef )
204 {
205 wxMacCoreGraphicsPattern* self = (wxMacCoreGraphicsPattern*) info;
206 if ( self && ctxRef )
207 self->Render( ctxRef );
208 }
209
210 static void _Dispose( void *info )
211 {
212 wxMacCoreGraphicsPattern* self = (wxMacCoreGraphicsPattern*) info;
213 delete self;
214 }
215
216 CGPatternRef m_patternRef;
217
218 static const CGPatternCallbacks ms_Callbacks;
219};
220
221const CGPatternCallbacks wxMacCoreGraphicsPattern::ms_Callbacks = { 0, &wxMacCoreGraphicsPattern::_Render, &wxMacCoreGraphicsPattern::_Dispose };
222
223class ImagePattern : public wxMacCoreGraphicsPattern
224{
225public :
226 ImagePattern( const wxBitmap* bmp , const CGAffineTransform& transform )
227 {
a1b806b9 228 wxASSERT( bmp && bmp->IsOk() );
489468fe
SC
229#ifdef __WXMAC__
230 Init( (CGImageRef) bmp->CreateCGImage() , transform );
231#endif
232 }
233
234 // ImagePattern takes ownership of CGImageRef passed in
235 ImagePattern( CGImageRef image , const CGAffineTransform& transform )
236 {
237 if ( image )
238 CFRetain( image );
239
240 Init( image , transform );
241 }
242
243 virtual void Render( CGContextRef ctxRef )
244 {
245 if (m_image != NULL)
246 wxMacDrawCGImage( ctxRef, &m_imageBounds, m_image );
247 }
248
249protected :
250 void Init( CGImageRef image, const CGAffineTransform& transform )
251 {
252 m_image = image;
253 if ( m_image )
254 {
255 m_imageBounds = CGRectMake( (CGFloat) 0.0, (CGFloat) 0.0, (CGFloat)CGImageGetWidth( m_image ), (CGFloat)CGImageGetHeight( m_image ) );
256 m_patternRef = CGPatternCreate(
257 this , m_imageBounds, transform ,
258 m_imageBounds.size.width, m_imageBounds.size.height,
259 kCGPatternTilingNoDistortion, true , &wxMacCoreGraphicsPattern::ms_Callbacks );
260 }
261 }
262
263 virtual ~ImagePattern()
264 {
265 if ( m_image )
266 CGImageRelease( m_image );
267 }
268
269 CGImageRef m_image;
270 CGRect m_imageBounds;
271};
272
273class HatchPattern : public wxMacCoreGraphicsPattern
274{
275public :
276 HatchPattern( int hatchstyle, const CGAffineTransform& transform )
277 {
278 m_hatch = hatchstyle;
279 m_imageBounds = CGRectMake( (CGFloat) 0.0, (CGFloat) 0.0, (CGFloat) 8.0 , (CGFloat) 8.0 );
280 m_patternRef = CGPatternCreate(
281 this , m_imageBounds, transform ,
282 m_imageBounds.size.width, m_imageBounds.size.height,
283 kCGPatternTilingNoDistortion, false , &wxMacCoreGraphicsPattern::ms_Callbacks );
284 }
285
286 void StrokeLineSegments( CGContextRef ctxRef , const CGPoint pts[] , size_t count )
287 {
288 CGContextStrokeLineSegments( ctxRef , pts , count );
289 }
290
291 virtual void Render( CGContextRef ctxRef )
292 {
293 switch ( m_hatch )
294 {
295 case wxBDIAGONAL_HATCH :
296 {
297 CGPoint pts[] =
298 {
299 { (CGFloat) 8.0 , (CGFloat) 0.0 } , { (CGFloat) 0.0 , (CGFloat) 8.0 }
300 };
301 StrokeLineSegments( ctxRef , pts , 2 );
302 }
303 break;
304
305 case wxCROSSDIAG_HATCH :
306 {
307 CGPoint pts[] =
308 {
309 { (CGFloat) 0.0 , (CGFloat) 0.0 } , { (CGFloat) 8.0 , (CGFloat) 8.0 } ,
310 { (CGFloat) 8.0 , (CGFloat) 0.0 } , { (CGFloat) 0.0 , (CGFloat) 8.0 }
311 };
312 StrokeLineSegments( ctxRef , pts , 4 );
313 }
314 break;
315
316 case wxFDIAGONAL_HATCH :
317 {
318 CGPoint pts[] =
319 {
320 { (CGFloat) 0.0 , (CGFloat) 0.0 } , { (CGFloat) 8.0 , (CGFloat) 8.0 }
321 };
322 StrokeLineSegments( ctxRef , pts , 2 );
323 }
324 break;
325
326 case wxCROSS_HATCH :
327 {
328 CGPoint pts[] =
329 {
330 { (CGFloat) 0.0 , (CGFloat) 4.0 } , { (CGFloat) 8.0 , (CGFloat) 4.0 } ,
331 { (CGFloat) 4.0 , (CGFloat) 0.0 } , { (CGFloat) 4.0 , (CGFloat) 8.0 } ,
332 };
333 StrokeLineSegments( ctxRef , pts , 4 );
334 }
335 break;
336
337 case wxHORIZONTAL_HATCH :
338 {
339 CGPoint pts[] =
340 {
341 { (CGFloat) 0.0 , (CGFloat) 4.0 } , { (CGFloat) 8.0 , (CGFloat) 4.0 } ,
342 };
343 StrokeLineSegments( ctxRef , pts , 2 );
344 }
345 break;
346
347 case wxVERTICAL_HATCH :
348 {
349 CGPoint pts[] =
350 {
351 { (CGFloat) 4.0 , (CGFloat) 0.0 } , { (CGFloat) 4.0 , (CGFloat) 8.0 } ,
352 };
353 StrokeLineSegments( ctxRef , pts , 2 );
354 }
355 break;
356
357 default:
358 break;
359 }
360 }
361
362protected :
363 virtual ~HatchPattern() {}
364
365 CGRect m_imageBounds;
366 int m_hatch;
367};
368
369class wxMacCoreGraphicsPenData : public wxGraphicsObjectRefData
370{
371public:
372 wxMacCoreGraphicsPenData( wxGraphicsRenderer* renderer, const wxPen &pen );
373 ~wxMacCoreGraphicsPenData();
374
375 void Init();
376 virtual void Apply( wxGraphicsContext* context );
377 virtual wxDouble GetWidth() { return m_width; }
378
379protected :
380 CGLineCap m_cap;
381 wxCFRef<CGColorRef> m_color;
382 wxCFRef<CGColorSpaceRef> m_colorSpace;
383
384 CGLineJoin m_join;
385 CGFloat m_width;
386
387 int m_count;
388 const CGFloat *m_lengths;
389 CGFloat *m_userLengths;
390
391
392 bool m_isPattern;
393 wxCFRef<CGPatternRef> m_pattern;
394 CGFloat* m_patternColorComponents;
395};
396
397wxMacCoreGraphicsPenData::wxMacCoreGraphicsPenData( wxGraphicsRenderer* renderer, const wxPen &pen ) :
398 wxGraphicsObjectRefData( renderer )
399{
400 Init();
401
402 m_color.reset( wxMacCreateCGColor( pen.GetColour() ) ) ;
403
404 // TODO: * m_dc->m_scaleX
405 m_width = pen.GetWidth();
406 if (m_width <= 0.0)
407 m_width = (CGFloat) 0.1;
408
409 switch ( pen.GetCap() )
410 {
411 case wxCAP_ROUND :
412 m_cap = kCGLineCapRound;
413 break;
414
415 case wxCAP_PROJECTING :
416 m_cap = kCGLineCapSquare;
417 break;
418
419 case wxCAP_BUTT :
420 m_cap = kCGLineCapButt;
421 break;
422
423 default :
424 m_cap = kCGLineCapButt;
425 break;
426 }
427
428 switch ( pen.GetJoin() )
429 {
430 case wxJOIN_BEVEL :
431 m_join = kCGLineJoinBevel;
432 break;
433
434 case wxJOIN_MITER :
435 m_join = kCGLineJoinMiter;
436 break;
437
438 case wxJOIN_ROUND :
439 m_join = kCGLineJoinRound;
440 break;
441
442 default :
443 m_join = kCGLineJoinMiter;
444 break;
445 }
446
447 const CGFloat dashUnit = m_width < 1.0 ? (CGFloat) 1.0 : m_width;
448
449 const CGFloat dotted[] = { (CGFloat) dashUnit , (CGFloat) (dashUnit + 2.0) };
450 static const CGFloat short_dashed[] = { (CGFloat) 9.0 , (CGFloat) 6.0 };
451 static const CGFloat dashed[] = { (CGFloat) 19.0 , (CGFloat) 9.0 };
452 static const CGFloat dotted_dashed[] = { (CGFloat) 9.0 , (CGFloat) 6.0 , (CGFloat) 3.0 , (CGFloat) 3.0 };
453
454 switch ( pen.GetStyle() )
455 {
ab451f97 456 case wxPENSTYLE_SOLID:
489468fe
SC
457 break;
458
ab451f97 459 case wxPENSTYLE_DOT:
489468fe
SC
460 m_count = WXSIZEOF(dotted);
461 m_userLengths = new CGFloat[ m_count ] ;
462 memcpy( m_userLengths, dotted, sizeof(dotted) );
463 m_lengths = m_userLengths;
464 break;
465
ab451f97 466 case wxPENSTYLE_LONG_DASH:
489468fe
SC
467 m_count = WXSIZEOF(dashed);
468 m_lengths = dashed;
469 break;
470
ab451f97 471 case wxPENSTYLE_SHORT_DASH:
489468fe
SC
472 m_count = WXSIZEOF(short_dashed);
473 m_lengths = short_dashed;
474 break;
475
ab451f97 476 case wxPENSTYLE_DOT_DASH:
489468fe
SC
477 m_count = WXSIZEOF(dotted_dashed);
478 m_lengths = dotted_dashed;
479 break;
480
ab451f97 481 case wxPENSTYLE_USER_DASH:
489468fe
SC
482 wxDash *dashes;
483 m_count = pen.GetDashes( &dashes );
484 if ((dashes != NULL) && (m_count > 0))
485 {
486 m_userLengths = new CGFloat[m_count];
487 for ( int i = 0; i < m_count; ++i )
488 {
489 m_userLengths[i] = dashes[i] * dashUnit;
490
491 if ( i % 2 == 1 && m_userLengths[i] < dashUnit + 2.0 )
492 m_userLengths[i] = (CGFloat) (dashUnit + 2.0);
493 else if ( i % 2 == 0 && m_userLengths[i] < dashUnit )
494 m_userLengths[i] = dashUnit;
495 }
496 }
497 m_lengths = m_userLengths;
498 break;
499
ab451f97 500 case wxPENSTYLE_STIPPLE:
489468fe
SC
501 {
502 wxBitmap* bmp = pen.GetStipple();
a1b806b9 503 if ( bmp && bmp->IsOk() )
489468fe
SC
504 {
505 m_colorSpace.reset( CGColorSpaceCreatePattern( NULL ) );
506 m_pattern.reset( (CGPatternRef) *( new ImagePattern( bmp , CGAffineTransformMakeScale( 1,-1 ) ) ) );
507 m_patternColorComponents = new CGFloat[1] ;
508 m_patternColorComponents[0] = (CGFloat) 1.0;
509 m_isPattern = true;
510 }
511 }
512 break;
513
514 default :
515 {
516 m_isPattern = true;
517 m_colorSpace.reset( CGColorSpaceCreatePattern( wxMacGetGenericRGBColorSpace() ) );
518 m_pattern.reset( (CGPatternRef) *( new HatchPattern( pen.GetStyle() , CGAffineTransformMakeScale( 1,-1 ) ) ) );
519 m_patternColorComponents = new CGFloat[4] ;
520 m_patternColorComponents[0] = (CGFloat) (pen.GetColour().Red() / 255.0);
521 m_patternColorComponents[1] = (CGFloat) (pen.GetColour().Green() / 255.0);
522 m_patternColorComponents[2] = (CGFloat) (pen.GetColour().Blue() / 255.0);
523 m_patternColorComponents[3] = (CGFloat) (pen.GetColour().Alpha() / 255.0);
524 }
525 break;
526 }
527 if ((m_lengths != NULL) && (m_count > 0))
528 {
529 // force the line cap, otherwise we get artifacts (overlaps) and just solid lines
530 m_cap = kCGLineCapButt;
531 }
532}
533
534wxMacCoreGraphicsPenData::~wxMacCoreGraphicsPenData()
535{
536 delete[] m_userLengths;
537 delete[] m_patternColorComponents;
538}
539
540void wxMacCoreGraphicsPenData::Init()
541{
542 m_lengths = NULL;
543 m_userLengths = NULL;
544 m_width = 0;
545 m_count = 0;
546 m_patternColorComponents = NULL;
547 m_isPattern = false;
548}
549
550void wxMacCoreGraphicsPenData::Apply( wxGraphicsContext* context )
551{
552 CGContextRef cg = (CGContextRef) context->GetNativeContext();
553 CGContextSetLineWidth( cg , m_width );
554 CGContextSetLineJoin( cg , m_join );
555
556 CGContextSetLineDash( cg , 0 , m_lengths , m_count );
557 CGContextSetLineCap( cg , m_cap );
558
559 if ( m_isPattern )
560 {
561 CGAffineTransform matrix = CGContextGetCTM( cg );
562 CGContextSetPatternPhase( cg, CGSizeMake(matrix.tx, matrix.ty) );
563 CGContextSetStrokeColorSpace( cg , m_colorSpace );
564 CGContextSetStrokePattern( cg, m_pattern , m_patternColorComponents );
565 }
566 else
567 {
bf02a7f9 568 CGContextSetStrokeColorWithColor( cg , m_color );
489468fe
SC
569 }
570}
571
572//
573// Brush
574//
575
489468fe
SC
576// make sure we all use one class for all conversions from wx to native colour
577
578class wxMacCoreGraphicsColour
579{
580 public:
581 wxMacCoreGraphicsColour();
582 wxMacCoreGraphicsColour(const wxBrush &brush);
583 ~wxMacCoreGraphicsColour();
584
585 void Apply( CGContextRef cgContext );
586 protected:
587 void Init();
588 wxCFRef<CGColorRef> m_color;
589 wxCFRef<CGColorSpaceRef> m_colorSpace;
590
591 bool m_isPattern;
592 wxCFRef<CGPatternRef> m_pattern;
593 CGFloat* m_patternColorComponents;
594} ;
595
596wxMacCoreGraphicsColour::~wxMacCoreGraphicsColour()
597{
598 delete[] m_patternColorComponents;
599}
600
601void wxMacCoreGraphicsColour::Init()
602{
603 m_isPattern = false;
604 m_patternColorComponents = NULL;
605}
606
607void wxMacCoreGraphicsColour::Apply( CGContextRef cgContext )
608{
609 if ( m_isPattern )
610 {
611 CGAffineTransform matrix = CGContextGetCTM( cgContext );
612 CGContextSetPatternPhase( cgContext, CGSizeMake(matrix.tx, matrix.ty) );
613 CGContextSetFillColorSpace( cgContext , m_colorSpace );
614 CGContextSetFillPattern( cgContext, m_pattern , m_patternColorComponents );
615 }
616 else
617 {
618 CGContextSetFillColorWithColor( cgContext, m_color );
619 }
620}
621
622wxMacCoreGraphicsColour::wxMacCoreGraphicsColour()
623{
624 Init();
625}
626
627wxMacCoreGraphicsColour::wxMacCoreGraphicsColour( const wxBrush &brush )
628{
629 Init();
630 if ( brush.GetStyle() == wxSOLID )
631 {
632 m_color.reset( wxMacCreateCGColor( brush.GetColour() ));
633 }
634 else if ( brush.IsHatch() )
635 {
636 m_isPattern = true;
637 m_colorSpace.reset( CGColorSpaceCreatePattern( wxMacGetGenericRGBColorSpace() ) );
638 m_pattern.reset( (CGPatternRef) *( new HatchPattern( brush.GetStyle() , CGAffineTransformMakeScale( 1,-1 ) ) ) );
639
640 m_patternColorComponents = new CGFloat[4] ;
641 m_patternColorComponents[0] = (CGFloat) (brush.GetColour().Red() / 255.0);
642 m_patternColorComponents[1] = (CGFloat) (brush.GetColour().Green() / 255.0);
643 m_patternColorComponents[2] = (CGFloat) (brush.GetColour().Blue() / 255.0);
644 m_patternColorComponents[3] = (CGFloat) (brush.GetColour().Alpha() / 255.0);
645 }
646 else
647 {
648 // now brush is a bitmap
649 wxBitmap* bmp = brush.GetStipple();
a1b806b9 650 if ( bmp && bmp->IsOk() )
489468fe
SC
651 {
652 m_isPattern = true;
653 m_patternColorComponents = new CGFloat[1] ;
654 m_patternColorComponents[0] = (CGFloat) 1.0;
655 m_colorSpace.reset( CGColorSpaceCreatePattern( NULL ) );
656 m_pattern.reset( (CGPatternRef) *( new ImagePattern( bmp , CGAffineTransformMakeScale( 1,-1 ) ) ) );
657 }
658 }
659}
660
661class wxMacCoreGraphicsBrushData : public wxGraphicsObjectRefData
662{
663public:
664 wxMacCoreGraphicsBrushData( wxGraphicsRenderer* renderer );
665 wxMacCoreGraphicsBrushData( wxGraphicsRenderer* renderer, const wxBrush &brush );
666 ~wxMacCoreGraphicsBrushData ();
667
668 virtual void Apply( wxGraphicsContext* context );
4ee4c7b9
VZ
669 void CreateLinearGradientBrush(wxDouble x1, wxDouble y1,
670 wxDouble x2, wxDouble y2,
671 const wxGraphicsGradientStops& stops);
672 void CreateRadialGradientBrush(wxDouble xo, wxDouble yo,
673 wxDouble xc, wxDouble yc, wxDouble radius,
674 const wxGraphicsGradientStops& stops);
489468fe
SC
675
676 virtual bool IsShading() { return m_isShading; }
677 CGShadingRef GetShading() { return m_shading; }
678protected:
4ee4c7b9
VZ
679 CGFunctionRef CreateGradientFunction(const wxGraphicsGradientStops& stops);
680
489468fe
SC
681 static void CalculateShadingValues (void *info, const CGFloat *in, CGFloat *out);
682 virtual void Init();
683
684 wxMacCoreGraphicsColour m_cgColor;
685
686 bool m_isShading;
687 CGFunctionRef m_gradientFunction;
688 CGShadingRef m_shading;
ca1f7cb5
VZ
689
690 // information about a single gradient component
691 struct GradientComponent
692 {
693 CGFloat pos;
694 CGFloat red;
695 CGFloat green;
696 CGFloat blue;
697 CGFloat alpha;
698 };
699
700 // and information about all of them
701 struct GradientComponents
702 {
703 GradientComponents()
704 {
705 count = 0;
706 comps = NULL;
707 }
708
709 void Init(unsigned count_)
710 {
711 count = count_;
712 comps = new GradientComponent[count];
713 }
714
715 ~GradientComponents()
716 {
717 delete [] comps;
718 }
719
720 unsigned count;
721 GradientComponent *comps;
722 };
723
724 GradientComponents m_gradientComponents;
489468fe
SC
725};
726
727wxMacCoreGraphicsBrushData::wxMacCoreGraphicsBrushData( wxGraphicsRenderer* renderer) : wxGraphicsObjectRefData( renderer )
728{
729 Init();
730}
731
4ee4c7b9
VZ
732void
733wxMacCoreGraphicsBrushData::CreateLinearGradientBrush(wxDouble x1, wxDouble y1,
734 wxDouble x2, wxDouble y2,
735 const wxGraphicsGradientStops& stops)
489468fe 736{
4ee4c7b9 737 m_gradientFunction = CreateGradientFunction(stops);
489468fe
SC
738 m_shading = CGShadingCreateAxial( wxMacGetGenericRGBColorSpace(), CGPointMake((CGFloat) x1, (CGFloat) y1),
739 CGPointMake((CGFloat) x2,(CGFloat) y2), m_gradientFunction, true, true ) ;
740 m_isShading = true ;
741}
742
4ee4c7b9
VZ
743void
744wxMacCoreGraphicsBrushData::CreateRadialGradientBrush(wxDouble xo, wxDouble yo,
745 wxDouble xc, wxDouble yc,
746 wxDouble radius,
747 const wxGraphicsGradientStops& stops)
489468fe 748{
4ee4c7b9 749 m_gradientFunction = CreateGradientFunction(stops);
0b7dce54 750 m_shading = CGShadingCreateRadial( wxMacGetGenericRGBColorSpace(), CGPointMake((CGFloat) xo,(CGFloat) yo), 0,
489468fe
SC
751 CGPointMake((CGFloat) xc,(CGFloat) yc), (CGFloat) radius, m_gradientFunction, true, true ) ;
752 m_isShading = true ;
753}
754
755wxMacCoreGraphicsBrushData::wxMacCoreGraphicsBrushData(wxGraphicsRenderer* renderer, const wxBrush &brush) : wxGraphicsObjectRefData( renderer ),
756 m_cgColor( brush )
757{
758 Init();
759
760}
761
762wxMacCoreGraphicsBrushData::~wxMacCoreGraphicsBrushData()
763{
764 if ( m_shading )
765 CGShadingRelease(m_shading);
766
767 if( m_gradientFunction )
768 CGFunctionRelease(m_gradientFunction);
489468fe
SC
769}
770
771void wxMacCoreGraphicsBrushData::Init()
772{
773 m_gradientFunction = NULL;
774 m_shading = NULL;
489468fe
SC
775 m_isShading = false;
776}
777
778void wxMacCoreGraphicsBrushData::Apply( wxGraphicsContext* context )
779{
780 CGContextRef cg = (CGContextRef) context->GetNativeContext();
781
782 if ( m_isShading )
783 {
784 // nothing to set as shades are processed by clipping using the path and filling
785 }
786 else
787 {
788 m_cgColor.Apply( cg );
789 }
790}
791
792void wxMacCoreGraphicsBrushData::CalculateShadingValues (void *info, const CGFloat *in, CGFloat *out)
793{
ca1f7cb5
VZ
794 const GradientComponents& stops = *(GradientComponents*) info ;
795
489468fe 796 CGFloat f = *in;
ca1f7cb5 797 if (f <= 0.0)
489468fe 798 {
ca1f7cb5
VZ
799 // Start
800 out[0] = stops.comps[0].red;
4027f0d7
VZ
801 out[1] = stops.comps[0].green;
802 out[2] = stops.comps[0].blue;
803 out[3] = stops.comps[0].alpha;
ca1f7cb5
VZ
804 }
805 else if (f >= 1.0)
806 {
807 // end
808 out[0] = stops.comps[stops.count - 1].red;
809 out[1] = stops.comps[stops.count - 1].green;
810 out[2] = stops.comps[stops.count - 1].blue;
811 out[3] = stops.comps[stops.count - 1].alpha;
812 }
813 else
814 {
815 // Find first component with position greater than f
816 unsigned i;
817 for ( i = 0; i < stops.count; i++ )
818 {
819 if (stops.comps[i].pos > f)
820 break;
821 }
822
823 // Interpolated between stops
824 CGFloat diff = (f - stops.comps[i-1].pos);
825 CGFloat range = (stops.comps[i].pos - stops.comps[i-1].pos);
826 CGFloat fact = diff / range;
827
828 out[0] = stops.comps[i - 1].red + (stops.comps[i].red - stops.comps[i - 1].red) * fact;
e32454ea
SC
829 out[1] = stops.comps[i - 1].green + (stops.comps[i].green - stops.comps[i - 1].green) * fact;
830 out[2] = stops.comps[i - 1].blue + (stops.comps[i].blue - stops.comps[i - 1].blue) * fact;
831 out[3] = stops.comps[i - 1].alpha + (stops.comps[i].alpha - stops.comps[i - 1].alpha) * fact;
489468fe
SC
832 }
833}
834
4ee4c7b9
VZ
835CGFunctionRef
836wxMacCoreGraphicsBrushData::CreateGradientFunction(const wxGraphicsGradientStops& stops)
489468fe 837{
4ee4c7b9 838
489468fe
SC
839 static const CGFunctionCallbacks callbacks = { 0, &CalculateShadingValues, NULL };
840 static const CGFloat input_value_range [2] = { 0, 1 };
841 static const CGFloat output_value_ranges [8] = { 0, 1, 0, 1, 0, 1, 0, 1 };
ca1f7cb5
VZ
842
843 m_gradientComponents.Init(stops.GetCount());
844 for ( unsigned i = 0; i < m_gradientComponents.count; i++ )
845 {
846 const wxGraphicsGradientStop stop = stops.Item(i);
847
848 m_gradientComponents.comps[i].pos = stop.GetPosition();
849
850 const wxColour col = stop.GetColour();
851 m_gradientComponents.comps[i].red = (CGFloat) (col.Red() / 255.0);
852 m_gradientComponents.comps[i].green = (CGFloat) (col.Green() / 255.0);
853 m_gradientComponents.comps[i].blue = (CGFloat) (col.Blue() / 255.0);
854 m_gradientComponents.comps[i].alpha = (CGFloat) (col.Alpha() / 255.0);
855 }
856
857 return CGFunctionCreate ( &m_gradientComponents, 1,
489468fe
SC
858 input_value_range,
859 4,
860 output_value_ranges,
861 &callbacks);
862}
863
864//
865// Font
866//
867
b2680ced
SC
868#if wxOSX_USE_IPHONE
869
870extern UIFont* CreateUIFont( const wxFont& font );
871extern void DrawTextInContext( CGContextRef context, CGPoint where, UIFont *font, NSString* text );
872extern CGSize MeasureTextInContext( UIFont *font, NSString* text );
873
874#endif
875
489468fe
SC
876class wxMacCoreGraphicsFontData : public wxGraphicsObjectRefData
877{
878public:
879 wxMacCoreGraphicsFontData( wxGraphicsRenderer* renderer, const wxFont &font, const wxColour& col );
880 ~wxMacCoreGraphicsFontData();
881
292e5e1f 882#if wxOSX_USE_ATSU_TEXT
489468fe
SC
883 virtual ATSUStyle GetATSUStyle() { return m_macATSUIStyle; }
884#endif
292e5e1f 885#if wxOSX_USE_CORE_TEXT
aa6208d9 886 CTFontRef OSXGetCTFont() const { return m_ctFont ; }
489468fe
SC
887#endif
888 wxColour GetColour() const { return m_colour ; }
889
890 bool GetUnderlined() const { return m_underlined ; }
b2680ced
SC
891#if wxOSX_USE_IPHONE
892 UIFont* GetUIFont() const { return m_uiFont; }
893#endif
489468fe
SC
894private :
895 wxColour m_colour;
896 bool m_underlined;
292e5e1f 897#if wxOSX_USE_ATSU_TEXT
489468fe
SC
898 ATSUStyle m_macATSUIStyle;
899#endif
292e5e1f 900#if wxOSX_USE_CORE_TEXT
489468fe
SC
901 wxCFRef< CTFontRef > m_ctFont;
902#endif
b2680ced
SC
903#if wxOSX_USE_IPHONE
904 UIFont* m_uiFont;
905#endif
489468fe
SC
906};
907
908wxMacCoreGraphicsFontData::wxMacCoreGraphicsFontData(wxGraphicsRenderer* renderer, const wxFont &font, const wxColour& col) : wxGraphicsObjectRefData( renderer )
909{
910 m_colour = col;
911 m_underlined = font.GetUnderlined();
912
292e5e1f 913#if wxOSX_USE_CORE_TEXT
489468fe
SC
914 m_ctFont.reset( wxMacCreateCTFont( font ) );
915#endif
b2680ced
SC
916#if wxOSX_USE_IPHONE
917 m_uiFont = CreateUIFont(font);
918 wxMacCocoaRetain( m_uiFont );
919#endif
292e5e1f 920#if wxOSX_USE_ATSU_TEXT
489468fe
SC
921 OSStatus status = noErr;
922 m_macATSUIStyle = NULL;
923
140f2027 924 status = ATSUCreateAndCopyStyle( (ATSUStyle) font.MacGetATSUStyle() , &m_macATSUIStyle );
489468fe
SC
925
926 wxASSERT_MSG( status == noErr, wxT("couldn't create ATSU style") );
927
928 // we need the scale here ...
929
f1c40652 930 Fixed atsuSize = IntToFixed( int( 1 * font.GetPointSize()) );
489468fe
SC
931 RGBColor atsuColor ;
932 col.GetRGBColor( &atsuColor );
933 ATSUAttributeTag atsuTags[] =
934 {
935 kATSUSizeTag ,
936 kATSUColorTag ,
937 };
9611b797 938 ByteCount atsuSizes[WXSIZEOF(atsuTags)] =
489468fe
SC
939 {
940 sizeof( Fixed ) ,
941 sizeof( RGBColor ) ,
942 };
9611b797 943 ATSUAttributeValuePtr atsuValues[WXSIZEOF(atsuTags)] =
489468fe
SC
944 {
945 &atsuSize ,
946 &atsuColor ,
947 };
948
949 status = ::ATSUSetAttributes(
9611b797 950 m_macATSUIStyle, WXSIZEOF(atsuTags),
489468fe
SC
951 atsuTags, atsuSizes, atsuValues);
952
953 wxASSERT_MSG( status == noErr , wxT("couldn't modify ATSU style") );
954#endif
489468fe
SC
955}
956
957wxMacCoreGraphicsFontData::~wxMacCoreGraphicsFontData()
958{
292e5e1f 959#if wxOSX_USE_CORE_TEXT
489468fe 960#endif
292e5e1f 961#if wxOSX_USE_ATSU_TEXT
489468fe
SC
962 if ( m_macATSUIStyle )
963 {
964 ::ATSUDisposeStyle((ATSUStyle)m_macATSUIStyle);
965 m_macATSUIStyle = NULL;
966 }
967#endif
b2680ced
SC
968#if wxOSX_USE_IPHONE
969 wxMacCocoaRelease( m_uiFont );
489468fe
SC
970#endif
971}
972
973class wxMacCoreGraphicsBitmapData : public wxGraphicsObjectRefData
974{
975public:
976 wxMacCoreGraphicsBitmapData( wxGraphicsRenderer* renderer, CGImageRef bitmap, bool monochrome );
977 ~wxMacCoreGraphicsBitmapData();
978
979 virtual CGImageRef GetBitmap() { return m_bitmap; }
980 bool IsMonochrome() { return m_monochrome; }
981private :
982 CGImageRef m_bitmap;
983 bool m_monochrome;
984};
985
986wxMacCoreGraphicsBitmapData::wxMacCoreGraphicsBitmapData( wxGraphicsRenderer* renderer, CGImageRef bitmap, bool monochrome ) : wxGraphicsObjectRefData( renderer ),
987 m_bitmap(bitmap), m_monochrome(monochrome)
988{
989}
990
991wxMacCoreGraphicsBitmapData::~wxMacCoreGraphicsBitmapData()
992{
993 CGImageRelease( m_bitmap );
994}
995
996//
997// Graphics Matrix
998//
999
1000//-----------------------------------------------------------------------------
1001// wxMacCoreGraphicsMatrix declaration
1002//-----------------------------------------------------------------------------
1003
1004class WXDLLIMPEXP_CORE wxMacCoreGraphicsMatrixData : public wxGraphicsMatrixData
1005{
1006public :
1007 wxMacCoreGraphicsMatrixData(wxGraphicsRenderer* renderer) ;
1008
1009 virtual ~wxMacCoreGraphicsMatrixData() ;
1010
1011 virtual wxGraphicsObjectRefData *Clone() const ;
1012
1013 // concatenates the matrix
1014 virtual void Concat( const wxGraphicsMatrixData *t );
1015
1016 // sets the matrix to the respective values
1017 virtual void Set(wxDouble a=1.0, wxDouble b=0.0, wxDouble c=0.0, wxDouble d=1.0,
1018 wxDouble tx=0.0, wxDouble ty=0.0);
1019
1020 // gets the component valuess of the matrix
1021 virtual void Get(wxDouble* a=NULL, wxDouble* b=NULL, wxDouble* c=NULL,
1022 wxDouble* d=NULL, wxDouble* tx=NULL, wxDouble* ty=NULL) const;
1023
1024 // makes this the inverse matrix
1025 virtual void Invert();
1026
1027 // returns true if the elements of the transformation matrix are equal ?
1028 virtual bool IsEqual( const wxGraphicsMatrixData* t) const ;
1029
1030 // return true if this is the identity matrix
1031 virtual bool IsIdentity() const;
1032
1033 //
1034 // transformation
1035 //
1036
1037 // add the translation to this matrix
1038 virtual void Translate( wxDouble dx , wxDouble dy );
1039
1040 // add the scale to this matrix
1041 virtual void Scale( wxDouble xScale , wxDouble yScale );
1042
1043 // add the rotation to this matrix (radians)
1044 virtual void Rotate( wxDouble angle );
1045
1046 //
1047 // apply the transforms
1048 //
1049
1050 // applies that matrix to the point
1051 virtual void TransformPoint( wxDouble *x, wxDouble *y ) const;
1052
1053 // applies the matrix except for translations
1054 virtual void TransformDistance( wxDouble *dx, wxDouble *dy ) const;
1055
1056 // returns the native representation
1057 virtual void * GetNativeMatrix() const;
1058
1059private :
1060 CGAffineTransform m_matrix;
1061} ;
1062
1063//-----------------------------------------------------------------------------
1064// wxMacCoreGraphicsMatrix implementation
1065//-----------------------------------------------------------------------------
1066
1067wxMacCoreGraphicsMatrixData::wxMacCoreGraphicsMatrixData(wxGraphicsRenderer* renderer) : wxGraphicsMatrixData(renderer)
1068{
1069}
1070
1071wxMacCoreGraphicsMatrixData::~wxMacCoreGraphicsMatrixData()
1072{
1073}
1074
1075wxGraphicsObjectRefData *wxMacCoreGraphicsMatrixData::Clone() const
1076{
1077 wxMacCoreGraphicsMatrixData* m = new wxMacCoreGraphicsMatrixData(GetRenderer()) ;
1078 m->m_matrix = m_matrix ;
1079 return m;
1080}
1081
1082// concatenates the matrix
1083void wxMacCoreGraphicsMatrixData::Concat( const wxGraphicsMatrixData *t )
1084{
362439b6 1085 m_matrix = CGAffineTransformConcat(*((CGAffineTransform*) t->GetNativeMatrix()), m_matrix );
489468fe
SC
1086}
1087
1088// sets the matrix to the respective values
1089void wxMacCoreGraphicsMatrixData::Set(wxDouble a, wxDouble b, wxDouble c, wxDouble d,
1090 wxDouble tx, wxDouble ty)
1091{
1092 m_matrix = CGAffineTransformMake((CGFloat) a,(CGFloat) b,(CGFloat) c,(CGFloat) d,(CGFloat) tx,(CGFloat) ty);
1093}
1094
1095// gets the component valuess of the matrix
1096void wxMacCoreGraphicsMatrixData::Get(wxDouble* a, wxDouble* b, wxDouble* c,
1097 wxDouble* d, wxDouble* tx, wxDouble* ty) const
1098{
1099 if (a) *a = m_matrix.a;
1100 if (b) *b = m_matrix.b;
1101 if (c) *c = m_matrix.c;
1102 if (d) *d = m_matrix.d;
1103 if (tx) *tx= m_matrix.tx;
1104 if (ty) *ty= m_matrix.ty;
1105}
1106
1107// makes this the inverse matrix
1108void wxMacCoreGraphicsMatrixData::Invert()
1109{
1110 m_matrix = CGAffineTransformInvert( m_matrix );
1111}
1112
1113// returns true if the elements of the transformation matrix are equal ?
1114bool wxMacCoreGraphicsMatrixData::IsEqual( const wxGraphicsMatrixData* t) const
1115{
1116 return CGAffineTransformEqualToTransform(m_matrix, *((CGAffineTransform*) t->GetNativeMatrix()));
1117}
1118
1119// return true if this is the identity matrix
1120bool wxMacCoreGraphicsMatrixData::IsIdentity() const
1121{
1122 return ( m_matrix.a == 1 && m_matrix.d == 1 &&
1123 m_matrix.b == 0 && m_matrix.d == 0 && m_matrix.tx == 0 && m_matrix.ty == 0);
1124}
1125
1126//
1127// transformation
1128//
1129
1130// add the translation to this matrix
1131void wxMacCoreGraphicsMatrixData::Translate( wxDouble dx , wxDouble dy )
1132{
1133 m_matrix = CGAffineTransformTranslate( m_matrix, (CGFloat) dx, (CGFloat) dy);
1134}
1135
1136// add the scale to this matrix
1137void wxMacCoreGraphicsMatrixData::Scale( wxDouble xScale , wxDouble yScale )
1138{
1139 m_matrix = CGAffineTransformScale( m_matrix, (CGFloat) xScale, (CGFloat) yScale);
1140}
1141
1142// add the rotation to this matrix (radians)
1143void wxMacCoreGraphicsMatrixData::Rotate( wxDouble angle )
1144{
1145 m_matrix = CGAffineTransformRotate( m_matrix, (CGFloat) angle);
1146}
1147
1148//
1149// apply the transforms
1150//
1151
1152// applies that matrix to the point
1153void wxMacCoreGraphicsMatrixData::TransformPoint( wxDouble *x, wxDouble *y ) const
1154{
1155 CGPoint pt = CGPointApplyAffineTransform( CGPointMake((CGFloat) *x,(CGFloat) *y), m_matrix);
1156
1157 *x = pt.x;
1158 *y = pt.y;
1159}
1160
1161// applies the matrix except for translations
1162void wxMacCoreGraphicsMatrixData::TransformDistance( wxDouble *dx, wxDouble *dy ) const
1163{
1164 CGSize sz = CGSizeApplyAffineTransform( CGSizeMake((CGFloat) *dx,(CGFloat) *dy) , m_matrix );
1165 *dx = sz.width;
1166 *dy = sz.height;
1167}
1168
1169// returns the native representation
1170void * wxMacCoreGraphicsMatrixData::GetNativeMatrix() const
1171{
1172 return (void*) &m_matrix;
1173}
1174
1175//
1176// Graphics Path
1177//
1178
1179//-----------------------------------------------------------------------------
1180// wxMacCoreGraphicsPath declaration
1181//-----------------------------------------------------------------------------
1182
1183class WXDLLEXPORT wxMacCoreGraphicsPathData : public wxGraphicsPathData
1184{
1185public :
1186 wxMacCoreGraphicsPathData( wxGraphicsRenderer* renderer, CGMutablePathRef path = NULL);
1187
1188 ~wxMacCoreGraphicsPathData();
1189
1190 virtual wxGraphicsObjectRefData *Clone() const;
1191
1192 // begins a new subpath at (x,y)
1193 virtual void MoveToPoint( wxDouble x, wxDouble y );
1194
1195 // adds a straight line from the current point to (x,y)
1196 virtual void AddLineToPoint( wxDouble x, wxDouble y );
1197
1198 // adds a cubic Bezier curve from the current point, using two control points and an end point
1199 virtual void AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y );
1200
1201 // closes the current sub-path
1202 virtual void CloseSubpath();
1203
1204 // gets the last point of the current path, (0,0) if not yet set
1205 virtual void GetCurrentPoint( wxDouble* x, wxDouble* y) const;
1206
1207 // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle
1208 virtual void AddArc( wxDouble x, wxDouble y, wxDouble r, wxDouble startAngle, wxDouble endAngle, bool clockwise );
1209
1210 //
1211 // These are convenience functions which - if not available natively will be assembled
1212 // using the primitives from above
1213 //
1214
1215 // adds a quadratic Bezier curve from the current point, using a control point and an end point
1216 virtual void AddQuadCurveToPoint( wxDouble cx, wxDouble cy, wxDouble x, wxDouble y );
1217
1218 // appends a rectangle as a new closed subpath
1219 virtual void AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h );
1220
4ee4c7b9 1221 // appends a circle as a new closed subpath
489468fe
SC
1222 virtual void AddCircle( wxDouble x, wxDouble y, wxDouble r );
1223
9f43f269
SC
1224 // appends an ellipsis as a new closed subpath fitting the passed rectangle
1225 virtual void AddEllipse( wxDouble x, wxDouble y, wxDouble w, wxDouble h);
1226
489468fe
SC
1227 // draws a an arc to two tangents connecting (current) to (x1,y1) and (x1,y1) to (x2,y2), also a straight line from (current) to (x1,y1)
1228 virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r );
1229
1230 // adds another path
1231 virtual void AddPath( const wxGraphicsPathData* path );
1232
1233 // returns the native path
1234 virtual void * GetNativePath() const { return m_path; }
1235
1236 // give the native path returned by GetNativePath() back (there might be some deallocations necessary)
1237 virtual void UnGetNativePath(void *WXUNUSED(p)) const {}
1238
1239 // transforms each point of this path by the matrix
1240 virtual void Transform( const wxGraphicsMatrixData* matrix );
1241
1242 // gets the bounding box enclosing all points (possibly including control points)
df04f800 1243 virtual void GetBox(wxDouble *x, wxDouble *y, wxDouble *w, wxDouble *h) const;
489468fe 1244
94a007ec 1245 virtual bool Contains( wxDouble x, wxDouble y, wxPolygonFillMode fillStyle = wxODDEVEN_RULE) const;
489468fe
SC
1246private :
1247 CGMutablePathRef m_path;
1248};
1249
1250//-----------------------------------------------------------------------------
1251// wxMacCoreGraphicsPath implementation
1252//-----------------------------------------------------------------------------
1253
1254wxMacCoreGraphicsPathData::wxMacCoreGraphicsPathData( wxGraphicsRenderer* renderer, CGMutablePathRef path) : wxGraphicsPathData(renderer)
1255{
1256 if ( path )
1257 m_path = path;
1258 else
1259 m_path = CGPathCreateMutable();
1260}
1261
1262wxMacCoreGraphicsPathData::~wxMacCoreGraphicsPathData()
1263{
1264 CGPathRelease( m_path );
1265}
1266
1267wxGraphicsObjectRefData* wxMacCoreGraphicsPathData::Clone() const
1268{
1269 wxMacCoreGraphicsPathData* clone = new wxMacCoreGraphicsPathData(GetRenderer(),CGPathCreateMutableCopy(m_path));
1270 return clone ;
1271}
1272
1273
1274// opens (starts) a new subpath
1275void wxMacCoreGraphicsPathData::MoveToPoint( wxDouble x1 , wxDouble y1 )
1276{
1277 CGPathMoveToPoint( m_path , NULL , (CGFloat) x1 , (CGFloat) y1 );
1278}
1279
1280void wxMacCoreGraphicsPathData::AddLineToPoint( wxDouble x1 , wxDouble y1 )
1281{
1282 CGPathAddLineToPoint( m_path , NULL , (CGFloat) x1 , (CGFloat) y1 );
1283}
1284
1285void wxMacCoreGraphicsPathData::AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y )
1286{
1287 CGPathAddCurveToPoint( m_path , NULL , (CGFloat) cx1 , (CGFloat) cy1 , (CGFloat) cx2, (CGFloat) cy2, (CGFloat) x , (CGFloat) y );
1288}
1289
1290void wxMacCoreGraphicsPathData::AddQuadCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble x, wxDouble y )
1291{
1292 CGPathAddQuadCurveToPoint( m_path , NULL , (CGFloat) cx1 , (CGFloat) cy1 , (CGFloat) x , (CGFloat) y );
1293}
1294
1295void wxMacCoreGraphicsPathData::AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h )
1296{
1297 CGRect cgRect = { { (CGFloat) x , (CGFloat) y } , { (CGFloat) w , (CGFloat) h } };
1298 CGPathAddRect( m_path , NULL , cgRect );
1299}
1300
1301void wxMacCoreGraphicsPathData::AddCircle( wxDouble x, wxDouble y , wxDouble r )
1302{
9f43f269
SC
1303 CGPathAddEllipseInRect( m_path, NULL, CGRectMake(x-r,y-r,2*r,2*r));
1304}
1305
1306void wxMacCoreGraphicsPathData::AddEllipse( wxDouble x, wxDouble y, wxDouble w, wxDouble h )
1307{
1308 CGPathAddEllipseInRect( m_path, NULL, CGRectMake(x,y,w,h));
489468fe
SC
1309}
1310
1311// adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle
1312void wxMacCoreGraphicsPathData::AddArc( wxDouble x, wxDouble y, wxDouble r, wxDouble startAngle, wxDouble endAngle, bool clockwise )
1313{
1314 // inverse direction as we the 'normal' state is a y axis pointing down, ie mirrored to the standard core graphics setup
1315 CGPathAddArc( m_path, NULL , (CGFloat) x, (CGFloat) y, (CGFloat) r, (CGFloat) startAngle, (CGFloat) endAngle, !clockwise);
1316}
1317
1318void wxMacCoreGraphicsPathData::AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r )
1319{
1320 CGPathAddArcToPoint( m_path, NULL , (CGFloat) x1, (CGFloat) y1, (CGFloat) x2, (CGFloat) y2, (CGFloat) r);
1321}
1322
1323void wxMacCoreGraphicsPathData::AddPath( const wxGraphicsPathData* path )
1324{
1325 CGPathAddPath( m_path , NULL, (CGPathRef) path->GetNativePath() );
1326}
1327
1328// closes the current subpath
1329void wxMacCoreGraphicsPathData::CloseSubpath()
1330{
1331 CGPathCloseSubpath( m_path );
1332}
1333
1334// gets the last point of the current path, (0,0) if not yet set
1335void wxMacCoreGraphicsPathData::GetCurrentPoint( wxDouble* x, wxDouble* y) const
1336{
1337 CGPoint p = CGPathGetCurrentPoint( m_path );
1338 *x = p.x;
1339 *y = p.y;
1340}
1341
1342// transforms each point of this path by the matrix
1343void wxMacCoreGraphicsPathData::Transform( const wxGraphicsMatrixData* matrix )
1344{
1345 CGMutablePathRef p = CGPathCreateMutable() ;
1346 CGPathAddPath( p, (CGAffineTransform*) matrix->GetNativeMatrix() , m_path );
1347 CGPathRelease( m_path );
1348 m_path = p;
1349}
1350
1351// gets the bounding box enclosing all points (possibly including control points)
1352void wxMacCoreGraphicsPathData::GetBox(wxDouble *x, wxDouble *y, wxDouble *w, wxDouble *h) const
1353{
1354 CGRect bounds = CGPathGetBoundingBox( m_path ) ;
1355 *x = bounds.origin.x;
1356 *y = bounds.origin.y;
1357 *w = bounds.size.width;
1358 *h = bounds.size.height;
1359}
1360
33ef0bdb 1361bool wxMacCoreGraphicsPathData::Contains( wxDouble x, wxDouble y, wxPolygonFillMode fillStyle) const
489468fe
SC
1362{
1363 return CGPathContainsPoint( m_path, NULL, CGPointMake((CGFloat) x,(CGFloat) y), fillStyle == wxODDEVEN_RULE );
1364}
1365
1366//
1367// Graphics Context
1368//
1369
1370//-----------------------------------------------------------------------------
1371// wxMacCoreGraphicsContext declaration
1372//-----------------------------------------------------------------------------
1373
1374class WXDLLEXPORT wxMacCoreGraphicsContext : public wxGraphicsContext
1375{
1376public:
1377 wxMacCoreGraphicsContext( wxGraphicsRenderer* renderer, CGContextRef cgcontext, wxDouble width = 0, wxDouble height = 0 );
1378
b2680ced 1379#if wxOSX_USE_CARBON
489468fe 1380 wxMacCoreGraphicsContext( wxGraphicsRenderer* renderer, WindowRef window );
b2680ced 1381#endif
489468fe
SC
1382
1383 wxMacCoreGraphicsContext( wxGraphicsRenderer* renderer, wxWindow* window );
1384
1385 wxMacCoreGraphicsContext( wxGraphicsRenderer* renderer);
1386
1387 wxMacCoreGraphicsContext();
1388
1389 ~wxMacCoreGraphicsContext();
1390
1391 void Init();
1392
489468fe
SC
1393 virtual void StartPage( wxDouble width, wxDouble height );
1394
1395 virtual void EndPage();
1396
1397 virtual void Flush();
1398
1399 // push the current state of the context, ie the transformation matrix on a stack
1400 virtual void PushState();
1401
1402 // pops a stored state from the stack
1403 virtual void PopState();
1404
1405 // clips drawings to the region
1406 virtual void Clip( const wxRegion &region );
1407
1408 // clips drawings to the rect
1409 virtual void Clip( wxDouble x, wxDouble y, wxDouble w, wxDouble h );
1410
1411 // resets the clipping to original extent
1412 virtual void ResetClip();
1413
1414 virtual void * GetNativeContext();
1415
bf02a7f9
SC
1416 virtual bool SetAntialiasMode(wxAntialiasMode antialias);
1417
1418 virtual bool SetCompositionMode(wxCompositionMode op);
1419
1420 virtual void BeginLayer(wxDouble opacity);
1421
1422 virtual void EndLayer();
03647350 1423
489468fe
SC
1424 //
1425 // transformation
1426 //
1427
1428 // translate
1429 virtual void Translate( wxDouble dx , wxDouble dy );
1430
1431 // scale
1432 virtual void Scale( wxDouble xScale , wxDouble yScale );
1433
1434 // rotate (radians)
1435 virtual void Rotate( wxDouble angle );
1436
1437 // concatenates this transform with the current transform of this context
1438 virtual void ConcatTransform( const wxGraphicsMatrix& matrix );
1439
1440 // sets the transform of this context
1441 virtual void SetTransform( const wxGraphicsMatrix& matrix );
1442
1443 // gets the matrix of this context
1444 virtual wxGraphicsMatrix GetTransform() const;
1445 //
1446 // setting the paint
1447 //
1448
1449 // strokes along a path with the current pen
1450 virtual void StrokePath( const wxGraphicsPath &path );
1451
1452 // fills a path with the current brush
33ef0bdb 1453 virtual void FillPath( const wxGraphicsPath &path, wxPolygonFillMode fillStyle = wxODDEVEN_RULE );
489468fe
SC
1454
1455 // draws a path by first filling and then stroking
33ef0bdb 1456 virtual void DrawPath( const wxGraphicsPath &path, wxPolygonFillMode fillStyle = wxODDEVEN_RULE );
489468fe
SC
1457
1458 virtual bool ShouldOffset() const
1459 {
ad967c5b
SC
1460 if ( !m_enableOffset )
1461 return false;
1462
489468fe
SC
1463 int penwidth = 0 ;
1464 if ( !m_pen.IsNull() )
1465 {
1466 penwidth = (int)((wxMacCoreGraphicsPenData*)m_pen.GetRefData())->GetWidth();
1467 if ( penwidth == 0 )
1468 penwidth = 1;
1469 }
1470 return ( penwidth % 2 ) == 1;
1471 }
1472 //
1473 // text
1474 //
1475
489468fe
SC
1476 virtual void GetTextExtent( const wxString &text, wxDouble *width, wxDouble *height,
1477 wxDouble *descent, wxDouble *externalLeading ) const;
1478
1479 virtual void GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const;
1480
1481 //
1482 // image support
1483 //
1484
1485 virtual void DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h );
1486
1487 virtual void DrawBitmap( const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h );
1488
1489 virtual void DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h );
1490
1491 void SetNativeContext( CGContextRef cg );
1492
b2680ced 1493 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacCoreGraphicsContext)
489468fe
SC
1494
1495private:
f28b6f06 1496 bool EnsureIsValid();
489468fe 1497
0b7dce54
VZ
1498 virtual void DoDrawText( const wxString &str, wxDouble x, wxDouble y );
1499 virtual void DoDrawRotatedText( const wxString &str, wxDouble x, wxDouble y, wxDouble angle );
1500
489468fe 1501 CGContextRef m_cgContext;
b2680ced 1502#if wxOSX_USE_CARBON
489468fe 1503 WindowRef m_windowRef;
15fc716c
SC
1504#else
1505 WXWidget m_view;
b2680ced 1506#endif
15fc716c 1507 bool m_contextSynthesized;
489468fe 1508 CGAffineTransform m_windowTransform;
f28b6f06 1509 bool m_invisible;
489468fe 1510
15fc716c 1511#if wxOSX_USE_COCOA_OR_CARBON
489468fe 1512 wxCFRef<HIShapeRef> m_clipRgn;
b2680ced 1513#endif
489468fe
SC
1514};
1515
1516//-----------------------------------------------------------------------------
1517// device context implementation
1518//
1519// more and more of the dc functionality should be implemented by calling
1520// the appropricate wxMacCoreGraphicsContext, but we will have to do that step by step
1521// also coordinate conversions should be moved to native matrix ops
1522//-----------------------------------------------------------------------------
1523
1524// we always stock two context states, one at entry, to be able to preserve the
1525// state we were called with, the other one after changing to HI Graphics orientation
1526// (this one is used for getting back clippings etc)
1527
1528//-----------------------------------------------------------------------------
1529// wxMacCoreGraphicsContext implementation
1530//-----------------------------------------------------------------------------
1531
1532IMPLEMENT_DYNAMIC_CLASS(wxMacCoreGraphicsContext, wxGraphicsContext)
1533
1534class wxQuartzOffsetHelper
1535{
1536public :
1537 wxQuartzOffsetHelper( CGContextRef cg , bool offset )
1538 {
1539 m_cg = cg;
1540 m_offset = offset;
1541 if ( m_offset )
e812e279
SC
1542 {
1543 m_userOffset = CGContextConvertSizeToUserSpace( m_cg, CGSizeMake( 0.5 , 0.5 ) );
1544 CGContextTranslateCTM( m_cg, m_userOffset.width , m_userOffset.height );
1545 }
ce00f59b 1546 else
24e67779
SC
1547 {
1548 m_userOffset = CGSizeMake(0.0, 0.0);
1549 }
1550
489468fe
SC
1551 }
1552 ~wxQuartzOffsetHelper( )
1553 {
1554 if ( m_offset )
e812e279 1555 CGContextTranslateCTM( m_cg, -m_userOffset.width , -m_userOffset.height );
489468fe
SC
1556 }
1557public :
e812e279 1558 CGSize m_userOffset;
489468fe
SC
1559 CGContextRef m_cg;
1560 bool m_offset;
1561} ;
1562
1563void wxMacCoreGraphicsContext::Init()
1564{
1565 m_cgContext = NULL;
15fc716c
SC
1566 m_contextSynthesized = false;
1567 m_width = 0;
1568 m_height = 0;
b2680ced 1569#if wxOSX_USE_CARBON
489468fe 1570 m_windowRef = NULL;
b2680ced 1571#endif
15fc716c
SC
1572#if wxOSX_USE_COCOA_OR_IPHONE
1573 m_view = NULL;
1574#endif
f28b6f06 1575 m_invisible = false;
489468fe
SC
1576}
1577
1578wxMacCoreGraphicsContext::wxMacCoreGraphicsContext( wxGraphicsRenderer* renderer, CGContextRef cgcontext, wxDouble width, wxDouble height ) : wxGraphicsContext(renderer)
1579{
1580 Init();
1581 SetNativeContext(cgcontext);
1582 m_width = width;
1583 m_height = height;
1584}
1585
b2680ced 1586#if wxOSX_USE_CARBON
489468fe
SC
1587wxMacCoreGraphicsContext::wxMacCoreGraphicsContext( wxGraphicsRenderer* renderer, WindowRef window ): wxGraphicsContext(renderer)
1588{
1589 Init();
1590 m_windowRef = window;
ad967c5b 1591 m_enableOffset = true;
489468fe 1592}
b2680ced 1593#endif
489468fe
SC
1594
1595wxMacCoreGraphicsContext::wxMacCoreGraphicsContext( wxGraphicsRenderer* renderer, wxWindow* window ): wxGraphicsContext(renderer)
1596{
1597 Init();
1598
ad967c5b 1599 m_enableOffset = true;
15fc716c
SC
1600 wxSize sz = window->GetSize();
1601 m_width = sz.x;
1602 m_height = sz.y;
1603
1604#if wxOSX_USE_COCOA_OR_IPHONE
1605 m_view = window->GetHandle();
1606
b4ff8b3e
SC
1607#if wxOSX_USE_COCOA
1608 if ( ! window->GetPeer()->IsFlipped() )
15fc716c
SC
1609 {
1610 m_windowTransform = CGAffineTransformMakeTranslation( 0 , m_height );
1611 m_windowTransform = CGAffineTransformScale( m_windowTransform , 1 , -1 );
1612 }
1613 else
b4ff8b3e 1614#endif
15fc716c
SC
1615 {
1616 m_windowTransform = CGAffineTransformIdentity;
1617 }
1618#else
489468fe
SC
1619 int originX , originY;
1620 originX = originY = 0;
489468fe 1621 Rect bounds = { 0,0,0,0 };
489468fe
SC
1622 m_windowRef = (WindowRef) window->MacGetTopLevelWindowRef();
1623 window->MacWindowToRootWindow( &originX , &originY );
1624 GetWindowBounds( m_windowRef, kWindowContentRgn, &bounds );
489468fe
SC
1625 m_windowTransform = CGAffineTransformMakeTranslation( 0 , bounds.bottom - bounds.top );
1626 m_windowTransform = CGAffineTransformScale( m_windowTransform , 1 , -1 );
1627 m_windowTransform = CGAffineTransformTranslate( m_windowTransform, originX, originY ) ;
15fc716c 1628#endif
489468fe
SC
1629}
1630
1631wxMacCoreGraphicsContext::wxMacCoreGraphicsContext(wxGraphicsRenderer* renderer) : wxGraphicsContext(renderer)
1632{
1633 Init();
1634}
1635
1636wxMacCoreGraphicsContext::wxMacCoreGraphicsContext() : wxGraphicsContext(NULL)
1637{
1638 Init();
1639 wxLogDebug(wxT("Illegal Constructor called"));
1640}
1641
1642wxMacCoreGraphicsContext::~wxMacCoreGraphicsContext()
1643{
1644 SetNativeContext(NULL);
1645}
1646
489468fe
SC
1647
1648void wxMacCoreGraphicsContext::StartPage( wxDouble width, wxDouble height )
1649{
1650 CGRect r;
1651 if ( width != 0 && height != 0)
1652 r = CGRectMake( (CGFloat) 0.0 , (CGFloat) 0.0 , (CGFloat) width , (CGFloat) height );
1653 else
1654 r = CGRectMake( (CGFloat) 0.0 , (CGFloat) 0.0 , (CGFloat) m_width , (CGFloat) m_height );
1655
1656 CGContextBeginPage(m_cgContext, &r );
1657// CGContextTranslateCTM( m_cgContext , 0 , height == 0 ? m_height : height );
1658// CGContextScaleCTM( m_cgContext , 1 , -1 );
1659}
1660
1661void wxMacCoreGraphicsContext::EndPage()
1662{
1663 CGContextEndPage(m_cgContext);
1664}
1665
1666void wxMacCoreGraphicsContext::Flush()
1667{
1668 CGContextFlush(m_cgContext);
1669}
1670
f28b6f06 1671bool wxMacCoreGraphicsContext::EnsureIsValid()
489468fe
SC
1672{
1673 if ( !m_cgContext )
1674 {
f28b6f06
SC
1675 if (m_invisible)
1676 return false;
03647350 1677
b4ff8b3e 1678#if wxOSX_USE_COCOA
f28b6f06
SC
1679 if ( wxOSXLockFocus(m_view) )
1680 {
b4ff8b3e 1681 m_cgContext = wxOSXGetContextFromCurrentContext();
9a83f860 1682 wxASSERT_MSG( m_cgContext != NULL, wxT("Unable to retrieve drawing context from View"));
f28b6f06
SC
1683 }
1684 else
1685 {
1686 m_invisible = true;
1687 }
15fc716c 1688#endif
b4ff8b3e
SC
1689#if wxOSX_USE_IPHONE
1690 m_cgContext = wxOSXGetContextFromCurrentContext();
1691 if ( m_cgContext == NULL )
1692 {
1693 m_invisible = true;
1694 }
1695#endif
15fc716c 1696#if wxOSX_USE_CARBON
b2680ced 1697 OSStatus status = QDBeginCGContext( GetWindowPort( m_windowRef ) , &m_cgContext );
489468fe
SC
1698 if ( status != noErr )
1699 {
1700 wxFAIL_MSG("Cannot nest wxDCs on the same window");
1701 }
15fc716c 1702#endif
f28b6f06 1703 if ( m_cgContext )
489468fe 1704 {
f28b6f06 1705 CGContextSaveGState( m_cgContext );
6bd1764f
SC
1706 CGContextConcatCTM( m_cgContext, m_windowTransform );
1707 CGContextSetTextMatrix( m_cgContext, CGAffineTransformIdentity );
f28b6f06 1708 m_contextSynthesized = true;
b4ff8b3e 1709#if wxOSX_USE_COCOA_OR_CARBON
f28b6f06 1710 if ( m_clipRgn.get() )
489468fe 1711 {
f28b6f06
SC
1712 // the clip region is in device coordinates, so we convert this again to user coordinates
1713 wxCFRef<HIMutableShapeRef> hishape( HIShapeCreateMutableCopy( m_clipRgn ) );
1714 CGPoint transformedOrigin = CGPointApplyAffineTransform( CGPointZero,m_windowTransform);
1715 HIShapeOffset( hishape, -transformedOrigin.x, -transformedOrigin.y );
1716 // if the shape is empty, HIShapeReplacePathInCGContext doesn't work
1717 if ( HIShapeIsEmpty(hishape))
1718 {
1719 CGRect empty = CGRectMake( 0,0,0,0 );
1720 CGContextClipToRect( m_cgContext, empty );
1721 }
1722 else
1723 {
1724 HIShapeReplacePathInCGContext( hishape, m_cgContext );
1725 CGContextClip( m_cgContext );
1726 }
489468fe 1727 }
b4ff8b3e 1728#endif
f28b6f06 1729 CGContextSaveGState( m_cgContext );
03647350 1730
f28b6f06
SC
1731#if 0 // turn on for debugging of clientdc
1732 static float color = 0.5 ;
1733 static int channel = 0 ;
1734 CGRect bounds = CGRectMake(-1000,-1000,2000,2000);
1735 CGContextSetRGBFillColor( m_cgContext, channel == 0 ? color : 0.5 ,
1736 channel == 1 ? color : 0.5 , channel == 2 ? color : 0.5 , 1 );
1737 CGContextFillRect( m_cgContext, bounds );
1738 color += 0.1 ;
1739 if ( color > 0.9 )
489468fe 1740 {
f28b6f06
SC
1741 color = 0.5 ;
1742 channel++ ;
1743 if ( channel == 3 )
1744 channel = 0 ;
489468fe 1745 }
b2680ced 1746#endif
f28b6f06 1747 }
489468fe 1748 }
f28b6f06 1749 return m_cgContext != NULL;
489468fe
SC
1750}
1751
bf02a7f9 1752bool wxMacCoreGraphicsContext::SetAntialiasMode(wxAntialiasMode antialias)
489468fe 1753{
ab451f97 1754 if (!EnsureIsValid())
bf02a7f9
SC
1755 return true;
1756
1757 if (m_antialias == antialias)
489468fe 1758 return true;
03647350 1759
bf02a7f9 1760 m_antialias = antialias;
03647350 1761
bf02a7f9
SC
1762 bool antialiasMode;
1763 switch (antialias)
1764 {
1765 case wxANTIALIAS_DEFAULT:
1766 antialiasMode = true;
1767 break;
1768 case wxANTIALIAS_NONE:
1769 antialiasMode = false;
1770 break;
1771 default:
1772 return false;
1773 }
1774 CGContextSetShouldAntialias(m_cgContext, antialiasMode);
1775 return true;
1776}
489468fe 1777
bf02a7f9
SC
1778bool wxMacCoreGraphicsContext::SetCompositionMode(wxCompositionMode op)
1779{
ab451f97 1780 if (!EnsureIsValid())
f28b6f06 1781 return true;
489468fe 1782
bf02a7f9
SC
1783 if ( m_composition == op )
1784 return true;
03647350 1785
bf02a7f9 1786 m_composition = op;
03647350 1787
bf02a7f9
SC
1788 if (m_composition == wxCOMPOSITION_DEST)
1789 return true;
03647350 1790
bf02a7f9 1791#if wxOSX_USE_COCOA_OR_CARBON
bf02a7f9 1792 if ( UMAGetSystemVersion() < 0x1060 )
489468fe 1793 {
bf02a7f9
SC
1794 CGCompositeOperation cop = kCGCompositeOperationSourceOver;
1795 CGBlendMode mode = kCGBlendModeNormal;
1796 switch( op )
489468fe 1797 {
bf02a7f9 1798 case wxCOMPOSITION_CLEAR:
03647350 1799 cop = kCGCompositeOperationClear;
bf02a7f9
SC
1800 break;
1801 case wxCOMPOSITION_SOURCE:
03647350 1802 cop = kCGCompositeOperationCopy;
bf02a7f9
SC
1803 break;
1804 case wxCOMPOSITION_OVER:
03647350 1805 mode = kCGBlendModeNormal;
bf02a7f9
SC
1806 break;
1807 case wxCOMPOSITION_IN:
03647350 1808 cop = kCGCompositeOperationSourceIn;
bf02a7f9
SC
1809 break;
1810 case wxCOMPOSITION_OUT:
03647350 1811 cop = kCGCompositeOperationSourceOut;
bf02a7f9
SC
1812 break;
1813 case wxCOMPOSITION_ATOP:
03647350 1814 cop = kCGCompositeOperationSourceAtop;
bf02a7f9
SC
1815 break;
1816 case wxCOMPOSITION_DEST_OVER:
03647350 1817 cop = kCGCompositeOperationDestinationOver;
bf02a7f9
SC
1818 break;
1819 case wxCOMPOSITION_DEST_IN:
03647350 1820 cop = kCGCompositeOperationDestinationIn;
bf02a7f9
SC
1821 break;
1822 case wxCOMPOSITION_DEST_OUT:
03647350 1823 cop = kCGCompositeOperationDestinationOut;
bf02a7f9
SC
1824 break;
1825 case wxCOMPOSITION_DEST_ATOP:
03647350 1826 cop = kCGCompositeOperationDestinationAtop;
bf02a7f9
SC
1827 break;
1828 case wxCOMPOSITION_XOR:
03647350 1829 cop = kCGCompositeOperationXOR;
bf02a7f9 1830 break;
c0b5b33b 1831#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
bf02a7f9
SC
1832 case wxCOMPOSITION_ADD:
1833 mode = kCGBlendModePlusLighter ;
1834 break;
c0b5b33b 1835#endif
bf02a7f9
SC
1836 default:
1837 return false;
489468fe 1838 }
bf02a7f9
SC
1839 if ( cop != kCGCompositeOperationSourceOver )
1840 CGContextSetCompositeOperation(m_cgContext, cop);
1841 else
1842 CGContextSetBlendMode(m_cgContext, mode);
489468fe 1843 }
489468fe 1844#endif
f72e03b2
KO
1845#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
1846 else
489468fe 1847 {
bf02a7f9
SC
1848 CGBlendMode mode = kCGBlendModeNormal;
1849 switch( op )
489468fe 1850 {
bf02a7f9 1851 case wxCOMPOSITION_CLEAR:
03647350 1852 mode = kCGBlendModeClear;
bf02a7f9
SC
1853 break;
1854 case wxCOMPOSITION_SOURCE:
03647350 1855 mode = kCGBlendModeCopy;
bf02a7f9
SC
1856 break;
1857 case wxCOMPOSITION_OVER:
03647350 1858 mode = kCGBlendModeNormal;
bf02a7f9
SC
1859 break;
1860 case wxCOMPOSITION_IN:
03647350 1861 mode = kCGBlendModeSourceIn;
bf02a7f9
SC
1862 break;
1863 case wxCOMPOSITION_OUT:
03647350 1864 mode = kCGBlendModeSourceOut;
bf02a7f9
SC
1865 break;
1866 case wxCOMPOSITION_ATOP:
03647350 1867 mode = kCGBlendModeSourceAtop;
bf02a7f9
SC
1868 break;
1869 case wxCOMPOSITION_DEST_OVER:
03647350 1870 mode = kCGBlendModeDestinationOver;
bf02a7f9
SC
1871 break;
1872 case wxCOMPOSITION_DEST_IN:
03647350 1873 mode = kCGBlendModeDestinationIn;
bf02a7f9
SC
1874 break;
1875 case wxCOMPOSITION_DEST_OUT:
03647350 1876 mode = kCGBlendModeDestinationOut;
bf02a7f9
SC
1877 break;
1878 case wxCOMPOSITION_DEST_ATOP:
03647350 1879 mode = kCGBlendModeDestinationAtop;
bf02a7f9
SC
1880 break;
1881 case wxCOMPOSITION_XOR:
03647350 1882 mode = kCGBlendModeXOR;
bf02a7f9 1883 break;
03647350 1884
bf02a7f9
SC
1885 case wxCOMPOSITION_ADD:
1886 mode = kCGBlendModePlusLighter ;
1887 break;
1888 default:
1889 return false;
489468fe 1890 }
bf02a7f9 1891 CGContextSetBlendMode(m_cgContext, mode);
489468fe 1892 }
f72e03b2 1893#endif
bf02a7f9
SC
1894 return true;
1895}
489468fe 1896
bf02a7f9
SC
1897void wxMacCoreGraphicsContext::BeginLayer(wxDouble opacity)
1898{
1899 CGContextSaveGState(m_cgContext);
de0d2095 1900 CGContextSetAlpha(m_cgContext, (CGFloat) opacity);
bf02a7f9
SC
1901 CGContextBeginTransparencyLayer(m_cgContext, 0);
1902}
1903
1904void wxMacCoreGraphicsContext::EndLayer()
1905{
1906 CGContextEndTransparencyLayer(m_cgContext);
1907 CGContextRestoreGState(m_cgContext);
489468fe
SC
1908}
1909
1910void wxMacCoreGraphicsContext::Clip( const wxRegion &region )
1911{
15fc716c 1912#if wxOSX_USE_COCOA_OR_CARBON
489468fe
SC
1913 if( m_cgContext )
1914 {
1915 wxCFRef<HIShapeRef> shape = wxCFRefFromGet(region.GetWXHRGN());
1916 // if the shape is empty, HIShapeReplacePathInCGContext doesn't work
1917 if ( HIShapeIsEmpty(shape))
1918 {
1919 CGRect empty = CGRectMake( 0,0,0,0 );
1920 CGContextClipToRect( m_cgContext, empty );
1921 }
1922 else
1923 {
1924 HIShapeReplacePathInCGContext( shape, m_cgContext );
1925 CGContextClip( m_cgContext );
1926 }
1927 }
1928 else
1929 {
1930 // this offsetting to device coords is not really correct, but since we cannot apply affine transforms
1931 // to regions we try at least to have correct translations
1932 HIMutableShapeRef mutableShape = HIShapeCreateMutableCopy( region.GetWXHRGN() );
1933
1934 CGPoint transformedOrigin = CGPointApplyAffineTransform( CGPointZero, m_windowTransform );
1935 HIShapeOffset( mutableShape, transformedOrigin.x, transformedOrigin.y );
1936 m_clipRgn.reset(mutableShape);
1937 }
b2680ced
SC
1938#else
1939 // allow usage as measuring context
1940 // wxASSERT_MSG( m_cgContext != NULL, "Needs a valid context for clipping" );
489468fe
SC
1941#endif
1942}
1943
1944// clips drawings to the rect
1945void wxMacCoreGraphicsContext::Clip( wxDouble x, wxDouble y, wxDouble w, wxDouble h )
1946{
1947 CGRect r = CGRectMake( (CGFloat) x , (CGFloat) y , (CGFloat) w , (CGFloat) h );
1948 if ( m_cgContext )
1949 {
1950 CGContextClipToRect( m_cgContext, r );
1951 }
1952 else
1953 {
15fc716c 1954#if wxOSX_USE_COCOA_OR_CARBON
489468fe
SC
1955 // the clipping itself must be stored as device coordinates, otherwise
1956 // we cannot apply it back correctly
1957 r.origin= CGPointApplyAffineTransform( r.origin, m_windowTransform );
1958 m_clipRgn.reset(HIShapeCreateWithRect(&r));
b2680ced
SC
1959#else
1960 // allow usage as measuring context
1961 // wxFAIL_MSG( "Needs a valid context for clipping" );
1962#endif
489468fe
SC
1963 }
1964}
1965
1966 // resets the clipping to original extent
1967void wxMacCoreGraphicsContext::ResetClip()
1968{
1969 if ( m_cgContext )
1970 {
1971 // there is no way for clearing the clip, we can only revert to the stored
1972 // state, but then we have to make sure everything else is NOT restored
1973 CGAffineTransform transform = CGContextGetCTM( m_cgContext );
1974 CGContextRestoreGState( m_cgContext );
1975 CGContextSaveGState( m_cgContext );
1976 CGAffineTransform transformNew = CGContextGetCTM( m_cgContext );
1977 transformNew = CGAffineTransformInvert( transformNew ) ;
1978 CGContextConcatCTM( m_cgContext, transformNew);
1979 CGContextConcatCTM( m_cgContext, transform);
1980 }
1981 else
1982 {
15fc716c 1983#if wxOSX_USE_COCOA_OR_CARBON
489468fe 1984 m_clipRgn.reset();
b2680ced
SC
1985#else
1986 // allow usage as measuring context
1987 // wxFAIL_MSG( "Needs a valid context for clipping" );
1988#endif
489468fe
SC
1989 }
1990}
1991
1992void wxMacCoreGraphicsContext::StrokePath( const wxGraphicsPath &path )
1993{
1994 if ( m_pen.IsNull() )
1995 return ;
1996
ab451f97 1997 if (!EnsureIsValid())
f28b6f06 1998 return;
03647350 1999
bf02a7f9
SC
2000 if (m_composition == wxCOMPOSITION_DEST)
2001 return;
2002
489468fe
SC
2003 wxQuartzOffsetHelper helper( m_cgContext , ShouldOffset() );
2004
2005 ((wxMacCoreGraphicsPenData*)m_pen.GetRefData())->Apply(this);
2006 CGContextAddPath( m_cgContext , (CGPathRef) path.GetNativePath() );
2007 CGContextStrokePath( m_cgContext );
2008}
2009
33ef0bdb 2010void wxMacCoreGraphicsContext::DrawPath( const wxGraphicsPath &path , wxPolygonFillMode fillStyle )
489468fe 2011{
ab451f97 2012 if (!EnsureIsValid())
f28b6f06 2013 return;
03647350 2014
bf02a7f9
SC
2015 if (m_composition == wxCOMPOSITION_DEST)
2016 return;
2017
489468fe
SC
2018 if ( !m_brush.IsNull() && ((wxMacCoreGraphicsBrushData*)m_brush.GetRefData())->IsShading() )
2019 {
2020 // when using shading, we cannot draw pen and brush at the same time
2021 // revert to the base implementation of first filling and then stroking
2022 wxGraphicsContext::DrawPath( path, fillStyle );
2023 return;
2024 }
2025
2026 CGPathDrawingMode mode = kCGPathFill ;
2027 if ( m_brush.IsNull() )
2028 {
2029 if ( m_pen.IsNull() )
2030 return;
2031 else
2032 mode = kCGPathStroke;
2033 }
2034 else
2035 {
2036 if ( m_pen.IsNull() )
2037 {
2038 if ( fillStyle == wxODDEVEN_RULE )
2039 mode = kCGPathEOFill;
2040 else
2041 mode = kCGPathFill;
2042 }
2043 else
2044 {
2045 if ( fillStyle == wxODDEVEN_RULE )
2046 mode = kCGPathEOFillStroke;
2047 else
2048 mode = kCGPathFillStroke;
2049 }
2050 }
2051
489468fe
SC
2052 if ( !m_brush.IsNull() )
2053 ((wxMacCoreGraphicsBrushData*)m_brush.GetRefData())->Apply(this);
2054 if ( !m_pen.IsNull() )
2055 ((wxMacCoreGraphicsPenData*)m_pen.GetRefData())->Apply(this);
2056
2057 wxQuartzOffsetHelper helper( m_cgContext , ShouldOffset() );
2058
2059 CGContextAddPath( m_cgContext , (CGPathRef) path.GetNativePath() );
2060 CGContextDrawPath( m_cgContext , mode );
2061}
2062
33ef0bdb 2063void wxMacCoreGraphicsContext::FillPath( const wxGraphicsPath &path , wxPolygonFillMode fillStyle )
489468fe
SC
2064{
2065 if ( m_brush.IsNull() )
2066 return;
2067
ab451f97 2068 if (!EnsureIsValid())
f28b6f06 2069 return;
03647350 2070
bf02a7f9
SC
2071 if (m_composition == wxCOMPOSITION_DEST)
2072 return;
2073
489468fe
SC
2074 if ( ((wxMacCoreGraphicsBrushData*)m_brush.GetRefData())->IsShading() )
2075 {
2076 CGContextSaveGState( m_cgContext );
2077 CGContextAddPath( m_cgContext , (CGPathRef) path.GetNativePath() );
2078 CGContextClip( m_cgContext );
2079 CGContextDrawShading( m_cgContext, ((wxMacCoreGraphicsBrushData*)m_brush.GetRefData())->GetShading() );
2080 CGContextRestoreGState( m_cgContext);
2081 }
2082 else
2083 {
2084 ((wxMacCoreGraphicsBrushData*)m_brush.GetRefData())->Apply(this);
2085 CGContextAddPath( m_cgContext , (CGPathRef) path.GetNativePath() );
2086 if ( fillStyle == wxODDEVEN_RULE )
2087 CGContextEOFillPath( m_cgContext );
2088 else
2089 CGContextFillPath( m_cgContext );
2090 }
2091}
2092
2093void wxMacCoreGraphicsContext::SetNativeContext( CGContextRef cg )
2094{
2095 // we allow either setting or clearing but not replacing
2096 wxASSERT( m_cgContext == NULL || cg == NULL );
2097
2098 if ( m_cgContext )
2099 {
489468fe
SC
2100 CGContextRestoreGState( m_cgContext );
2101 CGContextRestoreGState( m_cgContext );
15fc716c 2102 if ( m_contextSynthesized )
489468fe 2103 {
b2680ced 2104#if wxOSX_USE_CARBON
489468fe 2105 QDEndCGContext( GetWindowPort( m_windowRef ) , &m_cgContext);
15fc716c 2106#endif
b4ff8b3e 2107#if wxOSX_USE_COCOA
15fc716c 2108 wxOSXUnlockFocus(m_view);
489468fe
SC
2109#endif
2110 }
2111 else
2112 CGContextRelease(m_cgContext);
2113 }
2114
489468fe
SC
2115 m_cgContext = cg;
2116
2117 // FIXME: This check is needed because currently we need to use a DC/GraphicsContext
2118 // in order to get font properties, like wxFont::GetPixelSize, but since we don't have
2119 // a native window attached to use, I create a wxGraphicsContext with a NULL CGContextRef
2120 // for this one operation.
2121
2122 // When wxFont::GetPixelSize on Mac no longer needs a graphics context, this check
2123 // can be removed.
2124 if (m_cgContext)
2125 {
2126 CGContextRetain(m_cgContext);
2127 CGContextSaveGState( m_cgContext );
2128 CGContextSetTextMatrix( m_cgContext, CGAffineTransformIdentity );
2129 CGContextSaveGState( m_cgContext );
15fc716c 2130 m_contextSynthesized = false;
489468fe
SC
2131 }
2132}
2133
2134void wxMacCoreGraphicsContext::Translate( wxDouble dx , wxDouble dy )
2135{
2136 if ( m_cgContext )
2137 CGContextTranslateCTM( m_cgContext, (CGFloat) dx, (CGFloat) dy );
2138 else
2139 m_windowTransform = CGAffineTransformTranslate(m_windowTransform, (CGFloat) dx, (CGFloat) dy);
2140}
2141
2142void wxMacCoreGraphicsContext::Scale( wxDouble xScale , wxDouble yScale )
2143{
2144 if ( m_cgContext )
2145 CGContextScaleCTM( m_cgContext , (CGFloat) xScale , (CGFloat) yScale );
2146 else
2147 m_windowTransform = CGAffineTransformScale(m_windowTransform, (CGFloat) xScale, (CGFloat) yScale);
2148}
2149
2150void wxMacCoreGraphicsContext::Rotate( wxDouble angle )
2151{
2152 if ( m_cgContext )
2153 CGContextRotateCTM( m_cgContext , (CGFloat) angle );
2154 else
2155 m_windowTransform = CGAffineTransformRotate(m_windowTransform, (CGFloat) angle);
2156}
2157
2158void wxMacCoreGraphicsContext::DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h )
2159{
2160 wxGraphicsBitmap bitmap = GetRenderer()->CreateBitmap(bmp);
2161 DrawBitmap(bitmap, x, y, w, h);
2162}
2163
2164void wxMacCoreGraphicsContext::DrawBitmap( const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h )
2165{
ab451f97 2166 if (!EnsureIsValid())
f28b6f06 2167 return;
bf02a7f9
SC
2168
2169 if (m_composition == wxCOMPOSITION_DEST)
2170 return;
03647350 2171
489468fe
SC
2172#ifdef __WXMAC__
2173 wxMacCoreGraphicsBitmapData* refdata =static_cast<wxMacCoreGraphicsBitmapData*>(bmp.GetRefData());
2174 CGImageRef image = refdata->GetBitmap();
2175 CGRect r = CGRectMake( (CGFloat) x , (CGFloat) y , (CGFloat) w , (CGFloat) h );
2176 if ( refdata->IsMonochrome() == 1 )
2177 {
d13b34d3 2178 // is a mask, the '1' in the mask tell where to draw the current brush
489468fe
SC
2179 if ( !m_brush.IsNull() )
2180 {
2181 if ( ((wxMacCoreGraphicsBrushData*)m_brush.GetRefData())->IsShading() )
2182 {
2183 // TODO clip to mask
2184 /*
2185 CGContextSaveGState( m_cgContext );
2186 CGContextAddPath( m_cgContext , (CGPathRef) path.GetNativePath() );
2187 CGContextClip( m_cgContext );
2188 CGContextDrawShading( m_cgContext, ((wxMacCoreGraphicsBrushData*)m_brush.GetRefData())->GetShading() );
2189 CGContextRestoreGState( m_cgContext);
2190 */
2191 }
2192 else
2193 {
2194 ((wxMacCoreGraphicsBrushData*)m_brush.GetRefData())->Apply(this);
2195 wxMacDrawCGImage( m_cgContext , &r , image );
2196 }
2197 }
2198 }
2199 else
2200 {
2201 wxMacDrawCGImage( m_cgContext , &r , image );
2202 }
2203#endif
2204}
2205
2206void wxMacCoreGraphicsContext::DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h )
2207{
ab451f97 2208 if (!EnsureIsValid())
f28b6f06 2209 return;
03647350 2210
bf02a7f9
SC
2211 if (m_composition == wxCOMPOSITION_DEST)
2212 return;
2213
489468fe
SC
2214 CGRect r = CGRectMake( (CGFloat) 0.0 , (CGFloat) 0.0 , (CGFloat) w , (CGFloat) h );
2215 CGContextSaveGState( m_cgContext );
2216 CGContextTranslateCTM( m_cgContext,(CGFloat) x ,(CGFloat) (y + h) );
2217 CGContextScaleCTM( m_cgContext, 1, -1 );
f28b6f06 2218#if wxOSX_USE_COCOA_OR_CARBON
489468fe 2219 PlotIconRefInContext( m_cgContext , &r , kAlignNone , kTransformNone ,
f28b6f06 2220 NULL , kPlotIconRefNormalFlags , icon.GetHICON() );
489468fe
SC
2221#endif
2222 CGContextRestoreGState( m_cgContext );
2223}
2224
2225void wxMacCoreGraphicsContext::PushState()
2226{
ab451f97 2227 if (!EnsureIsValid())
f28b6f06 2228 return;
03647350 2229
489468fe
SC
2230 CGContextSaveGState( m_cgContext );
2231}
2232
2233void wxMacCoreGraphicsContext::PopState()
2234{
ab451f97 2235 if (!EnsureIsValid())
f28b6f06 2236 return;
03647350 2237
489468fe
SC
2238 CGContextRestoreGState( m_cgContext );
2239}
2240
0b7dce54 2241void wxMacCoreGraphicsContext::DoDrawText( const wxString &str, wxDouble x, wxDouble y )
489468fe 2242{
1011fbeb 2243 wxCHECK_RET( !m_font.IsNull(), wxT("wxMacCoreGraphicsContext::DrawText - no valid font set") );
489468fe 2244
ab451f97 2245 if (!EnsureIsValid())
f28b6f06 2246 return;
03647350 2247
bf02a7f9
SC
2248 if (m_composition == wxCOMPOSITION_DEST)
2249 return;
2250
292e5e1f 2251#if wxOSX_USE_CORE_TEXT
489468fe
SC
2252 if ( UMAGetSystemVersion() >= 0x1050 )
2253 {
2254 wxMacCoreGraphicsFontData* fref = (wxMacCoreGraphicsFontData*)m_font.GetRefData();
2255 wxCFStringRef text(str, wxLocale::GetSystemEncoding() );
aa6208d9 2256 CTFontRef font = fref->OSXGetCTFont();
489468fe
SC
2257 CGColorRef col = wxMacCreateCGColor( fref->GetColour() );
2258 CTUnderlineStyle ustyle = fref->GetUnderlined() ? kCTUnderlineStyleSingle : kCTUnderlineStyleNone ;
2259 wxCFRef<CFNumberRef> underlined( CFNumberCreate(NULL, kCFNumberSInt32Type, &ustyle) );
2260 CFStringRef keys[] = { kCTFontAttributeName , kCTForegroundColorAttributeName, kCTUnderlineStyleAttributeName };
2261 CFTypeRef values[] = { font, col, underlined };
2262 wxCFRef<CFDictionaryRef> attributes( CFDictionaryCreate(kCFAllocatorDefault, (const void**) &keys, (const void**) &values,
2263 WXSIZEOF( keys ), &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks) );
2264 wxCFRef<CFAttributedStringRef> attrtext( CFAttributedStringCreate(kCFAllocatorDefault, text, attributes) );
2265 wxCFRef<CTLineRef> line( CTLineCreateWithAttributedString(attrtext) );
2266
2267 y += CTFontGetAscent(font);
2268
2269 CGContextSaveGState(m_cgContext);
de0d2095 2270 CGContextTranslateCTM(m_cgContext, (CGFloat) x, (CGFloat) y);
489468fe
SC
2271 CGContextScaleCTM(m_cgContext, 1, -1);
2272 CGContextSetTextPosition(m_cgContext, 0, 0);
2273 CTLineDraw( line, m_cgContext );
2274 CGContextRestoreGState(m_cgContext);
2275 CFRelease( col );
2276 return;
2277 }
2278#endif
292e5e1f 2279#if wxOSX_USE_ATSU_TEXT
489468fe
SC
2280 {
2281 DrawText(str, x, y, 0.0);
2282 return;
2283 }
2284#endif
292e5e1f 2285#if wxOSX_USE_IPHONE
b2680ced
SC
2286 wxMacCoreGraphicsFontData* fref = (wxMacCoreGraphicsFontData*)m_font.GetRefData();
2287
2288 CGContextSaveGState(m_cgContext);
2289
2290 CGColorRef col = wxMacCreateCGColor( fref->GetColour() );
0b7dce54 2291 CGContextSetTextDrawingMode (m_cgContext, kCGTextFill);
b2680ced
SC
2292 CGContextSetFillColorWithColor( m_cgContext, col );
2293
2294 wxCFStringRef text(str, wxLocale::GetSystemEncoding() );
2295 DrawTextInContext( m_cgContext, CGPointMake( x, y ), fref->GetUIFont() , text.AsNSString() );
2296
2297 CGContextRestoreGState(m_cgContext);
2298 CFRelease( col );
489468fe
SC
2299#endif
2300}
2301
0b7dce54
VZ
2302void wxMacCoreGraphicsContext::DoDrawRotatedText(const wxString &str,
2303 wxDouble x, wxDouble y,
2304 wxDouble angle)
489468fe 2305{
1011fbeb 2306 wxCHECK_RET( !m_font.IsNull(), wxT("wxMacCoreGraphicsContext::DrawText - no valid font set") );
489468fe 2307
ab451f97 2308 if (!EnsureIsValid())
f28b6f06 2309 return;
03647350 2310
bf02a7f9
SC
2311 if (m_composition == wxCOMPOSITION_DEST)
2312 return;
2313
292e5e1f 2314#if wxOSX_USE_CORE_TEXT
489468fe
SC
2315 if ( UMAGetSystemVersion() >= 0x1050 )
2316 {
2317 // default implementation takes care of rotation and calls non rotated DrawText afterwards
02fd8b9b 2318 wxGraphicsContext::DoDrawRotatedText( str, x, y, angle );
489468fe
SC
2319 return;
2320 }
2321#endif
292e5e1f 2322#if wxOSX_USE_ATSU_TEXT
489468fe
SC
2323 {
2324 OSStatus status = noErr;
2325 ATSUTextLayout atsuLayout;
2326 wxMacUniCharBuffer unibuf( str );
2327 UniCharCount chars = unibuf.GetChars();
2328
2329 ATSUStyle style = (((wxMacCoreGraphicsFontData*)m_font.GetRefData())->GetATSUStyle());
2330 status = ::ATSUCreateTextLayoutWithTextPtr( unibuf.GetBuffer() , 0 , chars , chars , 1 ,
2331 &chars , &style , &atsuLayout );
2332
2333 wxASSERT_MSG( status == noErr , wxT("couldn't create the layout of the rotated text") );
2334
2335 status = ::ATSUSetTransientFontMatching( atsuLayout , true );
2336 wxASSERT_MSG( status == noErr , wxT("couldn't setup transient font matching") );
2337
2338 int iAngle = int( angle * RAD2DEG );
2339 if ( abs(iAngle) > 0 )
2340 {
2341 Fixed atsuAngle = IntToFixed( iAngle );
2342 ATSUAttributeTag atsuTags[] =
2343 {
2344 kATSULineRotationTag ,
2345 };
9611b797 2346 ByteCount atsuSizes[WXSIZEOF(atsuTags)] =
489468fe
SC
2347 {
2348 sizeof( Fixed ) ,
2349 };
9611b797 2350 ATSUAttributeValuePtr atsuValues[WXSIZEOF(atsuTags)] =
489468fe
SC
2351 {
2352 &atsuAngle ,
2353 };
9611b797 2354 status = ::ATSUSetLayoutControls(atsuLayout , WXSIZEOF(atsuTags),
489468fe
SC
2355 atsuTags, atsuSizes, atsuValues );
2356 }
2357
2358 {
2359 ATSUAttributeTag atsuTags[] =
2360 {
2361 kATSUCGContextTag ,
2362 };
9611b797 2363 ByteCount atsuSizes[WXSIZEOF(atsuTags)] =
489468fe
SC
2364 {
2365 sizeof( CGContextRef ) ,
2366 };
9611b797 2367 ATSUAttributeValuePtr atsuValues[WXSIZEOF(atsuTags)] =
489468fe
SC
2368 {
2369 &m_cgContext ,
2370 };
9611b797 2371 status = ::ATSUSetLayoutControls(atsuLayout , WXSIZEOF(atsuTags),
489468fe
SC
2372 atsuTags, atsuSizes, atsuValues );
2373 }
2374
2375 ATSUTextMeasurement textBefore, textAfter;
2376 ATSUTextMeasurement ascent, descent;
2377
2378 status = ::ATSUGetUnjustifiedBounds( atsuLayout, kATSUFromTextBeginning, kATSUToTextEnd,
2379 &textBefore , &textAfter, &ascent , &descent );
2380
2381 wxASSERT_MSG( status == noErr , wxT("couldn't measure the rotated text") );
2382
2383 Rect rect;
7dbda71e
SC
2384 x += (int)(sin(angle) * FixedToFloat(ascent));
2385 y += (int)(cos(angle) * FixedToFloat(ascent));
489468fe
SC
2386
2387 status = ::ATSUMeasureTextImage( atsuLayout, kATSUFromTextBeginning, kATSUToTextEnd,
2388 IntToFixed(x) , IntToFixed(y) , &rect );
2389 wxASSERT_MSG( status == noErr , wxT("couldn't measure the rotated text") );
2390
2391 CGContextSaveGState(m_cgContext);
2392 CGContextTranslateCTM(m_cgContext, (CGFloat) x, (CGFloat) y);
2393 CGContextScaleCTM(m_cgContext, 1, -1);
2394 status = ::ATSUDrawText( atsuLayout, kATSUFromTextBeginning, kATSUToTextEnd,
2395 IntToFixed(0) , IntToFixed(0) );
2396
2397 wxASSERT_MSG( status == noErr , wxT("couldn't draw the rotated text") );
2398
2399 CGContextRestoreGState(m_cgContext);
2400
2401 ::ATSUDisposeTextLayout(atsuLayout);
2402
2403 return;
2404 }
2405#endif
292e5e1f 2406#if wxOSX_USE_IPHONE
489468fe 2407 // default implementation takes care of rotation and calls non rotated DrawText afterwards
0b7dce54 2408 wxGraphicsContext::DoDrawRotatedText( str, x, y, angle );
489468fe
SC
2409#endif
2410}
2411
2412void wxMacCoreGraphicsContext::GetTextExtent( const wxString &str, wxDouble *width, wxDouble *height,
2413 wxDouble *descent, wxDouble *externalLeading ) const
2414{
1011fbeb 2415 wxCHECK_RET( !m_font.IsNull(), wxT("wxMacCoreGraphicsContext::GetTextExtent - no valid font set") );
489468fe
SC
2416
2417 if ( width )
2418 *width = 0;
2419 if ( height )
2420 *height = 0;
2421 if ( descent )
2422 *descent = 0;
2423 if ( externalLeading )
2424 *externalLeading = 0;
2425
2426 if (str.empty())
2427 return;
2428
292e5e1f 2429#if wxOSX_USE_CORE_TEXT
489468fe
SC
2430 if ( UMAGetSystemVersion() >= 0x1050 )
2431 {
2432 wxMacCoreGraphicsFontData* fref = (wxMacCoreGraphicsFontData*)m_font.GetRefData();
aa6208d9 2433 CTFontRef font = fref->OSXGetCTFont();
489468fe
SC
2434
2435 wxCFStringRef text(str, wxLocale::GetSystemEncoding() );
2436 CFStringRef keys[] = { kCTFontAttributeName };
2437 CFTypeRef values[] = { font };
2438 wxCFRef<CFDictionaryRef> attributes( CFDictionaryCreate(kCFAllocatorDefault, (const void**) &keys, (const void**) &values,
2439 WXSIZEOF( keys ), &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks) );
2440 wxCFRef<CFAttributedStringRef> attrtext( CFAttributedStringCreate(kCFAllocatorDefault, text, attributes) );
2441 wxCFRef<CTLineRef> line( CTLineCreateWithAttributedString(attrtext) );
2442
7dbda71e
SC
2443 CGFloat a, d, l, w;
2444 w = CTLineGetTypographicBounds(line, &a, &d, &l);
489468fe
SC
2445
2446 if ( height )
2447 *height = a+d+l;
2448 if ( descent )
2449 *descent = d;
2450 if ( externalLeading )
2451 *externalLeading = l;
2452 if ( width )
2453 *width = w;
2454 return;
2455 }
2456#endif
292e5e1f 2457#if wxOSX_USE_ATSU_TEXT
489468fe
SC
2458 {
2459 OSStatus status = noErr;
2460
2461 ATSUTextLayout atsuLayout;
2462 wxMacUniCharBuffer unibuf( str );
2463 UniCharCount chars = unibuf.GetChars();
2464
2465 ATSUStyle style = (((wxMacCoreGraphicsFontData*)m_font.GetRefData())->GetATSUStyle());
2466 status = ::ATSUCreateTextLayoutWithTextPtr( unibuf.GetBuffer() , 0 , chars , chars , 1 ,
2467 &chars , &style , &atsuLayout );
2468
2469 wxASSERT_MSG( status == noErr , wxT("couldn't create the layout of the text") );
2470
2471 status = ::ATSUSetTransientFontMatching( atsuLayout , true );
2472 wxASSERT_MSG( status == noErr , wxT("couldn't setup transient font matching") );
2473
2474 ATSUTextMeasurement textBefore, textAfter;
2475 ATSUTextMeasurement textAscent, textDescent;
2476
2477 status = ::ATSUGetUnjustifiedBounds( atsuLayout, kATSUFromTextBeginning, kATSUToTextEnd,
2478 &textBefore , &textAfter, &textAscent , &textDescent );
2479
2480 if ( height )
7dbda71e 2481 *height = FixedToFloat(textAscent + textDescent);
489468fe 2482 if ( descent )
7dbda71e 2483 *descent = FixedToFloat(textDescent);
489468fe
SC
2484 if ( externalLeading )
2485 *externalLeading = 0;
2486 if ( width )
7dbda71e 2487 *width = FixedToFloat(textAfter - textBefore);
489468fe
SC
2488
2489 ::ATSUDisposeTextLayout(atsuLayout);
2490
2491 return;
2492 }
2493#endif
292e5e1f 2494#if wxOSX_USE_IPHONE
b2680ced
SC
2495 wxMacCoreGraphicsFontData* fref = (wxMacCoreGraphicsFontData*)m_font.GetRefData();
2496
2497 wxCFStringRef text(str, wxLocale::GetSystemEncoding() );
2498 CGSize sz = MeasureTextInContext( fref->GetUIFont() , text.AsNSString() );
0b7dce54 2499
b2680ced
SC
2500 if ( height )
2501 *height = sz.height;
2502 /*
2503 if ( descent )
7dbda71e 2504 *descent = FixedToFloat(textDescent);
b2680ced
SC
2505 if ( externalLeading )
2506 *externalLeading = 0;
2507 */
2508 if ( width )
2509 *width = sz.width;
489468fe
SC
2510#endif
2511}
2512
2513void wxMacCoreGraphicsContext::GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const
2514{
2515 widths.Empty();
2516 widths.Add(0, text.length());
2517
1011fbeb
SC
2518 wxCHECK_RET( !m_font.IsNull(), wxT("wxMacCoreGraphicsContext::DrawText - no valid font set") );
2519
489468fe
SC
2520 if (text.empty())
2521 return;
2522
292e5e1f 2523#if wxOSX_USE_CORE_TEXT
489468fe
SC
2524 {
2525 wxMacCoreGraphicsFontData* fref = (wxMacCoreGraphicsFontData*)m_font.GetRefData();
aa6208d9 2526 CTFontRef font = fref->OSXGetCTFont();
489468fe
SC
2527
2528 wxCFStringRef t(text, wxLocale::GetSystemEncoding() );
2529 CFStringRef keys[] = { kCTFontAttributeName };
2530 CFTypeRef values[] = { font };
2531 wxCFRef<CFDictionaryRef> attributes( CFDictionaryCreate(kCFAllocatorDefault, (const void**) &keys, (const void**) &values,
2532 WXSIZEOF( keys ), &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks) );
2533 wxCFRef<CFAttributedStringRef> attrtext( CFAttributedStringCreate(kCFAllocatorDefault, t, attributes) );
2534 wxCFRef<CTLineRef> line( CTLineCreateWithAttributedString(attrtext) );
2535
2536 int chars = text.length();
2537 for ( int pos = 0; pos < (int)chars; pos ++ )
2538 {
0738b901 2539 widths[pos] = CTLineGetOffsetForStringIndex( line, pos+1 , NULL );
489468fe
SC
2540 }
2541
2542 return;
2543 }
2544#endif
292e5e1f 2545#if wxOSX_USE_ATSU_TEXT
489468fe
SC
2546 {
2547 OSStatus status = noErr;
2548 ATSUTextLayout atsuLayout;
2549 wxMacUniCharBuffer unibuf( text );
2550 UniCharCount chars = unibuf.GetChars();
2551
2552 ATSUStyle style = (((wxMacCoreGraphicsFontData*)m_font.GetRefData())->GetATSUStyle());
2553 status = ::ATSUCreateTextLayoutWithTextPtr( unibuf.GetBuffer() , 0 , chars , chars , 1 ,
2554 &chars , &style , &atsuLayout );
2555
2556 wxASSERT_MSG( status == noErr , wxT("couldn't create the layout of the text") );
2557
2558 status = ::ATSUSetTransientFontMatching( atsuLayout , true );
2559 wxASSERT_MSG( status == noErr , wxT("couldn't setup transient font matching") );
2560
2561// new implementation from JS, keep old one just in case
2562#if 0
2563 for ( int pos = 0; pos < (int)chars; pos ++ )
2564 {
2565 unsigned long actualNumberOfBounds = 0;
2566 ATSTrapezoid glyphBounds;
2567
2568 // We get a single bound, since the text should only require one. If it requires more, there is an issue
2569 OSStatus result;
2570 result = ATSUGetGlyphBounds( atsuLayout, 0, 0, kATSUFromTextBeginning, pos + 1,
2571 kATSUseDeviceOrigins, 1, &glyphBounds, &actualNumberOfBounds );
2572 if (result != noErr || actualNumberOfBounds != 1 )
2573 return;
2574
7dbda71e 2575 widths[pos] = FixedToFloat( glyphBounds.upperRight.x - glyphBounds.upperLeft.x );
489468fe
SC
2576 //unsigned char uch = s[i];
2577 }
2578#else
2579 ATSLayoutRecord *layoutRecords = NULL;
2580 ItemCount glyphCount = 0;
0b7dce54 2581
489468fe
SC
2582 // Get the glyph extents
2583 OSStatus err = ::ATSUDirectGetLayoutDataArrayPtrFromTextLayout(atsuLayout,
2584 0,
2585 kATSUDirectDataLayoutRecordATSLayoutRecordCurrent,
2586 (void **)
2587 &layoutRecords,
2588 &glyphCount);
2589 wxASSERT(glyphCount == (text.length()+1));
0b7dce54 2590
489468fe
SC
2591 if ( err == noErr && glyphCount == (text.length()+1))
2592 {
2593 for ( int pos = 1; pos < (int)glyphCount ; pos ++ )
2594 {
7dbda71e 2595 widths[pos-1] = FixedToFloat( layoutRecords[pos].realPos );
489468fe
SC
2596 }
2597 }
0b7dce54 2598
489468fe
SC
2599 ::ATSUDirectReleaseLayoutDataArrayPtr(NULL,
2600 kATSUDirectDataLayoutRecordATSLayoutRecordCurrent,
2601 (void **) &layoutRecords);
2602#endif
2603 ::ATSUDisposeTextLayout(atsuLayout);
2604 }
2605#endif
292e5e1f 2606#if wxOSX_USE_IPHONE
489468fe
SC
2607 // TODO core graphics text implementation here
2608#endif
2609}
2610
2611void * wxMacCoreGraphicsContext::GetNativeContext()
2612{
2613 return m_cgContext;
2614}
2615
2616// concatenates this transform with the current transform of this context
2617void wxMacCoreGraphicsContext::ConcatTransform( const wxGraphicsMatrix& matrix )
2618{
2619 if ( m_cgContext )
2620 CGContextConcatCTM( m_cgContext, *(CGAffineTransform*) matrix.GetNativeMatrix());
2621 else
362439b6 2622 m_windowTransform = CGAffineTransformConcat(*(CGAffineTransform*) matrix.GetNativeMatrix(), m_windowTransform);
489468fe
SC
2623}
2624
2625// sets the transform of this context
2626void wxMacCoreGraphicsContext::SetTransform( const wxGraphicsMatrix& matrix )
2627{
2628 if ( m_cgContext )
2629 {
2630 CGAffineTransform transform = CGContextGetCTM( m_cgContext );
2631 transform = CGAffineTransformInvert( transform ) ;
2632 CGContextConcatCTM( m_cgContext, transform);
2633 CGContextConcatCTM( m_cgContext, *(CGAffineTransform*) matrix.GetNativeMatrix());
2634 }
2635 else
2636 {
2637 m_windowTransform = *(CGAffineTransform*) matrix.GetNativeMatrix();
2638 }
2639}
2640
2641// gets the matrix of this context
2642wxGraphicsMatrix wxMacCoreGraphicsContext::GetTransform() const
2643{
2644 wxGraphicsMatrix m = CreateMatrix();
2645 *((CGAffineTransform*) m.GetNativeMatrix()) = ( m_cgContext == NULL ? m_windowTransform :
2646 CGContextGetCTM( m_cgContext ));
2647 return m;
2648}
2649
2650//
2651// Renderer
2652//
2653
2654//-----------------------------------------------------------------------------
2655// wxMacCoreGraphicsRenderer declaration
2656//-----------------------------------------------------------------------------
2657
2658class WXDLLIMPEXP_CORE wxMacCoreGraphicsRenderer : public wxGraphicsRenderer
2659{
2660public :
2661 wxMacCoreGraphicsRenderer() {}
2662
2663 virtual ~wxMacCoreGraphicsRenderer() {}
2664
2665 // Context
2666
2667 virtual wxGraphicsContext * CreateContext( const wxWindowDC& dc);
2668 virtual wxGraphicsContext * CreateContext( const wxMemoryDC& dc);
9535b479 2669#if wxUSE_PRINTING_ARCHITECTURE
489468fe 2670 virtual wxGraphicsContext * CreateContext( const wxPrinterDC& dc);
9535b479 2671#endif
489468fe
SC
2672
2673 virtual wxGraphicsContext * CreateContextFromNativeContext( void * context );
2674
2675 virtual wxGraphicsContext * CreateContextFromNativeWindow( void * window );
2676
2677 virtual wxGraphicsContext * CreateContext( wxWindow* window );
2678
2679 virtual wxGraphicsContext * CreateMeasuringContext();
2680
2681 // Path
2682
2683 virtual wxGraphicsPath CreatePath();
2684
2685 // Matrix
2686
2687 virtual wxGraphicsMatrix CreateMatrix( wxDouble a=1.0, wxDouble b=0.0, wxDouble c=0.0, wxDouble d=1.0,
2688 wxDouble tx=0.0, wxDouble ty=0.0);
2689
2690
2691 virtual wxGraphicsPen CreatePen(const wxPen& pen) ;
2692
2693 virtual wxGraphicsBrush CreateBrush(const wxBrush& brush ) ;
2694
4ee4c7b9
VZ
2695 virtual wxGraphicsBrush
2696 CreateLinearGradientBrush(wxDouble x1, wxDouble y1,
2697 wxDouble x2, wxDouble y2,
2698 const wxGraphicsGradientStops& stops);
489468fe 2699
4ee4c7b9
VZ
2700 virtual wxGraphicsBrush
2701 CreateRadialGradientBrush(wxDouble xo, wxDouble yo,
2702 wxDouble xc, wxDouble yc,
2703 wxDouble radius,
2704 const wxGraphicsGradientStops& stops);
489468fe
SC
2705
2706 // sets the font
2707 virtual wxGraphicsFont CreateFont( const wxFont &font , const wxColour &col = *wxBLACK ) ;
2708
2709 // create a native bitmap representation
2710 virtual wxGraphicsBitmap CreateBitmap( const wxBitmap &bitmap ) ;
2711
2986eb86
SC
2712 // create a graphics bitmap from a native bitmap
2713 virtual wxGraphicsBitmap CreateBitmapFromNativeBitmap( void* bitmap );
2714
489468fe
SC
2715 // create a native bitmap representation
2716 virtual wxGraphicsBitmap CreateSubBitmap( const wxGraphicsBitmap &bitmap, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) ;
2717private :
2718 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMacCoreGraphicsRenderer)
2719} ;
2720
2721//-----------------------------------------------------------------------------
2722// wxMacCoreGraphicsRenderer implementation
2723//-----------------------------------------------------------------------------
2724
2725IMPLEMENT_DYNAMIC_CLASS(wxMacCoreGraphicsRenderer,wxGraphicsRenderer)
2726
2727static wxMacCoreGraphicsRenderer gs_MacCoreGraphicsRenderer;
2728
2729wxGraphicsRenderer* wxGraphicsRenderer::GetDefaultRenderer()
2730{
2731 return &gs_MacCoreGraphicsRenderer;
2732}
2733
489468fe
SC
2734wxGraphicsContext * wxMacCoreGraphicsRenderer::CreateContext( const wxWindowDC& dc )
2735{
2736 const wxDCImpl* impl = dc.GetImpl();
2737 wxWindowDCImpl *win_impl = wxDynamicCast( impl, wxWindowDCImpl );
2738 if (win_impl)
2739 {
2740 int w, h;
2741 win_impl->GetSize( &w, &h );
2742 CGContextRef cgctx = 0;
15fc716c 2743
0600cf3a
KO
2744 wxASSERT_MSG(win_impl->GetWindow(), "Invalid wxWindow in wxMacCoreGraphicsRenderer::CreateContext");
2745 if (win_impl->GetWindow())
2746 cgctx = (CGContextRef)(win_impl->GetWindow()->MacGetCGContextRef());
15fc716c 2747
10c08696
SC
2748 // having a cgctx being NULL is fine (will be created on demand)
2749 // this is the case for all wxWindowDCs except wxPaintDC
ad967c5b
SC
2750 wxMacCoreGraphicsContext *context =
2751 new wxMacCoreGraphicsContext( this, cgctx, (wxDouble) w, (wxDouble) h );
2752 context->EnableOffset(true);
2753 return context;
489468fe
SC
2754 }
2755 return NULL;
2756}
2757
2758wxGraphicsContext * wxMacCoreGraphicsRenderer::CreateContext( const wxMemoryDC& dc )
2759{
2760#ifdef __WXMAC__
2761 const wxDCImpl* impl = dc.GetImpl();
2762 wxMemoryDCImpl *mem_impl = wxDynamicCast( impl, wxMemoryDCImpl );
2763 if (mem_impl)
2764 {
2765 int w, h;
2766 mem_impl->GetSize( &w, &h );
ad967c5b 2767 wxMacCoreGraphicsContext* context = new wxMacCoreGraphicsContext( this,
489468fe 2768 (CGContextRef)(mem_impl->GetGraphicsContext()->GetNativeContext()), (wxDouble) w, (wxDouble) h );
ad967c5b
SC
2769 context->EnableOffset(true);
2770 return context;
489468fe
SC
2771 }
2772#endif
2773 return NULL;
2774}
2775
9535b479 2776#if wxUSE_PRINTING_ARCHITECTURE
489468fe
SC
2777wxGraphicsContext * wxMacCoreGraphicsRenderer::CreateContext( const wxPrinterDC& dc )
2778{
2779#ifdef __WXMAC__
2780 const wxDCImpl* impl = dc.GetImpl();
2781 wxPrinterDCImpl *print_impl = wxDynamicCast( impl, wxPrinterDCImpl );
2782 if (print_impl)
2783 {
2784 int w, h;
2785 print_impl->GetSize( &w, &h );
2786 return new wxMacCoreGraphicsContext( this,
2787 (CGContextRef)(print_impl->GetGraphicsContext()->GetNativeContext()), (wxDouble) w, (wxDouble) h );
2788 }
2789#endif
2790 return NULL;
2791}
9535b479 2792#endif
489468fe
SC
2793
2794wxGraphicsContext * wxMacCoreGraphicsRenderer::CreateContextFromNativeContext( void * context )
2795{
2796 return new wxMacCoreGraphicsContext(this,(CGContextRef)context);
2797}
2798
489468fe
SC
2799wxGraphicsContext * wxMacCoreGraphicsRenderer::CreateContextFromNativeWindow( void * window )
2800{
b2680ced 2801#if wxOSX_USE_CARBON
ad967c5b
SC
2802 wxMacCoreGraphicsContext* context = new wxMacCoreGraphicsContext(this,(WindowRef)window);
2803 context->EnableOffset(true);
2804 return context;
b2680ced 2805#else
de0d2095 2806 wxUnusedVar(window);
b2680ced
SC
2807 return NULL;
2808#endif
489468fe
SC
2809}
2810
2811wxGraphicsContext * wxMacCoreGraphicsRenderer::CreateContext( wxWindow* window )
2812{
2813 return new wxMacCoreGraphicsContext(this, window );
2814}
2815
2816wxGraphicsContext * wxMacCoreGraphicsRenderer::CreateMeasuringContext()
2817{
2818 return new wxMacCoreGraphicsContext(this);
2819}
2820
2821// Path
2822
2823wxGraphicsPath wxMacCoreGraphicsRenderer::CreatePath()
2824{
2825 wxGraphicsPath m;
2826 m.SetRefData( new wxMacCoreGraphicsPathData(this));
2827 return m;
2828}
2829
2830
2831// Matrix
2832
2833wxGraphicsMatrix wxMacCoreGraphicsRenderer::CreateMatrix( wxDouble a, wxDouble b, wxDouble c, wxDouble d,
2834 wxDouble tx, wxDouble ty)
2835{
2836 wxGraphicsMatrix m;
2837 wxMacCoreGraphicsMatrixData* data = new wxMacCoreGraphicsMatrixData( this );
2838 data->Set( a,b,c,d,tx,ty ) ;
2839 m.SetRefData(data);
2840 return m;
2841}
2842
2843wxGraphicsPen wxMacCoreGraphicsRenderer::CreatePen(const wxPen& pen)
2844{
a1b806b9 2845 if ( !pen.IsOk() || pen.GetStyle() == wxTRANSPARENT )
489468fe
SC
2846 return wxNullGraphicsPen;
2847 else
2848 {
2849 wxGraphicsPen p;
2850 p.SetRefData(new wxMacCoreGraphicsPenData( this, pen ));
2851 return p;
2852 }
2853}
2854
2855wxGraphicsBrush wxMacCoreGraphicsRenderer::CreateBrush(const wxBrush& brush )
2856{
a1b806b9 2857 if ( !brush.IsOk() || brush.GetStyle() == wxTRANSPARENT )
489468fe
SC
2858 return wxNullGraphicsBrush;
2859 else
2860 {
2861 wxGraphicsBrush p;
2862 p.SetRefData(new wxMacCoreGraphicsBrushData( this, brush ));
2863 return p;
2864 }
2865}
2866
2867wxGraphicsBitmap wxMacCoreGraphicsRenderer::CreateBitmap( const wxBitmap& bmp )
2868{
a1b806b9 2869 if ( bmp.IsOk() )
489468fe
SC
2870 {
2871 wxGraphicsBitmap p;
489468fe 2872 p.SetRefData(new wxMacCoreGraphicsBitmapData( this , bmp.CreateCGImage(), bmp.GetDepth() == 1 ) );
2986eb86
SC
2873 return p;
2874 }
2875 else
2876 return wxNullGraphicsBitmap;
2877}
2878
2879wxGraphicsBitmap wxMacCoreGraphicsRenderer::CreateBitmapFromNativeBitmap( void* bitmap )
2880{
2881 if ( bitmap != NULL )
2882 {
2883 wxGraphicsBitmap p;
2884 p.SetRefData(new wxMacCoreGraphicsBitmapData( this , (CGImageRef) bitmap, false ));
489468fe
SC
2885 return p;
2886 }
2887 else
2888 return wxNullGraphicsBitmap;
2889}
2890
2891wxGraphicsBitmap wxMacCoreGraphicsRenderer::CreateSubBitmap( const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h )
2892{
2893 wxMacCoreGraphicsBitmapData* refdata =static_cast<wxMacCoreGraphicsBitmapData*>(bmp.GetRefData());
2894 CGImageRef img = refdata->GetBitmap();
2895 if ( img )
2896 {
2897 wxGraphicsBitmap p;
2898 CGImageRef subimg = CGImageCreateWithImageInRect(img,CGRectMake( (CGFloat) x , (CGFloat) y , (CGFloat) w , (CGFloat) h ));
2899 p.SetRefData(new wxMacCoreGraphicsBitmapData( this , subimg, refdata->IsMonochrome() ) );
2900 return p;
2901 }
2902 else
2903 return wxNullGraphicsBitmap;
2904}
2905
4ee4c7b9
VZ
2906wxGraphicsBrush
2907wxMacCoreGraphicsRenderer::CreateLinearGradientBrush(wxDouble x1, wxDouble y1,
2908 wxDouble x2, wxDouble y2,
2909 const wxGraphicsGradientStops& stops)
489468fe
SC
2910{
2911 wxGraphicsBrush p;
2912 wxMacCoreGraphicsBrushData* d = new wxMacCoreGraphicsBrushData( this );
4ee4c7b9 2913 d->CreateLinearGradientBrush(x1, y1, x2, y2, stops);
489468fe
SC
2914 p.SetRefData(d);
2915 return p;
2916}
2917
4ee4c7b9
VZ
2918wxGraphicsBrush
2919wxMacCoreGraphicsRenderer::CreateRadialGradientBrush(wxDouble xo, wxDouble yo,
2920 wxDouble xc, wxDouble yc,
2921 wxDouble radius,
2922 const wxGraphicsGradientStops& stops)
489468fe
SC
2923{
2924 wxGraphicsBrush p;
2925 wxMacCoreGraphicsBrushData* d = new wxMacCoreGraphicsBrushData( this );
4ee4c7b9 2926 d->CreateRadialGradientBrush(xo, yo, xc, yc, radius, stops);
489468fe
SC
2927 p.SetRefData(d);
2928 return p;
2929}
2930
2931// sets the font
2932wxGraphicsFont wxMacCoreGraphicsRenderer::CreateFont( const wxFont &font , const wxColour &col )
2933{
a1b806b9 2934 if ( font.IsOk() )
489468fe
SC
2935 {
2936 wxGraphicsFont p;
2937 p.SetRefData(new wxMacCoreGraphicsFontData( this , font, col ));
2938 return p;
2939 }
2940 else
2941 return wxNullGraphicsFont;
2942}
2943
2944//
2945// CoreGraphics Helper Methods
2946//
2947
2948// Data Providers and Consumers
2949
2950size_t UMAPutBytesCFRefCallback( void *info, const void *bytes, size_t count )
2951{
2952 CFMutableDataRef data = (CFMutableDataRef) info;
2953 if ( data )
2954 {
2955 CFDataAppendBytes( data, (const UInt8*) bytes, count );
2956 }
2957 return count;
2958}
2959
2960void wxMacReleaseCFDataProviderCallback(void *info,
2961 const void *WXUNUSED(data),
2962 size_t WXUNUSED(count))
2963{
2964 if ( info )
2965 CFRelease( (CFDataRef) info );
2966}
2967
2968void wxMacReleaseCFDataConsumerCallback( void *info )
2969{
2970 if ( info )
2971 CFRelease( (CFDataRef) info );
2972}
2973
2974CGDataProviderRef wxMacCGDataProviderCreateWithCFData( CFDataRef data )
2975{
2976 if ( data == NULL )
2977 return NULL;
2978
2979 return CGDataProviderCreateWithCFData( data );
2980}
2981
2982CGDataConsumerRef wxMacCGDataConsumerCreateWithCFData( CFMutableDataRef data )
2983{
2984 if ( data == NULL )
2985 return NULL;
2986
2987 return CGDataConsumerCreateWithCFData( data );
2988}
2989
2990void
2991wxMacReleaseMemoryBufferProviderCallback(void *info,
2992 const void * WXUNUSED_UNLESS_DEBUG(data),
2993 size_t WXUNUSED(size))
2994{
2995 wxMemoryBuffer* membuf = (wxMemoryBuffer*) info ;
2996
2997 wxASSERT( data == membuf->GetData() ) ;
2998
2999 delete membuf ;
3000}
3001
3002CGDataProviderRef wxMacCGDataProviderCreateWithMemoryBuffer( const wxMemoryBuffer& buf )
3003{
3004 wxMemoryBuffer* b = new wxMemoryBuffer( buf );
3005 if ( b->GetDataLen() == 0 )
3006 return NULL;
3007
3008 return CGDataProviderCreateWithData( b , (const void *) b->GetData() , b->GetDataLen() ,
3009 wxMacReleaseMemoryBufferProviderCallback );
3010}