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