#include "wx/osx/private.h"
-IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
-
#if wxOSX_USE_COCOA_OR_CARBON
wxColour::wxColour(const RGBColor& col)
{
{
m_cgColour.reset( col );
size_t noComp = CGColorGetNumberOfComponents( col );
-
+
const CGFloat *components = NULL;
if ( noComp >= 1 && noComp <= 4 )
{
m_red = m_green = m_blue = 0;
return;
}
-
+
if ( numComponents >= 3 )
{
m_red = (int)(components[0]*255+0.5);