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