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