1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/bitmap.cpp
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/bitmap.h"
18 #include "wx/dcmemory.h"
23 #include "wx/metafile.h"
24 #include "wx/xpmdecod.h"
26 #include "wx/rawbmp.h"
28 IMPLEMENT_DYNAMIC_CLASS(wxBitmap
, wxGDIObject
)
29 IMPLEMENT_DYNAMIC_CLASS(wxMask
, wxObject
)
31 #include <ApplicationServices/ApplicationServices.h>
32 #include <QuickTime/QuickTime.h>
34 #include "wx/mac/uma.h"
36 // Implementation Notes
37 // --------------------
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,
41 // therefore we have a separate GWorld there for blitting the mask in
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
46 class WXDLLEXPORT wxBitmapRefData
: public wxGDIRefData
48 friend class WXDLLIMPEXP_FWD_CORE wxIcon
;
49 friend class WXDLLIMPEXP_FWD_CORE wxCursor
;
51 wxBitmapRefData(int width
, int height
, int depth
);
53 wxBitmapRefData(const wxBitmapRefData
&tocopy
);
55 virtual ~wxBitmapRefData();
58 bool Ok() const { return IsOk(); }
59 bool IsOk() const { return m_ok
; }
60 void SetOk( bool isOk
) { m_ok
= isOk
; }
62 void SetWidth( int width
) { m_width
= width
; }
63 void SetHeight( int height
) { m_height
= height
; }
64 void SetDepth( int depth
) { m_depth
= depth
; }
66 int GetWidth() const { return m_width
; }
67 int GetHeight() const { return m_height
; }
68 int GetDepth() const { return m_depth
; }
70 void *GetRawAccess() const;
71 void *BeginRawAccess();
74 bool HasAlpha() const { return m_hasAlpha
; }
75 void UseAlpha( bool useAlpha
);
79 wxPalette m_bitmapPalette
;
80 #endif // wxUSE_PALETTE
82 wxMask
* m_bitmapMask
; // Optional mask
83 CGImageRef
CreateCGImage() const;
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
92 // caller should increase ref count if needed longer
93 // than the bitmap exists
96 // returns a Pict from the bitmap content
97 PicHandle
GetPictHandle();
99 CGContextRef
GetBitmapContext() const;
101 int GetBytesPerRow() const { return m_bytesPerRow
; }
103 bool Create(int width
, int height
, int depth
);
111 wxMemoryBuffer m_memBuf
;
112 int m_rawAccessCount
;
114 mutable CGImageRef m_cgImageRef
;
117 PicHandle m_pictHandle
;
119 CGContextRef m_hBitmap
;
123 #define wxMAC_USE_PREMULTIPLIED_ALPHA 1
124 static const int kBestByteAlignement
= 16;
125 static const int kMaskBytesPerPixel
= 1;
127 static int GetBestBytesPerRow( int rawBytes
)
129 return (((rawBytes
)+kBestByteAlignement
-1) & ~(kBestByteAlignement
-1) );
134 // this is used for more controls than just the wxBitmap button, also for notebooks etc
136 void wxMacCreateBitmapButton( ControlButtonContentInfo
*info
, const wxBitmap
& bitmap
, int forceType
)
138 memset( info
, 0 , sizeof(ControlButtonContentInfo
) ) ;
141 wxBitmapRefData
* bmap
= bitmap
.GetBitmapData() ;
145 if ( forceType
== 0 )
147 forceType
= kControlContentCGImageRef
;
150 if ( forceType
== kControlContentIconRef
)
153 wxBitmapRefData
* bmp
= bmap
;
155 if ( !bmap
->HasNativeSize() )
157 // as PICT conversion will only result in a 16x16 icon, let's attempt
158 // a few scales for better results
160 int w
= bitmap
.GetWidth() ;
161 int h
= bitmap
.GetHeight() ;
162 int sz
= wxMax( w
, h
) ;
163 if ( sz
== 24 || sz
== 64 )
165 scaleBmp
= wxBitmap( bitmap
.ConvertToImage().Scale( w
* 2 , h
* 2 ) ) ;
166 bmp
= scaleBmp
.GetBitmapData() ;
170 info
->contentType
= kControlContentIconRef
;
171 info
->u
.iconRef
= bmp
->GetIconRef() ;
172 AcquireIconRef( info
->u
.iconRef
) ;
174 else if ( forceType
== kControlContentCGImageRef
)
176 info
->contentType
= kControlContentCGImageRef
;
177 info
->u
.imageRef
= (CGImageRef
) bmap
->CreateCGImage() ;
182 info
->contentType
= kControlContentPictHandle
;
183 info
->u
.picture
= bmap
->GetPictHandle() ;
189 CGImageRef
wxMacCreateCGImageFromBitmap( const wxBitmap
& bitmap
)
191 wxBitmapRefData
* bmap
= bitmap
.GetBitmapData() ;
194 return (CGImageRef
) bmap
->CreateCGImage();
197 void wxMacReleaseBitmapButton( ControlButtonContentInfo
*info
)
199 if ( info
->contentType
== kControlContentIconRef
)
201 ReleaseIconRef( info
->u
.iconRef
) ;
203 else if ( info
->contentType
== kControlNoContent
)
205 // there's no bitmap at all, fall through silently
207 else if ( info
->contentType
== kControlContentPictHandle
)
209 // owned by the bitmap, no release here
211 else if ( info
->contentType
== kControlContentCGImageRef
)
213 CGImageRelease( info
->u
.imageRef
) ;
217 wxFAIL_MSG(wxT("Unexpected bitmap type") ) ;
221 #endif //wxUSE_BMPBUTTON
223 #define M_BITMAPDATA ((wxBitmapRefData *)m_refData)
225 void wxBitmapRefData::Init()
232 m_bitmapMask
= NULL
;
233 m_cgImageRef
= NULL
;
236 m_pictHandle
= NULL
;
239 m_rawAccessCount
= 0 ;
243 wxBitmapRefData::wxBitmapRefData(const wxBitmapRefData
&tocopy
)
246 Create(tocopy
.m_width
, tocopy
.m_height
, tocopy
.m_depth
);
248 if (tocopy
.m_bitmapMask
)
249 m_bitmapMask
= new wxMask(*tocopy
.m_bitmapMask
);
250 else if (tocopy
.m_hasAlpha
)
253 unsigned char* dest
= (unsigned char*)GetRawAccess();
254 unsigned char* source
= (unsigned char*)tocopy
.GetRawAccess();
255 size_t numbytes
= m_bytesPerRow
* m_height
;
256 memcpy( dest
, source
, numbytes
);
259 wxBitmapRefData::wxBitmapRefData()
264 wxBitmapRefData::wxBitmapRefData( int w
, int h
, int d
)
267 Create( w
, h
, d
) ;
270 bool wxBitmapRefData::Create( int w
, int h
, int d
)
272 m_width
= wxMax(1, w
);
273 m_height
= wxMax(1, h
);
276 m_bytesPerRow
= GetBestBytesPerRow( w
* 4 ) ;
277 size_t size
= m_bytesPerRow
* h
;
278 void* data
= m_memBuf
.GetWriteBuf( size
) ;
279 memset( data
, 0 , size
) ;
280 m_memBuf
.UngetWriteBuf( size
) ;
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 );
288 m_ok
= ( m_hBitmap
!= NULL
) ;
293 void wxBitmapRefData::UseAlpha( bool use
)
295 if ( m_hasAlpha
== use
)
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 );
307 void *wxBitmapRefData::GetRawAccess() const
309 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
310 return m_memBuf
.GetData() ;
313 void *wxBitmapRefData::BeginRawAccess()
315 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
316 wxASSERT( m_rawAccessCount
== 0 ) ;
317 wxASSERT_MSG( m_pictHandle
== NULL
&& m_iconRef
== NULL
,
318 wxT("Currently, modifing bitmaps that are used in controls already is not supported") ) ;
322 // we must destroy an existing cached image, as
323 // the bitmap data may change now
326 CGImageRelease( m_cgImageRef
) ;
327 m_cgImageRef
= NULL
;
330 return m_memBuf
.GetData() ;
333 void wxBitmapRefData::EndRawAccess()
335 wxCHECK_RET( Ok() , wxT("invalid bitmap") ) ;
336 wxASSERT( m_rawAccessCount
== 1 ) ;
341 bool wxBitmapRefData::HasNativeSize()
344 int h
= GetHeight() ;
345 int sz
= wxMax( w
, h
) ;
347 return ( sz
== 128 || sz
== 48 || sz
== 32 || sz
== 16 );
350 IconRef
wxBitmapRefData::GetIconRef()
352 if ( m_iconRef
== NULL
)
354 // Create Icon Family Handle
356 IconFamilyHandle iconFamily
= (IconFamilyHandle
) NewHandle( 0 );
359 int h
= GetHeight() ;
360 int sz
= wxMax( w
, h
) ;
362 OSType dataType
= 0 ;
363 OSType maskType
= 0 ;
368 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
369 if ( UMAGetSystemVersion() >= 0x1050 )
371 dataType
= kIconServices128PixelDataARGB
;
376 dataType
= kThumbnail32BitData
;
377 maskType
= kThumbnail8BitMask
;
382 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
383 if ( UMAGetSystemVersion() >= 0x1050 )
385 dataType
= kIconServices48PixelDataARGB
;
390 dataType
= kHuge32BitData
;
391 maskType
= kHuge8BitMask
;
396 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
397 if ( UMAGetSystemVersion() >= 0x1050 )
399 dataType
= kIconServices32PixelDataARGB
;
404 dataType
= kLarge32BitData
;
405 maskType
= kLarge8BitMask
;
410 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
411 if ( UMAGetSystemVersion() >= 0x1050 )
413 dataType
= kIconServices16PixelDataARGB
;
418 dataType
= kSmall32BitData
;
419 maskType
= kSmall8BitMask
;
429 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
430 if ( maskType
== 0 && UMAGetSystemVersion() >= 0x1050 )
432 size_t datasize
= sz
* sz
* 4 ;
433 Handle data
= NewHandle( datasize
) ;
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
;
442 for ( int y
= 0 ; y
< h
; ++y
, sourcePtr
+= m_bytesPerRow
, masksourcePtr
+= mask
? mask
->GetBytesPerRow() : 0 )
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
;
449 for ( int x
= 0 ; x
< w
; ++x
)
458 a
= 0xFF - *masksource
++ ;
460 else if ( !hasAlpha
)
464 #if wxMAC_USE_PREMULTIPLIED_ALPHA
465 // this must be non-premultiplied data
466 if ( a
!= 0xFF && a
!= 0 )
482 OSStatus err
= SetIconFamilyData( iconFamily
, dataType
, data
);
483 wxASSERT_MSG( err
== noErr
, wxT("Error when adding bitmap") );
484 DisposeHandle( data
);
489 // setup the header properly
492 Handle maskdata
= NULL
;
493 unsigned char * maskptr
= NULL
;
494 unsigned char * ptr
= NULL
;
495 size_t datasize
, masksize
;
497 datasize
= sz
* sz
* 4 ;
498 data
= NewHandle( datasize
) ;
500 ptr
= (unsigned char*) *data
;
501 memset( ptr
, 0, datasize
) ;
504 maskdata
= NewHandle( masksize
) ;
506 maskptr
= (unsigned char*) *maskdata
;
507 memset( maskptr
, 0 , masksize
) ;
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
;
514 for ( int y
= 0 ; y
< h
; ++y
, sourcePtr
+= m_bytesPerRow
, masksourcePtr
+= mask
? mask
->GetBytesPerRow() : 0 )
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
;
522 for ( int x
= 0 ; x
< w
; ++x
)
535 *maskdest
++ = 0xFF - *masksource
++ ;
543 OSStatus err
= SetIconFamilyData( iconFamily
, dataType
, data
) ;
544 wxASSERT_MSG( err
== noErr
, wxT("Error when adding bitmap") ) ;
546 err
= SetIconFamilyData( iconFamily
, maskType
, maskdata
) ;
547 wxASSERT_MSG( err
== noErr
, wxT("Error when adding mask") ) ;
550 HUnlock( maskdata
) ;
551 DisposeHandle( data
) ;
552 DisposeHandle( maskdata
) ;
557 PicHandle pic
= GetPictHandle() ;
558 SetIconFamilyData( iconFamily
, 'PICT' , (Handle
) pic
) ;
560 // transform into IconRef
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") );
567 DisposeHandle( (Handle
) iconFamily
) ;
573 PicHandle
wxBitmapRefData::GetPictHandle()
575 if ( m_pictHandle
== NULL
)
578 GraphicsExportComponent exporter
= 0;
579 OSStatus err
= OpenADefaultComponent(GraphicsExporterComponentType
, kQTFileTypePicture
, &exporter
);
582 m_pictHandle
= (PicHandle
) NewHandle(0);
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
587 CGImageRef imageRef
= CreateCGImage();
588 err
= GraphicsExportSetInputCGImage( exporter
, imageRef
);
589 err
= GraphicsExportSetOutputHandle(exporter
, (Handle
)m_pictHandle
);
590 err
= GraphicsExportDoExport(exporter
, NULL
);
591 CGImageRelease( imageRef
);
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 )
597 memmove( *m_pictHandle
, (char*)(*m_pictHandle
)+512, handleSize
- 512 );
598 SetHandleSize( (Handle
) m_pictHandle
, handleSize
- 512 );
601 CloseComponent( exporter
);
606 return m_pictHandle
;
609 void wxMacMemoryBufferReleaseProc(void *info
, const void *data
, size_t size
);
611 void wxMacMemoryBufferReleaseProc(void *info
, const void *data
, size_t WXUNUSED(size
))
613 wxMemoryBuffer
* membuf
= (wxMemoryBuffer
*) info
;
615 wxASSERT( data
== membuf
->GetData() ) ;
620 CGImageRef
wxBitmapRefData::CreateCGImage() const
623 wxASSERT( m_rawAccessCount
>= 0 ) ;
625 if ( m_rawAccessCount
> 0 || m_cgImageRef
== NULL
)
627 if ( m_depth
!= 1 && m_bitmapMask
== NULL
)
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
);
638 image
= CGBitmapContextCreateImage( m_hBitmap
);
642 size_t imageSize
= m_height
* m_bytesPerRow
;
643 void * dataBuffer
= m_memBuf
.GetData() ;
646 CGImageAlphaInfo alphaInfo
= kCGImageAlphaNoneSkipFirst
;
647 wxMemoryBuffer
* membuf
= NULL
;
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
)
659 unsigned char *sourcemask
= sourcemaskstart
;
660 unsigned char *destalpha
= destalphastart
;
661 for ( int x
= 0 ; x
< w
; ++x
, sourcemask
+= kMaskBytesPerPixel
, destalpha
+= 4 )
663 *destalpha
= 0xFF - *sourcemask
;
671 #if wxMAC_USE_PREMULTIPLIED_ALPHA
672 alphaInfo
= kCGImageAlphaPremultipliedFirst
;
674 alphaInfo
= kCGImageAlphaFirst
;
678 membuf
= new wxMemoryBuffer( m_memBuf
) ;
681 CGDataProviderRef dataProvider
= NULL
;
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];
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
698 image
= ::CGImageMaskCreate( w
, h
, 8, 8, m_width
, dataProvider
, NULL
, false );
702 CGColorSpaceRef colorSpace
= wxMacGetGenericRGBColorSpace();
704 CGDataProviderCreateWithData(
705 membuf
, (const void *)membuf
->GetData() , imageSize
,
706 wxMacMemoryBufferReleaseProc
);
709 w
, h
, 8 , 32 , m_bytesPerRow
, colorSpace
, alphaInfo
,
710 dataProvider
, NULL
, false , kCGRenderingIntentDefault
);
712 CGDataProviderRelease( dataProvider
);
717 image
= m_cgImageRef
;
718 CGImageRetain( image
) ;
721 if ( m_rawAccessCount
== 0 && m_cgImageRef
== NULL
)
723 // we keep it for later use
724 m_cgImageRef
= image
;
725 CGImageRetain( image
) ;
731 CGContextRef
wxBitmapRefData::GetBitmapContext() const
736 void wxBitmapRefData::Free()
738 wxASSERT_MSG( m_rawAccessCount
== 0 , wxT("Bitmap still selected when destroyed") ) ;
742 CGImageRelease( m_cgImageRef
) ;
743 m_cgImageRef
= NULL
;
748 ReleaseIconRef( m_iconRef
) ;
755 KillPicture( m_pictHandle
) ;
756 m_pictHandle
= NULL
;
762 CGContextRelease(m_hBitmap
);
773 wxBitmapRefData::~wxBitmapRefData()
778 bool wxBitmap::CopyFromIcon(const wxIcon
& icon
)
780 bool created
= false ;
781 int w
= icon
.GetWidth() ;
782 int h
= icon
.GetHeight() ;
784 Create( icon
.GetWidth() , icon
.GetHeight() ) ;
786 if ( w
== h
&& ( w
== 16 || w
== 32 || w
== 48 || w
== 128 ) )
788 IconFamilyHandle iconFamily
= NULL
;
789 Handle imagehandle
= NewHandle( 0 ) ;
790 Handle maskhandle
= NewHandle( 0 ) ;
794 IconSelectorValue selector
= 0 ;
799 dataType
= kThumbnail32BitData
;
800 maskType
= kThumbnail8BitMask
;
801 selector
= kSelectorAllAvailableData
;
805 dataType
= kHuge32BitData
;
806 maskType
= kHuge8BitMask
;
807 selector
= kSelectorHuge32Bit
| kSelectorHuge8BitMask
;
811 dataType
= kLarge32BitData
;
812 maskType
= kLarge8BitMask
;
813 selector
= kSelectorLarge32Bit
| kSelectorLarge8BitMask
;
817 dataType
= kSmall32BitData
;
818 maskType
= kSmall8BitMask
;
819 selector
= kSelectorSmall32Bit
| kSelectorSmall8BitMask
;
826 OSStatus err
= IconRefToIconFamily( MAC_WXHICON(icon
.GetHICON()) , selector
, &iconFamily
) ;
828 err
= GetIconFamilyData( iconFamily
, dataType
, imagehandle
) ;
829 err
= GetIconFamilyData( iconFamily
, maskType
, maskhandle
) ;
830 size_t imagehandlesize
= GetHandleSize( imagehandle
) ;
831 size_t maskhandlesize
= GetHandleSize( maskhandle
) ;
833 if ( imagehandlesize
!= 0 && maskhandlesize
!= 0 )
835 wxASSERT( GetHandleSize( imagehandle
) == w
* 4 * h
) ;
836 wxASSERT( GetHandleSize( maskhandle
) == w
* h
) ;
840 unsigned char *source
= (unsigned char *) *imagehandle
;
841 unsigned char *sourcemask
= (unsigned char *) *maskhandle
;
842 unsigned char* destination
= (unsigned char*) BeginRawAccess() ;
844 for ( int y
= 0 ; y
< h
; ++y
)
846 for ( int x
= 0 ; x
< w
; ++x
)
848 unsigned char a
= *sourcemask
++;
851 #if wxMAC_USE_PREMULTIPLIED_ALPHA
852 *destination
++ = ( (*source
++) * a
+ 127 ) / 255;
853 *destination
++ = ( (*source
++) * a
+ 127 ) / 255;
854 *destination
++ = ( (*source
++) * a
+ 127 ) / 255;
856 *destination
++ = *source
++ ;
857 *destination
++ = *source
++ ;
858 *destination
++ = *source
++ ;
864 DisposeHandle( imagehandle
) ;
865 DisposeHandle( maskhandle
) ;
869 DisposeHandle( (Handle
) iconFamily
) ;
875 dc
.SelectObject( *this ) ;
876 dc
.DrawIcon( icon
, 0 , 0 ) ;
877 dc
.SelectObject( wxNullBitmap
) ;
887 wxBitmap::~wxBitmap()
891 wxBitmap::wxBitmap(const char bits
[], int the_width
, int the_height
, int no_bits
)
893 m_refData
= new wxBitmapRefData( the_width
, the_height
, no_bits
) ;
897 int linesize
= ( the_width
/ (sizeof(unsigned char) * 8)) ;
898 if ( the_width
% (sizeof(unsigned char) * 8) )
899 linesize
+= sizeof(unsigned char);
901 unsigned char* linestart
= (unsigned char*) bits
;
902 unsigned char* destptr
= (unsigned char*) BeginRawAccess() ;
904 for ( int y
= 0 ; y
< the_height
; ++y
, linestart
+= linesize
, destptr
+= M_BITMAPDATA
->GetBytesPerRow() )
906 unsigned char* destination
= destptr
;
907 int index
, bit
, mask
;
909 for ( int x
= 0 ; x
< the_width
; ++x
)
915 if ( linestart
[index
] & mask
)
917 *destination
++ = 0xFF ;
924 *destination
++ = 0xFF ;
925 *destination
++ = 0xFF ;
926 *destination
++ = 0xFF ;
927 *destination
++ = 0xFF ;
936 wxFAIL_MSG(wxT("multicolor BITMAPs not yet implemented"));
940 wxBitmap::wxBitmap(int w
, int h
, int d
)
942 (void)Create(w
, h
, d
);
945 wxBitmap::wxBitmap(const void* data
, wxBitmapType type
, int width
, int height
, int depth
)
947 (void) Create(data
, type
, width
, height
, depth
);
950 wxBitmap::wxBitmap(const wxString
& filename
, wxBitmapType type
)
952 LoadFile(filename
, type
);
955 wxObjectRefData
* wxBitmap::CreateRefData() const
957 return new wxBitmapRefData
;
960 wxObjectRefData
* wxBitmap::CloneRefData(const wxObjectRefData
* data
) const
962 return new wxBitmapRefData(*wx_static_cast(const wxBitmapRefData
*, data
));
965 void * wxBitmap::GetRawAccess() const
967 wxCHECK_MSG( Ok() , NULL
, wxT("invalid bitmap") ) ;
969 return M_BITMAPDATA
->GetRawAccess() ;
972 void * wxBitmap::BeginRawAccess()
974 wxCHECK_MSG( Ok() , NULL
, wxT("invalid bitmap") ) ;
976 return M_BITMAPDATA
->BeginRawAccess() ;
979 void wxBitmap::EndRawAccess()
981 wxCHECK_RET( Ok() , wxT("invalid bitmap") ) ;
983 M_BITMAPDATA
->EndRawAccess() ;
986 CGImageRef
wxBitmap::CreateCGImage() const
988 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
990 return M_BITMAPDATA
->CreateCGImage() ;
993 IconRef
wxBitmap::GetIconRef() const
995 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
997 return M_BITMAPDATA
->GetIconRef() ;
1000 IconRef
wxBitmap::CreateIconRef() const
1002 IconRef icon
= GetIconRef();
1003 verify_noerr( AcquireIconRef(icon
) );
1007 wxBitmap
wxBitmap::GetSubBitmap(const wxRect
&rect
) const
1009 wxCHECK_MSG( Ok() &&
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") );
1015 wxBitmap
ret( rect
.width
, rect
.height
, GetDepth() );
1016 wxASSERT_MSG( ret
.Ok(), wxT("GetSubBitmap error") );
1018 int destwidth
= rect
.width
;
1019 int destheight
= rect
.height
;
1022 unsigned char *sourcedata
= (unsigned char*) GetRawAccess() ;
1023 unsigned char *destdata
= (unsigned char*) ret
.BeginRawAccess() ;
1024 wxASSERT( (sourcedata
!= NULL
) && (destdata
!= NULL
) ) ;
1026 int sourcelinesize
= GetBitmapData()->GetBytesPerRow() ;
1027 int destlinesize
= ret
.GetBitmapData()->GetBytesPerRow() ;
1028 unsigned char *source
= sourcedata
+ rect
.x
* 4 + rect
.y
* sourcelinesize
;
1029 unsigned char *dest
= destdata
;
1031 for (int yy
= 0; yy
< destheight
; ++yy
, source
+= sourcelinesize
, dest
+= destlinesize
)
1033 memcpy( dest
, source
, destlinesize
) ;
1037 ret
.EndRawAccess() ;
1039 if ( M_BITMAPDATA
->m_bitmapMask
)
1041 wxMemoryBuffer maskbuf
;
1042 int rowBytes
= GetBestBytesPerRow( destwidth
* kMaskBytesPerPixel
);
1043 size_t maskbufsize
= rowBytes
* destheight
;
1045 int sourcelinesize
= M_BITMAPDATA
->m_bitmapMask
->GetBytesPerRow() ;
1046 int destlinesize
= rowBytes
;
1048 unsigned char *source
= (unsigned char *) M_BITMAPDATA
->m_bitmapMask
->GetRawAccess() ;
1049 unsigned char *destdata
= (unsigned char * ) maskbuf
.GetWriteBuf( maskbufsize
) ;
1050 wxASSERT( (source
!= NULL
) && (destdata
!= NULL
) ) ;
1052 source
+= rect
.x
* kMaskBytesPerPixel
+ rect
.y
* sourcelinesize
;
1053 unsigned char *dest
= destdata
;
1055 for (int yy
= 0; yy
< destheight
; ++yy
, source
+= sourcelinesize
, dest
+= destlinesize
)
1057 memcpy( dest
, source
, destlinesize
) ;
1060 maskbuf
.UngetWriteBuf( maskbufsize
) ;
1061 ret
.SetMask( new wxMask( maskbuf
, destwidth
, destheight
, rowBytes
) ) ;
1063 else if ( HasAlpha() )
1069 bool wxBitmap::Create(int w
, int h
, int d
)
1074 d
= wxDisplayDepth() ;
1076 m_refData
= new wxBitmapRefData( w
, h
, d
);
1078 return M_BITMAPDATA
->Ok() ;
1081 bool wxBitmap::LoadFile(const wxString
& filename
, wxBitmapType type
)
1085 wxBitmapHandler
*handler
= FindHandler(type
);
1089 m_refData
= new wxBitmapRefData
;
1091 return handler
->LoadFile(this, filename
, type
, -1, -1);
1096 wxImage
loadimage(filename
, type
);
1106 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
1111 bool wxBitmap::Create(const void* data
, wxBitmapType type
, int width
, int height
, int depth
)
1115 m_refData
= new wxBitmapRefData
;
1117 wxBitmapHandler
*handler
= FindHandler(type
);
1119 if ( handler
== NULL
)
1121 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
1126 return handler
->Create(this, data
, type
, width
, height
, depth
);
1131 wxBitmap::wxBitmap(const wxImage
& image
, int depth
)
1133 wxCHECK_RET( image
.Ok(), wxT("invalid image") );
1135 // width and height of the device-dependent bitmap
1136 int width
= image
.GetWidth();
1137 int height
= image
.GetHeight();
1139 m_refData
= new wxBitmapRefData( width
, height
, depth
) ;
1143 bool hasAlpha
= false ;
1145 if ( image
.HasMask() )
1147 // takes precedence, don't mix with alpha info
1151 hasAlpha
= image
.HasAlpha() ;
1157 unsigned char* destinationstart
= (unsigned char*) BeginRawAccess() ;
1158 register unsigned char* data
= image
.GetData();
1159 if ( destinationstart
!= NULL
&& data
!= NULL
)
1161 const unsigned char *alpha
= hasAlpha
? image
.GetAlpha() : NULL
;
1162 for (int y
= 0; y
< height
; destinationstart
+= M_BITMAPDATA
->GetBytesPerRow(), y
++)
1164 unsigned char * destination
= destinationstart
;
1165 for (int x
= 0; x
< width
; x
++)
1169 const unsigned char a
= *alpha
++;
1170 *destination
++ = a
;
1172 #if wxMAC_USE_PREMULTIPLIED_ALPHA
1173 *destination
++ = ((*data
++) * a
+ 127) / 255 ;
1174 *destination
++ = ((*data
++) * a
+ 127) / 255 ;
1175 *destination
++ = ((*data
++) * a
+ 127) / 255 ;
1177 *destination
++ = *data
++ ;
1178 *destination
++ = *data
++ ;
1179 *destination
++ = *data
++ ;
1184 *destination
++ = 0xFF ;
1185 *destination
++ = *data
++ ;
1186 *destination
++ = *data
++ ;
1187 *destination
++ = *data
++ ;
1194 if ( image
.HasMask() )
1195 SetMask( new wxMask( *this , wxColour( image
.GetMaskRed() , image
.GetMaskGreen() , image
.GetMaskBlue() ) ) ) ;
1198 wxImage
wxBitmap::ConvertToImage() const
1202 wxCHECK_MSG( Ok(), wxNullImage
, wxT("invalid bitmap") );
1204 // create an wxImage object
1205 int width
= GetWidth();
1206 int height
= GetHeight();
1207 image
.Create( width
, height
);
1209 unsigned char *data
= image
.GetData();
1210 wxCHECK_MSG( data
, wxNullImage
, wxT("Could not allocate data for image") );
1212 unsigned char* sourcestart
= (unsigned char*) GetRawAccess() ;
1214 bool hasAlpha
= false ;
1215 bool hasMask
= false ;
1216 int maskBytesPerRow
= 0 ;
1217 unsigned char *alpha
= NULL
;
1218 unsigned char *mask
= NULL
;
1226 mask
= (unsigned char*) GetMask()->GetRawAccess() ;
1227 maskBytesPerRow
= GetMask()->GetBytesPerRow() ;
1233 alpha
= image
.GetAlpha() ;
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
1240 // replaced with when it actually occurs in the bitmap
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;
1246 for (int yy
= 0; yy
< height
; yy
++ , sourcestart
+= M_BITMAPDATA
->GetBytesPerRow() , mask
+= maskBytesPerRow
)
1248 unsigned char * maskp
= mask
;
1249 unsigned char * source
= sourcestart
;
1250 unsigned char a
, r
, g
, b
;
1253 for (int xx
= 0; xx
< width
; xx
++)
1255 color
= *((long*) source
) ;
1256 #ifdef WORDS_BIGENDIAN
1257 a
= ((color
&0xFF000000) >> 24) ;
1258 r
= ((color
&0x00FF0000) >> 16) ;
1259 g
= ((color
&0x0000FF00) >> 8) ;
1260 b
= (color
&0x000000FF);
1262 b
= ((color
&0xFF000000) >> 24) ;
1263 g
= ((color
&0x00FF0000) >> 16) ;
1264 r
= ((color
&0x0000FF00) >> 8) ;
1265 a
= (color
&0x000000FF);
1269 if ( *maskp
++ == 0xFF )
1275 else if ( r
== MASK_RED
&& g
== MASK_GREEN
&& b
== MASK_BLUE
)
1276 b
= MASK_BLUE_REPLACEMENT
;
1278 else if ( hasAlpha
)
1281 #if wxMAC_USE_PREMULTIPLIED_ALPHA
1282 // this must be non-premultiplied data
1283 if ( a
!= 0xFF && a
!= 0 )
1293 data
[index
+ 1] = g
;
1294 data
[index
+ 2] = b
;
1302 image
.SetMaskColour( MASK_RED
, MASK_GREEN
, MASK_BLUE
);
1307 #endif //wxUSE_IMAGE
1309 bool wxBitmap::SaveFile( const wxString
& filename
,
1310 wxBitmapType type
, const wxPalette
*palette
) const
1312 bool success
= false;
1313 wxBitmapHandler
*handler
= FindHandler(type
);
1317 success
= handler
->SaveFile(this, filename
, type
, palette
);
1322 wxImage image
= ConvertToImage();
1323 success
= image
.SaveFile(filename
, type
);
1325 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
1332 bool wxBitmap::IsOk() const
1334 return (M_BITMAPDATA
&& M_BITMAPDATA
->Ok());
1337 int wxBitmap::GetHeight() const
1339 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1341 return M_BITMAPDATA
->GetHeight();
1344 int wxBitmap::GetWidth() const
1346 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1348 return M_BITMAPDATA
->GetWidth() ;
1351 int wxBitmap::GetDepth() const
1353 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1355 return M_BITMAPDATA
->GetDepth();
1358 wxMask
*wxBitmap::GetMask() const
1360 wxCHECK_MSG( Ok(), (wxMask
*) NULL
, wxT("invalid bitmap") );
1362 return M_BITMAPDATA
->m_bitmapMask
;
1365 bool wxBitmap::HasAlpha() const
1367 wxCHECK_MSG( Ok(), false , wxT("invalid bitmap") );
1369 return M_BITMAPDATA
->HasAlpha() ;
1372 void wxBitmap::SetWidth(int w
)
1375 M_BITMAPDATA
->SetWidth(w
);
1378 void wxBitmap::SetHeight(int h
)
1381 M_BITMAPDATA
->SetHeight(h
);
1384 void wxBitmap::SetDepth(int d
)
1387 M_BITMAPDATA
->SetDepth(d
);
1390 void wxBitmap::SetOk(bool isOk
)
1393 M_BITMAPDATA
->SetOk(isOk
);
1397 wxPalette
*wxBitmap::GetPalette() const
1399 wxCHECK_MSG( Ok(), NULL
, wxT("Invalid bitmap GetPalette()") );
1401 return &M_BITMAPDATA
->m_bitmapPalette
;
1404 void wxBitmap::SetPalette(const wxPalette
& palette
)
1407 M_BITMAPDATA
->m_bitmapPalette
= palette
;
1409 #endif // wxUSE_PALETTE
1411 void wxBitmap::SetMask(wxMask
*mask
)
1414 // Remove existing mask if there is one.
1415 delete M_BITMAPDATA
->m_bitmapMask
;
1417 M_BITMAPDATA
->m_bitmapMask
= mask
;
1420 WXHBITMAP
wxBitmap::GetHBITMAP(WXHBITMAP
* mask
) const
1424 return WXHBITMAP(M_BITMAPDATA
->GetBitmapContext());
1427 // ----------------------------------------------------------------------------
1429 // ----------------------------------------------------------------------------
1436 wxMask::wxMask(const wxMask
&tocopy
)
1440 m_bytesPerRow
= tocopy
.m_bytesPerRow
;
1441 m_width
= tocopy
.m_width
;
1442 m_height
= tocopy
.m_height
;
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();
1447 memcpy( dest
, source
, size
);
1448 m_memBuf
.UngetWriteBuf( size
) ;
1452 // Construct a mask from a bitmap and a colour indicating
1453 // the transparent area
1454 wxMask::wxMask( const wxBitmap
& bitmap
, const wxColour
& colour
)
1457 Create( bitmap
, colour
);
1460 // Construct a mask from a mono bitmap (copies the bitmap).
1461 wxMask::wxMask( const wxBitmap
& bitmap
)
1467 // Construct a mask from a mono bitmap (copies the bitmap).
1469 wxMask::wxMask( const wxMemoryBuffer
& data
, int width
, int height
, int bytesPerRow
)
1472 Create( data
, width
, height
, bytesPerRow
);
1479 CGContextRelease( (CGContextRef
) m_maskBitmap
);
1480 m_maskBitmap
= NULL
;
1486 m_width
= m_height
= m_bytesPerRow
= 0 ;
1487 m_maskBitmap
= NULL
;
1490 void *wxMask::GetRawAccess() const
1492 return m_memBuf
.GetData() ;
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
1498 void wxMask::RealizeNative()
1502 CGContextRelease( (CGContextRef
) m_maskBitmap
);
1503 m_maskBitmap
= NULL
;
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!
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") ) ;
1517 // Create a mask from a mono bitmap (copies the bitmap).
1519 bool wxMask::Create(const wxMemoryBuffer
& data
,int width
, int height
, int bytesPerRow
)
1524 m_bytesPerRow
= bytesPerRow
;
1526 wxASSERT( data
.GetDataLen() == (size_t)(height
* bytesPerRow
) ) ;
1533 // Create a mask from a mono bitmap (copies the bitmap).
1534 bool wxMask::Create(const wxBitmap
& bitmap
)
1536 m_width
= bitmap
.GetWidth() ;
1537 m_height
= bitmap
.GetHeight() ;
1538 m_bytesPerRow
= GetBestBytesPerRow( m_width
* kMaskBytesPerPixel
) ;
1540 size_t size
= m_bytesPerRow
* m_height
;
1541 unsigned char * destdatabase
= (unsigned char*) m_memBuf
.GetWriteBuf( size
) ;
1542 wxASSERT( destdatabase
!= NULL
) ;
1544 memset( destdatabase
, 0 , size
) ;
1545 unsigned char * srcdata
= (unsigned char*) bitmap
.GetRawAccess() ;
1547 for ( int y
= 0 ; y
< m_height
; ++y
, destdatabase
+= m_bytesPerRow
)
1549 unsigned char *destdata
= destdatabase
;
1550 unsigned char r
, g
, b
;
1552 for ( int x
= 0 ; x
< m_width
; ++x
)
1559 if ( ( r
+ g
+ b
) > 0x10 )
1560 *destdata
++ = 0xFF ;
1562 *destdata
++ = 0x00 ;
1566 m_memBuf
.UngetWriteBuf( size
) ;
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
)
1576 m_width
= bitmap
.GetWidth() ;
1577 m_height
= bitmap
.GetHeight() ;
1578 m_bytesPerRow
= GetBestBytesPerRow( m_width
* kMaskBytesPerPixel
) ;
1580 size_t size
= m_bytesPerRow
* m_height
;
1581 unsigned char * destdatabase
= (unsigned char*) m_memBuf
.GetWriteBuf( size
) ;
1582 wxASSERT( destdatabase
!= NULL
) ;
1584 memset( destdatabase
, 0 , size
) ;
1585 unsigned char * srcdatabase
= (unsigned char*) bitmap
.GetRawAccess() ;
1586 size_t sourceBytesRow
= bitmap
.GetBitmapData()->GetBytesPerRow();
1588 for ( int y
= 0 ; y
< m_height
; ++y
, srcdatabase
+= sourceBytesRow
, destdatabase
+= m_bytesPerRow
)
1590 unsigned char *srcdata
= srcdatabase
;
1591 unsigned char *destdata
= destdatabase
;
1592 unsigned char r
, g
, b
;
1594 for ( int x
= 0 ; x
< m_width
; ++x
)
1601 if ( colour
== wxColour( r
, g
, b
) )
1602 *destdata
++ = 0xFF ;
1604 *destdata
++ = 0x00 ;
1608 m_memBuf
.UngetWriteBuf( size
) ;
1614 WXHBITMAP
wxMask::GetHBITMAP() const
1616 return m_maskBitmap
;
1619 // ----------------------------------------------------------------------------
1621 // ----------------------------------------------------------------------------
1623 IMPLEMENT_ABSTRACT_CLASS(wxBitmapHandler
, wxBitmapHandlerBase
)
1625 // ----------------------------------------------------------------------------
1626 // Standard Handlers
1627 // ----------------------------------------------------------------------------
1631 class WXDLLEXPORT wxPICTResourceHandler
: public wxBitmapHandler
1633 DECLARE_DYNAMIC_CLASS(wxPICTResourceHandler
)
1636 inline wxPICTResourceHandler()
1638 SetName(wxT("Macintosh Pict resource"));
1639 SetExtension(wxEmptyString
);
1640 SetType(wxBITMAP_TYPE_PICT_RESOURCE
);
1643 virtual bool LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1644 int desiredWidth
, int desiredHeight
);
1647 IMPLEMENT_DYNAMIC_CLASS(wxPICTResourceHandler
, wxBitmapHandler
)
1650 bool wxPICTResourceHandler::LoadFile(wxBitmap
*bitmap
,
1651 const wxString
& name
,
1652 long WXUNUSED(flags
),
1653 int WXUNUSED(desiredWidth
),
1654 int WXUNUSED(desiredHeight
))
1658 wxMacStringToPascal( name
, theName
) ;
1660 PicHandle thePict
= (PicHandle
) GetNamedResource( 'PICT' , theName
) ;
1665 mf
.SetPICT( thePict
) ;
1666 bitmap
->Create( mf
.GetWidth() , mf
.GetHeight() ) ;
1668 dc
.SelectObject( *bitmap
) ;
1670 dc
.SelectObject( wxNullBitmap
) ;
1680 void wxBitmap::InitStandardHandlers()
1683 AddHandler( new wxPICTResourceHandler
) ;
1685 AddHandler( new wxICONResourceHandler
) ;
1688 // ----------------------------------------------------------------------------
1689 // raw bitmap access support
1690 // ----------------------------------------------------------------------------
1692 void *wxBitmap::GetRawData(wxPixelDataBase
& data
, int WXUNUSED(bpp
))
1695 // no bitmap, no data (raw or otherwise)
1698 data
.m_width
= GetWidth() ;
1699 data
.m_height
= GetHeight() ;
1700 data
.m_stride
= GetBitmapData()->GetBytesPerRow() ;
1702 return BeginRawAccess() ;
1705 void wxBitmap::UngetRawData(wxPixelDataBase
& WXUNUSED(dataBase
))
1710 void wxBitmap::UseAlpha()
1712 // remember that we are using alpha channel:
1713 // we'll need to create a proper mask in UngetRawData()
1714 M_BITMAPDATA
->UseAlpha( true );