1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/bitmap.cpp
4 // Author: David Elliott
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 #include "wx/palette.h"
18 #include "wx/colour.h"
20 #include "wx/bitmap.h"
22 #include "wx/xpmdecod.h"
23 #include "wx/rawbmp.h"
25 #include "wx/cocoa/autorelease.h"
26 #include "wx/cocoa/string.h"
28 #import <AppKit/NSBitmapImageRep.h>
29 #import <AppKit/NSGraphics.h>
30 #import <AppKit/NSImage.h>
32 // ========================================================================
34 // ========================================================================
35 class wxBitmapRefData: public wxGDIRefData
37 friend class wxBitmap;
40 wxBitmapRefData( const wxBitmapRefData& data );
41 virtual ~wxBitmapRefData();
49 wxPalette m_bitmapPalette;
51 WX_NSBitmapImageRep m_cocoaNSBitmapImageRep;
52 wxMask *m_bitmapMask; // Optional mask
55 #define M_BITMAPDATA ((wxBitmapRefData *)m_refData)
57 wxBitmapRefData::wxBitmapRefData()
65 m_cocoaNSBitmapImageRep = nil;
69 wxBitmapRefData::wxBitmapRefData( const wxBitmapRefData& data)
71 m_width = data.m_width;
72 m_height = data.m_height;
73 m_depth = data.m_depth;
75 m_numColors = data.m_numColors;
76 m_bitmapPalette = data.m_bitmapPalette;
77 m_quality = data.m_quality;
78 m_cocoaNSBitmapImageRep = [data.m_cocoaNSBitmapImageRep copyWithZone:nil];
79 m_bitmapMask = data.m_bitmapMask?new wxMask(*data.m_bitmapMask):NULL;
82 wxBitmapRefData::~wxBitmapRefData()
84 [m_cocoaNSBitmapImageRep release];
85 m_cocoaNSBitmapImageRep = NULL;
91 // ========================================================================
93 // ========================================================================
94 IMPLEMENT_DYNAMIC_CLASS(wxBitmap, wxGDIObject)
101 wxBitmap::~wxBitmap()
105 wxBitmap::wxBitmap(const char bits[], int the_width, int the_height, int no_bits)
107 m_refData = new wxBitmapRefData;
109 M_BITMAPDATA->m_width = the_width ;
110 M_BITMAPDATA->m_height = the_height ;
111 M_BITMAPDATA->m_depth = no_bits ;
112 M_BITMAPDATA->m_numColors = 0;
114 /* TODO: create the bitmap from data */
117 wxBitmap::wxBitmap(int w, int h, int d)
119 (void)Create(w, h, d);
122 wxBitmap::wxBitmap(void *data, wxBitmapType type, int width, int height, int depth)
124 (void) Create(data, type, width, height, depth);
127 wxBitmap::wxBitmap(const wxString& filename, wxBitmapType type)
129 LoadFile(filename, type);
132 wxObjectRefData *wxBitmap::CreateRefData() const
134 return new wxBitmapRefData;
137 wxObjectRefData *wxBitmap::CloneRefData(const wxObjectRefData *data) const
139 return new wxBitmapRefData(*(wxBitmapRefData*)data);
142 WX_NSBitmapImageRep wxBitmap::GetNSBitmapImageRep()
146 return M_BITMAPDATA->m_cocoaNSBitmapImageRep;
149 WX_NSImage wxBitmap::GetNSImage(bool useMask) const
153 NSImage *nsimage = [[[NSImage alloc]
154 initWithSize:NSMakeSize(GetWidth(), GetHeight())] autorelease];
157 [nsimage addRepresentation: M_BITMAPDATA->m_cocoaNSBitmapImageRep];
158 if(useMask && GetMask())
160 NSImage *maskImage = [[NSImage alloc]
161 initWithSize:NSMakeSize(GetWidth(), GetHeight())];
162 [maskImage addRepresentation: GetMask()->GetNSBitmapImageRep()];
164 [maskImage compositeToPoint:NSZeroPoint operation:NSCompositeDestinationIn];
165 [nsimage unlockFocus];
170 void wxBitmap::SetNSBitmapImageRep(WX_NSBitmapImageRep bitmapImageRep)
174 // NOTE: No checking is done to make sure width/height agree
175 [bitmapImageRep retain];
176 [M_BITMAPDATA->m_cocoaNSBitmapImageRep release];
177 M_BITMAPDATA->m_cocoaNSBitmapImageRep = bitmapImageRep;
180 void wxBitmap::SetWidth(int w)
183 m_refData = new wxBitmapRefData;
185 M_BITMAPDATA->m_width = w;
188 void wxBitmap::SetHeight(int h)
191 m_refData = new wxBitmapRefData;
193 M_BITMAPDATA->m_height = h;
196 void wxBitmap::SetDepth(int d)
199 m_refData = new wxBitmapRefData;
201 M_BITMAPDATA->m_depth = d;
204 void wxBitmap::SetQuality(int q)
207 m_refData = new wxBitmapRefData;
209 M_BITMAPDATA->m_quality = q;
212 void wxBitmap::SetOk(bool isOk)
215 m_refData = new wxBitmapRefData;
217 M_BITMAPDATA->m_ok = isOk;
220 void wxBitmap::SetPalette(const wxPalette& palette)
223 m_refData = new wxBitmapRefData;
225 M_BITMAPDATA->m_bitmapPalette = palette ;
228 void wxBitmap::SetMask(wxMask *mask)
231 m_refData = new wxBitmapRefData;
233 M_BITMAPDATA->m_bitmapMask = mask ;
236 bool wxBitmap::Ok() const
238 return m_refData && M_BITMAPDATA->m_ok;
241 wxPalette* wxBitmap::GetPalette() const
245 return &M_BITMAPDATA->m_bitmapPalette;
248 wxMask* wxBitmap::GetMask() const
252 return M_BITMAPDATA->m_bitmapMask;
255 int wxBitmap::GetDepth() const
259 return M_BITMAPDATA->m_depth;
262 int wxBitmap::GetWidth() const
266 return M_BITMAPDATA->m_width;
269 int wxBitmap::GetHeight() const
273 return M_BITMAPDATA->m_height;
276 bool wxBitmap::Create(int w, int h, int d)
280 m_refData = new wxBitmapRefData;
282 M_BITMAPDATA->m_width = w;
283 M_BITMAPDATA->m_height = h;
284 M_BITMAPDATA->m_depth = d;
286 /* TODO: create new bitmap */
287 M_BITMAPDATA->m_cocoaNSBitmapImageRep = [[NSBitmapImageRep alloc]
288 initWithBitmapDataPlanes: NULL
295 colorSpaceName: NSCalibratedRGBColorSpace
299 wxLogDebug(wxT("M_BITMAPDATA=%p NSBitmapImageRep bitmapData=%p"), M_BITMAPDATA, [M_BITMAPDATA->m_cocoaNSBitmapImageRep bitmapData]);
300 M_BITMAPDATA->m_ok = true;
301 M_BITMAPDATA->m_numColors = 0;
302 M_BITMAPDATA->m_quality = 0;
303 M_BITMAPDATA->m_bitmapMask = NULL;
305 return M_BITMAPDATA->m_ok;
308 bool wxBitmap::LoadFile(const wxString& filename, wxBitmapType type)
310 wxAutoNSAutoreleasePool pool;
313 m_refData = new wxBitmapRefData;
315 NSBitmapImageRep *imageRep = [NSBitmapImageRep
316 imageRepWithContentsOfFile:wxNSStringWithWxString(filename)];
320 M_BITMAPDATA->m_width = [imageRep pixelsWide];
321 M_BITMAPDATA->m_height = [imageRep pixelsHigh];
322 M_BITMAPDATA->m_depth = 24; // FIXME
323 M_BITMAPDATA->m_ok = true;
324 M_BITMAPDATA->m_numColors = 0;
325 M_BITMAPDATA->m_quality = 0;
326 M_BITMAPDATA->m_cocoaNSBitmapImageRep = [imageRep retain];
327 M_BITMAPDATA->m_bitmapMask = NULL;
331 if(!image.LoadFile(filename,type))
335 *this = wxBitmap(image);
339 bool wxBitmap::Create(void *data, wxBitmapType type, int width, int height, int depth)
343 m_refData = new wxBitmapRefData;
348 bool wxBitmap::SaveFile(const wxString& filename, wxBitmapType type, const wxPalette *palette) const
353 bool wxBitmap::CopyFromIcon(const wxIcon& icno)
358 wxBitmap wxBitmap::GetSubBitmap(wxRect const&) const
363 wxImage wxBitmap::ConvertToImage() const
365 if(!M_BITMAPDATA->m_ok)
366 return wxImage(5,5)/*wxNullImage*/;
367 return wxImage(M_BITMAPDATA->m_width,M_BITMAPDATA->m_height);
370 bool wxBitmap::CreateFromXpm(const char **xpm)
372 #if wxUSE_IMAGE && wxUSE_XPM
375 wxCHECK_MSG( xpm, false, wxT("invalid XPM data") )
377 wxXPMDecoder decoder;
378 wxImage img = decoder.ReadData(xpm);
379 wxCHECK_MSG( img.Ok(), false, wxT("invalid XPM data") )
381 *this = wxBitmap(img);
388 bool wxBitmap::CreateFromImage(const wxImage& image, int depth)
392 wxCHECK_MSG(image.Ok(), false, wxT("invalid image"));
393 wxCHECK_MSG(depth == -1 || depth == 1, false, wxT("invalid bitmap depth"));
395 m_refData = new wxBitmapRefData();
397 M_BITMAPDATA->m_width = image.GetWidth();
398 M_BITMAPDATA->m_height = image.GetHeight();
399 NSBitmapImageRep *bitmapImage = [[NSBitmapImageRep alloc]
400 initWithBitmapDataPlanes: NULL
401 pixelsWide: image.GetWidth()
402 pixelsHigh: image.GetHeight()
407 colorSpaceName: NSCalibratedRGBColorSpace
411 const int numBytes = image.GetWidth()*image.GetHeight()*3;
412 memcpy([bitmapImage bitmapData], image.GetData(), numBytes);
413 // TODO: Alpha and convert to desired depth
414 M_BITMAPDATA->m_depth = 24;
415 M_BITMAPDATA->m_ok = true;
416 M_BITMAPDATA->m_numColors = 0;
417 M_BITMAPDATA->m_quality = 0;
418 M_BITMAPDATA->m_cocoaNSBitmapImageRep = bitmapImage;
419 M_BITMAPDATA->m_bitmapMask = new wxMask(*this,wxColour(image.GetMaskRed(),image.GetMaskGreen(),image.GetMaskBlue()));
423 void *wxBitmap::GetRawData(wxPixelDataBase& data, int bpp)
428 NSBitmapImageRep *bitmapRep = M_BITMAPDATA->m_cocoaNSBitmapImageRep;
432 if([bitmapRep bitsPerPixel]!=bpp)
434 wxFAIL_MSG( _T("incorrect bitmap type in wxBitmap::GetRawData()") );
437 data.m_width = [bitmapRep pixelsWide];
438 data.m_height = [bitmapRep pixelsHigh];
439 data.m_stride = [bitmapRep bytesPerRow];
440 return [bitmapRep bitmapData];
442 // NOTE: It is up to the user to make sure they used the proper
443 // pixel format class that details what is actually inside the pixels
444 // We can only check to make sure that the total number of bits per
445 // pixel are being iterated over properly
446 // NSBitmapImageRep can contain grayscale or CMYK data and
447 // wxPixelDataBase doesn't really define the color format
450 void wxBitmap::UngetRawData(wxPixelDataBase& data)
454 // ========================================================================
456 // ========================================================================
458 IMPLEMENT_DYNAMIC_CLASS(wxMask, wxObject)
462 m_cocoaNSBitmapImageRep = nil;
465 // Construct a mask from a bitmap and a colour indicating
466 // the transparent area
467 wxMask::wxMask(const wxBitmap& bitmap, const wxColour& colour)
469 m_cocoaNSBitmapImageRep = nil;
470 Create(bitmap, colour);
473 // Construct a mask from a bitmap and a palette index indicating
474 // the transparent area
475 wxMask::wxMask(const wxBitmap& bitmap, int paletteIndex)
477 m_cocoaNSBitmapImageRep = nil;
479 Create(bitmap, paletteIndex);
482 // Construct a mask from a mono bitmap (copies the bitmap).
483 wxMask::wxMask(const wxBitmap& bitmap)
485 m_cocoaNSBitmapImageRep = nil;
492 [m_cocoaNSBitmapImageRep release];
495 // Create a mask from a mono bitmap (copies the bitmap).
496 bool wxMask::Create(const wxBitmap& bitmap)
502 // Create a mask from a bitmap and a palette index indicating
503 // the transparent area
504 bool wxMask::Create(const wxBitmap& bitmap, int paletteIndex)
510 template <class PixelData>
511 static bool wxMask_CreateFromBitmapData(PixelData srcData, const wxColour& colour, unsigned char *dstData)
513 wxCHECK_MSG(dstData,false,wxT("Couldn't access mask data"));
514 class PixelData::Iterator p(srcData);
515 const int nRows = srcData.GetHeight();
516 const int nCols = srcData.GetWidth();
517 // Total number of bytes per destination column
518 const int dstRowLength = (nCols+7)/8;
519 // Number of source columns that fit into a byte in the destination
520 const int width_aligned = nCols/8*8;
521 for(int y=0; y<nRows; ++y)
523 class PixelData::Iterator rowStart(p);
524 unsigned char *dstRow = dstData + y*dstRowLength;
525 for(int x=0; x<width_aligned; x+=8)
527 unsigned char *dstByte = dstRow + x/8;
529 // Take source RGB, compare it with the wxColour
530 for(int j=0; j<8; ++j, ++p)
533 ( p.Red()!=colour.Red()
534 || p.Green()!=colour.Green()
535 || p.Blue()!=colour.Blue()
539 // Handle the remaining 0-7 pixels in the row
540 unsigned char *dstByte = dstRow + width_aligned/8;
542 for(int j=0; j<(nCols%8); ++j, ++p)
545 ( p.Red()!=colour.Red()
546 || p.Green()!=colour.Green()
547 || p.Blue()!=colour.Blue()
551 p.OffsetY(srcData,1);
556 // Create a mask from a bitmap and a colour indicating
557 // the transparent area
558 bool wxMask::Create(const wxBitmap& bitmap, const wxColour& colour)
560 wxAutoNSAutoreleasePool pool;
563 int bmpWidth = bitmap.GetWidth();
564 int bmpHeight = bitmap.GetHeight();
565 int dstRowLength = (bmpWidth+7)/8;
567 // Create a bitmap image rep with 1-bit per pixel data representing
568 // the alpha channel padded such that rows end on byte boundaries
569 // Since NSBitmapImageRep doesn't have any sort of NSNullColorSpace
570 // we must have at least one channel of non-alpha data. In order to
571 // make our life easy, we use planar data which results in two
572 // separate arrays. We don't need to touch the first because it
573 // should never be used. The second is the 1-bit "alpha" data.
574 NSBitmapImageRep *maskRep = [[[NSBitmapImageRep alloc]
575 initWithBitmapDataPlanes:NULL pixelsWide:bmpWidth
576 pixelsHigh:bmpHeight bitsPerSample:1
577 samplesPerPixel:2 hasAlpha:YES isPlanar:YES
578 colorSpaceName:NSCalibratedWhiteColorSpace
579 bytesPerRow:dstRowLength bitsPerPixel:1] autorelease];
580 wxCHECK(maskRep,false);
582 // We need the source NSBitmapImageRep to detemine its pixel format
583 NSBitmapImageRep *srcBitmapRep = const_cast<wxBitmap&>(bitmap).GetNSBitmapImageRep();
584 wxCHECK_MSG(srcBitmapRep,false,wxT("Can't create mask for an uninitialized bitmap"));
586 // Get a pointer to the destination data
587 unsigned char *dstPlanes[5] = {NULL,NULL,NULL,NULL,NULL};
588 [maskRep getBitmapDataPlanes:dstPlanes];
589 unsigned char *dstData = dstPlanes[1];
590 // The wxImage format (which we use whenever we imported from wxImage)
591 if([srcBitmapRep bitsPerPixel]==24 && [srcBitmapRep bitsPerSample]==8 && [srcBitmapRep samplesPerPixel]==3 && [srcBitmapRep hasAlpha]==NO)
593 wxPixelData<wxBitmap,wxNativePixelFormat> pixelData(const_cast<wxBitmap&>(bitmap));
594 wxCHECK_MSG(wxMask_CreateFromBitmapData(pixelData, colour, dstData),
595 false, wxT("Unable to access raw data"));
597 // 32-bpp RGBx (x=throw away, no alpha)
598 else if([srcBitmapRep bitsPerPixel]==32 && [srcBitmapRep bitsPerSample]==8 && [srcBitmapRep samplesPerPixel]==3 && [srcBitmapRep hasAlpha]==NO)
600 typedef wxPixelFormat<unsigned char,32,0,1,2> PixelFormat;
601 wxPixelData<wxBitmap,PixelFormat> pixelData(const_cast<wxBitmap&>(bitmap));
602 wxCHECK_MSG(wxMask_CreateFromBitmapData(pixelData, colour, dstData),
603 false, wxT("Unable to access raw data"));
606 else if([srcBitmapRep bitsPerPixel]==32 && [srcBitmapRep bitsPerSample]==8 && [srcBitmapRep samplesPerPixel]==4 && [srcBitmapRep hasAlpha]==YES)
608 wxPixelData<wxBitmap,wxAlphaPixelFormat> pixelData(const_cast<wxBitmap&>(bitmap));
609 wxCHECK_MSG(wxMask_CreateFromBitmapData(pixelData, colour, dstData),
610 false, wxT("Unable to access raw data"));
613 { wxCHECK_MSG(false,false,wxT("Unimplemented pixel format")); }
615 // maskRep was autoreleased in case we had to exit quickly
616 m_cocoaNSBitmapImageRep = [maskRep retain];