]>
Commit | Line | Data |
---|---|---|
e9576ca5 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e4db172a | 2 | // Name: src/mac/carbon/bitmap.cpp |
e9576ca5 | 3 | // Purpose: wxBitmap |
a31a5f85 | 4 | // Author: Stefan Csomor |
e9576ca5 | 5 | // Modified by: |
a31a5f85 | 6 | // Created: 1998-01-01 |
e9576ca5 | 7 | // RCS-ID: $Id$ |
a31a5f85 | 8 | // Copyright: (c) Stefan Csomor |
65571936 | 9 | // Licence: wxWindows licence |
e9576ca5 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
a8e9860d | 12 | #include "wx/wxprec.h" |
b698c8e9 | 13 | |
e9576ca5 | 14 | #include "wx/bitmap.h" |
e4db172a WS |
15 | |
16 | #ifndef WX_PRECOMP | |
17 | #include "wx/log.h" | |
f38924e8 | 18 | #include "wx/dcmemory.h" |
923d28da | 19 | #include "wx/icon.h" |
155ecd4c | 20 | #include "wx/image.h" |
e4db172a WS |
21 | #endif |
22 | ||
20b69855 | 23 | #include "wx/metafile.h" |
973b0afb | 24 | #include "wx/xpmdecod.h" |
e9576ca5 | 25 | |
55e18dbe VZ |
26 | #include "wx/rawbmp.h" |
27 | ||
e9576ca5 SC |
28 | IMPLEMENT_DYNAMIC_CLASS(wxBitmap, wxGDIObject) |
29 | IMPLEMENT_DYNAMIC_CLASS(wxMask, wxObject) | |
e9576ca5 | 30 | |
9d463591 SC |
31 | #include <ApplicationServices/ApplicationServices.h> |
32 | #include <QuickTime/QuickTime.h> | |
519cb848 | 33 | |
31d30995 | 34 | #include "wx/mac/uma.h" |
05d8deda | 35 | |
20b69855 | 36 | // Implementation Notes |
902725ee | 37 | // -------------------- |
20b69855 | 38 | // |
902725ee WS |
39 | // we are always working with a 32 bit deep pixel buffer |
40 | // under QuickDraw its alpha parts are going to be ignored in the GWorld, | |
20b69855 SC |
41 | // therefore we have a separate GWorld there for blitting the mask in |
42 | ||
43 | // under Quartz then content is transformed into a CGImageRef representing the same data | |
44 | // which can be transferred to the GPU by the OS for fast rendering | |
45 | ||
968c951f SC |
46 | class WXDLLEXPORT wxBitmapRefData: public wxGDIRefData |
47 | { | |
48 | friend class WXDLLIMPEXP_FWD_CORE wxIcon; | |
49 | friend class WXDLLIMPEXP_FWD_CORE wxCursor; | |
50 | public: | |
51 | wxBitmapRefData(int width , int height , int depth); | |
52 | wxBitmapRefData(); | |
53 | wxBitmapRefData(const wxBitmapRefData &tocopy); | |
54 | ||
55 | virtual ~wxBitmapRefData(); | |
56 | ||
57 | void Free(); | |
58 | bool Ok() const { return IsOk(); } | |
59 | bool IsOk() const { return m_ok; } | |
60 | void SetOk( bool isOk) { m_ok = isOk; } | |
61 | ||
62 | void SetWidth( int width ) { m_width = width; } | |
63 | void SetHeight( int height ) { m_height = height; } | |
64 | void SetDepth( int depth ) { m_depth = depth; } | |
65 | ||
66 | int GetWidth() const { return m_width; } | |
67 | int GetHeight() const { return m_height; } | |
68 | int GetDepth() const { return m_depth; } | |
69 | ||
70 | void *GetRawAccess() const; | |
71 | void *BeginRawAccess(); | |
72 | void EndRawAccess(); | |
73 | ||
74 | bool HasAlpha() const { return m_hasAlpha; } | |
75 | void UseAlpha( bool useAlpha ); | |
76 | ||
77 | public: | |
78 | #if wxUSE_PALETTE | |
79 | wxPalette m_bitmapPalette; | |
80 | #endif // wxUSE_PALETTE | |
81 | ||
82 | wxMask * m_bitmapMask; // Optional mask | |
83 | CGImageRef CreateCGImage() const; | |
84 | ||
85 | // returns true if the bitmap has a size that | |
86 | // can be natively transferred into a true icon | |
87 | // if no is returned GetIconRef will still produce | |
88 | // an icon but it will be generated via a PICT and | |
89 | // rescaled to 16 x 16 | |
90 | bool HasNativeSize(); | |
91 | ||
92 | // caller should increase ref count if needed longer | |
93 | // than the bitmap exists | |
94 | IconRef GetIconRef(); | |
95 | ||
96 | // returns a Pict from the bitmap content | |
97 | PicHandle GetPictHandle(); | |
98 | ||
99 | CGContextRef GetBitmapContext() const; | |
100 | ||
101 | int GetBytesPerRow() const { return m_bytesPerRow; } | |
102 | private : | |
103 | bool Create(int width , int height , int depth); | |
104 | void Init(); | |
105 | ||
106 | int m_width; | |
107 | int m_height; | |
108 | int m_bytesPerRow; | |
109 | int m_depth; | |
110 | bool m_hasAlpha; | |
111 | wxMemoryBuffer m_memBuf; | |
112 | int m_rawAccessCount; | |
113 | bool m_ok; | |
114 | mutable CGImageRef m_cgImageRef; | |
115 | ||
116 | IconRef m_iconRef; | |
117 | PicHandle m_pictHandle; | |
118 | ||
119 | CGContextRef m_hBitmap; | |
120 | }; | |
121 | ||
122 | ||
e1673e52 SC |
123 | #define wxMAC_USE_PREMULTIPLIED_ALPHA 1 |
124 | static const int kBestByteAlignement = 16; | |
125 | static const int kMaskBytesPerPixel = 1; | |
6239ee05 SC |
126 | |
127 | static int GetBestBytesPerRow( int rawBytes ) | |
128 | { | |
129 | return (((rawBytes)+kBestByteAlignement-1) & ~(kBestByteAlignement-1) ); | |
130 | } | |
20b69855 | 131 | |
968c951f SC |
132 | #if wxUSE_GUI |
133 | ||
134 | // this is used for more controls than just the wxBitmap button, also for notebooks etc | |
d45318b8 | 135 | |
20b69855 | 136 | void wxMacCreateBitmapButton( ControlButtonContentInfo*info , const wxBitmap& bitmap , int forceType ) |
519cb848 | 137 | { |
20b69855 SC |
138 | memset( info , 0 , sizeof(ControlButtonContentInfo) ) ; |
139 | if ( bitmap.Ok() ) | |
140 | { | |
45cf8535 | 141 | wxBitmapRefData * bmap = bitmap.GetBitmapData() ; |
20b69855 SC |
142 | if ( bmap == NULL ) |
143 | return ; | |
902725ee | 144 | |
6239ee05 SC |
145 | if ( forceType == 0 ) |
146 | { | |
e1673e52 | 147 | forceType = kControlContentCGImageRef; |
6239ee05 SC |
148 | } |
149 | ||
150 | if ( forceType == kControlContentIconRef ) | |
b28aeea5 | 151 | { |
45cf8535 | 152 | wxBitmap scaleBmp ; |
45cf8535 | 153 | wxBitmapRefData* bmp = bmap ; |
902725ee | 154 | |
45cf8535 SC |
155 | if ( !bmap->HasNativeSize() ) |
156 | { | |
157 | // as PICT conversion will only result in a 16x16 icon, let's attempt | |
902725ee WS |
158 | // a few scales for better results |
159 | ||
45cf8535 SC |
160 | int w = bitmap.GetWidth() ; |
161 | int h = bitmap.GetHeight() ; | |
162 | int sz = wxMax( w , h ) ; | |
1cb97a54 | 163 | if ( sz == 24 || sz == 64 ) |
45cf8535 SC |
164 | { |
165 | scaleBmp = wxBitmap( bitmap.ConvertToImage().Scale( w * 2 , h * 2 ) ) ; | |
166 | bmp = scaleBmp.GetBitmapData() ; | |
167 | } | |
168 | } | |
902725ee | 169 | |
b28aeea5 | 170 | info->contentType = kControlContentIconRef ; |
45cf8535 SC |
171 | info->u.iconRef = bmp->GetIconRef() ; |
172 | AcquireIconRef( info->u.iconRef ) ; | |
b28aeea5 | 173 | } |
45cf8535 SC |
174 | else if ( forceType == kControlContentCGImageRef ) |
175 | { | |
176 | info->contentType = kControlContentCGImageRef ; | |
968c951f | 177 | info->u.imageRef = (CGImageRef) bmap->CreateCGImage() ; |
45cf8535 | 178 | } |
b28aeea5 SC |
179 | else |
180 | { | |
4f74e0d1 | 181 | #ifndef __LP64__ |
b28aeea5 SC |
182 | info->contentType = kControlContentPictHandle ; |
183 | info->u.picture = bmap->GetPictHandle() ; | |
4f74e0d1 | 184 | #endif |
b28aeea5 | 185 | } |
20b69855 | 186 | } |
519cb848 SC |
187 | } |
188 | ||
6239ee05 SC |
189 | CGImageRef wxMacCreateCGImageFromBitmap( const wxBitmap& bitmap ) |
190 | { | |
191 | wxBitmapRefData * bmap = bitmap.GetBitmapData() ; | |
192 | if ( bmap == NULL ) | |
193 | return NULL ; | |
968c951f | 194 | return (CGImageRef) bmap->CreateCGImage(); |
6239ee05 SC |
195 | } |
196 | ||
20b69855 | 197 | void wxMacReleaseBitmapButton( ControlButtonContentInfo*info ) |
519cb848 | 198 | { |
20b69855 | 199 | if ( info->contentType == kControlContentIconRef ) |
4e9ed364 | 200 | { |
45cf8535 | 201 | ReleaseIconRef( info->u.iconRef ) ; |
b28aeea5 | 202 | } |
531436ec SC |
203 | else if ( info->contentType == kControlNoContent ) |
204 | { | |
205 | // there's no bitmap at all, fall through silently | |
206 | } | |
b28aeea5 SC |
207 | else if ( info->contentType == kControlContentPictHandle ) |
208 | { | |
45cf8535 | 209 | // owned by the bitmap, no release here |
4e9ed364 | 210 | } |
20b69855 SC |
211 | else if ( info->contentType == kControlContentCGImageRef ) |
212 | { | |
213 | CGImageRelease( info->u.imageRef ) ; | |
214 | } | |
20b69855 | 215 | else |
4e9ed364 | 216 | { |
20b69855 | 217 | wxFAIL_MSG(wxT("Unexpected bitmap type") ) ; |
4e9ed364 | 218 | } |
03e11df5 | 219 | } |
519cb848 | 220 | |
d45318b8 RN |
221 | #endif //wxUSE_BMPBUTTON |
222 | ||
9cc62fc8 | 223 | #define M_BITMAPDATA ((wxBitmapRefData *)m_refData) |
20b69855 SC |
224 | |
225 | void wxBitmapRefData::Init() | |
519cb848 | 226 | { |
20b69855 SC |
227 | m_width = 0 ; |
228 | m_height = 0 ; | |
229 | m_depth = 0 ; | |
6239ee05 | 230 | m_bytesPerRow = 0; |
20b69855 SC |
231 | m_ok = false ; |
232 | m_bitmapMask = NULL ; | |
20b69855 | 233 | m_cgImageRef = NULL ; |
1cb97a54 | 234 | |
b28aeea5 SC |
235 | m_iconRef = NULL ; |
236 | m_pictHandle = NULL ; | |
20b69855 | 237 | m_hBitmap = NULL ; |
71cc158e | 238 | |
20b69855 SC |
239 | m_rawAccessCount = 0 ; |
240 | m_hasAlpha = false; | |
519cb848 SC |
241 | } |
242 | ||
2bf8f4c0 RD |
243 | wxBitmapRefData::wxBitmapRefData(const wxBitmapRefData &tocopy) |
244 | { | |
245 | Init(); | |
246 | Create(tocopy.m_width, tocopy.m_height, tocopy.m_depth); | |
247 | ||
248 | if (tocopy.m_bitmapMask) | |
249 | m_bitmapMask = new wxMask(*tocopy.m_bitmapMask); | |
6239ee05 SC |
250 | else if (tocopy.m_hasAlpha) |
251 | UseAlpha(true); | |
2bf8f4c0 RD |
252 | |
253 | unsigned char* dest = (unsigned char*)GetRawAccess(); | |
254 | unsigned char* source = (unsigned char*)tocopy.GetRawAccess(); | |
6239ee05 SC |
255 | size_t numbytes = m_bytesPerRow * m_height; |
256 | memcpy( dest, source, numbytes ); | |
2bf8f4c0 RD |
257 | } |
258 | ||
20b69855 | 259 | wxBitmapRefData::wxBitmapRefData() |
5fde6fcc | 260 | { |
20b69855 | 261 | Init() ; |
72055702 SC |
262 | } |
263 | ||
902725ee | 264 | wxBitmapRefData::wxBitmapRefData( int w , int h , int d ) |
72055702 | 265 | { |
20b69855 SC |
266 | Init() ; |
267 | Create( w , h , d ) ; | |
268 | } | |
55e18dbe | 269 | |
902725ee | 270 | bool wxBitmapRefData::Create( int w , int h , int d ) |
20b69855 | 271 | { |
f73cd00f RD |
272 | m_width = wxMax(1, w); |
273 | m_height = wxMax(1, h); | |
20b69855 | 274 | m_depth = d ; |
72055702 | 275 | |
6239ee05 | 276 | m_bytesPerRow = GetBestBytesPerRow( w * 4 ) ; |
20b69855 | 277 | size_t size = m_bytesPerRow * h ; |
1cb97a54 DS |
278 | void* data = m_memBuf.GetWriteBuf( size ) ; |
279 | memset( data , 0 , size ) ; | |
280 | m_memBuf.UngetWriteBuf( size ) ; | |
71cc158e | 281 | |
20b69855 | 282 | m_hBitmap = NULL ; |
6239ee05 SC |
283 | m_hBitmap = CGBitmapContextCreate((char*) data, m_width, m_height, 8, m_bytesPerRow, wxMacGetGenericRGBColorSpace(), kCGImageAlphaNoneSkipFirst ); |
284 | wxASSERT_MSG( m_hBitmap , wxT("Unable to create CGBitmapContext context") ) ; | |
285 | CGContextTranslateCTM( m_hBitmap, 0, m_height ); | |
286 | CGContextScaleCTM( m_hBitmap, 1, -1 ); | |
e1673e52 | 287 | |
20b69855 | 288 | m_ok = ( m_hBitmap != NULL ) ; |
71cc158e | 289 | |
902725ee | 290 | return m_ok ; |
20b69855 | 291 | } |
72055702 | 292 | |
20b69855 SC |
293 | void wxBitmapRefData::UseAlpha( bool use ) |
294 | { | |
295 | if ( m_hasAlpha == use ) | |
296 | return ; | |
902725ee | 297 | |
20b69855 | 298 | m_hasAlpha = use ; |
e1673e52 | 299 | |
6239ee05 SC |
300 | CGContextRelease( m_hBitmap ); |
301 | m_hBitmap = CGBitmapContextCreate((char*) m_memBuf.GetData(), m_width, m_height, 8, m_bytesPerRow, wxMacGetGenericRGBColorSpace(), m_hasAlpha ? kCGImageAlphaPremultipliedFirst : kCGImageAlphaNoneSkipFirst ); | |
302 | wxASSERT_MSG( m_hBitmap , wxT("Unable to create CGBitmapContext context") ) ; | |
303 | CGContextTranslateCTM( m_hBitmap, 0, m_height ); | |
304 | CGContextScaleCTM( m_hBitmap, 1, -1 ); | |
72055702 SC |
305 | } |
306 | ||
20b69855 | 307 | void *wxBitmapRefData::GetRawAccess() const |
72055702 | 308 | { |
20b69855 SC |
309 | wxCHECK_MSG( Ok(), NULL , wxT("invalid bitmap") ) ; |
310 | return m_memBuf.GetData() ; | |
311 | } | |
72055702 | 312 | |
902725ee | 313 | void *wxBitmapRefData::BeginRawAccess() |
20b69855 SC |
314 | { |
315 | wxCHECK_MSG( Ok(), NULL, wxT("invalid bitmap") ) ; | |
316 | wxASSERT( m_rawAccessCount == 0 ) ; | |
902725ee | 317 | wxASSERT_MSG( m_pictHandle == NULL && m_iconRef == NULL , |
b28aeea5 | 318 | wxT("Currently, modifing bitmaps that are used in controls already is not supported") ) ; |
1cb97a54 DS |
319 | |
320 | ++m_rawAccessCount ; | |
321 | ||
1cb97a54 DS |
322 | // we must destroy an existing cached image, as |
323 | // the bitmap data may change now | |
20b69855 SC |
324 | if ( m_cgImageRef ) |
325 | { | |
326 | CGImageRelease( m_cgImageRef ) ; | |
327 | m_cgImageRef = NULL ; | |
328 | } | |
1cb97a54 | 329 | |
20b69855 SC |
330 | return m_memBuf.GetData() ; |
331 | } | |
55e18dbe | 332 | |
20b69855 SC |
333 | void wxBitmapRefData::EndRawAccess() |
334 | { | |
335 | wxCHECK_RET( Ok() , wxT("invalid bitmap") ) ; | |
336 | wxASSERT( m_rawAccessCount == 1 ) ; | |
1cb97a54 | 337 | |
20b69855 | 338 | --m_rawAccessCount ; |
20b69855 | 339 | } |
55e18dbe | 340 | |
b28aeea5 SC |
341 | bool wxBitmapRefData::HasNativeSize() |
342 | { | |
343 | int w = GetWidth() ; | |
344 | int h = GetHeight() ; | |
345 | int sz = wxMax( w , h ) ; | |
902725ee | 346 | |
1cb97a54 | 347 | return ( sz == 128 || sz == 48 || sz == 32 || sz == 16 ); |
b28aeea5 SC |
348 | } |
349 | ||
350 | IconRef wxBitmapRefData::GetIconRef() | |
351 | { | |
352 | if ( m_iconRef == NULL ) | |
353 | { | |
354 | // Create Icon Family Handle | |
902725ee | 355 | |
e1673e52 | 356 | IconFamilyHandle iconFamily = (IconFamilyHandle) NewHandle( 0 ); |
902725ee | 357 | |
b28aeea5 SC |
358 | int w = GetWidth() ; |
359 | int h = GetHeight() ; | |
360 | int sz = wxMax( w , h ) ; | |
902725ee | 361 | |
b28aeea5 SC |
362 | OSType dataType = 0 ; |
363 | OSType maskType = 0 ; | |
364 | ||
1cb97a54 | 365 | switch (sz) |
b28aeea5 | 366 | { |
1cb97a54 | 367 | case 128: |
e1673e52 | 368 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 |
6239ee05 SC |
369 | if ( UMAGetSystemVersion() >= 0x1050 ) |
370 | { | |
371 | dataType = kIconServices128PixelDataARGB ; | |
372 | } | |
373 | else | |
374 | #endif | |
375 | { | |
376 | dataType = kThumbnail32BitData ; | |
377 | maskType = kThumbnail8BitMask ; | |
378 | } | |
1cb97a54 DS |
379 | break; |
380 | ||
381 | case 48: | |
e1673e52 | 382 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 |
6239ee05 SC |
383 | if ( UMAGetSystemVersion() >= 0x1050 ) |
384 | { | |
385 | dataType = kIconServices48PixelDataARGB ; | |
386 | } | |
387 | else | |
388 | #endif | |
389 | { | |
390 | dataType = kHuge32BitData ; | |
391 | maskType = kHuge8BitMask ; | |
392 | } | |
1cb97a54 DS |
393 | break; |
394 | ||
395 | case 32: | |
e1673e52 | 396 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 |
6239ee05 SC |
397 | if ( UMAGetSystemVersion() >= 0x1050 ) |
398 | { | |
399 | dataType = kIconServices32PixelDataARGB ; | |
400 | } | |
401 | else | |
402 | #endif | |
403 | { | |
404 | dataType = kLarge32BitData ; | |
405 | maskType = kLarge8BitMask ; | |
406 | } | |
1cb97a54 DS |
407 | break; |
408 | ||
409 | case 16: | |
e1673e52 | 410 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 |
6239ee05 SC |
411 | if ( UMAGetSystemVersion() >= 0x1050 ) |
412 | { | |
413 | dataType = kIconServices16PixelDataARGB ; | |
414 | } | |
415 | else | |
416 | #endif | |
417 | { | |
418 | dataType = kSmall32BitData ; | |
419 | maskType = kSmall8BitMask ; | |
420 | } | |
1cb97a54 DS |
421 | break; |
422 | ||
423 | default: | |
424 | break; | |
b28aeea5 SC |
425 | } |
426 | ||
427 | if ( dataType != 0 ) | |
428 | { | |
e1673e52 | 429 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 |
6239ee05 | 430 | if ( maskType == 0 && UMAGetSystemVersion() >= 0x1050 ) |
b28aeea5 | 431 | { |
6239ee05 SC |
432 | size_t datasize = sz * sz * 4 ; |
433 | Handle data = NewHandle( datasize ) ; | |
434 | HLock( data ) ; | |
435 | unsigned char* ptr = (unsigned char*) *data ; | |
436 | memset( ptr, 0, datasize ); | |
437 | bool hasAlpha = HasAlpha() ; | |
438 | wxMask *mask = m_bitmapMask ; | |
439 | unsigned char * sourcePtr = (unsigned char*) GetRawAccess() ; | |
440 | unsigned char * masksourcePtr = mask ? (unsigned char*) mask->GetRawAccess() : NULL ; | |
441 | ||
442 | for ( int y = 0 ; y < h ; ++y, sourcePtr += m_bytesPerRow , masksourcePtr += mask ? mask->GetBytesPerRow() : 0 ) | |
b28aeea5 | 443 | { |
6239ee05 SC |
444 | unsigned char * source = sourcePtr; |
445 | unsigned char * masksource = masksourcePtr; | |
446 | unsigned char * dest = ptr + y * sz * 4 ; | |
447 | unsigned char a, r, g, b; | |
902725ee | 448 | |
6239ee05 SC |
449 | for ( int x = 0 ; x < w ; ++x ) |
450 | { | |
451 | a = *source ++ ; | |
452 | r = *source ++ ; | |
453 | g = *source ++ ; | |
454 | b = *source ++ ; | |
455 | ||
456 | if ( mask ) | |
457 | { | |
458 | a = 0xFF - *masksource++ ; | |
459 | } | |
460 | else if ( !hasAlpha ) | |
461 | a = 0xFF ; | |
462 | else | |
463 | { | |
464 | #if wxMAC_USE_PREMULTIPLIED_ALPHA | |
465 | // this must be non-premultiplied data | |
466 | if ( a != 0xFF && a!= 0 ) | |
467 | { | |
468 | r = r * 255 / a; | |
469 | g = g * 255 / a; | |
470 | b = b * 255 / a; | |
471 | } | |
472 | #endif | |
473 | } | |
474 | *dest++ = a ; | |
475 | *dest++ = r ; | |
476 | *dest++ = g ; | |
477 | *dest++ = b ; | |
902725ee | 478 | |
6239ee05 SC |
479 | } |
480 | } | |
481 | HUnlock( data ); | |
482 | OSStatus err = SetIconFamilyData( iconFamily, dataType , data ); | |
483 | wxASSERT_MSG( err == noErr , wxT("Error when adding bitmap") ); | |
484 | DisposeHandle( data ); | |
485 | } | |
486 | else | |
487 | #endif | |
488 | { | |
489 | // setup the header properly | |
490 | ||
491 | Handle data = NULL ; | |
492 | Handle maskdata = NULL ; | |
493 | unsigned char * maskptr = NULL ; | |
494 | unsigned char * ptr = NULL ; | |
495 | size_t datasize, masksize ; | |
496 | ||
497 | datasize = sz * sz * 4 ; | |
498 | data = NewHandle( datasize ) ; | |
499 | HLock( data ) ; | |
500 | ptr = (unsigned char*) *data ; | |
501 | memset( ptr , 0, datasize ) ; | |
502 | ||
503 | masksize = sz * sz ; | |
504 | maskdata = NewHandle( masksize ) ; | |
505 | HLock( maskdata ) ; | |
506 | maskptr = (unsigned char*) *maskdata ; | |
507 | memset( maskptr , 0 , masksize ) ; | |
508 | ||
509 | bool hasAlpha = HasAlpha() ; | |
510 | wxMask *mask = m_bitmapMask ; | |
511 | unsigned char * sourcePtr = (unsigned char*) GetRawAccess() ; | |
512 | unsigned char * masksourcePtr = mask ? (unsigned char*) mask->GetRawAccess() : NULL ; | |
513 | ||
514 | for ( int y = 0 ; y < h ; ++y, sourcePtr += m_bytesPerRow , masksourcePtr += mask ? mask->GetBytesPerRow() : 0 ) | |
515 | { | |
516 | unsigned char * source = sourcePtr; | |
517 | unsigned char * masksource = masksourcePtr; | |
518 | unsigned char * dest = ptr + y * sz * 4 ; | |
519 | unsigned char * maskdest = maskptr + y * sz ; | |
520 | unsigned char a, r, g, b; | |
521 | ||
522 | for ( int x = 0 ; x < w ; ++x ) | |
93a2b888 | 523 | { |
6239ee05 SC |
524 | a = *source ++ ; |
525 | r = *source ++ ; | |
526 | g = *source ++ ; | |
527 | b = *source ++ ; | |
528 | ||
529 | *dest++ = 0 ; | |
530 | *dest++ = r ; | |
531 | *dest++ = g ; | |
532 | *dest++ = b ; | |
533 | ||
534 | if ( mask ) | |
6239ee05 | 535 | *maskdest++ = 0xFF - *masksource++ ; |
6239ee05 SC |
536 | else if ( hasAlpha ) |
537 | *maskdest++ = a ; | |
538 | else | |
539 | *maskdest++ = 0xFF ; | |
93a2b888 | 540 | } |
b28aeea5 | 541 | } |
6239ee05 SC |
542 | |
543 | OSStatus err = SetIconFamilyData( iconFamily, dataType , data ) ; | |
544 | wxASSERT_MSG( err == noErr , wxT("Error when adding bitmap") ) ; | |
545 | ||
546 | err = SetIconFamilyData( iconFamily, maskType , maskdata ) ; | |
547 | wxASSERT_MSG( err == noErr , wxT("Error when adding mask") ) ; | |
548 | ||
549 | HUnlock( data ) ; | |
550 | HUnlock( maskdata ) ; | |
551 | DisposeHandle( data ) ; | |
552 | DisposeHandle( maskdata ) ; | |
b28aeea5 | 553 | } |
b28aeea5 SC |
554 | } |
555 | else | |
556 | { | |
b28aeea5 SC |
557 | PicHandle pic = GetPictHandle() ; |
558 | SetIconFamilyData( iconFamily, 'PICT' , (Handle) pic ) ; | |
559 | } | |
b28aeea5 | 560 | // transform into IconRef |
6239ee05 | 561 | |
c881da96 SC |
562 | // cleaner version existing from 10.3 upwards |
563 | HLock((Handle) iconFamily); | |
564 | OSStatus err = GetIconRefFromIconFamilyPtr( *iconFamily, GetHandleSize((Handle) iconFamily), &m_iconRef ); | |
565 | HUnlock((Handle) iconFamily); | |
566 | wxASSERT_MSG( err == noErr , wxT("Error when constructing icon ref") ); | |
c881da96 | 567 | DisposeHandle( (Handle) iconFamily ) ; |
b28aeea5 | 568 | } |
1cb97a54 | 569 | |
b28aeea5 SC |
570 | return m_iconRef ; |
571 | } | |
572 | ||
573 | PicHandle wxBitmapRefData::GetPictHandle() | |
574 | { | |
575 | if ( m_pictHandle == NULL ) | |
576 | { | |
6239ee05 SC |
577 | #ifndef __LP64__ |
578 | GraphicsExportComponent exporter = 0; | |
579 | OSStatus err = OpenADefaultComponent(GraphicsExporterComponentType, kQTFileTypePicture, &exporter); | |
580 | if (noErr == err) | |
581 | { | |
582 | m_pictHandle = (PicHandle) NewHandle(0); | |
583 | if ( m_pictHandle ) | |
584 | { | |
585 | // QT does not correctly export the mask | |
586 | // TODO if we get around to it create a synthetic PICT with the CopyBits and Mask commands | |
968c951f | 587 | CGImageRef imageRef = CreateCGImage(); |
6239ee05 SC |
588 | err = GraphicsExportSetInputCGImage( exporter, imageRef ); |
589 | err = GraphicsExportSetOutputHandle(exporter, (Handle)m_pictHandle); | |
590 | err = GraphicsExportDoExport(exporter, NULL); | |
591 | CGImageRelease( imageRef ); | |
592 | ||
593 | size_t handleSize = GetHandleSize( (Handle) m_pictHandle ); | |
594 | // the 512 bytes header is only needed for pict files, but not in memory | |
595 | if ( handleSize >= 512 ) | |
596 | { | |
597 | memmove( *m_pictHandle , (char*)(*m_pictHandle)+512, handleSize - 512 ); | |
598 | SetHandleSize( (Handle) m_pictHandle, handleSize - 512 ); | |
599 | } | |
600 | } | |
601 | CloseComponent( exporter ); | |
602 | } | |
4f74e0d1 | 603 | #endif |
b28aeea5 | 604 | } |
1cb97a54 | 605 | |
b28aeea5 SC |
606 | return m_pictHandle ; |
607 | } | |
55e18dbe | 608 | |
7fc641af SC |
609 | void wxMacMemoryBufferReleaseProc(void *info, const void *data, size_t size); |
610 | ||
89954433 | 611 | void wxMacMemoryBufferReleaseProc(void *info, const void *data, size_t WXUNUSED(size)) |
20b69855 | 612 | { |
71cc158e | 613 | wxMemoryBuffer* membuf = (wxMemoryBuffer*) info ; |
1cb97a54 | 614 | |
71cc158e | 615 | wxASSERT( data == membuf->GetData() ) ; |
1cb97a54 | 616 | |
71cc158e | 617 | delete membuf ; |
5fde6fcc GD |
618 | } |
619 | ||
968c951f | 620 | CGImageRef wxBitmapRefData::CreateCGImage() const |
be295828 | 621 | { |
20b69855 SC |
622 | wxASSERT( m_ok ) ; |
623 | wxASSERT( m_rawAccessCount >= 0 ) ; | |
624 | CGImageRef image ; | |
625 | if ( m_rawAccessCount > 0 || m_cgImageRef == NULL ) | |
be295828 | 626 | { |
e1673e52 | 627 | if ( m_depth != 1 && m_bitmapMask == NULL ) |
be295828 | 628 | { |
6239ee05 | 629 | if ( m_bitmapMask ) |
be295828 | 630 | { |
6239ee05 SC |
631 | CGImageRef tempImage = CGBitmapContextCreateImage( m_hBitmap ); |
632 | CGImageRef tempMask = CGBitmapContextCreateImage((CGContextRef) m_bitmapMask->GetHBITMAP() ); | |
633 | image = CGImageCreateWithMask( tempImage, tempMask ); | |
634 | CGImageRelease(tempMask); | |
635 | CGImageRelease(tempImage); | |
be295828 | 636 | } |
6239ee05 SC |
637 | else |
638 | image = CGBitmapContextCreateImage( m_hBitmap ); | |
be295828 | 639 | } |
1cb97a54 | 640 | else |
e40298d5 | 641 | { |
6239ee05 SC |
642 | size_t imageSize = m_height * m_bytesPerRow ; |
643 | void * dataBuffer = m_memBuf.GetData() ; | |
644 | int w = m_width ; | |
645 | int h = m_height ; | |
646 | CGImageAlphaInfo alphaInfo = kCGImageAlphaNoneSkipFirst ; | |
647 | wxMemoryBuffer* membuf = NULL ; | |
648 | ||
649 | if ( m_bitmapMask ) | |
1cb97a54 | 650 | { |
6239ee05 SC |
651 | alphaInfo = kCGImageAlphaFirst ; |
652 | membuf = new wxMemoryBuffer( imageSize ) ; | |
653 | memcpy( membuf->GetData() , dataBuffer , imageSize ) ; | |
654 | unsigned char *sourcemaskstart = (unsigned char *) m_bitmapMask->GetRawAccess() ; | |
655 | int maskrowbytes = m_bitmapMask->GetBytesPerRow() ; | |
656 | unsigned char *destalphastart = (unsigned char *) membuf->GetData() ; | |
657 | for ( int y = 0 ; y < h ; ++y , destalphastart += m_bytesPerRow, sourcemaskstart += maskrowbytes) | |
658 | { | |
659 | unsigned char *sourcemask = sourcemaskstart ; | |
660 | unsigned char *destalpha = destalphastart ; | |
661 | for ( int x = 0 ; x < w ; ++x , sourcemask += kMaskBytesPerPixel , destalpha += 4 ) | |
662 | { | |
663 | *destalpha = 0xFF - *sourcemask ; | |
664 | } | |
665 | } | |
666 | } | |
667 | else | |
668 | { | |
669 | if ( m_hasAlpha ) | |
670 | { | |
20b69855 | 671 | #if wxMAC_USE_PREMULTIPLIED_ALPHA |
6239ee05 | 672 | alphaInfo = kCGImageAlphaPremultipliedFirst ; |
20b69855 | 673 | #else |
6239ee05 | 674 | alphaInfo = kCGImageAlphaFirst ; |
20b69855 | 675 | #endif |
6239ee05 SC |
676 | } |
677 | ||
678 | membuf = new wxMemoryBuffer( m_memBuf ) ; | |
1cb97a54 | 679 | } |
6239ee05 SC |
680 | |
681 | CGDataProviderRef dataProvider = NULL ; | |
682 | if ( m_depth == 1 ) | |
683 | { | |
684 | wxMemoryBuffer* maskBuf = new wxMemoryBuffer( m_width * m_height ); | |
685 | unsigned char * maskBufData = (unsigned char *) maskBuf->GetData(); | |
686 | unsigned char * bufData = (unsigned char *) membuf->GetData() ; | |
687 | // copy one color component | |
688 | for( int i = 0 ; i < m_width * m_height ; ++i ) | |
689 | maskBufData[i] = bufData[i*4+3]; | |
690 | dataProvider = | |
691 | CGDataProviderCreateWithData( | |
692 | maskBuf , (const void *) maskBufData , m_width * m_height, | |
693 | wxMacMemoryBufferReleaseProc ); | |
694 | // as we are now passing the mask buffer to the data provider, we have | |
695 | // to release the membuf ourselves | |
696 | delete membuf ; | |
697 | ||
698 | image = ::CGImageMaskCreate( w, h, 8, 8, m_width , dataProvider, NULL, false ); | |
699 | } | |
700 | else | |
701 | { | |
702 | CGColorSpaceRef colorSpace = wxMacGetGenericRGBColorSpace(); | |
703 | dataProvider = | |
704 | CGDataProviderCreateWithData( | |
705 | membuf , (const void *)membuf->GetData() , imageSize, | |
706 | wxMacMemoryBufferReleaseProc ); | |
707 | image = | |
708 | ::CGImageCreate( | |
709 | w, h, 8 , 32 , m_bytesPerRow , colorSpace, alphaInfo , | |
710 | dataProvider, NULL , false , kCGRenderingIntentDefault ); | |
711 | } | |
712 | CGDataProviderRelease( dataProvider); | |
b083987d | 713 | } |
20b69855 SC |
714 | } |
715 | else | |
716 | { | |
717 | image = m_cgImageRef ; | |
718 | CGImageRetain( image ) ; | |
be295828 | 719 | } |
1cb97a54 | 720 | |
20b69855 SC |
721 | if ( m_rawAccessCount == 0 && m_cgImageRef == NULL) |
722 | { | |
723 | // we keep it for later use | |
724 | m_cgImageRef = image ; | |
725 | CGImageRetain( image ) ; | |
902725ee | 726 | } |
1cb97a54 | 727 | |
20b69855 | 728 | return image ; |
be295828 SC |
729 | } |
730 | ||
6239ee05 SC |
731 | CGContextRef wxBitmapRefData::GetBitmapContext() const |
732 | { | |
733 | return m_hBitmap; | |
734 | } | |
20b69855 | 735 | |
20b69855 SC |
736 | void wxBitmapRefData::Free() |
737 | { | |
738 | wxASSERT_MSG( m_rawAccessCount == 0 , wxT("Bitmap still selected when destroyed") ) ; | |
739 | ||
20b69855 SC |
740 | if ( m_cgImageRef ) |
741 | { | |
742 | CGImageRelease( m_cgImageRef ) ; | |
743 | m_cgImageRef = NULL ; | |
e40298d5 | 744 | } |
1cb97a54 | 745 | |
b28aeea5 SC |
746 | if ( m_iconRef ) |
747 | { | |
748 | ReleaseIconRef( m_iconRef ) ; | |
749 | m_iconRef = NULL ; | |
750 | } | |
1cb97a54 | 751 | |
4f74e0d1 | 752 | #ifndef __LP64__ |
b28aeea5 SC |
753 | if ( m_pictHandle ) |
754 | { | |
755 | KillPicture( m_pictHandle ) ; | |
756 | m_pictHandle = NULL ; | |
757 | } | |
6239ee05 | 758 | #endif |
1cb97a54 | 759 | |
20b69855 SC |
760 | if ( m_hBitmap ) |
761 | { | |
6239ee05 | 762 | CGContextRelease(m_hBitmap); |
20b69855 SC |
763 | m_hBitmap = NULL ; |
764 | } | |
1cb97a54 | 765 | |
20b69855 | 766 | if (m_bitmapMask) |
e40298d5 | 767 | { |
20b69855 SC |
768 | delete m_bitmapMask; |
769 | m_bitmapMask = NULL; | |
e40298d5 | 770 | } |
e9576ca5 SC |
771 | } |
772 | ||
85f296a3 SC |
773 | wxBitmapRefData::~wxBitmapRefData() |
774 | { | |
20b69855 | 775 | Free() ; |
85f296a3 SC |
776 | } |
777 | ||
90b959ae SC |
778 | bool wxBitmap::CopyFromIcon(const wxIcon& icon) |
779 | { | |
1cb97a54 | 780 | bool created = false ; |
20b69855 SC |
781 | int w = icon.GetWidth() ; |
782 | int h = icon.GetHeight() ; | |
b28aeea5 | 783 | |
20b69855 SC |
784 | Create( icon.GetWidth() , icon.GetHeight() ) ; |
785 | ||
71cc158e | 786 | if ( w == h && ( w == 16 || w == 32 || w == 48 || w == 128 ) ) |
20b69855 SC |
787 | { |
788 | IconFamilyHandle iconFamily = NULL ; | |
1cb97a54 DS |
789 | Handle imagehandle = NewHandle( 0 ) ; |
790 | Handle maskhandle = NewHandle( 0 ) ; | |
902725ee | 791 | |
9cc62fc8 SC |
792 | OSType maskType = 0; |
793 | OSType dataType = 0; | |
902725ee | 794 | IconSelectorValue selector = 0 ; |
1cb97a54 DS |
795 | |
796 | switch (w) | |
71cc158e | 797 | { |
1cb97a54 DS |
798 | case 128: |
799 | dataType = kThumbnail32BitData ; | |
800 | maskType = kThumbnail8BitMask ; | |
801 | selector = kSelectorAllAvailableData ; | |
802 | break; | |
803 | ||
804 | case 48: | |
805 | dataType = kHuge32BitData ; | |
806 | maskType = kHuge8BitMask ; | |
807 | selector = kSelectorHuge32Bit | kSelectorHuge8BitMask ; | |
808 | break; | |
809 | ||
810 | case 32: | |
811 | dataType = kLarge32BitData ; | |
812 | maskType = kLarge8BitMask ; | |
813 | selector = kSelectorLarge32Bit | kSelectorLarge8BitMask ; | |
814 | break; | |
815 | ||
816 | case 16: | |
817 | dataType = kSmall32BitData ; | |
818 | maskType = kSmall8BitMask ; | |
819 | selector = kSelectorSmall32Bit | kSelectorSmall8BitMask ; | |
820 | break; | |
821 | ||
822 | default: | |
823 | break; | |
71cc158e | 824 | } |
71cc158e | 825 | |
1cb97a54 | 826 | OSStatus err = IconRefToIconFamily( MAC_WXHICON(icon.GetHICON()) , selector , &iconFamily ) ; |
71cc158e | 827 | |
1cb97a54 DS |
828 | err = GetIconFamilyData( iconFamily , dataType , imagehandle ) ; |
829 | err = GetIconFamilyData( iconFamily , maskType , maskhandle ) ; | |
b28aeea5 SC |
830 | size_t imagehandlesize = GetHandleSize( imagehandle ) ; |
831 | size_t maskhandlesize = GetHandleSize( maskhandle ) ; | |
902725ee | 832 | |
b28aeea5 | 833 | if ( imagehandlesize != 0 && maskhandlesize != 0 ) |
20b69855 | 834 | { |
b28aeea5 SC |
835 | wxASSERT( GetHandleSize( imagehandle ) == w * 4 * h ) ; |
836 | wxASSERT( GetHandleSize( maskhandle ) == w * h ) ; | |
1cb97a54 | 837 | |
b28aeea5 | 838 | UseAlpha() ; |
1cb97a54 | 839 | |
b28aeea5 SC |
840 | unsigned char *source = (unsigned char *) *imagehandle ; |
841 | unsigned char *sourcemask = (unsigned char *) *maskhandle ; | |
b28aeea5 | 842 | unsigned char* destination = (unsigned char*) BeginRawAccess() ; |
1cb97a54 | 843 | |
b28aeea5 | 844 | for ( int y = 0 ; y < h ; ++y ) |
20b69855 | 845 | { |
b28aeea5 SC |
846 | for ( int x = 0 ; x < w ; ++x ) |
847 | { | |
6239ee05 SC |
848 | unsigned char a = *sourcemask++; |
849 | *destination++ = a; | |
b28aeea5 | 850 | source++ ; |
6239ee05 SC |
851 | #if wxMAC_USE_PREMULTIPLIED_ALPHA |
852 | *destination++ = ( (*source++) * a + 127 ) / 255; | |
853 | *destination++ = ( (*source++) * a + 127 ) / 255; | |
854 | *destination++ = ( (*source++) * a + 127 ) / 255; | |
855 | #else | |
b28aeea5 SC |
856 | *destination++ = *source++ ; |
857 | *destination++ = *source++ ; | |
858 | *destination++ = *source++ ; | |
6239ee05 | 859 | #endif |
b28aeea5 | 860 | } |
20b69855 | 861 | } |
1cb97a54 | 862 | |
b28aeea5 SC |
863 | EndRawAccess() ; |
864 | DisposeHandle( imagehandle ) ; | |
865 | DisposeHandle( maskhandle ) ; | |
95d8425f | 866 | created = true ; |
20b69855 | 867 | } |
902725ee | 868 | |
1cb97a54 | 869 | DisposeHandle( (Handle) iconFamily ) ; |
20b69855 | 870 | } |
902725ee | 871 | |
b28aeea5 | 872 | if ( !created ) |
902725ee | 873 | { |
20b69855 SC |
874 | wxMemoryDC dc ; |
875 | dc.SelectObject( *this ) ; | |
876 | dc.DrawIcon( icon , 0 , 0 ) ; | |
877 | dc.SelectObject( wxNullBitmap ) ; | |
878 | } | |
1cb97a54 | 879 | |
125c389e | 880 | return true; |
90b959ae SC |
881 | } |
882 | ||
e9576ca5 SC |
883 | wxBitmap::wxBitmap() |
884 | { | |
e9576ca5 SC |
885 | } |
886 | ||
887 | wxBitmap::~wxBitmap() | |
888 | { | |
e9576ca5 SC |
889 | } |
890 | ||
891 | wxBitmap::wxBitmap(const char bits[], int the_width, int the_height, int no_bits) | |
892 | { | |
20b69855 | 893 | m_refData = new wxBitmapRefData( the_width , the_height , no_bits ) ; |
e9576ca5 | 894 | |
d2c6d549 GD |
895 | if ( no_bits == 1 ) |
896 | { | |
973b0afb | 897 | int linesize = ( the_width / (sizeof(unsigned char) * 8)) ; |
1cb97a54 | 898 | if ( the_width % (sizeof(unsigned char) * 8) ) |
973b0afb | 899 | linesize += sizeof(unsigned char); |
1cb97a54 | 900 | |
20b69855 | 901 | unsigned char* linestart = (unsigned char*) bits ; |
6239ee05 | 902 | unsigned char* destptr = (unsigned char*) BeginRawAccess() ; |
1cb97a54 | 903 | |
6239ee05 | 904 | for ( int y = 0 ; y < the_height ; ++y , linestart += linesize, destptr += M_BITMAPDATA->GetBytesPerRow() ) |
973b0afb | 905 | { |
6239ee05 | 906 | unsigned char* destination = destptr; |
1cb97a54 DS |
907 | int index, bit, mask; |
908 | ||
973b0afb GD |
909 | for ( int x = 0 ; x < the_width ; ++x ) |
910 | { | |
1cb97a54 DS |
911 | index = x / 8 ; |
912 | bit = x % 8 ; | |
913 | mask = 1 << bit ; | |
914 | ||
b083987d | 915 | if ( linestart[index] & mask ) |
973b0afb | 916 | { |
20b69855 SC |
917 | *destination++ = 0xFF ; |
918 | *destination++ = 0 ; | |
919 | *destination++ = 0 ; | |
920 | *destination++ = 0 ; | |
973b0afb GD |
921 | } |
922 | else | |
923 | { | |
20b69855 SC |
924 | *destination++ = 0xFF ; |
925 | *destination++ = 0xFF ; | |
926 | *destination++ = 0xFF ; | |
927 | *destination++ = 0xFF ; | |
973b0afb GD |
928 | } |
929 | } | |
930 | } | |
1cb97a54 | 931 | |
20b69855 | 932 | EndRawAccess() ; |
d2c6d549 GD |
933 | } |
934 | else | |
935 | { | |
973b0afb | 936 | wxFAIL_MSG(wxT("multicolor BITMAPs not yet implemented")); |
d2c6d549 | 937 | } |
e9576ca5 SC |
938 | } |
939 | ||
940 | wxBitmap::wxBitmap(int w, int h, int d) | |
941 | { | |
942 | (void)Create(w, h, d); | |
e9576ca5 SC |
943 | } |
944 | ||
452418c4 | 945 | wxBitmap::wxBitmap(const void* data, wxBitmapType type, int width, int height, int depth) |
e9576ca5 SC |
946 | { |
947 | (void) Create(data, type, width, height, depth); | |
e9576ca5 SC |
948 | } |
949 | ||
a8562f55 | 950 | wxBitmap::wxBitmap(const wxString& filename, wxBitmapType type) |
e9576ca5 | 951 | { |
a8562f55 | 952 | LoadFile(filename, type); |
e9576ca5 SC |
953 | } |
954 | ||
2bf8f4c0 RD |
955 | wxObjectRefData* wxBitmap::CreateRefData() const |
956 | { | |
957 | return new wxBitmapRefData; | |
958 | } | |
959 | ||
960 | wxObjectRefData* wxBitmap::CloneRefData(const wxObjectRefData* data) const | |
961 | { | |
962 | return new wxBitmapRefData(*wx_static_cast(const wxBitmapRefData *, data)); | |
963 | } | |
964 | ||
1cb97a54 | 965 | void * wxBitmap::GetRawAccess() const |
20b69855 SC |
966 | { |
967 | wxCHECK_MSG( Ok() , NULL , wxT("invalid bitmap") ) ; | |
1cb97a54 | 968 | |
20b69855 SC |
969 | return M_BITMAPDATA->GetRawAccess() ; |
970 | } | |
971 | ||
1cb97a54 | 972 | void * wxBitmap::BeginRawAccess() |
20b69855 SC |
973 | { |
974 | wxCHECK_MSG( Ok() , NULL , wxT("invalid bitmap") ) ; | |
1cb97a54 | 975 | |
20b69855 SC |
976 | return M_BITMAPDATA->BeginRawAccess() ; |
977 | } | |
978 | ||
979 | void wxBitmap::EndRawAccess() | |
980 | { | |
981 | wxCHECK_RET( Ok() , wxT("invalid bitmap") ) ; | |
1cb97a54 | 982 | |
20b69855 SC |
983 | M_BITMAPDATA->EndRawAccess() ; |
984 | } | |
985 | ||
968c951f | 986 | CGImageRef wxBitmap::CreateCGImage() const |
03e11df5 | 987 | { |
20b69855 | 988 | wxCHECK_MSG( Ok(), NULL , wxT("invalid bitmap") ) ; |
1cb97a54 | 989 | |
968c951f SC |
990 | return M_BITMAPDATA->CreateCGImage() ; |
991 | } | |
992 | ||
993 | IconRef wxBitmap::GetIconRef() const | |
994 | { | |
995 | wxCHECK_MSG( Ok(), NULL , wxT("invalid bitmap") ) ; | |
996 | ||
997 | return M_BITMAPDATA->GetIconRef() ; | |
998 | } | |
999 | ||
1000 | IconRef wxBitmap::CreateIconRef() const | |
1001 | { | |
1002 | IconRef icon = GetIconRef(); | |
1003 | verify_noerr( AcquireIconRef(icon) ); | |
1004 | return icon; | |
03e11df5 GD |
1005 | } |
1006 | ||
5fde6fcc GD |
1007 | wxBitmap wxBitmap::GetSubBitmap(const wxRect &rect) const |
1008 | { | |
20b69855 | 1009 | wxCHECK_MSG( Ok() && |
5fde6fcc GD |
1010 | (rect.x >= 0) && (rect.y >= 0) && |
1011 | (rect.x+rect.width <= GetWidth()) && | |
1012 | (rect.y+rect.height <= GetHeight()), | |
1013 | wxNullBitmap, wxT("invalid bitmap or bitmap region") ); | |
1014 | ||
20b69855 SC |
1015 | wxBitmap ret( rect.width, rect.height, GetDepth() ); |
1016 | wxASSERT_MSG( ret.Ok(), wxT("GetSubBitmap error") ); | |
5fde6fcc | 1017 | |
20b69855 SC |
1018 | int destwidth = rect.width ; |
1019 | int destheight = rect.height ; | |
1cb97a54 | 1020 | |
20b69855 | 1021 | { |
1cb97a54 DS |
1022 | unsigned char *sourcedata = (unsigned char*) GetRawAccess() ; |
1023 | unsigned char *destdata = (unsigned char*) ret.BeginRawAccess() ; | |
1024 | wxASSERT( (sourcedata != NULL) && (destdata != NULL) ) ; | |
1025 | ||
6239ee05 SC |
1026 | int sourcelinesize = GetBitmapData()->GetBytesPerRow() ; |
1027 | int destlinesize = ret.GetBitmapData()->GetBytesPerRow() ; | |
20b69855 SC |
1028 | unsigned char *source = sourcedata + rect.x * 4 + rect.y * sourcelinesize ; |
1029 | unsigned char *dest = destdata ; | |
1cb97a54 DS |
1030 | |
1031 | for (int yy = 0; yy < destheight; ++yy, source += sourcelinesize , dest += destlinesize) | |
20b69855 SC |
1032 | { |
1033 | memcpy( dest , source , destlinesize ) ; | |
1034 | } | |
1035 | } | |
1cb97a54 | 1036 | |
20b69855 | 1037 | ret.EndRawAccess() ; |
902725ee | 1038 | |
20b69855 SC |
1039 | if ( M_BITMAPDATA->m_bitmapMask ) |
1040 | { | |
1041 | wxMemoryBuffer maskbuf ; | |
6239ee05 | 1042 | int rowBytes = GetBestBytesPerRow( destwidth * kMaskBytesPerPixel ); |
20b69855 | 1043 | size_t maskbufsize = rowBytes * destheight ; |
20b69855 | 1044 | |
7fe44dee | 1045 | int sourcelinesize = M_BITMAPDATA->m_bitmapMask->GetBytesPerRow() ; |
20b69855 | 1046 | int destlinesize = rowBytes ; |
1cb97a54 | 1047 | |
20b69855 | 1048 | unsigned char *source = (unsigned char *) M_BITMAPDATA->m_bitmapMask->GetRawAccess() ; |
1cb97a54 DS |
1049 | unsigned char *destdata = (unsigned char * ) maskbuf.GetWriteBuf( maskbufsize ) ; |
1050 | wxASSERT( (source != NULL) && (destdata != NULL) ) ; | |
1051 | ||
6239ee05 | 1052 | source += rect.x * kMaskBytesPerPixel + rect.y * sourcelinesize ; |
20b69855 SC |
1053 | unsigned char *dest = destdata ; |
1054 | ||
1cb97a54 | 1055 | for (int yy = 0; yy < destheight; ++yy, source += sourcelinesize , dest += destlinesize) |
20b69855 | 1056 | { |
392e179f | 1057 | memcpy( dest , source , destlinesize ) ; |
20b69855 | 1058 | } |
1cb97a54 | 1059 | |
20b69855 SC |
1060 | maskbuf.UngetWriteBuf( maskbufsize ) ; |
1061 | ret.SetMask( new wxMask( maskbuf , destwidth , destheight , rowBytes ) ) ; | |
1062 | } | |
1063 | else if ( HasAlpha() ) | |
1064 | ret.UseAlpha() ; | |
5fde6fcc | 1065 | |
20b69855 | 1066 | return ret; |
5fde6fcc GD |
1067 | } |
1068 | ||
e9576ca5 SC |
1069 | bool wxBitmap::Create(int w, int h, int d) |
1070 | { | |
1071 | UnRef(); | |
1072 | ||
20b69855 SC |
1073 | if ( d < 0 ) |
1074 | d = wxDisplayDepth() ; | |
2a391f87 | 1075 | |
20b69855 | 1076 | m_refData = new wxBitmapRefData( w , h , d ); |
55e18dbe | 1077 | |
20b69855 | 1078 | return M_BITMAPDATA->Ok() ; |
519cb848 SC |
1079 | } |
1080 | ||
a8562f55 | 1081 | bool wxBitmap::LoadFile(const wxString& filename, wxBitmapType type) |
e9576ca5 SC |
1082 | { |
1083 | UnRef(); | |
1084 | ||
e9576ca5 SC |
1085 | wxBitmapHandler *handler = FindHandler(type); |
1086 | ||
a8562f55 GD |
1087 | if ( handler ) |
1088 | { | |
4e9ed364 | 1089 | m_refData = new wxBitmapRefData; |
e9576ca5 | 1090 | |
a8562f55 | 1091 | return handler->LoadFile(this, filename, type, -1, -1); |
e9576ca5 | 1092 | } |
a8562f55 GD |
1093 | else |
1094 | { | |
d45318b8 | 1095 | #if wxUSE_IMAGE |
a8562f55 | 1096 | wxImage loadimage(filename, type); |
1cb97a54 DS |
1097 | if (loadimage.Ok()) |
1098 | { | |
a8562f55 | 1099 | *this = loadimage; |
1cb97a54 | 1100 | |
a8562f55 GD |
1101 | return true; |
1102 | } | |
d45318b8 | 1103 | #endif |
a8562f55 | 1104 | } |
1cb97a54 | 1105 | |
427ff662 | 1106 | wxLogWarning(wxT("no bitmap handler for type %d defined."), type); |
1cb97a54 | 1107 | |
a8562f55 | 1108 | return false; |
e9576ca5 SC |
1109 | } |
1110 | ||
452418c4 | 1111 | bool wxBitmap::Create(const void* data, wxBitmapType type, int width, int height, int depth) |
e9576ca5 SC |
1112 | { |
1113 | UnRef(); | |
1114 | ||
1115 | m_refData = new wxBitmapRefData; | |
1116 | ||
1117 | wxBitmapHandler *handler = FindHandler(type); | |
1118 | ||
1cb97a54 DS |
1119 | if ( handler == NULL ) |
1120 | { | |
427ff662 | 1121 | wxLogWarning(wxT("no bitmap handler for type %d defined."), type); |
e9576ca5 | 1122 | |
902725ee | 1123 | return false; |
e9576ca5 SC |
1124 | } |
1125 | ||
1126 | return handler->Create(this, data, type, width, height, depth); | |
1127 | } | |
1128 | ||
d45318b8 RN |
1129 | #if wxUSE_IMAGE |
1130 | ||
fec19ea9 VS |
1131 | wxBitmap::wxBitmap(const wxImage& image, int depth) |
1132 | { | |
637b7e4f | 1133 | wxCHECK_RET( image.Ok(), wxT("invalid image") ); |
6239ee05 | 1134 | |
fec19ea9 VS |
1135 | // width and height of the device-dependent bitmap |
1136 | int width = image.GetWidth(); | |
1137 | int height = image.GetHeight(); | |
6239ee05 | 1138 | |
d0ee33f5 | 1139 | m_refData = new wxBitmapRefData( width , height , depth ) ; |
6239ee05 | 1140 | |
20b69855 | 1141 | // Create picture |
6239ee05 | 1142 | |
20b69855 | 1143 | bool hasAlpha = false ; |
6239ee05 | 1144 | |
20b69855 SC |
1145 | if ( image.HasMask() ) |
1146 | { | |
1147 | // takes precedence, don't mix with alpha info | |
1148 | } | |
1149 | else | |
1150 | { | |
1151 | hasAlpha = image.HasAlpha() ; | |
1152 | } | |
6239ee05 | 1153 | |
20b69855 SC |
1154 | if ( hasAlpha ) |
1155 | UseAlpha() ; | |
6239ee05 SC |
1156 | |
1157 | unsigned char* destinationstart = (unsigned char*) BeginRawAccess() ; | |
fec19ea9 | 1158 | register unsigned char* data = image.GetData(); |
6239ee05 | 1159 | if ( destinationstart != NULL && data != NULL ) |
fec19ea9 | 1160 | { |
6239ee05 SC |
1161 | const unsigned char *alpha = hasAlpha ? image.GetAlpha() : NULL ; |
1162 | for (int y = 0; y < height; destinationstart += M_BITMAPDATA->GetBytesPerRow(), y++) | |
fec19ea9 | 1163 | { |
6239ee05 SC |
1164 | unsigned char * destination = destinationstart; |
1165 | for (int x = 0; x < width; x++) | |
20b69855 | 1166 | { |
6239ee05 SC |
1167 | if ( hasAlpha ) |
1168 | { | |
1169 | const unsigned char a = *alpha++; | |
1170 | *destination++ = a ; | |
1171 | ||
20b69855 | 1172 | #if wxMAC_USE_PREMULTIPLIED_ALPHA |
6239ee05 SC |
1173 | *destination++ = ((*data++) * a + 127) / 255 ; |
1174 | *destination++ = ((*data++) * a + 127) / 255 ; | |
1175 | *destination++ = ((*data++) * a + 127) / 255 ; | |
20b69855 | 1176 | #else |
6239ee05 SC |
1177 | *destination++ = *data++ ; |
1178 | *destination++ = *data++ ; | |
1179 | *destination++ = *data++ ; | |
20b69855 | 1180 | #endif |
6239ee05 SC |
1181 | } |
1182 | else | |
1183 | { | |
1184 | *destination++ = 0xFF ; | |
1185 | *destination++ = *data++ ; | |
1186 | *destination++ = *data++ ; | |
1187 | *destination++ = *data++ ; | |
1188 | } | |
20b69855 | 1189 | } |
fec19ea9 | 1190 | } |
6239ee05 SC |
1191 | |
1192 | EndRawAccess() ; | |
55e18dbe | 1193 | } |
20b69855 | 1194 | if ( image.HasMask() ) |
20b69855 | 1195 | SetMask( new wxMask( *this , wxColour( image.GetMaskRed() , image.GetMaskGreen() , image.GetMaskBlue() ) ) ) ; |
fec19ea9 VS |
1196 | } |
1197 | ||
1198 | wxImage wxBitmap::ConvertToImage() const | |
1199 | { | |
1200 | wxImage image; | |
55e18dbe | 1201 | |
fec19ea9 VS |
1202 | wxCHECK_MSG( Ok(), wxNullImage, wxT("invalid bitmap") ); |
1203 | ||
1204 | // create an wxImage object | |
1205 | int width = GetWidth(); | |
1206 | int height = GetHeight(); | |
1207 | image.Create( width, height ); | |
1208 | ||
1209 | unsigned char *data = image.GetData(); | |
fec19ea9 VS |
1210 | wxCHECK_MSG( data, wxNullImage, wxT("Could not allocate data for image") ); |
1211 | ||
6239ee05 | 1212 | unsigned char* sourcestart = (unsigned char*) GetRawAccess() ; |
20b69855 SC |
1213 | |
1214 | bool hasAlpha = false ; | |
1215 | bool hasMask = false ; | |
7e7f40ed | 1216 | int maskBytesPerRow = 0 ; |
20b69855 SC |
1217 | unsigned char *alpha = NULL ; |
1218 | unsigned char *mask = NULL ; | |
1cb97a54 | 1219 | |
20b69855 | 1220 | if ( HasAlpha() ) |
20b69855 | 1221 | hasAlpha = true ; |
20b69855 SC |
1222 | |
1223 | if ( GetMask() ) | |
2b5f62a0 | 1224 | { |
20b69855 SC |
1225 | hasMask = true ; |
1226 | mask = (unsigned char*) GetMask()->GetRawAccess() ; | |
7e7f40ed | 1227 | maskBytesPerRow = GetMask()->GetBytesPerRow() ; |
e40298d5 | 1228 | } |
20b69855 SC |
1229 | |
1230 | if ( hasAlpha ) | |
e40298d5 | 1231 | { |
20b69855 SC |
1232 | image.SetAlpha() ; |
1233 | alpha = image.GetAlpha() ; | |
e40298d5 | 1234 | } |
1cb97a54 | 1235 | |
20b69855 | 1236 | int index = 0; |
902725ee | 1237 | |
20b69855 SC |
1238 | // The following masking algorithm is the same as well in msw/gtk: |
1239 | // the colour used as transparent one in wxImage and the one it is | |
7fe44dee | 1240 | // replaced with when it actually occurs in the bitmap |
20b69855 SC |
1241 | static const int MASK_RED = 1; |
1242 | static const int MASK_GREEN = 2; | |
1243 | static const int MASK_BLUE = 3; | |
1244 | static const int MASK_BLUE_REPLACEMENT = 2; | |
1245 | ||
6239ee05 | 1246 | for (int yy = 0; yy < height; yy++ , sourcestart += M_BITMAPDATA->GetBytesPerRow() , mask += maskBytesPerRow ) |
fec19ea9 | 1247 | { |
7e7f40ed | 1248 | unsigned char * maskp = mask ; |
6239ee05 | 1249 | unsigned char * source = sourcestart; |
1cb97a54 DS |
1250 | unsigned char a, r, g, b; |
1251 | long color; | |
1252 | ||
fec19ea9 VS |
1253 | for (int xx = 0; xx < width; xx++) |
1254 | { | |
1cb97a54 | 1255 | color = *((long*) source) ; |
f288c87b | 1256 | #ifdef WORDS_BIGENDIAN |
1cb97a54 DS |
1257 | a = ((color&0xFF000000) >> 24) ; |
1258 | r = ((color&0x00FF0000) >> 16) ; | |
1259 | g = ((color&0x0000FF00) >> 8) ; | |
1260 | b = (color&0x000000FF); | |
f288c87b SC |
1261 | #else |
1262 | b = ((color&0xFF000000) >> 24) ; | |
1263 | g = ((color&0x00FF0000) >> 16) ; | |
1264 | r = ((color&0x0000FF00) >> 8) ; | |
1265 | a = (color&0x000000FF); | |
1266 | #endif | |
20b69855 | 1267 | if ( hasMask ) |
55e18dbe | 1268 | { |
93a2b888 | 1269 | if ( *maskp++ == 0xFF ) |
e40298d5 | 1270 | { |
e59ea2c5 SC |
1271 | r = MASK_RED ; |
1272 | g = MASK_GREEN ; | |
1273 | b = MASK_BLUE ; | |
e40298d5 | 1274 | } |
e59ea2c5 SC |
1275 | else if ( r == MASK_RED && g == MASK_GREEN && b == MASK_BLUE ) |
1276 | b = MASK_BLUE_REPLACEMENT ; | |
fec19ea9 | 1277 | } |
20b69855 | 1278 | else if ( hasAlpha ) |
6239ee05 | 1279 | { |
20b69855 | 1280 | *alpha++ = a ; |
6239ee05 SC |
1281 | #if wxMAC_USE_PREMULTIPLIED_ALPHA |
1282 | // this must be non-premultiplied data | |
1283 | if ( a != 0xFF && a!= 0 ) | |
1284 | { | |
1285 | r = r * 255 / a; | |
1286 | g = g * 255 / a; | |
1287 | b = b * 255 / a; | |
1288 | } | |
1289 | #endif | |
1290 | } | |
20b69855 SC |
1291 | |
1292 | data[index ] = r ; | |
1293 | data[index + 1] = g ; | |
1294 | data[index + 2] = b ; | |
1cb97a54 | 1295 | |
fec19ea9 | 1296 | index += 3; |
20b69855 | 1297 | source += 4 ; |
fec19ea9 VS |
1298 | } |
1299 | } | |
1cb97a54 | 1300 | |
20b69855 SC |
1301 | if ( hasMask ) |
1302 | image.SetMaskColour( MASK_RED, MASK_GREEN, MASK_BLUE ); | |
1cb97a54 | 1303 | |
fec19ea9 VS |
1304 | return image; |
1305 | } | |
1306 | ||
d45318b8 | 1307 | #endif //wxUSE_IMAGE |
fec19ea9 | 1308 | |
7fe44dee DS |
1309 | bool wxBitmap::SaveFile( const wxString& filename, |
1310 | wxBitmapType type, const wxPalette *palette ) const | |
e9576ca5 | 1311 | { |
902725ee | 1312 | bool success = false; |
e9576ca5 SC |
1313 | wxBitmapHandler *handler = FindHandler(type); |
1314 | ||
a8562f55 GD |
1315 | if ( handler ) |
1316 | { | |
902725ee | 1317 | success = handler->SaveFile(this, filename, type, palette); |
a8562f55 GD |
1318 | } |
1319 | else | |
1320 | { | |
d45318b8 | 1321 | #if wxUSE_IMAGE |
a8562f55 | 1322 | wxImage image = ConvertToImage(); |
902725ee WS |
1323 | success = image.SaveFile(filename, type); |
1324 | #else | |
1325 | wxLogWarning(wxT("no bitmap handler for type %d defined."), type); | |
d45318b8 | 1326 | #endif |
a8562f55 | 1327 | } |
55e18dbe | 1328 | |
902725ee | 1329 | return success; |
e9576ca5 SC |
1330 | } |
1331 | ||
b7cacb43 | 1332 | bool wxBitmap::IsOk() const |
5fde6fcc | 1333 | { |
20b69855 | 1334 | return (M_BITMAPDATA && M_BITMAPDATA->Ok()); |
5fde6fcc GD |
1335 | } |
1336 | ||
1337 | int wxBitmap::GetHeight() const | |
1338 | { | |
1339 | wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") ); | |
1340 | ||
20b69855 | 1341 | return M_BITMAPDATA->GetHeight(); |
5fde6fcc GD |
1342 | } |
1343 | ||
1344 | int wxBitmap::GetWidth() const | |
1345 | { | |
1346 | wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") ); | |
1347 | ||
20b69855 | 1348 | return M_BITMAPDATA->GetWidth() ; |
5fde6fcc GD |
1349 | } |
1350 | ||
1351 | int wxBitmap::GetDepth() const | |
1352 | { | |
1353 | wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") ); | |
1354 | ||
20b69855 | 1355 | return M_BITMAPDATA->GetDepth(); |
5fde6fcc GD |
1356 | } |
1357 | ||
5fde6fcc GD |
1358 | wxMask *wxBitmap::GetMask() const |
1359 | { | |
1360 | wxCHECK_MSG( Ok(), (wxMask *) NULL, wxT("invalid bitmap") ); | |
1361 | ||
1362 | return M_BITMAPDATA->m_bitmapMask; | |
1363 | } | |
1364 | ||
20b69855 SC |
1365 | bool wxBitmap::HasAlpha() const |
1366 | { | |
1367 | wxCHECK_MSG( Ok(), false , wxT("invalid bitmap") ); | |
1368 | ||
1369 | return M_BITMAPDATA->HasAlpha() ; | |
1370 | } | |
1371 | ||
e9576ca5 SC |
1372 | void wxBitmap::SetWidth(int w) |
1373 | { | |
55ccdb93 | 1374 | AllocExclusive(); |
20b69855 | 1375 | M_BITMAPDATA->SetWidth(w); |
e9576ca5 SC |
1376 | } |
1377 | ||
1378 | void wxBitmap::SetHeight(int h) | |
1379 | { | |
55ccdb93 | 1380 | AllocExclusive(); |
20b69855 | 1381 | M_BITMAPDATA->SetHeight(h); |
e9576ca5 SC |
1382 | } |
1383 | ||
1384 | void wxBitmap::SetDepth(int d) | |
1385 | { | |
55ccdb93 | 1386 | AllocExclusive(); |
20b69855 | 1387 | M_BITMAPDATA->SetDepth(d); |
e9576ca5 SC |
1388 | } |
1389 | ||
e9576ca5 SC |
1390 | void wxBitmap::SetOk(bool isOk) |
1391 | { | |
55ccdb93 | 1392 | AllocExclusive(); |
20b69855 | 1393 | M_BITMAPDATA->SetOk(isOk); |
e9576ca5 SC |
1394 | } |
1395 | ||
a6de86fa | 1396 | #if wxUSE_PALETTE |
5fde6fcc GD |
1397 | wxPalette *wxBitmap::GetPalette() const |
1398 | { | |
1399 | wxCHECK_MSG( Ok(), NULL, wxT("Invalid bitmap GetPalette()") ); | |
1400 | ||
1401 | return &M_BITMAPDATA->m_bitmapPalette; | |
1402 | } | |
1403 | ||
e9576ca5 SC |
1404 | void wxBitmap::SetPalette(const wxPalette& palette) |
1405 | { | |
55ccdb93 | 1406 | AllocExclusive(); |
e9576ca5 SC |
1407 | M_BITMAPDATA->m_bitmapPalette = palette ; |
1408 | } | |
a6de86fa | 1409 | #endif // wxUSE_PALETTE |
e9576ca5 SC |
1410 | |
1411 | void wxBitmap::SetMask(wxMask *mask) | |
1412 | { | |
55ccdb93 | 1413 | AllocExclusive(); |
a8562f55 | 1414 | // Remove existing mask if there is one. |
1e74d03b | 1415 | delete M_BITMAPDATA->m_bitmapMask; |
a8562f55 | 1416 | |
e9576ca5 SC |
1417 | M_BITMAPDATA->m_bitmapMask = mask ; |
1418 | } | |
1419 | ||
20b69855 | 1420 | WXHBITMAP wxBitmap::GetHBITMAP(WXHBITMAP* mask) const |
5fde6fcc | 1421 | { |
31c1cbc7 VZ |
1422 | wxUnusedVar(mask); |
1423 | ||
6239ee05 | 1424 | return WXHBITMAP(M_BITMAPDATA->GetBitmapContext()); |
5fde6fcc GD |
1425 | } |
1426 | ||
20b69855 SC |
1427 | // ---------------------------------------------------------------------------- |
1428 | // wxMask | |
1429 | // ---------------------------------------------------------------------------- | |
e9576ca5 SC |
1430 | |
1431 | wxMask::wxMask() | |
1432 | { | |
20b69855 | 1433 | Init() ; |
e9576ca5 SC |
1434 | } |
1435 | ||
2bf8f4c0 RD |
1436 | wxMask::wxMask(const wxMask &tocopy) |
1437 | { | |
1438 | Init(); | |
1439 | ||
1440 | m_bytesPerRow = tocopy.m_bytesPerRow; | |
1441 | m_width = tocopy.m_width; | |
1442 | m_height = tocopy.m_height; | |
1443 | ||
1444 | size_t size = m_bytesPerRow * m_height; | |
1445 | unsigned char* dest = (unsigned char*)m_memBuf.GetWriteBuf( size ); | |
1446 | unsigned char* source = (unsigned char*)tocopy.m_memBuf.GetData(); | |
6239ee05 | 1447 | memcpy( dest, source, size ); |
2bf8f4c0 RD |
1448 | m_memBuf.UngetWriteBuf( size ) ; |
1449 | RealizeNative() ; | |
1450 | } | |
1451 | ||
e9576ca5 SC |
1452 | // Construct a mask from a bitmap and a colour indicating |
1453 | // the transparent area | |
7fe44dee | 1454 | wxMask::wxMask( const wxBitmap& bitmap, const wxColour& colour ) |
e9576ca5 | 1455 | { |
20b69855 | 1456 | Init() ; |
7fe44dee | 1457 | Create( bitmap, colour ); |
e9576ca5 SC |
1458 | } |
1459 | ||
20b69855 | 1460 | // Construct a mask from a mono bitmap (copies the bitmap). |
7fe44dee | 1461 | wxMask::wxMask( const wxBitmap& bitmap ) |
e9576ca5 | 1462 | { |
20b69855 | 1463 | Init() ; |
7fe44dee | 1464 | Create( bitmap ); |
e9576ca5 SC |
1465 | } |
1466 | ||
1467 | // Construct a mask from a mono bitmap (copies the bitmap). | |
392e179f | 1468 | |
1cb97a54 | 1469 | wxMask::wxMask( const wxMemoryBuffer& data, int width , int height , int bytesPerRow ) |
e9576ca5 | 1470 | { |
20b69855 | 1471 | Init() ; |
7fe44dee | 1472 | Create( data, width , height , bytesPerRow ); |
e9576ca5 SC |
1473 | } |
1474 | ||
1475 | wxMask::~wxMask() | |
1476 | { | |
4e9ed364 RR |
1477 | if ( m_maskBitmap ) |
1478 | { | |
6239ee05 | 1479 | CGContextRelease( (CGContextRef) m_maskBitmap ); |
4e9ed364 RR |
1480 | m_maskBitmap = NULL ; |
1481 | } | |
e9576ca5 SC |
1482 | } |
1483 | ||
902725ee | 1484 | void wxMask::Init() |
e9576ca5 | 1485 | { |
20b69855 | 1486 | m_width = m_height = m_bytesPerRow = 0 ; |
20b69855 | 1487 | m_maskBitmap = NULL ; |
20b69855 | 1488 | } |
5fde6fcc | 1489 | |
20b69855 SC |
1490 | void *wxMask::GetRawAccess() const |
1491 | { | |
1492 | return m_memBuf.GetData() ; | |
1493 | } | |
5fde6fcc | 1494 | |
7fe44dee DS |
1495 | // The default ColorTable for k8IndexedGrayPixelFormat in Intel appears to be broken, so we'll use an non-indexed |
1496 | // bitmap mask instead; in order to keep the code simple, the change applies to PowerPC implementations as well | |
431c82e0 | 1497 | |
902725ee | 1498 | void wxMask::RealizeNative() |
20b69855 | 1499 | { |
20b69855 SC |
1500 | if ( m_maskBitmap ) |
1501 | { | |
6239ee05 | 1502 | CGContextRelease( (CGContextRef) m_maskBitmap ); |
20b69855 SC |
1503 | m_maskBitmap = NULL ; |
1504 | } | |
1cb97a54 | 1505 | |
6239ee05 SC |
1506 | CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceGray(); |
1507 | // from MouseTracking sample : | |
1508 | // Ironically, due to a bug in CGImageCreateWithMask, you cannot use | |
1509 | // CGColorSpaceCreateWithName(kCGColorSpaceGenericGray) at this point! | |
1510 | ||
1511 | m_maskBitmap = CGBitmapContextCreate((char*) m_memBuf.GetData(), m_width, m_height, 8, m_bytesPerRow, colorspace, | |
1512 | kCGImageAlphaNone ); | |
1513 | CGColorSpaceRelease( colorspace ); | |
1514 | wxASSERT_MSG( m_maskBitmap , wxT("Unable to create CGBitmapContext context") ) ; | |
20b69855 | 1515 | } |
5fde6fcc | 1516 | |
20b69855 | 1517 | // Create a mask from a mono bitmap (copies the bitmap). |
392e179f | 1518 | |
20b69855 SC |
1519 | bool wxMask::Create(const wxMemoryBuffer& data,int width , int height , int bytesPerRow) |
1520 | { | |
1521 | m_memBuf = data ; | |
1522 | m_width = width ; | |
1523 | m_height = height ; | |
1524 | m_bytesPerRow = bytesPerRow ; | |
1cb97a54 | 1525 | |
20b69855 | 1526 | wxASSERT( data.GetDataLen() == (size_t)(height * bytesPerRow) ) ; |
1cb97a54 | 1527 | |
20b69855 | 1528 | RealizeNative() ; |
1cb97a54 | 1529 | |
20b69855 | 1530 | return true ; |
e9576ca5 SC |
1531 | } |
1532 | ||
20b69855 SC |
1533 | // Create a mask from a mono bitmap (copies the bitmap). |
1534 | bool wxMask::Create(const wxBitmap& bitmap) | |
e9576ca5 | 1535 | { |
20b69855 SC |
1536 | m_width = bitmap.GetWidth() ; |
1537 | m_height = bitmap.GetHeight() ; | |
6239ee05 | 1538 | m_bytesPerRow = GetBestBytesPerRow( m_width * kMaskBytesPerPixel ) ; |
1cb97a54 | 1539 | |
20b69855 SC |
1540 | size_t size = m_bytesPerRow * m_height ; |
1541 | unsigned char * destdatabase = (unsigned char*) m_memBuf.GetWriteBuf( size ) ; | |
1cb97a54 DS |
1542 | wxASSERT( destdatabase != NULL ) ; |
1543 | ||
20b69855 SC |
1544 | memset( destdatabase , 0 , size ) ; |
1545 | unsigned char * srcdata = (unsigned char*) bitmap.GetRawAccess() ; | |
1cb97a54 | 1546 | |
20b69855 SC |
1547 | for ( int y = 0 ; y < m_height ; ++y , destdatabase += m_bytesPerRow ) |
1548 | { | |
1cb97a54 DS |
1549 | unsigned char *destdata = destdatabase ; |
1550 | unsigned char r, g, b; | |
1551 | ||
1552 | for ( int x = 0 ; x < m_width ; ++x ) | |
20b69855 SC |
1553 | { |
1554 | srcdata++ ; | |
1cb97a54 DS |
1555 | r = *srcdata++ ; |
1556 | g = *srcdata++ ; | |
1557 | b = *srcdata++ ; | |
1558 | ||
20b69855 | 1559 | if ( ( r + g + b ) > 0x10 ) |
20b69855 | 1560 | *destdata++ = 0xFF ; |
93a2b888 | 1561 | else |
392e179f | 1562 | *destdata++ = 0x00 ; |
20b69855 SC |
1563 | } |
1564 | } | |
1cb97a54 | 1565 | |
20b69855 SC |
1566 | m_memBuf.UngetWriteBuf( size ) ; |
1567 | RealizeNative() ; | |
1cb97a54 | 1568 | |
902725ee | 1569 | return true; |
e9576ca5 SC |
1570 | } |
1571 | ||
1572 | // Create a mask from a bitmap and a colour indicating | |
1573 | // the transparent area | |
1574 | bool wxMask::Create(const wxBitmap& bitmap, const wxColour& colour) | |
1575 | { | |
20b69855 SC |
1576 | m_width = bitmap.GetWidth() ; |
1577 | m_height = bitmap.GetHeight() ; | |
6239ee05 | 1578 | m_bytesPerRow = GetBestBytesPerRow( m_width * kMaskBytesPerPixel ) ; |
20b69855 | 1579 | |
1cb97a54 | 1580 | size_t size = m_bytesPerRow * m_height ; |
20b69855 | 1581 | unsigned char * destdatabase = (unsigned char*) m_memBuf.GetWriteBuf( size ) ; |
1cb97a54 DS |
1582 | wxASSERT( destdatabase != NULL ) ; |
1583 | ||
20b69855 | 1584 | memset( destdatabase , 0 , size ) ; |
6239ee05 SC |
1585 | unsigned char * srcdatabase = (unsigned char*) bitmap.GetRawAccess() ; |
1586 | size_t sourceBytesRow = bitmap.GetBitmapData()->GetBytesPerRow(); | |
1cb97a54 | 1587 | |
6239ee05 | 1588 | for ( int y = 0 ; y < m_height ; ++y , srcdatabase+= sourceBytesRow, destdatabase += m_bytesPerRow) |
8208e181 | 1589 | { |
6239ee05 | 1590 | unsigned char *srcdata = srcdatabase ; |
1cb97a54 DS |
1591 | unsigned char *destdata = destdatabase ; |
1592 | unsigned char r, g, b; | |
1593 | ||
1594 | for ( int x = 0 ; x < m_width ; ++x ) | |
55e18dbe | 1595 | { |
20b69855 | 1596 | srcdata++ ; |
1cb97a54 DS |
1597 | r = *srcdata++ ; |
1598 | g = *srcdata++ ; | |
1599 | b = *srcdata++ ; | |
1600 | ||
7fe44dee | 1601 | if ( colour == wxColour( r , g , b ) ) |
93a2b888 | 1602 | *destdata++ = 0xFF ; |
93a2b888 | 1603 | else |
93a2b888 | 1604 | *destdata++ = 0x00 ; |
8208e181 SC |
1605 | } |
1606 | } | |
1cb97a54 | 1607 | |
20b69855 SC |
1608 | m_memBuf.UngetWriteBuf( size ) ; |
1609 | RealizeNative() ; | |
1cb97a54 | 1610 | |
902725ee | 1611 | return true; |
e9576ca5 SC |
1612 | } |
1613 | ||
20b69855 | 1614 | WXHBITMAP wxMask::GetHBITMAP() const |
5fde6fcc | 1615 | { |
20b69855 | 1616 | return m_maskBitmap ; |
5fde6fcc GD |
1617 | } |
1618 | ||
20b69855 SC |
1619 | // ---------------------------------------------------------------------------- |
1620 | // wxBitmapHandler | |
1621 | // ---------------------------------------------------------------------------- | |
e9576ca5 | 1622 | |
452418c4 | 1623 | IMPLEMENT_ABSTRACT_CLASS(wxBitmapHandler, wxBitmapHandlerBase) |
e9576ca5 | 1624 | |
20b69855 SC |
1625 | // ---------------------------------------------------------------------------- |
1626 | // Standard Handlers | |
1627 | // ---------------------------------------------------------------------------- | |
e9576ca5 | 1628 | |
2078e2f1 SC |
1629 | #ifndef __LP64__ |
1630 | ||
519cb848 SC |
1631 | class WXDLLEXPORT wxPICTResourceHandler: public wxBitmapHandler |
1632 | { | |
1633 | DECLARE_DYNAMIC_CLASS(wxPICTResourceHandler) | |
1cb97a54 | 1634 | |
519cb848 SC |
1635 | public: |
1636 | inline wxPICTResourceHandler() | |
1637 | { | |
3bf2bdfb GD |
1638 | SetName(wxT("Macintosh Pict resource")); |
1639 | SetExtension(wxEmptyString); | |
1640 | SetType(wxBITMAP_TYPE_PICT_RESOURCE); | |
519cb848 SC |
1641 | }; |
1642 | ||
1643 | virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags, | |
1644 | int desiredWidth, int desiredHeight); | |
1645 | }; | |
7fe44dee | 1646 | |
519cb848 SC |
1647 | IMPLEMENT_DYNAMIC_CLASS(wxPICTResourceHandler, wxBitmapHandler) |
1648 | ||
179e085f | 1649 | |
89954433 VZ |
1650 | bool wxPICTResourceHandler::LoadFile(wxBitmap *bitmap, |
1651 | const wxString& name, | |
1652 | long WXUNUSED(flags), | |
1653 | int WXUNUSED(desiredWidth), | |
1654 | int WXUNUSED(desiredHeight)) | |
519cb848 | 1655 | { |
179e085f | 1656 | #if wxUSE_METAFILE |
4e9ed364 | 1657 | Str255 theName ; |
427ff662 | 1658 | wxMacStringToPascal( name , theName ) ; |
55e18dbe | 1659 | |
4e9ed364 RR |
1660 | PicHandle thePict = (PicHandle ) GetNamedResource( 'PICT' , theName ) ; |
1661 | if ( thePict ) | |
1662 | { | |
20b69855 | 1663 | wxMetafile mf ; |
7fe44dee | 1664 | |
6239ee05 | 1665 | mf.SetPICT( thePict ) ; |
20b69855 SC |
1666 | bitmap->Create( mf.GetWidth() , mf.GetHeight() ) ; |
1667 | wxMemoryDC dc ; | |
1668 | dc.SelectObject( *bitmap ) ; | |
1669 | mf.Play( &dc ) ; | |
1670 | dc.SelectObject( wxNullBitmap ) ; | |
1cb97a54 | 1671 | |
902725ee | 1672 | return true ; |
4e9ed364 | 1673 | } |
7fe44dee | 1674 | #endif |
1cb97a54 | 1675 | |
902725ee | 1676 | return false ; |
519cb848 | 1677 | } |
2078e2f1 | 1678 | #endif |
519cb848 | 1679 | |
e9576ca5 SC |
1680 | void wxBitmap::InitStandardHandlers() |
1681 | { | |
2078e2f1 | 1682 | #ifndef __LP64__ |
1cb97a54 | 1683 | AddHandler( new wxPICTResourceHandler ) ; |
2078e2f1 | 1684 | #endif |
1cb97a54 | 1685 | AddHandler( new wxICONResourceHandler ) ; |
e9576ca5 | 1686 | } |
55e18dbe VZ |
1687 | |
1688 | // ---------------------------------------------------------------------------- | |
1689 | // raw bitmap access support | |
1690 | // ---------------------------------------------------------------------------- | |
1691 | ||
89954433 | 1692 | void *wxBitmap::GetRawData(wxPixelDataBase& data, int WXUNUSED(bpp)) |
55e18dbe VZ |
1693 | { |
1694 | if ( !Ok() ) | |
55e18dbe VZ |
1695 | // no bitmap, no data (raw or otherwise) |
1696 | return NULL; | |
55e18dbe | 1697 | |
20b69855 SC |
1698 | data.m_width = GetWidth() ; |
1699 | data.m_height = GetHeight() ; | |
6239ee05 | 1700 | data.m_stride = GetBitmapData()->GetBytesPerRow() ; |
1cb97a54 | 1701 | |
6945b587 | 1702 | return BeginRawAccess() ; |
55e18dbe VZ |
1703 | } |
1704 | ||
89954433 | 1705 | void wxBitmap::UngetRawData(wxPixelDataBase& WXUNUSED(dataBase)) |
55e18dbe | 1706 | { |
6945b587 | 1707 | EndRawAccess() ; |
55e18dbe VZ |
1708 | } |
1709 | ||
1710 | void wxBitmap::UseAlpha() | |
1711 | { | |
1cb97a54 DS |
1712 | // remember that we are using alpha channel: |
1713 | // we'll need to create a proper mask in UngetRawData() | |
20b69855 | 1714 | M_BITMAPDATA->UseAlpha( true ); |
55e18dbe | 1715 | } |