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