]> git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/dc.cpp
adaptions for cleaned up string conversions
[wxWidgets.git] / src / mac / carbon / dc.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: dc.cpp
3 // Purpose: wxDC class
4 // Author: AUTHOR
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11 #ifdef __GNUG__
12 #pragma implementation "dc.h"
13 #endif
14 #include "wx/dc.h"
15 #include "wx/app.h"
16 #include "wx/mac/uma.h"
17 #include "wx/dcmemory.h"
18 #include "wx/region.h"
19 #include "wx/image.h"
20 #include "wx/log.h"
21
22 #if __MSL__ >= 0x6000
23 #include "math.h"
24 using namespace std ;
25 #endif
26 #include "wx/mac/private.h"
27 #include "ATSUnicode.h"
28 #include "TextCommon.h"
29 #include "TextEncodingConverter.h"
30 #if !USE_SHARED_LIBRARY
31 IMPLEMENT_ABSTRACT_CLASS(wxDC, wxObject)
32 #endif
33 //-----------------------------------------------------------------------------
34 // constants
35 //-----------------------------------------------------------------------------
36 #define mm2inches 0.0393700787402
37 #define inches2mm 25.4
38 #define mm2twips 56.6929133859
39 #define twips2mm 0.0176388888889
40 #define mm2pt 2.83464566929
41 #define pt2mm 0.352777777778
42 #ifndef __DARWIN__
43 const double M_PI = 3.14159265358979 ;
44 #endif
45 const double RAD2DEG = 180.0 / M_PI;
46 const short kEmulatedMode = -1 ;
47 const short kUnsupportedMode = -2 ;
48 wxMacPortSetter::wxMacPortSetter( const wxDC* dc ) :
49 m_ph( (GrafPtr) dc->m_macPort )
50 {
51 wxASSERT( dc->Ok() ) ;
52 m_dc = dc ;
53 dc->MacSetupPort(&m_ph) ;
54 }
55 wxMacPortSetter::~wxMacPortSetter()
56 {
57 m_dc->MacCleanupPort(&m_ph) ;
58 }
59 wxMacWindowClipper::wxMacWindowClipper( const wxWindow* win )
60 {
61 m_formerClip = NewRgn() ;
62 m_newClip = NewRgn() ;
63 GetClip( m_formerClip ) ;
64
65 if ( win )
66 {
67 #if 0
68 // this clipping area was set to the parent window's drawing area, lead to problems
69 // with MacOSX controls drawing outside their wx' rectangle
70 RgnHandle insidergn = NewRgn() ;
71 int x = 0 , y = 0;
72 wxWindow *parent = win->GetParent() ;
73 parent->MacWindowToRootWindow( &x,&y ) ;
74 wxSize size = parent->GetSize() ;
75 SetRectRgn( insidergn , parent->MacGetLeftBorderSize() , parent->MacGetTopBorderSize() ,
76 size.x - parent->MacGetRightBorderSize(),
77 size.y - parent->MacGetBottomBorderSize()) ;
78 CopyRgn( (RgnHandle) parent->MacGetVisibleRegion(false).GetWXHRGN() , m_newClip ) ;
79 SectRgn( m_newClip , insidergn , m_newClip ) ;
80 OffsetRgn( m_newClip , x , y ) ;
81 SetClip( m_newClip ) ;
82 DisposeRgn( insidergn ) ;
83 #endif
84 RgnHandle insidergn = NewRgn() ;
85 int x = 0 , y = 0;
86 win->MacWindowToRootWindow( &x,&y ) ;
87 CopyRgn( (RgnHandle) ((wxWindow*)win)->MacGetVisibleRegion().GetWXHRGN() , m_newClip ) ;
88 OffsetRgn( m_newClip , x , y ) ;
89 SetClip( m_newClip ) ;
90 }
91 }
92 wxMacWindowClipper::~wxMacWindowClipper()
93 {
94 SetClip( m_formerClip ) ;
95 DisposeRgn( m_newClip ) ;
96 DisposeRgn( m_formerClip ) ;
97 }
98 //-----------------------------------------------------------------------------
99 // Local functions
100 //-----------------------------------------------------------------------------
101 static inline double dmin(double a, double b) { return a < b ? a : b; }
102 static inline double dmax(double a, double b) { return a > b ? a : b; }
103 static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; }
104 //-----------------------------------------------------------------------------
105 // wxDC
106 //-----------------------------------------------------------------------------
107 // this function emulates all wx colour manipulations, used to verify the implementation
108 // by setting the mode in the blitting functions to kEmulatedMode
109 void wxMacCalculateColour( int logical_func , const RGBColor &srcColor , RGBColor &dstColor ) ;
110 void wxMacCalculateColour( int logical_func , const RGBColor &srcColor , RGBColor &dstColor )
111 {
112 switch ( logical_func )
113 {
114 case wxAND: // src AND dst
115 dstColor.red = dstColor.red & srcColor.red ;
116 dstColor.green = dstColor.green & srcColor.green ;
117 dstColor.blue = dstColor.blue & srcColor.blue ;
118 break ;
119 case wxAND_INVERT: // (NOT src) AND dst
120 dstColor.red = dstColor.red & ~srcColor.red ;
121 dstColor.green = dstColor.green & ~srcColor.green ;
122 dstColor.blue = dstColor.blue & ~srcColor.blue ;
123 break ;
124 case wxAND_REVERSE:// src AND (NOT dst)
125 dstColor.red = ~dstColor.red & srcColor.red ;
126 dstColor.green = ~dstColor.green & srcColor.green ;
127 dstColor.blue = ~dstColor.blue & srcColor.blue ;
128 break ;
129 case wxCLEAR: // 0
130 dstColor.red = 0 ;
131 dstColor.green = 0 ;
132 dstColor.blue = 0 ;
133 break ;
134 case wxCOPY: // src
135 dstColor.red = srcColor.red ;
136 dstColor.green = srcColor.green ;
137 dstColor.blue = srcColor.blue ;
138 break ;
139 case wxEQUIV: // (NOT src) XOR dst
140 dstColor.red = dstColor.red ^ ~srcColor.red ;
141 dstColor.green = dstColor.green ^ ~srcColor.green ;
142 dstColor.blue = dstColor.blue ^ ~srcColor.blue ;
143 break ;
144 case wxINVERT: // NOT dst
145 dstColor.red = ~dstColor.red ;
146 dstColor.green = ~dstColor.green ;
147 dstColor.blue = ~dstColor.blue ;
148 break ;
149 case wxNAND: // (NOT src) OR (NOT dst)
150 dstColor.red = ~dstColor.red | ~srcColor.red ;
151 dstColor.green = ~dstColor.green | ~srcColor.green ;
152 dstColor.blue = ~dstColor.blue | ~srcColor.blue ;
153 break ;
154 case wxNOR: // (NOT src) AND (NOT dst)
155 dstColor.red = ~dstColor.red & ~srcColor.red ;
156 dstColor.green = ~dstColor.green & ~srcColor.green ;
157 dstColor.blue = ~dstColor.blue & ~srcColor.blue ;
158 break ;
159 case wxNO_OP: // dst
160 break ;
161 case wxOR: // src OR dst
162 dstColor.red = dstColor.red | srcColor.red ;
163 dstColor.green = dstColor.green | srcColor.green ;
164 dstColor.blue = dstColor.blue | srcColor.blue ;
165 break ;
166 case wxOR_INVERT: // (NOT src) OR dst
167 dstColor.red = dstColor.red | ~srcColor.red ;
168 dstColor.green = dstColor.green | ~srcColor.green ;
169 dstColor.blue = dstColor.blue | ~srcColor.blue ;
170 break ;
171 case wxOR_REVERSE: // src OR (NOT dst)
172 dstColor.red = ~dstColor.red | srcColor.red ;
173 dstColor.green = ~dstColor.green | srcColor.green ;
174 dstColor.blue = ~dstColor.blue | srcColor.blue ;
175 break ;
176 case wxSET: // 1
177 dstColor.red = 0xFFFF ;
178 dstColor.green = 0xFFFF ;
179 dstColor.blue = 0xFFFF ;
180 break ;
181 case wxSRC_INVERT: // (NOT src)
182 dstColor.red = ~srcColor.red ;
183 dstColor.green = ~srcColor.green ;
184 dstColor.blue = ~srcColor.blue ;
185 break ;
186 case wxXOR: // src XOR dst
187 dstColor.red = dstColor.red ^ srcColor.red ;
188 dstColor.green = dstColor.green ^ srcColor.green ;
189 dstColor.blue = dstColor.blue ^ srcColor.blue ;
190 break ;
191 }
192 }
193 wxDC::wxDC()
194 {
195 m_ok = FALSE;
196 m_colour = TRUE;
197 m_mm_to_pix_x = mm2pt;
198 m_mm_to_pix_y = mm2pt;
199 m_internalDeviceOriginX = 0;
200 m_internalDeviceOriginY = 0;
201 m_externalDeviceOriginX = 0;
202 m_externalDeviceOriginY = 0;
203 m_logicalScaleX = 1.0;
204 m_logicalScaleY = 1.0;
205 m_userScaleX = 1.0;
206 m_userScaleY = 1.0;
207 m_scaleX = 1.0;
208 m_scaleY = 1.0;
209 m_needComputeScaleX = FALSE;
210 m_needComputeScaleY = FALSE;
211 m_macPort = NULL ;
212 m_macMask = NULL ;
213 m_ok = FALSE ;
214 m_macFontInstalled = false ;
215 m_macBrushInstalled = false ;
216 m_macPenInstalled = false ;
217 m_macLocalOrigin.x = m_macLocalOrigin.y = 0 ;
218 m_macBoundaryClipRgn = NewRgn() ;
219 m_macCurrentClipRgn = NewRgn() ;
220 SetRectRgn( (RgnHandle) m_macBoundaryClipRgn , -32000 , -32000 , 32000 , 32000 ) ;
221 SetRectRgn( (RgnHandle) m_macCurrentClipRgn , -32000 , -32000 , 32000 , 32000 ) ;
222 m_pen = *wxBLACK_PEN;
223 m_font = *wxNORMAL_FONT;
224 m_brush = *wxWHITE_BRUSH;
225 m_macCurrentPortStateHelper = NULL ;
226 m_macATSUIStyle = NULL ;
227 m_macAliasWasEnabled = false;
228 m_macForegroundPixMap = NULL ;
229 m_macBackgroundPixMap = NULL ;
230 }
231 wxDC::~wxDC(void)
232 {
233 DisposeRgn( (RgnHandle) m_macBoundaryClipRgn ) ;
234 DisposeRgn( (RgnHandle) m_macCurrentClipRgn ) ;
235 }
236 void wxDC::MacSetupPort(wxMacPortStateHelper* help) const
237 {
238 wxASSERT( m_macCurrentPortStateHelper == NULL ) ;
239 m_macCurrentPortStateHelper = help ;
240 SetClip( (RgnHandle) m_macCurrentClipRgn);
241 m_macFontInstalled = false ;
242 m_macBrushInstalled = false ;
243 m_macPenInstalled = false ;
244 }
245 void wxDC::MacCleanupPort(wxMacPortStateHelper* help) const
246 {
247 wxASSERT( m_macCurrentPortStateHelper == help ) ;
248 m_macCurrentPortStateHelper = NULL ;
249 if( m_macATSUIStyle )
250 {
251 ::ATSUDisposeStyle((ATSUStyle)m_macATSUIStyle);
252 m_macATSUIStyle = NULL ;
253 }
254 if ( m_macAliasWasEnabled )
255 {
256 SetAntiAliasedTextEnabled(m_macFormerAliasState, m_macFormerAliasSize);
257 m_macAliasWasEnabled = false ;
258 }
259 if ( m_macForegroundPixMap )
260 {
261 Pattern blackColor ;
262 ::PenPat(GetQDGlobalsBlack(&blackColor));
263 DisposePixPat( (PixPatHandle) m_macForegroundPixMap ) ;
264 m_macForegroundPixMap = NULL ;
265 }
266 if ( m_macBackgroundPixMap )
267 {
268 Pattern whiteColor ;
269 ::BackPat(GetQDGlobalsWhite(&whiteColor));
270 DisposePixPat( (PixPatHandle) m_macBackgroundPixMap ) ;
271 m_macBackgroundPixMap = NULL ;
272 }
273 }
274 void wxDC::DoDrawBitmap( const wxBitmap &bmp, wxCoord x, wxCoord y, bool useMask )
275 {
276 wxCHECK_RET( Ok(), wxT("invalid window dc") );
277 wxCHECK_RET( bmp.Ok(), wxT("invalid bitmap") );
278 wxMacPortSetter helper(this) ;
279 wxCoord xx = XLOG2DEVMAC(x);
280 wxCoord yy = YLOG2DEVMAC(y);
281 wxCoord w = bmp.GetWidth();
282 wxCoord h = bmp.GetHeight();
283 wxCoord ww = XLOG2DEVREL(w);
284 wxCoord hh = YLOG2DEVREL(h);
285 // Set up drawing mode
286 short mode = (m_logicalFunction == wxCOPY ? srcCopy :
287 //m_logicalFunction == wxCLEAR ? WHITENESS :
288 //m_logicalFunction == wxSET ? BLACKNESS :
289 m_logicalFunction == wxINVERT ? hilite :
290 //m_logicalFunction == wxAND ? MERGECOPY :
291 m_logicalFunction == wxOR ? srcOr :
292 m_logicalFunction == wxSRC_INVERT ? notSrcCopy :
293 m_logicalFunction == wxXOR ? srcXor :
294 m_logicalFunction == wxOR_REVERSE ? notSrcOr :
295 //m_logicalFunction == wxAND_REVERSE ? SRCERASE :
296 //m_logicalFunction == wxSRC_OR ? srcOr :
297 //m_logicalFunction == wxSRC_AND ? SRCAND :
298 srcCopy );
299 if ( bmp.GetBitmapType() == kMacBitmapTypePict ) {
300 Rect bitmaprect = { 0 , 0 , hh, ww };
301 ::OffsetRect( &bitmaprect, xx, yy ) ;
302 ::DrawPicture( (PicHandle) bmp.GetPict(), &bitmaprect ) ;
303 }
304 else if ( bmp.GetBitmapType() == kMacBitmapTypeGrafWorld )
305 {
306 GWorldPtr bmapworld = MAC_WXHBITMAP( bmp.GetHBITMAP() );
307 PixMapHandle bmappixels ;
308 // Set foreground and background colours (for bitmaps depth = 1)
309 if(bmp.GetDepth() == 1)
310 {
311 RGBColor fore = MAC_WXCOLORREF(m_textForegroundColour.GetPixel());
312 RGBColor back = MAC_WXCOLORREF(m_textBackgroundColour.GetPixel());
313 RGBForeColor(&fore);
314 RGBBackColor(&back);
315 }
316 else
317 {
318 RGBColor white = { 0xFFFF, 0xFFFF,0xFFFF} ;
319 RGBColor black = { 0,0,0} ;
320 RGBForeColor( &black ) ;
321 RGBBackColor( &white ) ;
322 }
323 bmappixels = GetGWorldPixMap( bmapworld ) ;
324 wxCHECK_RET(LockPixels(bmappixels),
325 wxT("DoDrawBitmap: Unable to lock pixels"));
326 Rect source = { 0, 0, h, w };
327 Rect dest = { yy, xx, yy + hh, xx + ww };
328 if ( useMask && bmp.GetMask() )
329 {
330 if( LockPixels(GetGWorldPixMap(MAC_WXHBITMAP(bmp.GetMask()->GetMaskBitmap()))))
331 {
332 CopyDeepMask
333 (
334 GetPortBitMapForCopyBits(bmapworld),
335 GetPortBitMapForCopyBits(MAC_WXHBITMAP(bmp.GetMask()->GetMaskBitmap())),
336 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort) ),
337 &source, &source, &dest, mode, NULL
338 );
339 UnlockPixels(GetGWorldPixMap(MAC_WXHBITMAP(bmp.GetMask()->GetMaskBitmap())));
340 }
341 }
342 else {
343 CopyBits( GetPortBitMapForCopyBits( bmapworld ),
344 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort) ),
345 &source, &dest, mode, NULL ) ;
346 }
347 UnlockPixels( bmappixels ) ;
348 }
349 else if ( bmp.GetBitmapType() == kMacBitmapTypeIcon )
350 {
351 Rect bitmaprect = { 0 , 0 , bmp.GetHeight(), bmp.GetWidth() } ;
352 OffsetRect( &bitmaprect, xx, yy ) ;
353 PlotCIconHandle( &bitmaprect , atNone , ttNone , MAC_WXHICON(bmp.GetHICON()) ) ;
354 }
355 m_macPenInstalled = false ;
356 m_macBrushInstalled = false ;
357 m_macFontInstalled = false ;
358 }
359 void wxDC::DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y )
360 {
361 wxCHECK_RET(Ok(), wxT("Invalid dc wxDC::DoDrawIcon"));
362 wxCHECK_RET(icon.Ok(), wxT("Invalid icon wxDC::DoDrawIcon"));
363 DoDrawBitmap( icon , x , y , icon.GetMask() != NULL ) ;
364 }
365 void wxDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
366 {
367 wxCHECK_RET(Ok(), wxT("wxDC::DoSetClippingRegion Invalid DC"));
368 wxCoord xx, yy, ww, hh;
369 xx = XLOG2DEVMAC(x);
370 yy = YLOG2DEVMAC(y);
371 ww = XLOG2DEVREL(width);
372 hh = YLOG2DEVREL(height);
373 SetRectRgn( (RgnHandle) m_macCurrentClipRgn , xx , yy , xx + ww , yy + hh ) ;
374 SectRgn( (RgnHandle) m_macCurrentClipRgn , (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ;
375 if( m_clipping )
376 {
377 m_clipX1 = wxMax( m_clipX1 , xx );
378 m_clipY1 = wxMax( m_clipY1 , yy );
379 m_clipX2 = wxMin( m_clipX2, (xx + ww));
380 m_clipY2 = wxMin( m_clipY2, (yy + hh));
381 }
382 else
383 {
384 m_clipping = TRUE;
385 m_clipX1 = xx;
386 m_clipY1 = yy;
387 m_clipX2 = xx + ww;
388 m_clipY2 = yy + hh;
389 }
390 }
391 void wxDC::DoSetClippingRegionAsRegion( const wxRegion &region )
392 {
393 wxCHECK_RET( Ok(), wxT("invalid window dc") ) ;
394 wxMacPortSetter helper(this) ;
395 if (region.Empty())
396 {
397 DestroyClippingRegion();
398 return;
399 }
400 wxCoord x, y, w, h;
401 region.GetBox( x, y, w, h );
402 wxCoord xx, yy, ww, hh;
403 xx = XLOG2DEVMAC(x);
404 yy = YLOG2DEVMAC(y);
405 ww = XLOG2DEVREL(w);
406 hh = YLOG2DEVREL(h);
407 // if we have a scaling that we cannot map onto native regions
408 // we must use the box
409 if ( ww != w || hh != h )
410 {
411 wxDC::DoSetClippingRegion( x, y, w, h );
412 }
413 else
414 {
415 CopyRgn( (RgnHandle) region.GetWXHRGN() , (RgnHandle) m_macCurrentClipRgn ) ;
416 if ( xx != x || yy != y )
417 {
418 OffsetRgn( (RgnHandle) m_macCurrentClipRgn , xx - x , yy - y ) ;
419 }
420 SectRgn( (RgnHandle) m_macCurrentClipRgn , (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ;
421 if( m_clipping )
422 {
423 m_clipX1 = wxMax( m_clipX1 , xx );
424 m_clipY1 = wxMax( m_clipY1 , yy );
425 m_clipX2 = wxMin( m_clipX2, (xx + ww));
426 m_clipY2 = wxMin( m_clipY2, (yy + hh));
427 }
428 else
429 {
430 m_clipping = TRUE;
431 m_clipX1 = xx;
432 m_clipY1 = yy;
433 m_clipX2 = xx + ww;
434 m_clipY2 = yy + hh;
435 }
436 }
437 }
438 void wxDC::DestroyClippingRegion()
439 {
440 wxMacPortSetter helper(this) ;
441 CopyRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ;
442 m_clipping = FALSE;
443 }
444 void wxDC::DoGetSize( int* width, int* height ) const
445 {
446 *width = m_maxX-m_minX;
447 *height = m_maxY-m_minY;
448 }
449 void wxDC::DoGetSizeMM( int* width, int* height ) const
450 {
451 int w = 0;
452 int h = 0;
453 GetSize( &w, &h );
454 *width = long( double(w) / (m_scaleX*m_mm_to_pix_x) );
455 *height = long( double(h) / (m_scaleY*m_mm_to_pix_y) );
456 }
457 void wxDC::SetTextForeground( const wxColour &col )
458 {
459 wxCHECK_RET(Ok(), wxT("Invalid DC"));
460 m_textForegroundColour = col;
461 m_macFontInstalled = false ;
462 }
463 void wxDC::SetTextBackground( const wxColour &col )
464 {
465 wxCHECK_RET(Ok(), wxT("Invalid DC"));
466 m_textBackgroundColour = col;
467 m_macFontInstalled = false ;
468 }
469 void wxDC::SetMapMode( int mode )
470 {
471 switch (mode)
472 {
473 case wxMM_TWIPS:
474 SetLogicalScale( twips2mm*m_mm_to_pix_x, twips2mm*m_mm_to_pix_y );
475 break;
476 case wxMM_POINTS:
477 SetLogicalScale( pt2mm*m_mm_to_pix_x, pt2mm*m_mm_to_pix_y );
478 break;
479 case wxMM_METRIC:
480 SetLogicalScale( m_mm_to_pix_x, m_mm_to_pix_y );
481 break;
482 case wxMM_LOMETRIC:
483 SetLogicalScale( m_mm_to_pix_x/10.0, m_mm_to_pix_y/10.0 );
484 break;
485 default:
486 case wxMM_TEXT:
487 SetLogicalScale( 1.0, 1.0 );
488 break;
489 }
490 if (mode != wxMM_TEXT)
491 {
492 m_needComputeScaleX = TRUE;
493 m_needComputeScaleY = TRUE;
494 }
495 }
496 void wxDC::SetUserScale( double x, double y )
497 {
498 // allow negative ? -> no
499 m_userScaleX = x;
500 m_userScaleY = y;
501 ComputeScaleAndOrigin();
502 }
503 void wxDC::SetLogicalScale( double x, double y )
504 {
505 // allow negative ?
506 m_logicalScaleX = x;
507 m_logicalScaleY = y;
508 ComputeScaleAndOrigin();
509 }
510 void wxDC::SetLogicalOrigin( wxCoord x, wxCoord y )
511 {
512 m_logicalOriginX = x * m_signX; // is this still correct ?
513 m_logicalOriginY = y * m_signY;
514 ComputeScaleAndOrigin();
515 }
516 void wxDC::SetDeviceOrigin( wxCoord x, wxCoord y )
517 {
518 m_externalDeviceOriginX = x;
519 m_externalDeviceOriginY = y;
520 ComputeScaleAndOrigin();
521 }
522 #if 0
523 void wxDC::SetInternalDeviceOrigin( long x, long y )
524 {
525 m_internalDeviceOriginX = x;
526 m_internalDeviceOriginY = y;
527 ComputeScaleAndOrigin();
528 }
529 void wxDC::GetInternalDeviceOrigin( long *x, long *y )
530 {
531 if (x) *x = m_internalDeviceOriginX;
532 if (y) *y = m_internalDeviceOriginY;
533 }
534 #endif
535 void wxDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
536 {
537 m_signX = (xLeftRight ? 1 : -1);
538 m_signY = (yBottomUp ? -1 : 1);
539 ComputeScaleAndOrigin();
540 }
541 wxSize wxDC::GetPPI() const
542 {
543 return wxSize(72, 72);
544 }
545 int wxDC::GetDepth() const
546 {
547 if ( IsPortColor( (CGrafPtr) m_macPort ) )
548 {
549 return ( (**GetPortPixMap( (CGrafPtr) m_macPort)).pixelSize ) ;
550 }
551 return 1 ;
552 }
553 void wxDC::ComputeScaleAndOrigin()
554 {
555 // CMB: copy scale to see if it changes
556 double origScaleX = m_scaleX;
557 double origScaleY = m_scaleY;
558 m_scaleX = m_logicalScaleX * m_userScaleX;
559 m_scaleY = m_logicalScaleY * m_userScaleY;
560 m_deviceOriginX = m_internalDeviceOriginX + m_externalDeviceOriginX;
561 m_deviceOriginY = m_internalDeviceOriginY + m_externalDeviceOriginY;
562 // CMB: if scale has changed call SetPen to recalulate the line width
563 if (m_scaleX != origScaleX || m_scaleY != origScaleY)
564 {
565 // this is a bit artificial, but we need to force wxDC to think
566 // the pen has changed
567 wxPen* pen = & GetPen();
568 wxPen tempPen;
569 m_pen = tempPen;
570 SetPen(* pen);
571 }
572 }
573 void wxDC::SetPalette( const wxPalette& palette )
574 {
575 }
576 void wxDC::SetBackgroundMode( int mode )
577 {
578 m_backgroundMode = mode ;
579 }
580 void wxDC::SetFont( const wxFont &font )
581 {
582 m_font = font;
583 m_macFontInstalled = false ;
584 }
585 void wxDC::SetPen( const wxPen &pen )
586 {
587 if ( m_pen == pen )
588 return ;
589 m_pen = pen;
590 m_macPenInstalled = false ;
591 }
592 void wxDC::SetBrush( const wxBrush &brush )
593 {
594 if (m_brush == brush)
595 return;
596 m_brush = brush;
597 m_macBrushInstalled = false ;
598 }
599 void wxDC::SetBackground( const wxBrush &brush )
600 {
601 if (m_backgroundBrush == brush)
602 return;
603 m_backgroundBrush = brush;
604 if (!m_backgroundBrush.Ok())
605 return;
606 m_macBrushInstalled = false ;
607 }
608 void wxDC::SetLogicalFunction( int function )
609 {
610 if (m_logicalFunction == function)
611 return;
612 m_logicalFunction = function ;
613 m_macFontInstalled = false ;
614 m_macBrushInstalled = false ;
615 m_macPenInstalled = false ;
616 }
617 extern bool wxDoFloodFill(wxDC *dc, wxCoord x, wxCoord y,
618 const wxColour & col, int style);
619 bool wxDC::DoFloodFill(wxCoord x, wxCoord y,
620 const wxColour& col, int style)
621 {
622 return wxDoFloodFill(this, x, y, col, style);
623 }
624 bool wxDC::DoGetPixel( wxCoord x, wxCoord y, wxColour *col ) const
625 {
626 wxCHECK_MSG( Ok(), false, wxT("wxDC::DoGetPixel Invalid DC") );
627 wxMacPortSetter helper(this) ;
628 RGBColor colour;
629 GetCPixel( XLOG2DEVMAC(x), YLOG2DEVMAC(y), &colour );
630 // Convert from Mac colour to wx
631 col->Set( colour.red >> 8,
632 colour.green >> 8,
633 colour.blue >> 8);
634 return true ;
635 }
636 void wxDC::DoDrawLine( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2 )
637 {
638 wxCHECK_RET(Ok(), wxT("Invalid DC"));
639 wxMacPortSetter helper(this) ;
640 if (m_pen.GetStyle() != wxTRANSPARENT)
641 {
642 MacInstallPen() ;
643 wxCoord offset = ( (m_pen.GetWidth() == 0 ? 1 :
644 m_pen.GetWidth() ) * (wxCoord)m_scaleX - 1) / 2;
645 wxCoord xx1 = XLOG2DEVMAC(x1) - offset;
646 wxCoord yy1 = YLOG2DEVMAC(y1) - offset;
647 wxCoord xx2 = XLOG2DEVMAC(x2) - offset;
648 wxCoord yy2 = YLOG2DEVMAC(y2) - offset;
649 if ((m_pen.GetCap() == wxCAP_ROUND) &&
650 (m_pen.GetWidth() <= 1))
651 {
652 // Implement LAST_NOT for MAC at least for
653 // orthogonal lines. RR.
654 if (xx1 == xx2)
655 {
656 if (yy1 < yy2)
657 yy2--;
658 if (yy1 > yy2)
659 yy2++;
660 }
661 if (yy1 == yy2)
662 {
663 if (xx1 < xx2)
664 xx2--;
665 if (xx1 > xx2)
666 xx2++;
667 }
668 }
669 ::MoveTo(xx1, yy1);
670 ::LineTo(xx2, yy2);
671 }
672 }
673 void wxDC::DoCrossHair( wxCoord x, wxCoord y )
674 {
675 wxCHECK_RET( Ok(), wxT("wxDC::DoCrossHair Invalid window dc") );
676 wxMacPortSetter helper(this) ;
677 if (m_pen.GetStyle() != wxTRANSPARENT)
678 {
679 int w = 0;
680 int h = 0;
681 GetSize( &w, &h );
682 wxCoord xx = XLOG2DEVMAC(x);
683 wxCoord yy = YLOG2DEVMAC(y);
684 MacInstallPen();
685 ::MoveTo( XLOG2DEVMAC(0), yy );
686 ::LineTo( XLOG2DEVMAC(w), yy );
687 ::MoveTo( xx, YLOG2DEVMAC(0) );
688 ::LineTo( xx, YLOG2DEVMAC(h) );
689 CalcBoundingBox(x, y);
690 CalcBoundingBox(x+w, y+h);
691 }
692 }
693 /*
694 * To draw arcs properly the angles need to be converted from the WX style:
695 * Angles start on the +ve X axis and go anti-clockwise (As you would draw on
696 * a normal axis on paper).
697 * TO
698 * the Mac style:
699 * Angles start on the +ve y axis and go clockwise.
700 */
701 static double wxConvertWXangleToMACangle(double angle)
702 {
703 double newAngle = 90 - angle ;
704 if ( newAngle < 0 )
705 newAngle += 360 ;
706 return newAngle ;
707 }
708 void wxDC::DoDrawArc( wxCoord x1, wxCoord y1,
709 wxCoord x2, wxCoord y2,
710 wxCoord xc, wxCoord yc )
711 {
712 wxCHECK_RET(Ok(), wxT("wxDC::DoDrawArc Invalid DC"));
713 wxMacPortSetter helper(this) ;
714 wxCoord xx1 = XLOG2DEVMAC(x1);
715 wxCoord yy1 = YLOG2DEVMAC(y1);
716 wxCoord xx2 = XLOG2DEVMAC(x2);
717 wxCoord yy2 = YLOG2DEVMAC(y2);
718 wxCoord xxc = XLOG2DEVMAC(xc);
719 wxCoord yyc = YLOG2DEVMAC(yc);
720 double dx = xx1 - xxc;
721 double dy = yy1 - yyc;
722 double radius = sqrt((double)(dx*dx+dy*dy));
723 wxCoord rad = (wxCoord)radius;
724 double radius1, radius2;
725 if (xx1 == xx2 && yy1 == yy2)
726 {
727 radius1 = 0.0;
728 radius2 = 360.0;
729 }
730 else if (radius == 0.0)
731 {
732 radius1 = radius2 = 0.0;
733 }
734 else
735 {
736 radius1 = (xx1 - xxc == 0) ?
737 (yy1 - yyc < 0) ? 90.0 : -90.0 :
738 -atan2(double(yy1-yyc), double(xx1-xxc)) * RAD2DEG;
739 radius2 = (xx2 - xxc == 0) ?
740 (yy2 - yyc < 0) ? 90.0 : -90.0 :
741 -atan2(double(yy2-yyc), double(xx2-xxc)) * RAD2DEG;
742 }
743 wxCoord alpha2 = wxCoord(radius2 - radius1);
744 wxCoord alpha1 = wxCoord(wxConvertWXangleToMACangle(radius1));
745 if( (xx1 > xx2) || (yy1 > yy2) ) {
746 alpha2 *= -1;
747 }
748 Rect r = { yyc - rad, xxc - rad, yyc + rad, xxc + rad };
749 if(m_brush.GetStyle() != wxTRANSPARENT) {
750 MacInstallBrush();
751 PaintArc(&r, alpha1, alpha2);
752 }
753 if(m_pen.GetStyle() != wxTRANSPARENT) {
754 MacInstallPen();
755 FrameArc(&r, alpha1, alpha2);
756 }
757 }
758 void wxDC::DoDrawEllipticArc( wxCoord x, wxCoord y, wxCoord w, wxCoord h,
759 double sa, double ea )
760 {
761 wxCHECK_RET(Ok(), wxT("wxDC::DoDrawEllepticArc Invalid DC"));
762 wxMacPortSetter helper(this) ;
763 Rect r;
764 double angle = sa - ea; // Order important Mac in opposite direction to wx
765 // we have to make sure that the filling is always counter-clockwise
766 if ( angle > 0 )
767 angle -= 360 ;
768 wxCoord xx = XLOG2DEVMAC(x);
769 wxCoord yy = YLOG2DEVMAC(y);
770 wxCoord ww = m_signX * XLOG2DEVREL(w);
771 wxCoord hh = m_signY * YLOG2DEVREL(h);
772 // handle -ve width and/or height
773 if (ww < 0) { ww = -ww; xx = xx - ww; }
774 if (hh < 0) { hh = -hh; yy = yy - hh; }
775 sa = wxConvertWXangleToMACangle(sa);
776 r.top = yy;
777 r.left = xx;
778 r.bottom = yy + hh;
779 r.right = xx + ww;
780 if(m_brush.GetStyle() != wxTRANSPARENT) {
781 MacInstallBrush();
782 PaintArc(&r, (short)sa, (short)angle);
783 }
784 if(m_pen.GetStyle() != wxTRANSPARENT) {
785 MacInstallPen();
786 FrameArc(&r, (short)sa, (short)angle);
787 }
788 }
789 void wxDC::DoDrawPoint( wxCoord x, wxCoord y )
790 {
791 wxCHECK_RET(Ok(), wxT("Invalid DC"));
792 wxMacPortSetter helper(this) ;
793 if (m_pen.GetStyle() != wxTRANSPARENT)
794 {
795 wxCoord xx1 = XLOG2DEVMAC(x);
796 wxCoord yy1 = YLOG2DEVMAC(y);
797 RGBColor pencolor = MAC_WXCOLORREF( m_pen.GetColour().GetPixel());
798 ::SetCPixel( xx1,yy1,&pencolor) ;
799 CalcBoundingBox(x, y);
800 }
801 }
802 void wxDC::DoDrawLines(int n, wxPoint points[],
803 wxCoord xoffset, wxCoord yoffset)
804 {
805 wxCHECK_RET(Ok(), wxT("Invalid DC"));
806 wxMacPortSetter helper(this) ;
807 if (m_pen.GetStyle() == wxTRANSPARENT)
808 return;
809 MacInstallPen() ;
810 wxCoord offset = ( (m_pen.GetWidth() == 0 ? 1 :
811 m_pen.GetWidth() ) * (wxCoord)m_scaleX - 1) / 2 ;
812 wxCoord x1, x2 , y1 , y2 ;
813 x1 = XLOG2DEVMAC(points[0].x + xoffset);
814 y1 = YLOG2DEVMAC(points[0].y + yoffset);
815 ::MoveTo(x1 - offset, y1 - offset );
816 for (int i = 0; i < n-1; i++)
817 {
818 x2 = XLOG2DEVMAC(points[i+1].x + xoffset);
819 y2 = YLOG2DEVMAC(points[i+1].y + yoffset);
820 ::LineTo( x2 - offset, y2 - offset );
821 }
822 }
823 void wxDC::DoDrawPolygon(int n, wxPoint points[],
824 wxCoord xoffset, wxCoord yoffset,
825 int fillStyle )
826 {
827 wxCHECK_RET(Ok(), wxT("Invalid DC"));
828 wxMacPortSetter helper(this) ;
829 wxCoord x1, x2 , y1 , y2 ;
830 if ( m_brush.GetStyle() == wxTRANSPARENT && m_pen.GetStyle() == wxTRANSPARENT )
831 return ;
832 PolyHandle polygon = OpenPoly();
833 x2 = x1 = XLOG2DEVMAC(points[0].x + xoffset);
834 y2 = y1 = YLOG2DEVMAC(points[0].y + yoffset);
835 ::MoveTo(x1,y1);
836 for (int i = 1; i < n; i++)
837 {
838 x2 = XLOG2DEVMAC(points[i].x + xoffset);
839 y2 = YLOG2DEVMAC(points[i].y + yoffset);
840 ::LineTo(x2, y2);
841 }
842 // close the polyline if necessary
843 if ( x1 != x2 || y1 != y2 )
844 {
845 ::LineTo(x1,y1 ) ;
846 }
847 ClosePoly();
848 if (m_brush.GetStyle() != wxTRANSPARENT)
849 {
850 MacInstallBrush();
851 ::PaintPoly( polygon );
852 }
853 if (m_pen.GetStyle() != wxTRANSPARENT)
854 {
855 MacInstallPen() ;
856 ::FramePoly( polygon ) ;
857 }
858 KillPoly( polygon );
859 }
860 void wxDC::DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
861 {
862 wxCHECK_RET(Ok(), wxT("Invalid DC"));
863 wxMacPortSetter helper(this) ;
864 wxCoord xx = XLOG2DEVMAC(x);
865 wxCoord yy = YLOG2DEVMAC(y);
866 wxCoord ww = m_signX * XLOG2DEVREL(width);
867 wxCoord hh = m_signY * YLOG2DEVREL(height);
868 // CMB: draw nothing if transformed w or h is 0
869 if (ww == 0 || hh == 0)
870 return;
871 // CMB: handle -ve width and/or height
872 if (ww < 0)
873 {
874 ww = -ww;
875 xx = xx - ww;
876 }
877 if (hh < 0)
878 {
879 hh = -hh;
880 yy = yy - hh;
881 }
882 Rect rect = { yy , xx , yy + hh , xx + ww } ;
883 if (m_brush.GetStyle() != wxTRANSPARENT)
884 {
885 MacInstallBrush() ;
886 ::PaintRect( &rect ) ;
887 }
888 if (m_pen.GetStyle() != wxTRANSPARENT)
889 {
890 MacInstallPen() ;
891 ::FrameRect( &rect ) ;
892 }
893 }
894 void wxDC::DoDrawRoundedRectangle(wxCoord x, wxCoord y,
895 wxCoord width, wxCoord height,
896 double radius)
897 {
898 wxCHECK_RET(Ok(), wxT("Invalid DC"));
899 wxMacPortSetter helper(this) ;
900 if (radius < 0.0)
901 radius = - radius * ((width < height) ? width : height);
902 wxCoord xx = XLOG2DEVMAC(x);
903 wxCoord yy = YLOG2DEVMAC(y);
904 wxCoord ww = m_signX * XLOG2DEVREL(width);
905 wxCoord hh = m_signY * YLOG2DEVREL(height);
906 // CMB: draw nothing if transformed w or h is 0
907 if (ww == 0 || hh == 0)
908 return;
909 // CMB: handle -ve width and/or height
910 if (ww < 0)
911 {
912 ww = -ww;
913 xx = xx - ww;
914 }
915 if (hh < 0)
916 {
917 hh = -hh;
918 yy = yy - hh;
919 }
920 Rect rect = { yy , xx , yy + hh , xx + ww } ;
921 if (m_brush.GetStyle() != wxTRANSPARENT)
922 {
923 MacInstallBrush() ;
924 ::PaintRoundRect( &rect , int(radius * 2) , int(radius * 2) ) ;
925 }
926 if (m_pen.GetStyle() != wxTRANSPARENT)
927 {
928 MacInstallPen() ;
929 ::FrameRoundRect( &rect , int(radius * 2) , int(radius * 2) ) ;
930 }
931 }
932 void wxDC::DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
933 {
934 wxCHECK_RET(Ok(), wxT("Invalid DC"));
935 wxMacPortSetter helper(this) ;
936 wxCoord xx = XLOG2DEVMAC(x);
937 wxCoord yy = YLOG2DEVMAC(y);
938 wxCoord ww = m_signX * XLOG2DEVREL(width);
939 wxCoord hh = m_signY * YLOG2DEVREL(height);
940 // CMB: draw nothing if transformed w or h is 0
941 if (ww == 0 || hh == 0)
942 return;
943 // CMB: handle -ve width and/or height
944 if (ww < 0)
945 {
946 ww = -ww;
947 xx = xx - ww;
948 }
949 if (hh < 0)
950 {
951 hh = -hh;
952 yy = yy - hh;
953 }
954 Rect rect = { yy , xx , yy + hh , xx + ww } ;
955 if (m_brush.GetStyle() != wxTRANSPARENT)
956 {
957 MacInstallBrush() ;
958 ::PaintOval( &rect ) ;
959 }
960 if (m_pen.GetStyle() != wxTRANSPARENT)
961 {
962 MacInstallPen() ;
963 ::FrameOval( &rect ) ;
964 }
965 }
966
967
968 bool wxDC::CanDrawBitmap(void) const
969 {
970 return true ;
971 }
972
973 bool wxDC::DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
974 wxDC *source, wxCoord xsrc, wxCoord ysrc, int logical_func , bool useMask,
975 wxCoord xsrcMask, wxCoord ysrcMask )
976 {
977 wxCHECK_MSG(Ok(), false, wxT("wxDC::DoBlit Illegal dc"));
978 wxCHECK_MSG(source->Ok(), false, wxT("wxDC::DoBlit Illegal source DC"));
979 if ( logical_func == wxNO_OP )
980 return TRUE ;
981 if (xsrcMask == -1 && ysrcMask == -1)
982 {
983 xsrcMask = xsrc; ysrcMask = ysrc;
984 }
985 // correct the parameter in case this dc does not have a mask at all
986 if ( useMask && !source->m_macMask )
987 useMask = false ;
988 Rect srcrect , dstrect ;
989 srcrect.top = source->YLOG2DEVMAC(ysrc) ;
990 srcrect.left = source->XLOG2DEVMAC(xsrc) ;
991 srcrect.right = source->XLOG2DEVMAC(xsrc + width ) ;
992 srcrect.bottom = source->YLOG2DEVMAC(ysrc + height) ;
993 dstrect.top = YLOG2DEVMAC(ydest) ;
994 dstrect.left = XLOG2DEVMAC(xdest) ;
995 dstrect.bottom = YLOG2DEVMAC(ydest + height ) ;
996 dstrect.right = XLOG2DEVMAC(xdest + width ) ;
997 short mode = kUnsupportedMode ;
998 bool invertDestinationFirst = false ;
999 switch ( logical_func )
1000 {
1001 case wxAND: // src AND dst
1002 mode = srcOr ; // ok
1003 break ;
1004 case wxAND_INVERT: // (NOT src) AND dst
1005 mode = notSrcOr ; // ok
1006 break ;
1007 case wxAND_REVERSE:// src AND (NOT dst)
1008 invertDestinationFirst = true ;
1009 mode = srcOr ;
1010 break ;
1011 case wxCLEAR: // 0
1012 mode = kEmulatedMode ;
1013 break ;
1014 case wxCOPY: // src
1015 mode = srcCopy ; // ok
1016 break ;
1017 case wxEQUIV: // (NOT src) XOR dst
1018 mode = srcXor ; // ok
1019 break ;
1020 case wxINVERT: // NOT dst
1021 mode = kEmulatedMode ; //or hilite ;
1022 break ;
1023 case wxNAND: // (NOT src) OR (NOT dst)
1024 invertDestinationFirst = true ;
1025 mode = srcBic ;
1026 break ;
1027 case wxNOR: // (NOT src) AND (NOT dst)
1028 invertDestinationFirst = true ;
1029 mode = notSrcOr ;
1030 break ;
1031 case wxNO_OP: // dst
1032 mode = kEmulatedMode ; // this has already been handled upon entry
1033 break ;
1034 case wxOR: // src OR dst
1035 mode = notSrcBic ;
1036 break ;
1037 case wxOR_INVERT: // (NOT src) OR dst
1038 mode = srcBic ;
1039 break ;
1040 case wxOR_REVERSE: // src OR (NOT dst)
1041 invertDestinationFirst = true ;
1042 mode = notSrcBic ;
1043 break ;
1044 case wxSET: // 1
1045 mode = kEmulatedMode ;
1046 break ;
1047 case wxSRC_INVERT: // (NOT src)
1048 mode = notSrcCopy ; // ok
1049 break ;
1050 case wxXOR: // src XOR dst
1051 mode = notSrcXor ; // ok
1052 break ;
1053 default :
1054 break ;
1055 }
1056 if ( mode == kUnsupportedMode )
1057 {
1058 wxFAIL_MSG("unsupported blitting mode" );
1059 return FALSE ;
1060 }
1061 CGrafPtr sourcePort = (CGrafPtr) source->m_macPort ;
1062 PixMapHandle bmappixels = GetGWorldPixMap( sourcePort ) ;
1063 if ( LockPixels(bmappixels) )
1064 {
1065 wxMacPortSetter helper(this) ;
1066 if ( source->GetDepth() == 1 )
1067 {
1068 RGBForeColor( &MAC_WXCOLORREF(m_textForegroundColour.GetPixel()) ) ;
1069 RGBBackColor( &MAC_WXCOLORREF(m_textBackgroundColour.GetPixel()) ) ;
1070 }
1071 else
1072 {
1073 // the modes need this, otherwise we'll end up having really nice colors...
1074 RGBColor white = { 0xFFFF, 0xFFFF,0xFFFF} ;
1075 RGBColor black = { 0,0,0} ;
1076 RGBForeColor( &black ) ;
1077 RGBBackColor( &white ) ;
1078 }
1079 if ( useMask && source->m_macMask )
1080 {
1081 if ( mode == srcCopy )
1082 {
1083 if ( LockPixels( GetGWorldPixMap( MAC_WXHBITMAP(source->m_macMask) ) ) )
1084 {
1085 CopyMask( GetPortBitMapForCopyBits( sourcePort ) ,
1086 GetPortBitMapForCopyBits( MAC_WXHBITMAP(source->m_macMask) ) ,
1087 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort) ) ,
1088 &srcrect, &srcrect , &dstrect ) ;
1089 UnlockPixels( GetGWorldPixMap( MAC_WXHBITMAP(source->m_macMask) ) ) ;
1090 }
1091 }
1092 else
1093 {
1094 RgnHandle clipRgn = NewRgn() ;
1095 LockPixels( GetGWorldPixMap( MAC_WXHBITMAP(source->m_macMask) ) ) ;
1096 BitMapToRegion( clipRgn , (BitMap*) *GetGWorldPixMap( MAC_WXHBITMAP(source->m_macMask) ) ) ;
1097 UnlockPixels( GetGWorldPixMap( MAC_WXHBITMAP(source->m_macMask) ) ) ;
1098 OffsetRgn( clipRgn , -srcrect.left + dstrect.left, -srcrect.top + dstrect.top ) ;
1099 if ( mode == kEmulatedMode )
1100 {
1101 Pattern pat ;
1102 ::PenPat(GetQDGlobalsBlack(&pat));
1103 if ( logical_func == wxSET )
1104 {
1105 RGBColor col= { 0xFFFF, 0xFFFF, 0xFFFF } ;
1106 ::RGBForeColor( &col ) ;
1107 ::PaintRgn( clipRgn ) ;
1108 }
1109 else if ( logical_func == wxCLEAR )
1110 {
1111 RGBColor col= { 0x0000, 0x0000, 0x0000 } ;
1112 ::RGBForeColor( &col ) ;
1113 ::PaintRgn( clipRgn ) ;
1114 }
1115 else if ( logical_func == wxINVERT )
1116 {
1117 MacInvertRgn( clipRgn ) ;
1118 }
1119 else
1120 {
1121 for ( int y = 0 ; y < srcrect.right - srcrect.left ; ++y )
1122 {
1123 for ( int x = 0 ; x < srcrect.bottom - srcrect.top ; ++x )
1124 {
1125 Point dstPoint = { dstrect.top + y , dstrect.left + x } ;
1126 Point srcPoint = { srcrect.top + y , srcrect.left + x } ;
1127 if ( PtInRgn( dstPoint , clipRgn ) )
1128 {
1129 RGBColor srcColor ;
1130 RGBColor dstColor ;
1131 SetPort( (GrafPtr) sourcePort ) ;
1132 GetCPixel( srcPoint.h , srcPoint.v , &srcColor) ;
1133 SetPort( (GrafPtr) m_macPort ) ;
1134 GetCPixel( dstPoint.h , dstPoint.v , &dstColor ) ;
1135 wxMacCalculateColour( logical_func , srcColor , dstColor ) ;
1136 SetCPixel( dstPoint.h , dstPoint.v , &dstColor ) ;
1137 }
1138 }
1139 }
1140 }
1141 }
1142 else
1143 {
1144 if ( invertDestinationFirst )
1145 {
1146 MacInvertRgn( clipRgn ) ;
1147 }
1148 CopyBits( GetPortBitMapForCopyBits( sourcePort ) ,
1149 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort) ) ,
1150 &srcrect, &dstrect, mode, clipRgn ) ;
1151 }
1152 DisposeRgn( clipRgn ) ;
1153 }
1154 }
1155 else
1156 {
1157 RgnHandle clipRgn = NewRgn() ;
1158 SetRectRgn( clipRgn , dstrect.left , dstrect.top , dstrect.right , dstrect.bottom ) ;
1159 if ( mode == kEmulatedMode )
1160 {
1161 Pattern pat ;
1162 ::PenPat(GetQDGlobalsBlack(&pat));
1163 if ( logical_func == wxSET )
1164 {
1165 RGBColor col= { 0xFFFF, 0xFFFF, 0xFFFF } ;
1166 ::RGBForeColor( &col ) ;
1167 ::PaintRgn( clipRgn ) ;
1168 }
1169 else if ( logical_func == wxCLEAR )
1170 {
1171 RGBColor col= { 0x0000, 0x0000, 0x0000 } ;
1172 ::RGBForeColor( &col ) ;
1173 ::PaintRgn( clipRgn ) ;
1174 }
1175 else if ( logical_func == wxINVERT )
1176 {
1177 MacInvertRgn( clipRgn ) ;
1178 }
1179 else
1180 {
1181 for ( int y = 0 ; y < srcrect.right - srcrect.left ; ++y )
1182 {
1183 for ( int x = 0 ; x < srcrect.bottom - srcrect.top ; ++x )
1184 {
1185 Point dstPoint = { dstrect.top + y , dstrect.left + x } ;
1186 Point srcPoint = { srcrect.top + y , srcrect.left + x } ;
1187 {
1188 RGBColor srcColor ;
1189 RGBColor dstColor ;
1190 SetPort( (GrafPtr) sourcePort ) ;
1191 GetCPixel( srcPoint.h , srcPoint.v , &srcColor) ;
1192 SetPort( (GrafPtr) m_macPort ) ;
1193 GetCPixel( dstPoint.h , dstPoint.v , &dstColor ) ;
1194 wxMacCalculateColour( logical_func , srcColor , dstColor ) ;
1195 SetCPixel( dstPoint.h , dstPoint.v , &dstColor ) ;
1196 }
1197 }
1198 }
1199 }
1200 }
1201 else
1202 {
1203 if ( invertDestinationFirst )
1204 {
1205 MacInvertRgn( clipRgn ) ;
1206 }
1207 CopyBits( GetPortBitMapForCopyBits( sourcePort ) ,
1208 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort) ) ,
1209 &srcrect, &dstrect, mode, NULL ) ;
1210 }
1211 DisposeRgn( clipRgn ) ;
1212 }
1213 UnlockPixels( bmappixels ) ;
1214 }
1215 m_macPenInstalled = false ;
1216 m_macBrushInstalled = false ;
1217 m_macFontInstalled = false ;
1218 return TRUE;
1219 }
1220 inline Fixed IntToFixed( int inInt )
1221 {
1222 return (((SInt32) inInt) << 16);
1223 }
1224 inline int FixedToInt( Fixed inFixed )
1225 {
1226 return (((SInt32) inFixed) >> 16);
1227 }
1228
1229 void wxDC::DoDrawRotatedText(const wxString& str, wxCoord x, wxCoord y,
1230 double angle)
1231 {
1232 wxCHECK_RET( Ok(), wxT("wxDC::DoDrawRotatedText Invalid window dc") );
1233 if (angle == 0.0 )
1234 {
1235 DrawText(str, x, y);
1236 return;
1237 }
1238 if ( str.Length() == 0 )
1239 return ;
1240 wxMacPortSetter helper(this) ;
1241 MacInstallFont() ;
1242 wxString text ;
1243 if ( wxApp::s_macDefaultEncodingIsPC )
1244 {
1245 text = wxMacMakeMacStringFromPC( str ) ;
1246 }
1247 else
1248 {
1249 text = str ;
1250 }
1251 wxFontRefData * font = (wxFontRefData*) m_font.GetRefData() ;
1252 if ( 0 )
1253 {
1254 m_macFormerAliasState = IsAntiAliasedTextEnabled(&m_macFormerAliasSize);
1255 SetAntiAliasedTextEnabled(true, SInt16(m_scaleY * font->m_macFontSize));
1256 m_macAliasWasEnabled = true ;
1257 }
1258 OSStatus status = noErr ;
1259 TECObjectRef ec;
1260 status = TECCreateConverter(&ec, kTextEncodingMacRoman, kTextEncodingUnicodeDefault);
1261 wxASSERT_MSG( status == noErr , "couldn't start converter" ) ;
1262 ByteCount byteOutLen ;
1263 ByteCount byteInLen = text.Length() ;
1264 ByteCount byteBufferLen = byteInLen *2 ;
1265 char* buf = new char[byteBufferLen] ;
1266 status = TECConvertText(ec, (ConstTextPtr)text.c_str() , byteInLen, &byteInLen,
1267 (TextPtr)buf, byteBufferLen, &byteOutLen);
1268 wxASSERT_MSG( status == noErr , "couldn't convert text" ) ;
1269 status = TECDisposeConverter(ec);
1270 wxASSERT_MSG( status == noErr , "couldn't dispose converter" ) ;
1271 ATSUTextLayout atsuLayout ;
1272 UniCharCount chars = byteOutLen / 2 ;
1273 status = ::ATSUCreateTextLayoutWithTextPtr( (UniCharArrayPtr) buf , 0 , byteOutLen / 2 , byteOutLen / 2 , 1 ,
1274 &chars , (ATSUStyle*) &m_macATSUIStyle , &atsuLayout ) ;
1275 wxASSERT_MSG( status == noErr , "couldn't create the layout of the rotated text" );
1276 int iAngle = int( angle );
1277 int drawX = XLOG2DEVMAC(x) ;
1278 int drawY = YLOG2DEVMAC(y) ;
1279
1280 ATSUTextMeasurement textBefore ;
1281 ATSUTextMeasurement textAfter ;
1282 ATSUTextMeasurement ascent ;
1283 ATSUTextMeasurement descent ;
1284
1285
1286 if ( abs(iAngle) > 0 )
1287 {
1288 Fixed atsuAngle = IntToFixed( iAngle ) ;
1289 ATSUAttributeTag atsuTags[] =
1290 {
1291 kATSULineRotationTag ,
1292 } ;
1293 ByteCount atsuSizes[sizeof(atsuTags)/sizeof(ATSUAttributeTag)] =
1294 {
1295 sizeof( Fixed ) ,
1296 } ;
1297 ATSUAttributeValuePtr atsuValues[sizeof(atsuTags)/sizeof(ATSUAttributeTag)] =
1298 {
1299 &atsuAngle ,
1300 } ;
1301 status = ::ATSUSetLayoutControls(atsuLayout , sizeof(atsuTags)/sizeof(ATSUAttributeTag),
1302 atsuTags, atsuSizes, atsuValues ) ;
1303 }
1304 status = ::ATSUMeasureText( atsuLayout, kATSUFromTextBeginning, kATSUToTextEnd,
1305 &textBefore , &textAfter, &ascent , &descent );
1306
1307 drawX += sin(angle/RAD2DEG) * FixedToInt(ascent) ;
1308 drawY += cos(angle/RAD2DEG) * FixedToInt(ascent) ;
1309 status = ::ATSUDrawText( atsuLayout, kATSUFromTextBeginning, kATSUToTextEnd,
1310 IntToFixed(drawX) , IntToFixed(drawY) );
1311 wxASSERT_MSG( status == noErr , "couldn't draw the rotated text" );
1312 Rect rect ;
1313 status = ::ATSUMeasureTextImage( atsuLayout, kATSUFromTextBeginning, kATSUToTextEnd,
1314 IntToFixed(drawX) , IntToFixed(drawY) , &rect );
1315 wxASSERT_MSG( status == noErr , "couldn't measure the rotated text" );
1316 OffsetRect( &rect , -m_macLocalOrigin.x , -m_macLocalOrigin.y ) ;
1317 CalcBoundingBox(XDEV2LOG(rect.left), YDEV2LOG(rect.top) );
1318 CalcBoundingBox(XDEV2LOG(rect.right), YDEV2LOG(rect.bottom) );
1319 ::ATSUDisposeTextLayout(atsuLayout);
1320 delete[] buf ;
1321 }
1322 void wxDC::DoDrawText(const wxString& strtext, wxCoord x, wxCoord y)
1323 {
1324 wxCHECK_RET(Ok(), wxT("wxDC::DoDrawText Invalid DC"));
1325 wxMacPortSetter helper(this) ;
1326 long xx = XLOG2DEVMAC(x);
1327 long yy = YLOG2DEVMAC(y);
1328 #if TARGET_CARBON
1329 bool useDrawThemeText = ( DrawThemeTextBox != (void*) kUnresolvedCFragSymbolAddress ) ;
1330 if ( m_font.GetNoAntiAliasing() )
1331 useDrawThemeText = false ;
1332 #endif
1333 MacInstallFont() ;
1334 if ( 0 )
1335 {
1336 m_macFormerAliasState = IsAntiAliasedTextEnabled(&m_macFormerAliasSize);
1337 SetAntiAliasedTextEnabled(true, 8);
1338 m_macAliasWasEnabled = true ;
1339 }
1340 FontInfo fi ;
1341 ::GetFontInfo( &fi ) ;
1342 #if TARGET_CARBON
1343 if ( !useDrawThemeText )
1344 #endif
1345 yy += fi.ascent ;
1346 ::MoveTo( xx , yy );
1347 if ( m_backgroundMode == wxTRANSPARENT )
1348 {
1349 ::TextMode( srcOr) ;
1350 }
1351 else
1352 {
1353 ::TextMode( srcCopy ) ;
1354 }
1355 const char *text = NULL ;
1356 int length = 0 ;
1357 wxString macText ;
1358 if ( wxApp::s_macDefaultEncodingIsPC )
1359 {
1360 macText = wxMacMakeMacStringFromPC( strtext ) ;
1361 text = macText ;
1362 length = macText.Length() ;
1363 }
1364 else
1365 {
1366 text = strtext ;
1367 length = strtext.Length() ;
1368 }
1369 int laststop = 0 ;
1370 int i = 0 ;
1371 int line = 0 ;
1372 {
1373 while( i < length )
1374 {
1375 if( text[i] == 13 || text[i] == 10)
1376 {
1377 #if TARGET_CARBON
1378 if ( useDrawThemeText )
1379 {
1380 Rect frame = { yy + line*(fi.descent + fi.ascent + fi.leading) ,xx , yy + (line+1)*(fi.descent + fi.ascent + fi.leading) , xx + 10000 } ;
1381 CFStringRef mString = CFStringCreateWithBytes( NULL , (UInt8*) text + laststop , i - laststop , CFStringGetSystemEncoding(), false ) ;
1382 ::DrawThemeTextBox( mString,
1383 kThemeCurrentPortFont,
1384 kThemeStateActive,
1385 false,
1386 &frame,
1387 teJustLeft,
1388 nil );
1389 CFRelease( mString ) ;
1390 line++ ;
1391 }
1392 else
1393 #endif
1394 {
1395 ::DrawText( text , laststop , i - laststop ) ;
1396 line++ ;
1397 ::MoveTo( xx , yy + line*(fi.descent + fi.ascent + fi.leading) );
1398 }
1399 laststop = i+1 ;
1400 }
1401 i++ ;
1402 }
1403 #if TARGET_CARBON
1404 if ( useDrawThemeText )
1405 {
1406 Rect frame = { yy + line*(fi.descent + fi.ascent + fi.leading) ,xx , yy + (line+1)*(fi.descent + fi.ascent + fi.leading) , xx + 10000 } ;
1407 CFStringRef mString = CFStringCreateWithCString( NULL , text + laststop , kCFStringEncodingMacRoman ) ;
1408 ::DrawThemeTextBox( mString,
1409 kThemeCurrentPortFont,
1410 kThemeStateActive,
1411 false,
1412 &frame,
1413 teJustLeft,
1414 nil );
1415 CFRelease( mString ) ;
1416 }
1417 else
1418 #endif
1419 {
1420 ::DrawText( text , laststop , i - laststop ) ;
1421 }
1422 }
1423 ::TextMode( srcOr ) ;
1424 }
1425 bool wxDC::CanGetTextExtent() const
1426 {
1427 wxCHECK_MSG(Ok(), false, wxT("Invalid DC"));
1428 return true ;
1429 }
1430 void wxDC::DoGetTextExtent( const wxString &string, wxCoord *width, wxCoord *height,
1431 wxCoord *descent, wxCoord *externalLeading ,
1432 wxFont *theFont ) const
1433 {
1434 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1435 wxMacPortSetter helper(this) ;
1436 wxFont formerFont = m_font ;
1437 if ( theFont )
1438 {
1439 // work around the constness
1440 *((wxFont*)(&m_font)) = *theFont ;
1441 }
1442 MacInstallFont() ;
1443 FontInfo fi ;
1444 ::GetFontInfo( &fi ) ;
1445 #if TARGET_CARBON
1446 bool useGetThemeText = ( GetThemeTextDimensions != (void*) kUnresolvedCFragSymbolAddress ) ;
1447 if ( ((wxFont*)&m_font)->GetNoAntiAliasing() )
1448 useGetThemeText = false ;
1449 #endif
1450 if ( height )
1451 *height = YDEV2LOGREL( fi.descent + fi.ascent ) ;
1452 if ( descent )
1453 *descent =YDEV2LOGREL( fi.descent );
1454 if ( externalLeading )
1455 *externalLeading = YDEV2LOGREL( fi.leading ) ;
1456 const char *text = NULL ;
1457 int length = 0 ;
1458 wxString macText ;
1459 if ( wxApp::s_macDefaultEncodingIsPC )
1460 {
1461 macText = wxMacMakeMacStringFromPC( string ) ;
1462 text = macText ;
1463 length = macText.Length() ;
1464 }
1465 else
1466 {
1467 text = string ;
1468 length = string.Length() ;
1469 }
1470 int laststop = 0 ;
1471 int i = 0 ;
1472 int curwidth = 0 ;
1473 if ( width )
1474 {
1475 *width = 0 ;
1476 while( i < length )
1477 {
1478 if( text[i] == 13 || text[i] == 10)
1479 {
1480 if ( height )
1481 *height += YDEV2LOGREL( fi.descent + fi.ascent + fi.leading ) ;
1482 #if TARGET_CARBON
1483 if ( useGetThemeText )
1484 {
1485 Point bounds={0,0} ;
1486 SInt16 baseline ;
1487 CFStringRef mString = CFStringCreateWithBytes( NULL , (UInt8*) text + laststop , i - laststop , CFStringGetSystemEncoding(), false ) ;
1488 ::GetThemeTextDimensions( mString,
1489 kThemeCurrentPortFont,
1490 kThemeStateActive,
1491 false,
1492 &bounds,
1493 &baseline );
1494 CFRelease( mString ) ;
1495 curwidth = bounds.h ;
1496 }
1497 else
1498 #endif
1499 {
1500 curwidth = ::TextWidth( text , laststop , i - laststop ) ;
1501 }
1502 if ( curwidth > *width )
1503 *width = XDEV2LOGREL( curwidth ) ;
1504 laststop = i+1 ;
1505 }
1506 i++ ;
1507 }
1508
1509 #if TARGET_CARBON
1510 if ( useGetThemeText )
1511 {
1512 Point bounds={0,0} ;
1513 SInt16 baseline ;
1514 CFStringRef mString = CFStringCreateWithBytes( NULL , (UInt8*) text + laststop , i - laststop , CFStringGetSystemEncoding(), false ) ;
1515 ::GetThemeTextDimensions( mString,
1516 kThemeCurrentPortFont,
1517 kThemeStateActive,
1518 false,
1519 &bounds,
1520 &baseline );
1521 CFRelease( mString ) ;
1522 curwidth = bounds.h ;
1523 }
1524 else
1525 #endif
1526 {
1527 curwidth = ::TextWidth( text , laststop , i - laststop ) ;
1528 }
1529 if ( curwidth > *width )
1530 *width = XDEV2LOGREL( curwidth ) ;
1531 }
1532 if ( theFont )
1533 {
1534 // work around the constness
1535 *((wxFont*)(&m_font)) = formerFont ;
1536 m_macFontInstalled = false ;
1537 }
1538 }
1539 wxCoord wxDC::GetCharWidth(void) const
1540 {
1541 wxCHECK_MSG(Ok(), 1, wxT("Invalid DC"));
1542 wxMacPortSetter helper(this) ;
1543 MacInstallFont() ;
1544 int width = 0 ;
1545 #if TARGET_CARBON
1546 bool useGetThemeText = ( GetThemeTextDimensions != (void*) kUnresolvedCFragSymbolAddress ) ;
1547 if ( ((wxFont*)&m_font)->GetNoAntiAliasing() )
1548 useGetThemeText = false ;
1549 #endif
1550 char text[] = "H" ;
1551 #if TARGET_CARBON
1552 if ( useGetThemeText )
1553 {
1554 Point bounds={0,0} ;
1555 SInt16 baseline ;
1556 CFStringRef mString = CFStringCreateWithBytes( NULL , (UInt8*) text , 1 , CFStringGetSystemEncoding(), false ) ;
1557 ::GetThemeTextDimensions( mString,
1558 kThemeCurrentPortFont,
1559 kThemeStateActive,
1560 false,
1561 &bounds,
1562 &baseline );
1563 CFRelease( mString ) ;
1564 width = bounds.h ;
1565 }
1566 else
1567 #endif
1568 {
1569 width = ::TextWidth( text , 0 , 1 ) ;
1570 }
1571 return YDEV2LOGREL(width) ;
1572 }
1573 wxCoord wxDC::GetCharHeight(void) const
1574 {
1575 wxCHECK_MSG(Ok(), 1, wxT("Invalid DC"));
1576 wxMacPortSetter helper(this) ;
1577 MacInstallFont() ;
1578 FontInfo fi ;
1579 ::GetFontInfo( &fi ) ;
1580 return YDEV2LOGREL( fi.descent + fi.ascent );
1581 }
1582 void wxDC::Clear(void)
1583 {
1584 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1585 wxMacPortSetter helper(this) ;
1586 Rect rect = { -31000 , -31000 , 31000 , 31000 } ;
1587 if (m_backgroundBrush.GetStyle() != wxTRANSPARENT)
1588 {
1589 ::PenNormal() ;
1590 //MacInstallBrush() ;
1591 MacSetupBackgroundForCurrentPort( m_backgroundBrush ) ;
1592 ::EraseRect( &rect ) ;
1593 }
1594 }
1595 void wxDC::MacInstallFont() const
1596 {
1597 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1598 // if ( m_macFontInstalled )
1599 // return ;
1600 Pattern blackColor ;
1601 MacSetupBackgroundForCurrentPort(m_backgroundBrush) ;
1602 wxFontRefData * font = (wxFontRefData*) m_font.GetRefData() ;
1603 if ( font )
1604 {
1605 ::TextFont( font->m_macFontNum ) ;
1606 ::TextSize( short(m_scaleY * font->m_macFontSize) ) ;
1607 ::TextFace( font->m_macFontStyle ) ;
1608 m_macFontInstalled = true ;
1609 m_macBrushInstalled = false ;
1610 m_macPenInstalled = false ;
1611 RGBColor forecolor = MAC_WXCOLORREF( m_textForegroundColour.GetPixel());
1612 RGBColor backcolor = MAC_WXCOLORREF( m_textBackgroundColour.GetPixel());
1613 ::RGBForeColor( &forecolor );
1614 ::RGBBackColor( &backcolor );
1615 }
1616 else
1617 {
1618 FontFamilyID fontId ;
1619 Str255 fontName ;
1620 SInt16 fontSize ;
1621 Style fontStyle ;
1622 GetThemeFont(kThemeSmallSystemFont , GetApplicationScript() , fontName , &fontSize , &fontStyle ) ;
1623 GetFNum( fontName, &fontId );
1624 ::TextFont( fontId ) ;
1625 ::TextSize( short(m_scaleY * fontSize) ) ;
1626 ::TextFace( fontStyle ) ;
1627 // todo reset after spacing changes - or store the current spacing somewhere
1628 m_macFontInstalled = true ;
1629 m_macBrushInstalled = false ;
1630 m_macPenInstalled = false ;
1631 RGBColor forecolor = MAC_WXCOLORREF( m_textForegroundColour.GetPixel());
1632 RGBColor backcolor = MAC_WXCOLORREF( m_textBackgroundColour.GetPixel());
1633 ::RGBForeColor( &forecolor );
1634 ::RGBBackColor( &backcolor );
1635 }
1636 short mode = patCopy ;
1637 // todo :
1638 switch( m_logicalFunction )
1639 {
1640 case wxCOPY: // src
1641 mode = patCopy ;
1642 break ;
1643 case wxINVERT: // NOT dst
1644 ::PenPat(GetQDGlobalsBlack(&blackColor));
1645 mode = patXor ;
1646 break ;
1647 case wxXOR: // src XOR dst
1648 mode = patXor ;
1649 break ;
1650 case wxOR_REVERSE: // src OR (NOT dst)
1651 mode = notPatOr ;
1652 break ;
1653 case wxSRC_INVERT: // (NOT src)
1654 mode = notPatCopy ;
1655 break ;
1656 // unsupported TODO
1657 case wxCLEAR: // 0
1658 case wxAND_REVERSE:// src AND (NOT dst)
1659 case wxAND: // src AND dst
1660 case wxAND_INVERT: // (NOT src) AND dst
1661 case wxNO_OP: // dst
1662 case wxNOR: // (NOT src) AND (NOT dst)
1663 case wxEQUIV: // (NOT src) XOR dst
1664 case wxOR_INVERT: // (NOT src) OR dst
1665 case wxNAND: // (NOT src) OR (NOT dst)
1666 case wxOR: // src OR dst
1667 case wxSET: // 1
1668 // case wxSRC_OR: // source _bitmap_ OR destination
1669 // case wxSRC_AND: // source _bitmap_ AND destination
1670 break ;
1671 }
1672 ::PenMode( mode ) ;
1673 OSStatus status = noErr ;
1674 Fixed atsuSize = IntToFixed( int(m_scaleY * font->m_macFontSize) ) ;
1675 Style qdStyle = font->m_macFontStyle ;
1676 ATSUFontID atsuFont = font->m_macATSUFontID ;
1677 status = ::ATSUCreateStyle(&(ATSUStyle)m_macATSUIStyle) ;
1678 wxASSERT_MSG( status == noErr , "couldn't create ATSU style" ) ;
1679 ATSUAttributeTag atsuTags[] =
1680 {
1681 kATSUFontTag ,
1682 kATSUSizeTag ,
1683 // kATSUColorTag ,
1684 // kATSUBaselineClassTag ,
1685 kATSUVerticalCharacterTag,
1686 kATSUQDBoldfaceTag ,
1687 kATSUQDItalicTag ,
1688 kATSUQDUnderlineTag ,
1689 kATSUQDCondensedTag ,
1690 kATSUQDExtendedTag ,
1691 } ;
1692 ByteCount atsuSizes[sizeof(atsuTags)/sizeof(ATSUAttributeTag)] =
1693 {
1694 sizeof( ATSUFontID ) ,
1695 sizeof( Fixed ) ,
1696 // sizeof( RGBColor ) ,
1697 // sizeof( BslnBaselineClass ) ,
1698 sizeof( ATSUVerticalCharacterType),
1699 sizeof( Boolean ) ,
1700 sizeof( Boolean ) ,
1701 sizeof( Boolean ) ,
1702 sizeof( Boolean ) ,
1703 sizeof( Boolean ) ,
1704 } ;
1705 Boolean kTrue = true ;
1706 Boolean kFalse = false ;
1707 BslnBaselineClass kBaselineDefault = kBSLNHangingBaseline ;
1708 ATSUVerticalCharacterType kHorizontal = kATSUStronglyHorizontal;
1709 ATSUAttributeValuePtr atsuValues[sizeof(atsuTags)/sizeof(ATSUAttributeTag)] =
1710 {
1711 &atsuFont ,
1712 &atsuSize ,
1713 // &MAC_WXCOLORREF( m_textForegroundColour.GetPixel() ) ,
1714 // &kBaselineDefault ,
1715 &kHorizontal,
1716 (qdStyle & bold) ? &kTrue : &kFalse ,
1717 (qdStyle & italic) ? &kTrue : &kFalse ,
1718 (qdStyle & underline) ? &kTrue : &kFalse ,
1719 (qdStyle & condense) ? &kTrue : &kFalse ,
1720 (qdStyle & extend) ? &kTrue : &kFalse ,
1721 } ;
1722 status = ::ATSUSetAttributes((ATSUStyle)m_macATSUIStyle, sizeof(atsuTags)/sizeof(ATSUAttributeTag),
1723 atsuTags, atsuSizes, atsuValues);
1724 wxASSERT_MSG( status == noErr , "couldn't set create ATSU style" ) ;
1725 }
1726 Pattern gHatchPatterns[] =
1727 {
1728 { { 0xFF , 0xFF , 0xFF , 0xFF , 0xFF , 0xFF , 0xFF , 0xFF } },
1729 { { 0x01 , 0x02 , 0x04 , 0x08 , 0x10 , 0x20 , 0x40 , 0x80 } },
1730 { { 0x80 , 0x40 , 0x20 , 0x10 , 0x08 , 0x04 , 0x02 , 0x01 } },
1731 { { 0x10 , 0x10 , 0x10 , 0xFF , 0x10 , 0x10 , 0x10 , 0x10 } },
1732 { { 0x00 , 0x00 , 0x00 , 0xFF , 0x00 , 0x00 , 0x00 , 0x00 } },
1733 { { 0x10 , 0x10 , 0x10 , 0x10 , 0x10 , 0x10 , 0x10 , 0x10 } },
1734 { { 0x81 , 0x42 , 0x24 , 0x18 , 0x18 , 0x24 , 0x42 , 0x81 } }
1735 } ;
1736 static void wxMacGetHatchPattern(int hatchStyle, Pattern *pattern)
1737 {
1738 int theIndex = 1 ;
1739 switch(hatchStyle)
1740 {
1741 case wxBDIAGONAL_HATCH:
1742 theIndex = 2;
1743 break;
1744 case wxFDIAGONAL_HATCH:
1745 theIndex = 3;
1746 break;
1747 case wxCROSS_HATCH:
1748 theIndex = 4;
1749 break;
1750 case wxHORIZONTAL_HATCH:
1751 theIndex = 5;
1752 break;
1753 case wxVERTICAL_HATCH:
1754 theIndex = 6;
1755 break;
1756 case wxCROSSDIAG_HATCH:
1757 theIndex = 7;
1758 break;
1759 default:
1760 theIndex = 1; // solid pattern
1761 break;
1762 }
1763 *pattern = gHatchPatterns[theIndex-1] ;
1764 }
1765 void wxDC::MacInstallPen() const
1766 {
1767 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1768 Pattern blackColor;
1769 // if ( m_macPenInstalled )
1770 // return ;
1771 RGBColor forecolor = MAC_WXCOLORREF( m_pen.GetColour().GetPixel());
1772 RGBColor backcolor = MAC_WXCOLORREF( m_backgroundBrush.GetColour().GetPixel());
1773 ::RGBForeColor( &forecolor );
1774 ::RGBBackColor( &backcolor );
1775 ::PenNormal() ;
1776 int penWidth = m_pen.GetWidth() * (int) m_scaleX ;
1777 // null means only one pixel, at whatever resolution
1778 if ( penWidth == 0 )
1779 penWidth = 1 ;
1780 ::PenSize(penWidth, penWidth);
1781 int penStyle = m_pen.GetStyle();
1782 if (penStyle == wxSOLID)
1783 {
1784 ::PenPat(GetQDGlobalsBlack(&blackColor));
1785 }
1786 else if (IS_HATCH(penStyle))
1787 {
1788 Pattern pat ;
1789 wxMacGetHatchPattern(penStyle, &pat);
1790 ::PenPat(&pat);
1791 }
1792 else
1793 {
1794 Pattern pat = *GetQDGlobalsBlack(&blackColor) ;
1795 switch( penStyle )
1796 {
1797 case wxDOT :
1798 for ( int i = 0 ; i < 8 ; ++i )
1799 {
1800 pat.pat[i] = 0xCC ;
1801 }
1802 break ;
1803 case wxLONG_DASH :
1804 for ( int i = 0 ; i < 8 ; ++i )
1805 {
1806 pat.pat[i] = 0xFE ;
1807 }
1808 break ;
1809 case wxSHORT_DASH :
1810 for ( int i = 0 ; i < 8 ; ++i )
1811 {
1812 pat.pat[i] = 0xEE ;
1813 }
1814 break ;
1815 case wxDOT_DASH :
1816 for ( int i = 0 ; i < 8 ; ++i )
1817 {
1818 pat.pat[i] = 0x6F ;
1819 }
1820 break ;
1821 case wxUSER_DASH :
1822 {
1823 wxDash* dash ;
1824 m_pen.GetDashes(&dash) ;
1825 // right now we don't allocate larger pixmaps
1826 // int number =
1827 m_pen.GetDashes(&dash) ;
1828 for ( int i = 0 ; i < 8 ; ++i )
1829 {
1830 pat.pat[i] = dash[0] ;
1831 }
1832 }
1833 break ;
1834 }
1835 ::PenPat(&pat);
1836 }
1837 short mode = patCopy ;
1838 // todo :
1839 switch( m_logicalFunction )
1840 {
1841 case wxCOPY: // only foreground color, leave background (thus not patCopy)
1842 mode = patOr ;
1843 break ;
1844 case wxINVERT: // NOT dst
1845 // ::PenPat(GetQDGlobalsBlack(&blackColor));
1846 mode = patXor ;
1847 break ;
1848 case wxXOR: // src XOR dst
1849 mode = patXor ;
1850 break ;
1851 case wxOR_REVERSE: // src OR (NOT dst)
1852 mode = notPatOr ;
1853 break ;
1854 case wxSRC_INVERT: // (NOT src)
1855 mode = notPatCopy ;
1856 break ;
1857 // unsupported TODO
1858 case wxCLEAR: // 0
1859 case wxAND_REVERSE:// src AND (NOT dst)
1860 case wxAND: // src AND dst
1861 case wxAND_INVERT: // (NOT src) AND dst
1862 case wxNO_OP: // dst
1863 case wxNOR: // (NOT src) AND (NOT dst)
1864 case wxEQUIV: // (NOT src) XOR dst
1865 case wxOR_INVERT: // (NOT src) OR dst
1866 case wxNAND: // (NOT src) OR (NOT dst)
1867 case wxOR: // src OR dst
1868 case wxSET: // 1
1869 // case wxSRC_OR: // source _bitmap_ OR destination
1870 // case wxSRC_AND: // source _bitmap_ AND destination
1871 break ;
1872 }
1873 ::PenMode( mode ) ;
1874 m_macPenInstalled = true ;
1875 m_macBrushInstalled = false ;
1876 m_macFontInstalled = false ;
1877 }
1878 void wxDC::MacSetupBackgroundForCurrentPort(const wxBrush& background )
1879 {
1880 Pattern whiteColor ;
1881 switch( background.MacGetBrushKind() )
1882 {
1883 case kwxMacBrushTheme :
1884 {
1885 ::SetThemeBackground( background.GetMacTheme() , wxDisplayDepth() , true ) ;
1886 break ;
1887 }
1888 case kwxMacBrushThemeBackground :
1889 {
1890 Rect extent ;
1891 ThemeBackgroundKind bg = background.GetMacThemeBackground( &extent ) ;
1892 ::ApplyThemeBackground( bg , &extent ,kThemeStateActive , wxDisplayDepth() , true ) ;
1893 break ;
1894 }
1895 case kwxMacBrushColour :
1896 {
1897 ::RGBBackColor( &MAC_WXCOLORREF( background.GetColour().GetPixel()) );
1898 int brushStyle = background.GetStyle();
1899 if (brushStyle == wxSOLID)
1900 ::BackPat(GetQDGlobalsWhite(&whiteColor));
1901 else if (IS_HATCH(brushStyle))
1902 {
1903 Pattern pat ;
1904 wxMacGetHatchPattern(brushStyle, &pat);
1905 ::BackPat(&pat);
1906 }
1907 else
1908 {
1909 ::BackPat(GetQDGlobalsWhite(&whiteColor));
1910 }
1911 break ;
1912 }
1913 }
1914 }
1915 void wxDC::MacInstallBrush() const
1916 {
1917 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1918 Pattern blackColor ;
1919 // if ( m_macBrushInstalled )
1920 // return ;
1921 // foreground
1922 bool backgroundTransparent = (GetBackgroundMode() == wxTRANSPARENT) ;
1923 ::RGBForeColor( &MAC_WXCOLORREF( m_brush.GetColour().GetPixel()) );
1924 ::RGBBackColor( &MAC_WXCOLORREF( m_backgroundBrush.GetColour().GetPixel()) );
1925 int brushStyle = m_brush.GetStyle();
1926 if (brushStyle == wxSOLID)
1927 {
1928 ::PenPat(GetQDGlobalsBlack(&blackColor));
1929 }
1930 else if (IS_HATCH(brushStyle))
1931 {
1932 Pattern pat ;
1933 wxMacGetHatchPattern(brushStyle, &pat);
1934 ::PenPat(&pat);
1935 }
1936 else if ( m_brush.GetStyle() == wxSTIPPLE || m_brush.GetStyle() == wxSTIPPLE_MASK_OPAQUE )
1937 {
1938 // we force this in order to be compliant with wxMSW
1939 backgroundTransparent = false ;
1940 // for these the text fore (and back for MASK_OPAQUE) colors are used
1941 wxBitmap* bitmap = m_brush.GetStipple() ;
1942 int width = bitmap->GetWidth() ;
1943 int height = bitmap->GetHeight() ;
1944 GWorldPtr gw = NULL ;
1945 if ( m_brush.GetStyle() == wxSTIPPLE )
1946 gw = MAC_WXHBITMAP(bitmap->GetHBITMAP()) ;
1947 else
1948 gw = MAC_WXHBITMAP(bitmap->GetMask()->GetMaskBitmap()) ;
1949 PixMapHandle gwpixmaphandle = GetGWorldPixMap( gw ) ;
1950 LockPixels( gwpixmaphandle ) ;
1951 bool isMonochrome = !IsPortColor( gw ) ;
1952 if ( !isMonochrome )
1953 {
1954 if ( (**gwpixmaphandle).pixelSize == 1 )
1955 isMonochrome = true ;
1956 }
1957 if ( isMonochrome && width == 8 && height == 8 )
1958 {
1959 ::RGBForeColor( &MAC_WXCOLORREF( m_textForegroundColour.GetPixel()) );
1960 ::RGBForeColor( &MAC_WXCOLORREF( m_textBackgroundColour.GetPixel()) );
1961 BitMap* gwbitmap = (BitMap*) *gwpixmaphandle ; // since the color depth is 1 it is a BitMap
1962 UInt8 *gwbits = (UInt8*) gwbitmap->baseAddr ;
1963 int alignment = gwbitmap->rowBytes & 0x7FFF ;
1964 Pattern pat ;
1965 for ( int i = 0 ; i < 8 ; ++i )
1966 {
1967 pat.pat[i] = gwbits[i*alignment+0] ;
1968 }
1969 UnlockPixels( GetGWorldPixMap( gw ) ) ;
1970 ::PenPat( &pat ) ;
1971 }
1972 else
1973 {
1974 // this will be the code to handle power of 2 patterns, we will have to arrive at a nice
1975 // caching scheme before putting this into production
1976 Handle image;
1977 long imageSize;
1978 PixPatHandle pixpat = NewPixPat() ;
1979 CopyPixMap(gwpixmaphandle, (**pixpat).patMap);
1980 imageSize = GetPixRowBytes((**pixpat).patMap) *
1981 ((**(**pixpat).patMap).bounds.bottom -
1982 (**(**pixpat).patMap).bounds.top);
1983 PtrToHand( (**gwpixmaphandle).baseAddr, &image, imageSize );
1984 (**pixpat).patData = image;
1985 if ( isMonochrome )
1986 {
1987 CTabHandle ctable = ((**((**pixpat).patMap)).pmTable) ;
1988 ColorSpecPtr ctspec = (ColorSpecPtr) &(**ctable).ctTable ;
1989 if ( ctspec[0].rgb.red == 0x0000 )
1990 {
1991 ctspec[1].rgb = MAC_WXCOLORREF( m_textBackgroundColour.GetPixel()) ;
1992 ctspec[0].rgb = MAC_WXCOLORREF( m_textForegroundColour.GetPixel()) ;
1993 }
1994 else
1995 {
1996 ctspec[0].rgb = MAC_WXCOLORREF( m_textBackgroundColour.GetPixel()) ;
1997 ctspec[1].rgb = MAC_WXCOLORREF( m_textForegroundColour.GetPixel()) ;
1998 }
1999 ::CTabChanged( ctable ) ;
2000 }
2001 ::PenPixPat(pixpat);
2002 m_macForegroundPixMap = pixpat ;
2003 }
2004 UnlockPixels( gwpixmaphandle ) ;
2005 }
2006 else
2007 {
2008 ::PenPat(GetQDGlobalsBlack(&blackColor));
2009 }
2010 short mode = patCopy ;
2011 switch( m_logicalFunction )
2012 {
2013 case wxCOPY: // src
2014 if ( backgroundTransparent )
2015 mode = patOr ;
2016 else
2017 mode = patCopy ;
2018 break ;
2019 case wxINVERT: // NOT dst
2020 if ( !backgroundTransparent )
2021 {
2022 ::PenPat(GetQDGlobalsBlack(&blackColor));
2023 }
2024 mode = patXor ;
2025 break ;
2026 case wxXOR: // src XOR dst
2027 mode = patXor ;
2028 break ;
2029 case wxOR_REVERSE: // src OR (NOT dst)
2030 mode = notPatOr ;
2031 break ;
2032 case wxSRC_INVERT: // (NOT src)
2033 mode = notPatCopy ;
2034 break ;
2035 // unsupported TODO
2036 case wxCLEAR: // 0
2037 case wxAND_REVERSE:// src AND (NOT dst)
2038 case wxAND: // src AND dst
2039 case wxAND_INVERT: // (NOT src) AND dst
2040 case wxNO_OP: // dst
2041 case wxNOR: // (NOT src) AND (NOT dst)
2042 case wxEQUIV: // (NOT src) XOR dst
2043 case wxOR_INVERT: // (NOT src) OR dst
2044 case wxNAND: // (NOT src) OR (NOT dst)
2045 case wxOR: // src OR dst
2046 case wxSET: // 1
2047 // case wxSRC_OR: // source _bitmap_ OR destination
2048 // case wxSRC_AND: // source _bitmap_ AND destination
2049 break ;
2050 }
2051 ::PenMode( mode ) ;
2052 m_macBrushInstalled = true ;
2053 m_macPenInstalled = false ;
2054 m_macFontInstalled = false ;
2055 }
2056 // ---------------------------------------------------------------------------
2057 // coordinates transformations
2058 // ---------------------------------------------------------------------------
2059
2060 wxCoord wxDCBase::DeviceToLogicalX(wxCoord x) const
2061 {
2062 return ((wxDC *)this)->XDEV2LOG(x);
2063 }
2064 wxCoord wxDCBase::DeviceToLogicalY(wxCoord y) const
2065 {
2066 return ((wxDC *)this)->YDEV2LOG(y);
2067 }
2068 wxCoord wxDCBase::DeviceToLogicalXRel(wxCoord x) const
2069 {
2070 return ((wxDC *)this)->XDEV2LOGREL(x);
2071 }
2072 wxCoord wxDCBase::DeviceToLogicalYRel(wxCoord y) const
2073 {
2074 return ((wxDC *)this)->YDEV2LOGREL(y);
2075 }
2076 wxCoord wxDCBase::LogicalToDeviceX(wxCoord x) const
2077 {
2078 return ((wxDC *)this)->XLOG2DEV(x);
2079 }
2080 wxCoord wxDCBase::LogicalToDeviceY(wxCoord y) const
2081 {
2082 return ((wxDC *)this)->YLOG2DEV(y);
2083 }
2084 wxCoord wxDCBase::LogicalToDeviceXRel(wxCoord x) const
2085 {
2086 return ((wxDC *)this)->XLOG2DEVREL(x);
2087 }
2088 wxCoord wxDCBase::LogicalToDeviceYRel(wxCoord y) const
2089 {
2090 return ((wxDC *)this)->YLOG2DEVREL(y);
2091 }