- m_selected = bitmap;
- if (m_selected.Ok())
- {
- wxBitmapRefData * bmap = (wxBitmapRefData*) (m_selected.GetRefData()) ;
- if ( bmap->m_hBitmap )
- {
- m_macPort = (GrafPtr) bmap->m_hBitmap ;
- MacSetupPort() ;
- m_ok = TRUE ;
- // SetBackground(wxBrush(*wxWHITE, wxSOLID));
- }
- else
- {
- m_ok = FALSE;
- }
- }
- else
- {
- m_ok = FALSE;
- };
-};
+ if ( m_selected.Ok() )
+ {
+#if wxMAC_USE_CORE_GRAPHICS
+ m_selected.EndRawAccess() ;
+ CGContextRef bmCtx = ((wxMacCGContext*)(m_graphicContext))->GetNativeContext() ;
+ delete m_graphicContext ;
+ m_graphicContext = NULL ;
+ CGContextRelease( bmCtx ) ;
+#else
+// TODO UnlockPixels( GetGWorldPixMap(MAC_WXHBITMAP(m_selected.GetHBITMAP())) );
+#endif
+ }
+ m_selected = bitmap;
+ if (m_selected.Ok())
+ {
+#if wxMAC_USE_CORE_GRAPHICS
+ m_selected.UseAlpha() ;
+ void * data = m_selected.BeginRawAccess() ;
+
+ int bitsPerComp = 8 ;
+ int bytesPerPixel = 4 ;
+ int w = bitmap.GetWidth() ;
+ int h = bitmap.GetHeight() ;
+ CGImageAlphaInfo a = kCGImageAlphaNoneSkipFirst ;
+ CGColorSpaceRef genericColorSpace = wxMacGetGenericRGBColorSpace();
+ CGContextRef bmCtx = CGBitmapContextCreate(data , w, h, bitsPerComp , bytesPerPixel * w , genericColorSpace, a);
+ wxASSERT_MSG( bmCtx , wxT("Unable to create bitmap context") ) ;
+
+ CGContextSetFillColorSpace(bmCtx, genericColorSpace);
+ CGContextSetStrokeColorSpace(bmCtx, genericColorSpace);