1 /////////////////////////////////////////////////////////////////////////////
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dc.h"
18 #include "wx/mac/uma.h"
19 #include "wx/dcmemory.h"
20 #include "wx/region.h"
30 #include "wx/mac/private.h"
31 #include "ATSUnicode.h"
32 #include "TextCommon.h"
33 #include "TextEncodingConverter.h"
35 #if !USE_SHARED_LIBRARY
36 IMPLEMENT_ABSTRACT_CLASS(wxDC
, wxObject
)
39 //-----------------------------------------------------------------------------
41 //-----------------------------------------------------------------------------
43 #define mm2inches 0.0393700787402
44 #define inches2mm 25.4
45 #define mm2twips 56.6929133859
46 #define twips2mm 0.0176388888889
47 #define mm2pt 2.83464566929
48 #define pt2mm 0.352777777778
50 const double M_PI
= 3.14159265358979 ;
52 const double RAD2DEG
= 180.0 / M_PI
;
53 const short kEmulatedMode
= -1 ;
54 const short kUnsupportedMode
= -2 ;
56 wxMacPortSetter::wxMacPortSetter( const wxDC
* dc
) :
57 m_ph( (GrafPtr
) dc
->m_macPort
)
59 wxASSERT( dc
->Ok() ) ;
61 dc
->MacSetupPort(&m_ph
) ;
64 wxMacPortSetter::~wxMacPortSetter()
66 m_dc
->MacCleanupPort(&m_ph
) ;
69 wxMacWindowClipper::wxMacWindowClipper( const wxWindow
* win
)
71 m_formerClip
= NewRgn() ;
72 m_newClip
= NewRgn() ;
73 GetClip( m_formerClip
) ;
77 RgnHandle insidergn
= NewRgn() ;
79 wxWindow
*parent
= win
->GetParent() ;
80 parent
->MacWindowToRootWindow( &x
,&y
) ;
82 wxSize size
= parent
->GetSize() ;
83 SetRectRgn( insidergn
, parent
->MacGetLeftBorderSize() , parent
->MacGetTopBorderSize() ,
84 size
.x
- parent
->MacGetLeftBorderSize() - parent
->MacGetRightBorderSize(),
85 size
.y
- parent
->MacGetTopBorderSize() - parent
->MacGetBottomBorderSize()) ;
87 CopyRgn( (RgnHandle
) parent
->MacGetVisibleRegion(false).GetWXHRGN() , m_newClip
) ;
88 SectRgn( m_newClip
, insidergn
, m_newClip
) ;
89 OffsetRgn( m_newClip
, x
, y
) ;
90 SetClip( m_newClip
) ;
91 DisposeRgn( insidergn
) ;
95 wxMacWindowClipper::~wxMacWindowClipper()
97 SetClip( m_formerClip
) ;
98 DisposeRgn( m_newClip
) ;
99 DisposeRgn( m_formerClip
) ;
102 //-----------------------------------------------------------------------------
104 //-----------------------------------------------------------------------------
106 static inline double dmin(double a
, double b
) { return a
< b
? a
: b
; }
107 static inline double dmax(double a
, double b
) { return a
> b
? a
: b
; }
108 static inline double DegToRad(double deg
) { return (deg
* M_PI
) / 180.0; }
110 //-----------------------------------------------------------------------------
112 //-----------------------------------------------------------------------------
114 // this function emulates all wx colour manipulations, used to verify the implementation
115 // by setting the mode in the blitting functions to kEmulatedMode
117 void wxMacCalculateColour( int logical_func
, const RGBColor
&srcColor
, RGBColor
&dstColor
) ;
118 void wxMacCalculateColour( int logical_func
, const RGBColor
&srcColor
, RGBColor
&dstColor
)
120 switch ( logical_func
)
122 case wxAND
: // src AND dst
123 dstColor
.red
= dstColor
.red
& srcColor
.red
;
124 dstColor
.green
= dstColor
.green
& srcColor
.green
;
125 dstColor
.blue
= dstColor
.blue
& srcColor
.blue
;
127 case wxAND_INVERT
: // (NOT src) AND dst
128 dstColor
.red
= dstColor
.red
& ~srcColor
.red
;
129 dstColor
.green
= dstColor
.green
& ~srcColor
.green
;
130 dstColor
.blue
= dstColor
.blue
& ~srcColor
.blue
;
132 case wxAND_REVERSE
:// src AND (NOT dst)
133 dstColor
.red
= ~dstColor
.red
& srcColor
.red
;
134 dstColor
.green
= ~dstColor
.green
& srcColor
.green
;
135 dstColor
.blue
= ~dstColor
.blue
& srcColor
.blue
;
143 dstColor
.red
= srcColor
.red
;
144 dstColor
.green
= srcColor
.green
;
145 dstColor
.blue
= srcColor
.blue
;
147 case wxEQUIV
: // (NOT src) XOR dst
148 dstColor
.red
= dstColor
.red
^ ~srcColor
.red
;
149 dstColor
.green
= dstColor
.green
^ ~srcColor
.green
;
150 dstColor
.blue
= dstColor
.blue
^ ~srcColor
.blue
;
152 case wxINVERT
: // NOT dst
153 dstColor
.red
= ~dstColor
.red
;
154 dstColor
.green
= ~dstColor
.green
;
155 dstColor
.blue
= ~dstColor
.blue
;
157 case wxNAND
: // (NOT src) OR (NOT dst)
158 dstColor
.red
= ~dstColor
.red
| ~srcColor
.red
;
159 dstColor
.green
= ~dstColor
.green
| ~srcColor
.green
;
160 dstColor
.blue
= ~dstColor
.blue
| ~srcColor
.blue
;
162 case wxNOR
: // (NOT src) AND (NOT dst)
163 dstColor
.red
= ~dstColor
.red
& ~srcColor
.red
;
164 dstColor
.green
= ~dstColor
.green
& ~srcColor
.green
;
165 dstColor
.blue
= ~dstColor
.blue
& ~srcColor
.blue
;
169 case wxOR
: // src OR dst
170 dstColor
.red
= dstColor
.red
| srcColor
.red
;
171 dstColor
.green
= dstColor
.green
| srcColor
.green
;
172 dstColor
.blue
= dstColor
.blue
| srcColor
.blue
;
174 case wxOR_INVERT
: // (NOT src) OR dst
175 dstColor
.red
= dstColor
.red
| ~srcColor
.red
;
176 dstColor
.green
= dstColor
.green
| ~srcColor
.green
;
177 dstColor
.blue
= dstColor
.blue
| ~srcColor
.blue
;
179 case wxOR_REVERSE
: // src OR (NOT dst)
180 dstColor
.red
= ~dstColor
.red
| srcColor
.red
;
181 dstColor
.green
= ~dstColor
.green
| srcColor
.green
;
182 dstColor
.blue
= ~dstColor
.blue
| srcColor
.blue
;
185 dstColor
.red
= 0xFFFF ;
186 dstColor
.green
= 0xFFFF ;
187 dstColor
.blue
= 0xFFFF ;
189 case wxSRC_INVERT
: // (NOT src)
190 dstColor
.red
= ~srcColor
.red
;
191 dstColor
.green
= ~srcColor
.green
;
192 dstColor
.blue
= ~srcColor
.blue
;
194 case wxXOR
: // src XOR dst
195 dstColor
.red
= dstColor
.red
^ srcColor
.red
;
196 dstColor
.green
= dstColor
.green
^ srcColor
.green
;
197 dstColor
.blue
= dstColor
.blue
^ srcColor
.blue
;
208 m_mm_to_pix_x
= mm2pt
;
209 m_mm_to_pix_y
= mm2pt
;
211 m_internalDeviceOriginX
= 0;
212 m_internalDeviceOriginY
= 0;
213 m_externalDeviceOriginX
= 0;
214 m_externalDeviceOriginY
= 0;
216 m_logicalScaleX
= 1.0;
217 m_logicalScaleY
= 1.0;
223 m_needComputeScaleX
= FALSE
;
224 m_needComputeScaleY
= FALSE
;
230 m_macFontInstalled
= false ;
231 m_macBrushInstalled
= false ;
232 m_macPenInstalled
= false ;
234 m_macLocalOrigin
.x
= m_macLocalOrigin
.y
= 0 ;
235 m_macBoundaryClipRgn
= NewRgn() ;
236 m_macCurrentClipRgn
= NewRgn() ;
238 SetRectRgn( (RgnHandle
) m_macBoundaryClipRgn
, -32000 , -32000 , 32000 , 32000 ) ;
239 SetRectRgn( (RgnHandle
) m_macCurrentClipRgn
, -32000 , -32000 , 32000 , 32000 ) ;
241 m_pen
= *wxBLACK_PEN
;
242 m_font
= *wxNORMAL_FONT
;
243 m_brush
= *wxWHITE_BRUSH
;
244 m_macCurrentPortStateHelper
= NULL
;
245 m_macATSUIStyle
= NULL
;
246 m_macAliasWasEnabled
= false;
247 m_macForegroundPixMap
= NULL
;
248 m_macBackgroundPixMap
= NULL
;
253 DisposeRgn( (RgnHandle
) m_macBoundaryClipRgn
) ;
254 DisposeRgn( (RgnHandle
) m_macCurrentClipRgn
) ;
256 void wxDC::MacSetupPort(wxMacPortStateHelper
* help
) const
258 wxASSERT( m_macCurrentPortStateHelper
== NULL
) ;
259 m_macCurrentPortStateHelper
= help
;
260 SetClip( (RgnHandle
) m_macCurrentClipRgn
);
262 m_macFontInstalled
= false ;
263 m_macBrushInstalled
= false ;
264 m_macPenInstalled
= false ;
267 void wxDC::MacCleanupPort(wxMacPortStateHelper
* help
) const
269 wxASSERT( m_macCurrentPortStateHelper
== help
) ;
270 m_macCurrentPortStateHelper
= NULL
;
271 if( m_macATSUIStyle
)
273 ::ATSUDisposeStyle((ATSUStyle
)m_macATSUIStyle
);
274 m_macATSUIStyle
= NULL
;
276 if ( m_macAliasWasEnabled
)
278 SetAntiAliasedTextEnabled(m_macFormerAliasState
, m_macFormerAliasSize
);
279 m_macAliasWasEnabled
= false ;
281 if ( m_macForegroundPixMap
)
284 ::PenPat(GetQDGlobalsBlack(&blackColor
));
285 DisposePixPat( (PixPatHandle
) m_macForegroundPixMap
) ;
286 m_macForegroundPixMap
= NULL
;
288 if ( m_macBackgroundPixMap
)
291 ::BackPat(GetQDGlobalsWhite(&whiteColor
));
292 DisposePixPat( (PixPatHandle
) m_macBackgroundPixMap
) ;
293 m_macBackgroundPixMap
= NULL
;
297 void wxDC::DoDrawBitmap( const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool useMask
)
299 wxCHECK_RET( Ok(), wxT("invalid window dc") );
301 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
303 wxMacPortSetter
helper(this) ;
305 wxCoord xx
= XLOG2DEVMAC(x
);
306 wxCoord yy
= YLOG2DEVMAC(y
);
307 wxCoord w
= bmp
.GetWidth();
308 wxCoord h
= bmp
.GetHeight();
309 wxCoord ww
= XLOG2DEVREL(w
);
310 wxCoord hh
= YLOG2DEVREL(h
);
312 // Set up drawing mode
313 short mode
= (m_logicalFunction
== wxCOPY
? srcCopy
:
314 //m_logicalFunction == wxCLEAR ? WHITENESS :
315 //m_logicalFunction == wxSET ? BLACKNESS :
316 m_logicalFunction
== wxINVERT
? hilite
:
317 //m_logicalFunction == wxAND ? MERGECOPY :
318 m_logicalFunction
== wxOR
? srcOr
:
319 m_logicalFunction
== wxSRC_INVERT
? notSrcCopy
:
320 m_logicalFunction
== wxXOR
? srcXor
:
321 m_logicalFunction
== wxOR_REVERSE
? notSrcOr
:
322 //m_logicalFunction == wxAND_REVERSE ? SRCERASE :
323 //m_logicalFunction == wxSRC_OR ? srcOr :
324 //m_logicalFunction == wxSRC_AND ? SRCAND :
327 if ( bmp
.GetBitmapType() == kMacBitmapTypePict
) {
328 Rect bitmaprect
= { 0 , 0 , hh
, ww
};
329 ::OffsetRect( &bitmaprect
, xx
, yy
) ;
330 ::DrawPicture( (PicHandle
) bmp
.GetPict(), &bitmaprect
) ;
332 else if ( bmp
.GetBitmapType() == kMacBitmapTypeGrafWorld
)
334 GWorldPtr bmapworld
= MAC_WXHBITMAP( bmp
.GetHBITMAP() );
335 PixMapHandle bmappixels
;
337 // Set foreground and background colours (for bitmaps depth = 1)
338 if(bmp
.GetDepth() == 1)
340 RGBColor fore
= MAC_WXCOLORREF(m_textForegroundColour
.GetPixel());
341 RGBColor back
= MAC_WXCOLORREF(m_textBackgroundColour
.GetPixel());
347 RGBColor white
= { 0xFFFF, 0xFFFF,0xFFFF} ;
348 RGBColor black
= { 0,0,0} ;
349 RGBForeColor( &black
) ;
350 RGBBackColor( &white
) ;
353 bmappixels
= GetGWorldPixMap( bmapworld
) ;
355 wxCHECK_RET(LockPixels(bmappixels
),
356 wxT("DoDrawBitmap: Unable to lock pixels"));
358 Rect source
= { 0, 0, h
, w
};
359 Rect dest
= { yy
, xx
, yy
+ hh
, xx
+ ww
};
361 if ( useMask
&& bmp
.GetMask() )
363 if( LockPixels(GetGWorldPixMap(MAC_WXHBITMAP(bmp
.GetMask()->GetMaskBitmap()))))
367 GetPortBitMapForCopyBits(bmapworld
),
368 GetPortBitMapForCopyBits(MAC_WXHBITMAP(bmp
.GetMask()->GetMaskBitmap())),
369 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort
) ),
370 &source
, &source
, &dest
, mode
, NULL
372 UnlockPixels(GetGWorldPixMap(MAC_WXHBITMAP(bmp
.GetMask()->GetMaskBitmap())));
376 CopyBits( GetPortBitMapForCopyBits( bmapworld
),
377 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort
) ),
378 &source
, &dest
, mode
, NULL
) ;
380 UnlockPixels( bmappixels
) ;
382 else if ( bmp
.GetBitmapType() == kMacBitmapTypeIcon
)
384 Rect bitmaprect
= { 0 , 0 , bmp
.GetHeight(), bmp
.GetWidth() } ;
385 OffsetRect( &bitmaprect
, xx
, yy
) ;
386 PlotCIconHandle( &bitmaprect
, atNone
, ttNone
, MAC_WXHICON(bmp
.GetHICON()) ) ;
388 m_macPenInstalled
= false ;
389 m_macBrushInstalled
= false ;
390 m_macFontInstalled
= false ;
394 void wxDC::DoDrawIcon( const wxIcon
&icon
, wxCoord x
, wxCoord y
)
396 wxCHECK_RET(Ok(), wxT("Invalid dc wxDC::DoDrawIcon"));
398 wxCHECK_RET(icon
.Ok(), wxT("Invalid icon wxDC::DoDrawIcon"));
400 DoDrawBitmap( icon
, x
, y
, icon
.GetMask() != NULL
) ;
402 void wxDC::DoSetClippingRegion( wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
404 wxCHECK_RET(Ok(), wxT("wxDC::DoSetClippingRegion Invalid DC"));
405 wxCoord xx
, yy
, ww
, hh
;
409 ww
= XLOG2DEVREL(width
);
410 hh
= YLOG2DEVREL(height
);
412 SetRectRgn( (RgnHandle
) m_macCurrentClipRgn
, xx
, yy
, xx
+ ww
, yy
+ hh
) ;
413 SectRgn( (RgnHandle
) m_macCurrentClipRgn
, (RgnHandle
) m_macBoundaryClipRgn
, (RgnHandle
) m_macCurrentClipRgn
) ;
417 m_clipX1
= wxMax( m_clipX1
, xx
);
418 m_clipY1
= wxMax( m_clipY1
, yy
);
419 m_clipX2
= wxMin( m_clipX2
, (xx
+ ww
));
420 m_clipY2
= wxMin( m_clipY2
, (yy
+ hh
));
432 void wxDC::DoSetClippingRegionAsRegion( const wxRegion
®ion
)
434 wxCHECK_RET( Ok(), wxT("invalid window dc") ) ;
436 wxMacPortSetter
helper(this) ;
439 DestroyClippingRegion();
444 region
.GetBox( x
, y
, w
, h
);
445 wxCoord xx
, yy
, ww
, hh
;
452 // if we have a scaling that we cannot map onto native regions
453 // we must use the box
455 if ( ww
!= w
|| hh
!= h
)
457 wxDC::DoSetClippingRegion( x
, y
, w
, h
);
461 CopyRgn( (RgnHandle
) region
.GetWXHRGN() , (RgnHandle
) m_macCurrentClipRgn
) ;
462 if ( xx
!= x
|| yy
!= y
)
464 OffsetRgn( (RgnHandle
) m_macCurrentClipRgn
, xx
- x
, yy
- y
) ;
466 SectRgn( (RgnHandle
) m_macCurrentClipRgn
, (RgnHandle
) m_macBoundaryClipRgn
, (RgnHandle
) m_macCurrentClipRgn
) ;
469 m_clipX1
= wxMax( m_clipX1
, xx
);
470 m_clipY1
= wxMax( m_clipY1
, yy
);
471 m_clipX2
= wxMin( m_clipX2
, (xx
+ ww
));
472 m_clipY2
= wxMin( m_clipY2
, (yy
+ hh
));
486 void wxDC::DestroyClippingRegion()
488 wxMacPortSetter
helper(this) ;
489 CopyRgn( (RgnHandle
) m_macBoundaryClipRgn
, (RgnHandle
) m_macCurrentClipRgn
) ;
492 void wxDC::DoGetSize( int* width
, int* height
) const
494 *width
= m_maxX
-m_minX
;
495 *height
= m_maxY
-m_minY
;
497 void wxDC::DoGetSizeMM( int* width
, int* height
) const
502 *width
= long( double(w
) / (m_scaleX
*m_mm_to_pix_x
) );
503 *height
= long( double(h
) / (m_scaleY
*m_mm_to_pix_y
) );
505 void wxDC::SetTextForeground( const wxColour
&col
)
507 wxCHECK_RET(Ok(), wxT("Invalid DC"));
508 m_textForegroundColour
= col
;
509 m_macFontInstalled
= false ;
511 void wxDC::SetTextBackground( const wxColour
&col
)
513 wxCHECK_RET(Ok(), wxT("Invalid DC"));
514 m_textBackgroundColour
= col
;
515 m_macFontInstalled
= false ;
517 void wxDC::SetMapMode( int mode
)
522 SetLogicalScale( twips2mm
*m_mm_to_pix_x
, twips2mm
*m_mm_to_pix_y
);
525 SetLogicalScale( pt2mm
*m_mm_to_pix_x
, pt2mm
*m_mm_to_pix_y
);
528 SetLogicalScale( m_mm_to_pix_x
, m_mm_to_pix_y
);
531 SetLogicalScale( m_mm_to_pix_x
/10.0, m_mm_to_pix_y
/10.0 );
535 SetLogicalScale( 1.0, 1.0 );
538 if (mode
!= wxMM_TEXT
)
540 m_needComputeScaleX
= TRUE
;
541 m_needComputeScaleY
= TRUE
;
544 void wxDC::SetUserScale( double x
, double y
)
546 // allow negative ? -> no
549 ComputeScaleAndOrigin();
551 void wxDC::SetLogicalScale( double x
, double y
)
556 ComputeScaleAndOrigin();
558 void wxDC::SetLogicalOrigin( wxCoord x
, wxCoord y
)
560 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
561 m_logicalOriginY
= y
* m_signY
;
562 ComputeScaleAndOrigin();
564 void wxDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
566 m_externalDeviceOriginX
= x
;
567 m_externalDeviceOriginY
= y
;
568 ComputeScaleAndOrigin();
572 void wxDC::SetInternalDeviceOrigin( long x
, long y
)
574 m_internalDeviceOriginX
= x
;
575 m_internalDeviceOriginY
= y
;
576 ComputeScaleAndOrigin();
578 void wxDC::GetInternalDeviceOrigin( long *x
, long *y
)
580 if (x
) *x
= m_internalDeviceOriginX
;
581 if (y
) *y
= m_internalDeviceOriginY
;
584 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
586 m_signX
= (xLeftRight
? 1 : -1);
587 m_signY
= (yBottomUp
? -1 : 1);
588 ComputeScaleAndOrigin();
591 wxSize
wxDC::GetPPI() const
593 return wxSize(72, 72);
596 int wxDC::GetDepth() const
598 if ( IsPortColor( (CGrafPtr
) m_macPort
) )
600 return ( (**GetPortPixMap( (CGrafPtr
) m_macPort
)).pixelSize
) ;
605 void wxDC::ComputeScaleAndOrigin()
607 // CMB: copy scale to see if it changes
608 double origScaleX
= m_scaleX
;
609 double origScaleY
= m_scaleY
;
611 m_scaleX
= m_logicalScaleX
* m_userScaleX
;
612 m_scaleY
= m_logicalScaleY
* m_userScaleY
;
614 m_deviceOriginX
= m_internalDeviceOriginX
+ m_externalDeviceOriginX
;
615 m_deviceOriginY
= m_internalDeviceOriginY
+ m_externalDeviceOriginY
;
617 // CMB: if scale has changed call SetPen to recalulate the line width
618 if (m_scaleX
!= origScaleX
|| m_scaleY
!= origScaleY
)
620 // this is a bit artificial, but we need to force wxDC to think
621 // the pen has changed
622 wxPen
* pen
= & GetPen();
628 void wxDC::SetPalette( const wxPalette
& palette
)
632 void wxDC::SetBackgroundMode( int mode
)
634 m_backgroundMode
= mode
;
637 void wxDC::SetFont( const wxFont
&font
)
640 m_macFontInstalled
= false ;
643 void wxDC::SetPen( const wxPen
&pen
)
650 m_macPenInstalled
= false ;
653 void wxDC::SetBrush( const wxBrush
&brush
)
655 if (m_brush
== brush
)
659 m_macBrushInstalled
= false ;
662 void wxDC::SetBackground( const wxBrush
&brush
)
664 if (m_backgroundBrush
== brush
)
667 m_backgroundBrush
= brush
;
669 if (!m_backgroundBrush
.Ok())
671 m_macBrushInstalled
= false ;
674 void wxDC::SetLogicalFunction( int function
)
676 if (m_logicalFunction
== function
)
679 m_logicalFunction
= function
;
680 m_macFontInstalled
= false ;
681 m_macBrushInstalled
= false ;
682 m_macPenInstalled
= false ;
685 extern bool wxDoFloodFill(wxDC
*dc
, wxCoord x
, wxCoord y
,
686 const wxColour
& col
, int style
);
688 bool wxDC::DoFloodFill(wxCoord x
, wxCoord y
,
689 const wxColour
& col
, int style
)
691 return wxDoFloodFill(this, x
, y
, col
, style
);
694 bool wxDC::DoGetPixel( wxCoord x
, wxCoord y
, wxColour
*col
) const
696 wxCHECK_MSG( Ok(), false, wxT("wxDC::DoGetPixel Invalid DC") );
697 wxMacPortSetter
helper(this) ;
701 GetCPixel( XLOG2DEVMAC(x
), YLOG2DEVMAC(y
), &colour
);
703 // Convert from Mac colour to wx
704 col
->Set( colour
.red
>> 8,
711 void wxDC::DoDrawLine( wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
713 wxCHECK_RET(Ok(), wxT("Invalid DC"));
715 wxMacPortSetter
helper(this) ;
717 if (m_pen
.GetStyle() != wxTRANSPARENT
)
720 wxCoord offset
= ( (m_pen
.GetWidth() == 0 ? 1 :
721 m_pen
.GetWidth() ) * (wxCoord
)m_scaleX
- 1) / 2;
723 wxCoord xx1
= XLOG2DEVMAC(x1
) - offset
;
724 wxCoord yy1
= YLOG2DEVMAC(y1
) - offset
;
725 wxCoord xx2
= XLOG2DEVMAC(x2
) - offset
;
726 wxCoord yy2
= YLOG2DEVMAC(y2
) - offset
;
728 if ((m_pen
.GetCap() == wxCAP_ROUND
) &&
729 (m_pen
.GetWidth() <= 1))
731 // Implement LAST_NOT for MAC at least for
732 // orthogonal lines. RR.
754 void wxDC::DoCrossHair( wxCoord x
, wxCoord y
)
756 wxCHECK_RET( Ok(), wxT("wxDC::DoCrossHair Invalid window dc") );
758 if (m_pen
.GetStyle() != wxTRANSPARENT
)
763 wxCoord xx
= XLOG2DEVMAC(x
);
764 wxCoord yy
= YLOG2DEVMAC(y
);
767 ::MoveTo( XLOG2DEVMAC(0), yy
);
768 ::LineTo( XLOG2DEVMAC(w
), yy
);
769 ::MoveTo( xx
, YLOG2DEVMAC(0) );
770 ::LineTo( xx
, YLOG2DEVMAC(h
) );
772 CalcBoundingBox(x
, y
);
773 CalcBoundingBox(x
+w
, y
+h
);
779 * To draw arcs properly the angles need to be converted from the WX style:
780 * Angles start on the +ve X axis and go anti-clockwise (As you would draw on
781 * a normal axis on paper).
784 * Angles start on the +ve y axis and go clockwise.
785 * To achive this I work out which quadrant the angle lies in then map this to
786 * the equivalent quadrant on the Mac. (Sin and Cos values reveal which
787 * quadrant you are in).
789 static double wxConvertWXangleToMACangle(double angle
)
793 sin_a
= sin(angle
/ RAD2DEG
);
794 cos_a
= cos(angle
/ RAD2DEG
);
796 if( (sin_a
>= 0.0) && (cos_a
>= 0.0) ) {
797 angle
= acos(sin_a
) * RAD2DEG
;
799 else if( (sin_a
>= 0.0) && (cos_a
<= 0.0) ) {
801 angle
= acos(sin_a
) * RAD2DEG
+ 180;
803 else if( (sin_a
<= 0.0) && (cos_a
>= 0.0) ) {
804 angle
= acos(sin_a
) * RAD2DEG
+ 180;
806 else if( (sin_a
< 0.0) && (cos_a
< 0.0) ) {
808 angle
= acos(sin_a
) * RAD2DEG
+ 180;
813 void wxDC::DoDrawArc( wxCoord x1
, wxCoord y1
,
814 wxCoord x2
, wxCoord y2
,
815 wxCoord xc
, wxCoord yc
)
817 wxCHECK_RET(Ok(), wxT("wxDC::DoDrawArc Invalid DC"));
819 wxCoord xx1
= XLOG2DEVMAC(x1
);
820 wxCoord yy1
= YLOG2DEVMAC(y1
);
821 wxCoord xx2
= XLOG2DEVMAC(x2
);
822 wxCoord yy2
= YLOG2DEVMAC(y2
);
823 wxCoord xxc
= XLOG2DEVMAC(xc
);
824 wxCoord yyc
= YLOG2DEVMAC(yc
);
825 double dx
= xx1
- xxc
;
826 double dy
= yy1
- yyc
;
827 double radius
= sqrt((double)(dx
*dx
+dy
*dy
));
828 wxCoord rad
= (wxCoord
)radius
;
829 double radius1
, radius2
;
831 if (xx1
== xx2
&& yy1
== yy2
)
836 else if (radius
== 0.0)
838 radius1
= radius2
= 0.0;
842 radius1
= (xx1
- xxc
== 0) ?
843 (yy1
- yyc
< 0) ? 90.0 : -90.0 :
844 -atan2(double(yy1
-yyc
), double(xx1
-xxc
)) * RAD2DEG
;
845 radius2
= (xx2
- xxc
== 0) ?
846 (yy2
- yyc
< 0) ? 90.0 : -90.0 :
847 -atan2(double(yy2
-yyc
), double(xx2
-xxc
)) * RAD2DEG
;
849 wxCoord alpha2
= wxCoord(radius2
- radius1
);
850 wxCoord alpha1
= wxCoord(wxConvertWXangleToMACangle(radius1
));
851 if( (xx1
> xx2
) || (yy1
> yy2
) ) {
855 Rect r
= { yyc
- rad
, xxc
- rad
, yyc
+ rad
, xxc
+ rad
};
857 if(m_brush
.GetStyle() != wxTRANSPARENT
) {
859 PaintArc(&r
, alpha1
, alpha2
);
861 if(m_pen
.GetStyle() != wxTRANSPARENT
) {
863 FrameArc(&r
, alpha1
, alpha2
);
867 void wxDC::DoDrawEllipticArc( wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
868 double sa
, double ea
)
870 wxCHECK_RET(Ok(), wxT("wxDC::DoDrawEllepticArc Invalid DC"));
873 double angle
= sa
- ea
; // Order important Mac in opposite direction to wx
875 wxCoord xx
= XLOG2DEVMAC(x
);
876 wxCoord yy
= YLOG2DEVMAC(y
);
877 wxCoord ww
= m_signX
* XLOG2DEVREL(w
);
878 wxCoord hh
= m_signY
* YLOG2DEVREL(h
);
880 // handle -ve width and/or height
881 if (ww
< 0) { ww
= -ww
; xx
= xx
- ww
; }
882 if (hh
< 0) { hh
= -hh
; yy
= yy
- hh
; }
884 sa
= wxConvertWXangleToMACangle(sa
);
891 if(m_brush
.GetStyle() != wxTRANSPARENT
) {
893 PaintArc(&r
, (short)sa
, (short)angle
);
895 if(m_pen
.GetStyle() != wxTRANSPARENT
) {
897 FrameArc(&r
, (short)sa
, (short)angle
);
901 void wxDC::DoDrawPoint( wxCoord x
, wxCoord y
)
903 wxCHECK_RET(Ok(), wxT("Invalid DC"));
905 wxMacPortSetter
helper(this) ;
907 if (m_pen
.GetStyle() != wxTRANSPARENT
)
909 wxCoord xx1
= XLOG2DEVMAC(x
);
910 wxCoord yy1
= YLOG2DEVMAC(y
);
911 RGBColor pencolor
= MAC_WXCOLORREF( m_pen
.GetColour().GetPixel());
912 ::SetCPixel( xx1
,yy1
,&pencolor
) ;
913 CalcBoundingBox(x
, y
);
917 void wxDC::DoDrawLines(int n
, wxPoint points
[],
918 wxCoord xoffset
, wxCoord yoffset
)
920 wxCHECK_RET(Ok(), wxT("Invalid DC"));
921 wxMacPortSetter
helper(this) ;
923 if (m_pen
.GetStyle() == wxTRANSPARENT
)
928 wxCoord offset
= ( (m_pen
.GetWidth() == 0 ? 1 :
929 m_pen
.GetWidth() ) * (wxCoord
)m_scaleX
- 1) / 2 ;
931 wxCoord x1
, x2
, y1
, y2
;
932 x1
= XLOG2DEVMAC(points
[0].x
+ xoffset
);
933 y1
= YLOG2DEVMAC(points
[0].y
+ yoffset
);
934 ::MoveTo(x1
- offset
, y1
- offset
);
936 for (int i
= 0; i
< n
-1; i
++)
938 x2
= XLOG2DEVMAC(points
[i
+1].x
+ xoffset
);
939 y2
= YLOG2DEVMAC(points
[i
+1].y
+ yoffset
);
940 ::LineTo( x2
- offset
, y2
- offset
);
944 void wxDC::DoDrawPolygon(int n
, wxPoint points
[],
945 wxCoord xoffset
, wxCoord yoffset
,
948 wxCHECK_RET(Ok(), wxT("Invalid DC"));
949 wxMacPortSetter
helper(this) ;
951 wxCoord x1
, x2
, y1
, y2
;
953 if ( m_brush
.GetStyle() == wxTRANSPARENT
&& m_pen
.GetStyle() == wxTRANSPARENT
)
956 PolyHandle polygon
= OpenPoly();
958 x1
= XLOG2DEVMAC(points
[0].x
+ xoffset
);
959 y1
= YLOG2DEVMAC(points
[0].y
+ yoffset
);
962 for (int i
= 1; i
< n
; i
++)
964 x2
= XLOG2DEVMAC(points
[i
].x
+ xoffset
);
965 y2
= YLOG2DEVMAC(points
[i
].y
+ yoffset
);
969 // close the polyline if necessary
970 if ( x1
!= x2
|| y1
!= y2
)
977 if (m_brush
.GetStyle() != wxTRANSPARENT
)
981 ::PaintPoly( polygon
);
985 if (m_pen
.GetStyle() != wxTRANSPARENT
)
989 ::FramePoly( polygon
) ;
995 void wxDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
997 wxCHECK_RET(Ok(), wxT("Invalid DC"));
998 wxMacPortSetter
helper(this) ;
1000 wxCoord xx
= XLOG2DEVMAC(x
);
1001 wxCoord yy
= YLOG2DEVMAC(y
);
1002 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
1003 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
1005 // CMB: draw nothing if transformed w or h is 0
1006 if (ww
== 0 || hh
== 0)
1009 // CMB: handle -ve width and/or height
1022 Rect rect
= { yy
, xx
, yy
+ hh
, xx
+ ww
} ;
1024 if (m_brush
.GetStyle() != wxTRANSPARENT
)
1027 ::PaintRect( &rect
) ;
1030 if (m_pen
.GetStyle() != wxTRANSPARENT
)
1033 ::FrameRect( &rect
) ;
1037 void wxDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
1038 wxCoord width
, wxCoord height
,
1041 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1042 wxMacPortSetter
helper(this) ;
1045 radius
= - radius
* ((width
< height
) ? width
: height
);
1047 wxCoord xx
= XLOG2DEVMAC(x
);
1048 wxCoord yy
= YLOG2DEVMAC(y
);
1049 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
1050 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
1052 // CMB: draw nothing if transformed w or h is 0
1053 if (ww
== 0 || hh
== 0)
1056 // CMB: handle -ve width and/or height
1069 Rect rect
= { yy
, xx
, yy
+ hh
, xx
+ ww
} ;
1071 if (m_brush
.GetStyle() != wxTRANSPARENT
)
1074 ::PaintRoundRect( &rect
, int(radius
* 2) , int(radius
* 2) ) ;
1077 if (m_pen
.GetStyle() != wxTRANSPARENT
)
1080 ::FrameRoundRect( &rect
, int(radius
* 2) , int(radius
* 2) ) ;
1084 void wxDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
1086 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1087 wxMacPortSetter
helper(this) ;
1089 wxCoord xx
= XLOG2DEVMAC(x
);
1090 wxCoord yy
= YLOG2DEVMAC(y
);
1091 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
1092 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
1094 // CMB: draw nothing if transformed w or h is 0
1095 if (ww
== 0 || hh
== 0)
1098 // CMB: handle -ve width and/or height
1111 Rect rect
= { yy
, xx
, yy
+ hh
, xx
+ ww
} ;
1113 if (m_brush
.GetStyle() != wxTRANSPARENT
)
1116 ::PaintOval( &rect
) ;
1119 if (m_pen
.GetStyle() != wxTRANSPARENT
)
1122 ::FrameOval( &rect
) ;
1128 bool wxDC::CanDrawBitmap(void) const
1134 bool wxDC::DoBlit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
1135 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
, int logical_func
, bool useMask
,
1136 wxCoord xsrcMask
, wxCoord ysrcMask
)
1138 wxCHECK_MSG(Ok(), false, wxT("wxDC::DoBlit Illegal dc"));
1139 wxCHECK_MSG(source
->Ok(), false, wxT("wxDC::DoBlit Illegal source DC"));
1141 if ( logical_func
== wxNO_OP
)
1144 if (xsrcMask
== -1 && ysrcMask
== -1)
1146 xsrcMask
= xsrc
; ysrcMask
= ysrc
;
1149 // correct the parameter in case this dc does not have a mask at all
1151 if ( useMask
&& !source
->m_macMask
)
1154 Rect srcrect
, dstrect
;
1155 srcrect
.top
= source
->YLOG2DEVMAC(ysrc
) ;
1156 srcrect
.left
= source
->XLOG2DEVMAC(xsrc
) ;
1157 srcrect
.right
= source
->XLOG2DEVMAC(xsrc
+ width
) ;
1158 srcrect
.bottom
= source
->YLOG2DEVMAC(ysrc
+ height
) ;
1159 dstrect
.top
= YLOG2DEVMAC(ydest
) ;
1160 dstrect
.left
= XLOG2DEVMAC(xdest
) ;
1161 dstrect
.bottom
= YLOG2DEVMAC(ydest
+ height
) ;
1162 dstrect
.right
= XLOG2DEVMAC(xdest
+ width
) ;
1164 short mode
= kUnsupportedMode
;
1165 bool invertDestinationFirst
= false ;
1166 switch ( logical_func
)
1168 case wxAND
: // src AND dst
1169 mode
= srcOr
; // ok
1171 case wxAND_INVERT
: // (NOT src) AND dst
1172 mode
= notSrcOr
; // ok
1174 case wxAND_REVERSE
:// src AND (NOT dst)
1175 invertDestinationFirst
= true ;
1179 mode
= kEmulatedMode
;
1182 mode
= srcCopy
; // ok
1184 case wxEQUIV
: // (NOT src) XOR dst
1185 mode
= srcXor
; // ok
1187 case wxINVERT
: // NOT dst
1188 mode
= kEmulatedMode
; //or hilite ;
1190 case wxNAND
: // (NOT src) OR (NOT dst)
1191 invertDestinationFirst
= true ;
1194 case wxNOR
: // (NOT src) AND (NOT dst)
1195 invertDestinationFirst
= true ;
1198 case wxNO_OP
: // dst
1199 mode
= kEmulatedMode
; // this has already been handled upon entry
1201 case wxOR
: // src OR dst
1204 case wxOR_INVERT
: // (NOT src) OR dst
1207 case wxOR_REVERSE
: // src OR (NOT dst)
1208 invertDestinationFirst
= true ;
1212 mode
= kEmulatedMode
;
1214 case wxSRC_INVERT
: // (NOT src)
1215 mode
= notSrcCopy
; // ok
1217 case wxXOR
: // src XOR dst
1218 mode
= notSrcXor
; // ok
1226 if ( mode
== kUnsupportedMode
)
1228 wxFAIL_MSG("unsupported blitting mode" );
1232 CGrafPtr sourcePort
= (CGrafPtr
) source
->m_macPort
;
1233 PixMapHandle bmappixels
= GetGWorldPixMap( sourcePort
) ;
1234 if ( LockPixels(bmappixels
) )
1236 wxMacPortSetter
helper(this) ;
1238 if ( source
->GetDepth() == 1 )
1240 RGBForeColor( &MAC_WXCOLORREF(m_textForegroundColour
.GetPixel()) ) ;
1241 RGBBackColor( &MAC_WXCOLORREF(m_textBackgroundColour
.GetPixel()) ) ;
1245 // the modes need this, otherwise we'll end up having really nice colors...
1246 RGBColor white
= { 0xFFFF, 0xFFFF,0xFFFF} ;
1247 RGBColor black
= { 0,0,0} ;
1248 RGBForeColor( &black
) ;
1249 RGBBackColor( &white
) ;
1252 if ( useMask
&& source
->m_macMask
)
1254 if ( mode
== srcCopy
)
1256 if ( LockPixels( GetGWorldPixMap( MAC_WXHBITMAP(source
->m_macMask
) ) ) )
1258 CopyMask( GetPortBitMapForCopyBits( sourcePort
) ,
1259 GetPortBitMapForCopyBits( MAC_WXHBITMAP(source
->m_macMask
) ) ,
1260 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort
) ) ,
1261 &srcrect
, &srcrect
, &dstrect
) ;
1262 UnlockPixels( GetGWorldPixMap( MAC_WXHBITMAP(source
->m_macMask
) ) ) ;
1267 RgnHandle clipRgn
= NewRgn() ;
1268 LockPixels( GetGWorldPixMap( MAC_WXHBITMAP(source
->m_macMask
) ) ) ;
1269 BitMapToRegion( clipRgn
, (BitMap
*) *GetGWorldPixMap( MAC_WXHBITMAP(source
->m_macMask
) ) ) ;
1270 UnlockPixels( GetGWorldPixMap( MAC_WXHBITMAP(source
->m_macMask
) ) ) ;
1271 OffsetRgn( clipRgn
, -srcrect
.left
+ dstrect
.left
, -srcrect
.top
+ dstrect
.top
) ;
1272 if ( mode
== kEmulatedMode
)
1275 ::PenPat(GetQDGlobalsBlack(&pat
));
1276 if ( logical_func
== wxSET
)
1278 RGBColor col
= { 0xFFFF, 0xFFFF, 0xFFFF } ;
1279 ::RGBForeColor( &col
) ;
1280 ::PaintRgn( clipRgn
) ;
1282 else if ( logical_func
== wxCLEAR
)
1284 RGBColor col
= { 0x0000, 0x0000, 0x0000 } ;
1285 ::RGBForeColor( &col
) ;
1286 ::PaintRgn( clipRgn
) ;
1288 else if ( logical_func
== wxINVERT
)
1290 MacInvertRgn( clipRgn
) ;
1294 for ( int y
= 0 ; y
< srcrect
.right
- srcrect
.left
; ++y
)
1296 for ( int x
= 0 ; x
< srcrect
.bottom
- srcrect
.top
; ++x
)
1298 Point dstPoint
= { dstrect
.top
+ y
, dstrect
.left
+ x
} ;
1299 Point srcPoint
= { srcrect
.top
+ y
, srcrect
.left
+ x
} ;
1300 if ( PtInRgn( dstPoint
, clipRgn
) )
1305 SetPort( (GrafPtr
) sourcePort
) ;
1306 GetCPixel( srcPoint
.h
, srcPoint
.v
, &srcColor
) ;
1307 SetPort( (GrafPtr
) m_macPort
) ;
1308 GetCPixel( dstPoint
.h
, dstPoint
.v
, &dstColor
) ;
1310 wxMacCalculateColour( logical_func
, srcColor
, dstColor
) ;
1311 SetCPixel( dstPoint
.h
, dstPoint
.v
, &dstColor
) ;
1319 if ( invertDestinationFirst
)
1321 MacInvertRgn( clipRgn
) ;
1323 CopyBits( GetPortBitMapForCopyBits( sourcePort
) ,
1324 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort
) ) ,
1325 &srcrect
, &dstrect
, mode
, clipRgn
) ;
1327 DisposeRgn( clipRgn
) ;
1332 RgnHandle clipRgn
= NewRgn() ;
1333 SetRectRgn( clipRgn
, dstrect
.left
, dstrect
.top
, dstrect
.right
, dstrect
.bottom
) ;
1334 if ( mode
== kEmulatedMode
)
1337 ::PenPat(GetQDGlobalsBlack(&pat
));
1338 if ( logical_func
== wxSET
)
1340 RGBColor col
= { 0xFFFF, 0xFFFF, 0xFFFF } ;
1341 ::RGBForeColor( &col
) ;
1342 ::PaintRgn( clipRgn
) ;
1344 else if ( logical_func
== wxCLEAR
)
1346 RGBColor col
= { 0x0000, 0x0000, 0x0000 } ;
1347 ::RGBForeColor( &col
) ;
1348 ::PaintRgn( clipRgn
) ;
1350 else if ( logical_func
== wxINVERT
)
1352 MacInvertRgn( clipRgn
) ;
1356 for ( int y
= 0 ; y
< srcrect
.right
- srcrect
.left
; ++y
)
1358 for ( int x
= 0 ; x
< srcrect
.bottom
- srcrect
.top
; ++x
)
1360 Point dstPoint
= { dstrect
.top
+ y
, dstrect
.left
+ x
} ;
1361 Point srcPoint
= { srcrect
.top
+ y
, srcrect
.left
+ x
} ;
1367 SetPort( (GrafPtr
) sourcePort
) ;
1368 GetCPixel( srcPoint
.h
, srcPoint
.v
, &srcColor
) ;
1369 SetPort( (GrafPtr
) m_macPort
) ;
1370 GetCPixel( dstPoint
.h
, dstPoint
.v
, &dstColor
) ;
1372 wxMacCalculateColour( logical_func
, srcColor
, dstColor
) ;
1373 SetCPixel( dstPoint
.h
, dstPoint
.v
, &dstColor
) ;
1382 if ( invertDestinationFirst
)
1384 MacInvertRgn( clipRgn
) ;
1386 CopyBits( GetPortBitMapForCopyBits( sourcePort
) ,
1387 GetPortBitMapForCopyBits( MAC_WXHBITMAP(m_macPort
) ) ,
1388 &srcrect
, &dstrect
, mode
, NULL
) ;
1390 DisposeRgn( clipRgn
) ;
1392 UnlockPixels( bmappixels
) ;
1395 m_macPenInstalled
= false ;
1396 m_macBrushInstalled
= false ;
1397 m_macFontInstalled
= false ;
1402 inline Fixed
IntToFixed( int inInt
)
1404 return (((SInt32
) inInt
) << 16);
1408 void wxDC::DoDrawRotatedText(const wxString
& str
, wxCoord x
, wxCoord y
,
1411 wxCHECK_RET( Ok(), wxT("wxDC::DoDrawRotatedText Invalid window dc") );
1415 DrawText(str
, x
, y
);
1419 if ( str
.Length() == 0 )
1422 wxMacPortSetter
helper(this) ;
1426 if ( wxApp::s_macDefaultEncodingIsPC
)
1428 text
= wxMacMakeMacStringFromPC( str
) ;
1435 wxFontRefData
* font
= (wxFontRefData
*) m_font
.GetRefData() ;
1438 m_macFormerAliasState
= IsAntiAliasedTextEnabled(&m_macFormerAliasSize
);
1439 SetAntiAliasedTextEnabled(true, m_scaleY
* font
->m_macFontSize
);
1440 m_macAliasWasEnabled
= true ;
1443 OSStatus status
= noErr
;
1446 status
= TECCreateConverter(&ec
, kTextEncodingMacRoman
, kTextEncodingUnicodeDefault
);
1447 wxASSERT_MSG( status
== noErr
, "couldn't start converter" ) ;
1449 ByteCount byteOutLen
;
1450 ByteCount byteInLen
= text
.Length() ;
1451 ByteCount byteBufferLen
= byteInLen
*2 ;
1452 char* buf
= new char[byteBufferLen
] ;
1454 status
= TECConvertText(ec
, (ConstTextPtr
)text
.c_str() , byteInLen
, &byteInLen
,
1455 (TextPtr
)buf
, byteBufferLen
, &byteOutLen
);
1457 wxASSERT_MSG( status
== noErr
, "couldn't convert text" ) ;
1458 status
= TECDisposeConverter(ec
);
1459 wxASSERT_MSG( status
== noErr
, "couldn't dispose converter" ) ;
1461 ATSUTextLayout atsuLayout
;
1462 UniCharCount chars
= byteOutLen
/ 2 ;
1463 status
= ::ATSUCreateTextLayoutWithTextPtr( (UniCharArrayPtr
) buf
, 0 , byteOutLen
/ 2 , byteOutLen
/ 2 , 1 ,
1464 &chars
, (ATSUStyle
*) &m_macATSUIStyle
, &atsuLayout
) ;
1465 wxASSERT_MSG( status
== noErr
, "couldn't create the layout of the rotated text" );
1467 if ( abs(angle
) > 0 )
1469 Fixed atsuAngle
= IntToFixed( angle
) ;
1470 ByteCount angleSize
= sizeof(Fixed
) ;
1471 ATSUAttributeTag rotationTag
= kATSULineRotationTag
;
1472 ATSUAttributeValuePtr angleValue
= &atsuAngle
;
1473 status
= ::ATSUSetLayoutControls(atsuLayout
, 1 , &rotationTag
, &angleSize
, &angleValue
) ;
1476 status
= ::ATSUDrawText( atsuLayout
, kATSUFromTextBeginning
, kATSUToTextEnd
,
1477 IntToFixed(XLOG2DEVMAC(x
) ) , IntToFixed(YLOG2DEVMAC(y
) ) );
1478 wxASSERT_MSG( status
== noErr
, "couldn't draw the rotated text" );
1480 status
= ::ATSUMeasureTextImage( atsuLayout
, kATSUFromTextBeginning
, kATSUToTextEnd
,
1481 IntToFixed(XLOG2DEVMAC(x
) ) , IntToFixed(YLOG2DEVMAC(y
) ) , &rect
);
1482 wxASSERT_MSG( status
== noErr
, "couldn't measure the rotated text" );
1484 OffsetRect( &rect
, -m_macLocalOrigin
.x
, -m_macLocalOrigin
.y
) ;
1485 CalcBoundingBox(XDEV2LOG(rect
.left
), YDEV2LOG(rect
.top
) );
1486 CalcBoundingBox(XDEV2LOG(rect
.right
), YDEV2LOG(rect
.bottom
) );
1487 ::ATSUDisposeTextLayout(atsuLayout
);
1491 void wxDC::DoDrawText(const wxString
& strtext
, wxCoord x
, wxCoord y
)
1493 wxCHECK_RET(Ok(), wxT("wxDC::DoDrawText Invalid DC"));
1494 wxMacPortSetter
helper(this) ;
1496 long xx
= XLOG2DEVMAC(x
);
1497 long yy
= YLOG2DEVMAC(y
);
1499 bool useDrawThemeText
= ( DrawThemeTextBox
!= (void*) kUnresolvedCFragSymbolAddress
) ;
1500 useDrawThemeText
= false ;
1505 m_macFormerAliasState
= IsAntiAliasedTextEnabled(&m_macFormerAliasSize
);
1506 SetAntiAliasedTextEnabled(true, 8);
1507 m_macAliasWasEnabled
= true ;
1511 ::GetFontInfo( &fi
) ;
1514 if ( !useDrawThemeText
)
1518 ::MoveTo( xx
, yy
);
1519 if ( m_backgroundMode
== wxTRANSPARENT
)
1521 ::TextMode( srcOr
) ;
1525 ::TextMode( srcCopy
) ;
1528 const char *text
= NULL
;
1532 if ( wxApp::s_macDefaultEncodingIsPC
)
1534 macText
= wxMacMakeMacStringFromPC( strtext
) ;
1536 length
= macText
.Length() ;
1541 length
= strtext
.Length() ;
1552 if( text
[i
] == 13 || text
[i
] == 10)
1555 if ( useDrawThemeText
)
1557 Rect frame
= { yy
+ line
*(fi
.descent
+ fi
.ascent
+ fi
.leading
) ,xx
, yy
+ (line
+1)*(fi
.descent
+ fi
.ascent
+ fi
.leading
) , xx
+ 1000 } ;
1558 CFStringRef mString
= CFStringCreateWithBytes( NULL
, (UInt8
*) text
+ laststop
, i
- laststop
, CFStringGetSystemEncoding(), false ) ;
1559 ::DrawThemeTextBox( mString
,
1560 kThemeCurrentPortFont
,
1566 CFRelease( mString
) ;
1572 ::DrawText( text
, laststop
, i
- laststop
) ;
1574 ::MoveTo( xx
, yy
+ line
*(fi
.descent
+ fi
.ascent
+ fi
.leading
) );
1581 if ( useDrawThemeText
)
1583 Rect frame
= { yy
+ line
*(fi
.descent
+ fi
.ascent
+ fi
.leading
) ,xx
, yy
+ (line
+1)*(fi
.descent
+ fi
.ascent
+ fi
.leading
) , xx
+ 1000 } ;
1584 CFStringRef mString
= CFStringCreateWithCString( NULL
, text
+ laststop
, kCFStringEncodingMacRoman
) ;
1585 ::DrawThemeTextBox( mString
,
1586 kThemeCurrentPortFont
,
1592 CFRelease( mString
) ;
1597 ::DrawText( text
, laststop
, i
- laststop
) ;
1600 ::TextMode( srcOr
) ;
1603 bool wxDC::CanGetTextExtent() const
1605 wxCHECK_MSG(Ok(), false, wxT("Invalid DC"));
1610 void wxDC::DoGetTextExtent( const wxString
&string
, wxCoord
*width
, wxCoord
*height
,
1611 wxCoord
*descent
, wxCoord
*externalLeading
,
1612 wxFont
*theFont
) const
1614 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1615 wxMacPortSetter
helper(this) ;
1617 wxFont formerFont
= m_font
;
1621 // work around the constness
1622 *((wxFont
*)(&m_font
)) = *theFont
;
1628 ::GetFontInfo( &fi
) ;
1630 bool useGetThemeText
= ( GetThemeTextDimensions
!= (void*) kUnresolvedCFragSymbolAddress
) ;
1631 useGetThemeText
= false ;
1635 *height
= YDEV2LOGREL( fi
.descent
+ fi
.ascent
) ;
1637 *descent
=YDEV2LOGREL( fi
.descent
);
1638 if ( externalLeading
)
1639 *externalLeading
= YDEV2LOGREL( fi
.leading
) ;
1641 const char *text
= NULL
;
1644 if ( wxApp::s_macDefaultEncodingIsPC
)
1646 macText
= wxMacMakeMacStringFromPC( string
) ;
1648 length
= macText
.Length() ;
1653 length
= string
.Length() ;
1665 if( text
[i
] == 13 || text
[i
] == 10)
1668 *height
+= YDEV2LOGREL( fi
.descent
+ fi
.ascent
+ fi
.leading
) ;
1670 if ( useGetThemeText
)
1672 Point bounds
={0,0} ;
1674 CFStringRef mString
= CFStringCreateWithBytes( NULL
, (UInt8
*) text
+ laststop
, i
- laststop
, CFStringGetSystemEncoding(), false ) ;
1675 ::GetThemeTextDimensions( mString
,
1676 kThemeCurrentPortFont
,
1681 CFRelease( mString
) ;
1682 curwidth
= bounds
.h
;
1687 curwidth
= ::TextWidth( text
, laststop
, i
- laststop
) ;
1689 if ( curwidth
> *width
)
1690 *width
= XDEV2LOGREL( curwidth
) ;
1697 if ( useGetThemeText
)
1699 Point bounds
={0,0} ;
1701 CFStringRef mString
= CFStringCreateWithBytes( NULL
, (UInt8
*) text
+ laststop
, i
- laststop
, CFStringGetSystemEncoding(), false ) ;
1702 ::GetThemeTextDimensions( mString
,
1703 kThemeCurrentPortFont
,
1708 CFRelease( mString
) ;
1709 curwidth
= bounds
.h
;
1714 curwidth
= ::TextWidth( text
, laststop
, i
- laststop
) ;
1716 if ( curwidth
> *width
)
1717 *width
= XDEV2LOGREL( curwidth
) ;
1722 // work around the constness
1723 *((wxFont
*)(&m_font
)) = formerFont
;
1724 m_macFontInstalled
= false ;
1728 wxCoord
wxDC::GetCharWidth(void) const
1730 wxCHECK_MSG(Ok(), 1, wxT("Invalid DC"));
1732 wxMacPortSetter
helper(this) ;
1736 int width
= ::TextWidth( "n" , 0 , 1 ) ;
1738 return YDEV2LOGREL(width
) ;
1741 wxCoord
wxDC::GetCharHeight(void) const
1743 wxCHECK_MSG(Ok(), 1, wxT("Invalid DC"));
1745 wxMacPortSetter
helper(this) ;
1750 ::GetFontInfo( &fi
) ;
1752 return YDEV2LOGREL( fi
.descent
+ fi
.ascent
);
1755 void wxDC::Clear(void)
1757 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1758 wxMacPortSetter
helper(this) ;
1759 Rect rect
= { -31000 , -31000 , 31000 , 31000 } ;
1761 if (m_backgroundBrush
.GetStyle() != wxTRANSPARENT
)
1764 //MacInstallBrush() ;
1765 MacSetupBackgroundForCurrentPort( m_backgroundBrush
) ;
1766 ::EraseRect( &rect
) ;
1770 void wxDC::MacInstallFont() const
1772 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1773 // if ( m_macFontInstalled )
1775 Pattern blackColor
;
1777 MacSetupBackgroundForCurrentPort(m_backgroundBrush
) ;
1779 wxFontRefData
* font
= (wxFontRefData
*) m_font
.GetRefData() ;
1783 ::TextFont( font
->m_macFontNum
) ;
1784 ::TextSize( short(m_scaleY
* font
->m_macFontSize
) ) ;
1785 ::TextFace( font
->m_macFontStyle
) ;
1787 m_macFontInstalled
= true ;
1788 m_macBrushInstalled
= false ;
1789 m_macPenInstalled
= false ;
1791 RGBColor forecolor
= MAC_WXCOLORREF( m_textForegroundColour
.GetPixel());
1792 RGBColor backcolor
= MAC_WXCOLORREF( m_textBackgroundColour
.GetPixel());
1793 ::RGBForeColor( &forecolor
);
1794 ::RGBBackColor( &backcolor
);
1798 FontFamilyID fontId
;
1802 GetThemeFont(kThemeSmallSystemFont
, GetApplicationScript() , fontName
, &fontSize
, &fontStyle
) ;
1803 GetFNum( fontName
, &fontId
);
1805 ::TextFont( fontId
) ;
1806 ::TextSize( short(m_scaleY
* fontSize
) ) ;
1807 ::TextFace( fontStyle
) ;
1809 // todo reset after spacing changes - or store the current spacing somewhere
1811 m_macFontInstalled
= true ;
1812 m_macBrushInstalled
= false ;
1813 m_macPenInstalled
= false ;
1815 RGBColor forecolor
= MAC_WXCOLORREF( m_textForegroundColour
.GetPixel());
1816 RGBColor backcolor
= MAC_WXCOLORREF( m_textBackgroundColour
.GetPixel());
1817 ::RGBForeColor( &forecolor
);
1818 ::RGBBackColor( &backcolor
);
1821 short mode
= patCopy
;
1825 switch( m_logicalFunction
)
1830 case wxINVERT
: // NOT dst
1831 ::PenPat(GetQDGlobalsBlack(&blackColor
));
1834 case wxXOR
: // src XOR dst
1837 case wxOR_REVERSE
: // src OR (NOT dst)
1840 case wxSRC_INVERT
: // (NOT src)
1847 case wxAND_REVERSE
:// src AND (NOT dst)
1848 case wxAND
: // src AND dst
1849 case wxAND_INVERT
: // (NOT src) AND dst
1850 case wxNO_OP
: // dst
1851 case wxNOR
: // (NOT src) AND (NOT dst)
1852 case wxEQUIV
: // (NOT src) XOR dst
1853 case wxOR_INVERT
: // (NOT src) OR dst
1854 case wxNAND
: // (NOT src) OR (NOT dst)
1855 case wxOR
: // src OR dst
1857 // case wxSRC_OR: // source _bitmap_ OR destination
1858 // case wxSRC_AND: // source _bitmap_ AND destination
1863 OSStatus status
= noErr
;
1865 Fixed atsuSize
= IntToFixed(m_scaleY
* font
->m_macFontSize
) ;
1867 Style qdStyle
= font
->m_macFontStyle
;
1868 ATSUFontID atsuFont
= font
->m_macATSUFontID
;
1870 status
= ::ATSUCreateStyle(&(ATSUStyle
)m_macATSUIStyle
) ;
1871 wxASSERT_MSG( status
== noErr
, "couldn't create ATSU style" ) ;
1873 ATSUAttributeTag atsuTags
[] =
1878 kATSUBaselineClassTag
,
1879 kATSUVerticalCharacterTag
,
1881 kATSUQDBoldfaceTag
,
1883 kATSUQDUnderlineTag
,
1884 kATSUQDCondensedTag
,
1885 kATSUQDExtendedTag
,
1889 ByteCount atsuSizes
[sizeof(atsuTags
)/sizeof(ATSUAttributeTag
)] =
1891 sizeof( ATSUFontID
) ,
1893 // sizeof( RGBColor ) ,
1894 sizeof( BslnBaselineClass
) ,
1895 sizeof( ATSUVerticalCharacterType
),
1905 Boolean kTrue
= true ;
1906 Boolean kFalse
= false ;
1907 BslnBaselineClass kBaselineDefault
= kBSLNHangingBaseline
;
1909 ATSUVerticalCharacterType kHorizontal
= kATSUStronglyHorizontal
;
1911 ATSUAttributeValuePtr atsuValues
[sizeof(atsuTags
)/sizeof(ATSUAttributeTag
)] =
1915 // &MAC_WXCOLORREF( m_textForegroundColour.GetPixel() ) ,
1919 (qdStyle
& bold
) ? &kTrue
: &kFalse
,
1920 (qdStyle
& italic
) ? &kTrue
: &kFalse
,
1921 (qdStyle
& underline
) ? &kTrue
: &kFalse
,
1922 (qdStyle
& condense
) ? &kTrue
: &kFalse
,
1923 (qdStyle
& extend
) ? &kTrue
: &kFalse
,
1926 status
= ::ATSUSetAttributes((ATSUStyle
)m_macATSUIStyle
, sizeof(atsuTags
)/sizeof(ATSUAttributeTag
),
1927 atsuTags
, atsuSizes
, atsuValues
);
1928 wxASSERT_MSG( status
== noErr
, "couldn't set create ATSU style" ) ;
1932 Pattern gHatchPatterns
[] =
1934 { 0xFF , 0xFF , 0xFF , 0xFF , 0xFF , 0xFF , 0xFF , 0xFF } ,
1935 { 0x01 , 0x02 , 0x04 , 0x08 , 0x10 , 0x20 , 0x40 , 0x80 } ,
1936 { 0x80 , 0x40 , 0x20 , 0x10 , 0x08 , 0x04 , 0x02 , 0x01 } ,
1937 { 0x10 , 0x10 , 0x10 , 0xFF , 0x10 , 0x10 , 0x10 , 0x10 } ,
1938 { 0x00 , 0x00 , 0x00 , 0xFF , 0x00 , 0x00 , 0x00 , 0x00 } ,
1939 { 0x10 , 0x10 , 0x10 , 0x10 , 0x10 , 0x10 , 0x10 , 0x10 } ,
1940 { 0x81 , 0x42 , 0x24 , 0x18 , 0x18 , 0x24 , 0x42 , 0x81 } ,
1943 static void wxMacGetHatchPattern(int hatchStyle
, Pattern
*pattern
)
1949 case wxBDIAGONAL_HATCH
:
1952 case wxFDIAGONAL_HATCH
:
1958 case wxHORIZONTAL_HATCH
:
1961 case wxVERTICAL_HATCH
:
1964 case wxCROSSDIAG_HATCH
:
1968 theIndex
= 1; // solid pattern
1971 *pattern
= gHatchPatterns
[theIndex
-1] ;
1974 void wxDC::MacInstallPen() const
1976 wxCHECK_RET(Ok(), wxT("Invalid DC"));
1980 // if ( m_macPenInstalled )
1983 RGBColor forecolor
= MAC_WXCOLORREF( m_pen
.GetColour().GetPixel());
1984 RGBColor backcolor
= MAC_WXCOLORREF( m_backgroundBrush
.GetColour().GetPixel());
1985 ::RGBForeColor( &forecolor
);
1986 ::RGBBackColor( &backcolor
);
1989 int penWidth
= m_pen
.GetWidth() * (int) m_scaleX
;
1991 // null means only one pixel, at whatever resolution
1992 if ( penWidth
== 0 )
1994 ::PenSize(penWidth
, penWidth
);
1996 int penStyle
= m_pen
.GetStyle();
1998 if (penStyle
== wxSOLID
)
2000 ::PenPat(GetQDGlobalsBlack(&blackColor
));
2002 else if (IS_HATCH(penStyle
))
2005 wxMacGetHatchPattern(penStyle
, &pat
);
2010 Pattern pat
= *GetQDGlobalsBlack(&blackColor
) ;
2014 for ( int i
= 0 ; i
< 8 ; ++i
)
2020 for ( int i
= 0 ; i
< 8 ; ++i
)
2026 for ( int i
= 0 ; i
< 8 ; ++i
)
2032 for ( int i
= 0 ; i
< 8 ; ++i
)
2040 int number
= m_pen
.GetDashes(&dash
) ;
2041 // right now we don't allocate larger pixmaps
2042 for ( int i
= 0 ; i
< 8 ; ++i
)
2044 pat
.pat
[i
] = dash
[0] ;
2052 short mode
= patCopy
;
2056 switch( m_logicalFunction
)
2058 case wxCOPY
: // only foreground color, leave background (thus not patCopy)
2061 case wxINVERT
: // NOT dst
2062 // ::PenPat(GetQDGlobalsBlack(&blackColor));
2065 case wxXOR
: // src XOR dst
2068 case wxOR_REVERSE
: // src OR (NOT dst)
2071 case wxSRC_INVERT
: // (NOT src)
2078 case wxAND_REVERSE
:// src AND (NOT dst)
2079 case wxAND
: // src AND dst
2080 case wxAND_INVERT
: // (NOT src) AND dst
2081 case wxNO_OP
: // dst
2082 case wxNOR
: // (NOT src) AND (NOT dst)
2083 case wxEQUIV
: // (NOT src) XOR dst
2084 case wxOR_INVERT
: // (NOT src) OR dst
2085 case wxNAND
: // (NOT src) OR (NOT dst)
2086 case wxOR
: // src OR dst
2088 // case wxSRC_OR: // source _bitmap_ OR destination
2089 // case wxSRC_AND: // source _bitmap_ AND destination
2093 m_macPenInstalled
= true ;
2094 m_macBrushInstalled
= false ;
2095 m_macFontInstalled
= false ;
2098 void wxDC::MacSetupBackgroundForCurrentPort(const wxBrush
& background
)
2100 Pattern whiteColor
;
2101 switch( background
.MacGetBrushKind() )
2103 case kwxMacBrushTheme
:
2105 ::SetThemeBackground( background
.GetMacTheme() , wxDisplayDepth() , true ) ;
2108 case kwxMacBrushThemeBackground
:
2111 ThemeBackgroundKind bg
= background
.GetMacThemeBackground( &extent
) ;
2112 ::ApplyThemeBackground( bg
, &extent
,kThemeStateActive
, wxDisplayDepth() , true ) ;
2115 case kwxMacBrushColour
:
2117 ::RGBBackColor( &MAC_WXCOLORREF( background
.GetColour().GetPixel()) );
2118 int brushStyle
= background
.GetStyle();
2119 if (brushStyle
== wxSOLID
)
2120 ::BackPat(GetQDGlobalsWhite(&whiteColor
));
2121 else if (IS_HATCH(brushStyle
))
2124 wxMacGetHatchPattern(brushStyle
, &pat
);
2129 ::BackPat(GetQDGlobalsWhite(&whiteColor
));
2136 void wxDC::MacInstallBrush() const
2138 wxCHECK_RET(Ok(), wxT("Invalid DC"));
2140 Pattern blackColor
;
2141 // if ( m_macBrushInstalled )
2146 bool backgroundTransparent
= (GetBackgroundMode() == wxTRANSPARENT
) ;
2148 ::RGBForeColor( &MAC_WXCOLORREF( m_brush
.GetColour().GetPixel()) );
2149 ::RGBBackColor( &MAC_WXCOLORREF( m_backgroundBrush
.GetColour().GetPixel()) );
2151 int brushStyle
= m_brush
.GetStyle();
2152 if (brushStyle
== wxSOLID
)
2154 ::PenPat(GetQDGlobalsBlack(&blackColor
));
2156 else if (IS_HATCH(brushStyle
))
2159 wxMacGetHatchPattern(brushStyle
, &pat
);
2162 else if ( m_brush
.GetStyle() == wxSTIPPLE
|| m_brush
.GetStyle() == wxSTIPPLE_MASK_OPAQUE
)
2164 // we force this in order to be compliant with wxMSW
2165 backgroundTransparent
= false ;
2166 // for these the text fore (and back for MASK_OPAQUE) colors are used
2167 wxBitmap
* bitmap
= m_brush
.GetStipple() ;
2168 int width
= bitmap
->GetWidth() ;
2169 int height
= bitmap
->GetHeight() ;
2170 GWorldPtr gw
= NULL
;
2172 if ( m_brush
.GetStyle() == wxSTIPPLE
)
2173 gw
= MAC_WXHBITMAP(bitmap
->GetHBITMAP()) ;
2175 gw
= MAC_WXHBITMAP(bitmap
->GetMask()->GetMaskBitmap()) ;
2177 PixMapHandle gwpixmaphandle
= GetGWorldPixMap( gw
) ;
2178 LockPixels( gwpixmaphandle
) ;
2180 bool isMonochrome
= !IsPortColor( gw
) ;
2182 if ( !isMonochrome
)
2184 if ( (**gwpixmaphandle
).pixelSize
== 1 )
2185 isMonochrome
= true ;
2188 if ( isMonochrome
&& width
== 8 && height
== 8 )
2190 ::RGBForeColor( &MAC_WXCOLORREF( m_textForegroundColour
.GetPixel()) );
2191 ::RGBForeColor( &MAC_WXCOLORREF( m_textBackgroundColour
.GetPixel()) );
2192 BitMap
* gwbitmap
= (BitMap
*) *gwpixmaphandle
; // since the color depth is 1 it is a BitMap
2193 UInt8
*gwbits
= (UInt8
*) gwbitmap
->baseAddr
;
2194 int alignment
= gwbitmap
->rowBytes
& 0x7FFF ;
2196 for ( int i
= 0 ; i
< 8 ; ++i
)
2198 pat
.pat
[i
] = gwbits
[i
*alignment
+0] ;
2200 UnlockPixels( GetGWorldPixMap( gw
) ) ;
2205 // this will be the code to handle power of 2 patterns, we will have to arrive at a nice
2206 // caching scheme before putting this into production
2209 PixPatHandle pixpat
= NewPixPat() ;
2211 CopyPixMap(gwpixmaphandle
, (**pixpat
).patMap
);
2212 imageSize
= GetPixRowBytes((**pixpat
).patMap
) *
2213 ((**(**pixpat
).patMap
).bounds
.bottom
-
2214 (**(**pixpat
).patMap
).bounds
.top
);
2216 PtrToHand( (**gwpixmaphandle
).baseAddr
, &image
, imageSize
);
2217 (**pixpat
).patData
= image
;
2220 CTabHandle ctable
= ((**((**pixpat
).patMap
)).pmTable
) ;
2221 ColorSpecPtr ctspec
= (ColorSpecPtr
) &(**ctable
).ctTable
;
2222 if ( ctspec
[0].rgb
.red
== 0x0000 )
2224 ctspec
[1].rgb
= MAC_WXCOLORREF( m_textBackgroundColour
.GetPixel()) ;
2225 ctspec
[0].rgb
= MAC_WXCOLORREF( m_textForegroundColour
.GetPixel()) ;
2229 ctspec
[0].rgb
= MAC_WXCOLORREF( m_textBackgroundColour
.GetPixel()) ;
2230 ctspec
[1].rgb
= MAC_WXCOLORREF( m_textForegroundColour
.GetPixel()) ;
2232 ::CTabChanged( ctable
) ;
2234 ::PenPixPat(pixpat
);
2235 m_macForegroundPixMap
= pixpat
;
2237 UnlockPixels( gwpixmaphandle
) ;
2241 ::PenPat(GetQDGlobalsBlack(&blackColor
));
2244 short mode
= patCopy
;
2245 switch( m_logicalFunction
)
2248 if ( backgroundTransparent
)
2253 case wxINVERT
: // NOT dst
2254 if ( !backgroundTransparent
)
2256 ::PenPat(GetQDGlobalsBlack(&blackColor
));
2260 case wxXOR
: // src XOR dst
2263 case wxOR_REVERSE
: // src OR (NOT dst)
2266 case wxSRC_INVERT
: // (NOT src)
2273 case wxAND_REVERSE
:// src AND (NOT dst)
2274 case wxAND
: // src AND dst
2275 case wxAND_INVERT
: // (NOT src) AND dst
2276 case wxNO_OP
: // dst
2277 case wxNOR
: // (NOT src) AND (NOT dst)
2278 case wxEQUIV
: // (NOT src) XOR dst
2279 case wxOR_INVERT
: // (NOT src) OR dst
2280 case wxNAND
: // (NOT src) OR (NOT dst)
2281 case wxOR
: // src OR dst
2283 // case wxSRC_OR: // source _bitmap_ OR destination
2284 // case wxSRC_AND: // source _bitmap_ AND destination
2288 m_macBrushInstalled
= true ;
2289 m_macPenInstalled
= false ;
2290 m_macFontInstalled
= false ;
2293 // ---------------------------------------------------------------------------
2294 // coordinates transformations
2295 // ---------------------------------------------------------------------------
2298 wxCoord
wxDCBase::DeviceToLogicalX(wxCoord x
) const
2300 return ((wxDC
*)this)->XDEV2LOG(x
);
2303 wxCoord
wxDCBase::DeviceToLogicalY(wxCoord y
) const
2305 return ((wxDC
*)this)->YDEV2LOG(y
);
2308 wxCoord
wxDCBase::DeviceToLogicalXRel(wxCoord x
) const
2310 return ((wxDC
*)this)->XDEV2LOGREL(x
);
2313 wxCoord
wxDCBase::DeviceToLogicalYRel(wxCoord y
) const
2315 return ((wxDC
*)this)->YDEV2LOGREL(y
);
2318 wxCoord
wxDCBase::LogicalToDeviceX(wxCoord x
) const
2320 return ((wxDC
*)this)->XLOG2DEV(x
);
2323 wxCoord
wxDCBase::LogicalToDeviceY(wxCoord y
) const
2325 return ((wxDC
*)this)->YLOG2DEV(y
);
2328 wxCoord
wxDCBase::LogicalToDeviceXRel(wxCoord x
) const
2330 return ((wxDC
*)this)->XLOG2DEVREL(x
);
2333 wxCoord
wxDCBase::LogicalToDeviceYRel(wxCoord y
) const
2335 return ((wxDC
*)this)->YLOG2DEVREL(y
);