/////////////////////////////////////////////////////////////////////////////
-// Name: wx/mac/carbon/colour.h
+// Name: wx/osx/core/colour.h
// Purpose: wxColour class
// Author: Stefan Csomor
// Modified by:
#if wxOSX_USE_COCOA_OR_CARBON
wxColour(const RGBColor& col);
wxColour& operator=(const RGBColor& col);
+#endif
+#if wxOSX_USE_COCOA
+ wxColour(WX_NSColor color);
+ WX_NSColor OSXGetNSColor() const;
#endif
wxColour& operator=(CGColorRef col);
wxColour& operator=(const wxColour& col);
void InitRGBColor( const RGBColor& col );
#endif
void InitCGColorRef( CGColorRef col );
+ void InitFromComponents(const CGFloat* components, size_t numComponents );
private:
wxCFRef<CGColorRef> m_cgColour;