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