X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/03647350fc7cd141953c72e0284e928847d30f44..df7d93f67bae4a7598dc7058f90f35acb7bd584a:/src/osx/core/colour.cpp diff --git a/src/osx/core/colour.cpp b/src/osx/core/colour.cpp index 8191379762..35114175ce 100644 --- a/src/osx/core/colour.cpp +++ b/src/osx/core/colour.cpp @@ -72,7 +72,7 @@ void wxColour::InitRGBA (ChannelType r, ChannelType g, ChannelType b, ChannelTyp m_alpha = a ; CGColorRef col = 0 ; -#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 +#if wxOSX_USE_COCOA_OR_CARBON && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 if ( CGColorCreateGenericRGB != NULL ) col = CGColorCreateGenericRGB( (CGFloat)(r / 255.0), (CGFloat) (g / 255.0), (CGFloat) (b / 255.0), (CGFloat) (a / 255.0) ); else @@ -111,30 +111,39 @@ void wxColour::InitCGColorRef( CGColorRef col ) { m_cgColour.reset( col ); size_t noComp = CGColorGetNumberOfComponents( col ); + + const CGFloat *components = NULL; if ( noComp >= 1 && noComp <= 4 ) { // TODO verify whether we really are on a RGB color space m_alpha = wxALPHA_OPAQUE; - const CGFloat *components = CGColorGetComponents( col ); - if ( noComp >= 3 ) - { - m_red = (int)(components[0]*255+0.5); - m_green = (int)(components[1]*255+0.5); - m_blue = (int)(components[2]*255+0.5); - if ( noComp == 4 ) - m_alpha = (int)(components[3]*255+0.5); - } - else - { - m_red = (int)(components[0]*255+0.5); - m_green = (int)(components[0]*255+0.5); - m_blue = (int)(components[0]*255+0.5); - } + components = CGColorGetComponents( col ); } - else + InitFromComponents(components, noComp); +} + +void wxColour::InitFromComponents(const CGFloat* components, size_t numComponents ) +{ + if ( numComponents < 1 || !components ) { m_alpha = wxALPHA_OPAQUE; m_red = m_green = m_blue = 0; + return; + } + + if ( numComponents >= 3 ) + { + m_red = (int)(components[0]*255+0.5); + m_green = (int)(components[1]*255+0.5); + m_blue = (int)(components[2]*255+0.5); + if ( numComponents == 4 ) + m_alpha = (int)(components[3]*255+0.5); + } + else + { + m_red = (int)(components[0]*255+0.5); + m_green = (int)(components[0]*255+0.5); + m_blue = (int)(components[0]*255+0.5); } }