]>
git.saurik.com Git - wxWidgets.git/blob - src/osx/core/colour.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/core/colour.cpp
3 // Purpose: wxColour class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/colour.h"
17 #include "wx/gdicmn.h"
20 #include "wx/osx/private.h"
22 #if wxOSX_USE_COCOA_OR_CARBON
23 wxColour::wxColour(const RGBColor
& col
)
29 wxColour::wxColour(CGColorRef col
)
34 #if wxOSX_USE_COCOA_OR_CARBON
35 void wxColour::GetRGBColor( RGBColor
*col
) const
37 col
->red
= (m_red
<< 8) + m_red
;
38 col
->blue
= (m_blue
<< 8) + m_blue
;
39 col
->green
= (m_green
<< 8) + m_green
;
42 wxColour
& wxColour::operator=(const RGBColor
& col
)
49 wxColour
& wxColour::operator=(CGColorRef col
)
55 wxColour
& wxColour::operator=(const wxColour
& col
)
58 m_green
= col
.m_green
;
60 m_alpha
= col
.m_alpha
;
61 m_cgColour
= col
.m_cgColour
;
65 void wxColour::InitRGBA (ChannelType r
, ChannelType g
, ChannelType b
, ChannelType a
)
73 #if wxOSX_USE_COCOA_OR_CARBON && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
74 if ( CGColorCreateGenericRGB
!= NULL
)
75 col
= CGColorCreateGenericRGB( (CGFloat
)(r
/ 255.0), (CGFloat
) (g
/ 255.0), (CGFloat
) (b
/ 255.0), (CGFloat
) (a
/ 255.0) );
79 CGFloat components
[4] = { (CGFloat
)(r
/ 255.0), (CGFloat
) (g
/ 255.0), (CGFloat
) (b
/ 255.0), (CGFloat
) (a
/ 255.0) } ;
80 col
= CGColorCreate( wxMacGetGenericRGBColorSpace() , components
) ;
82 m_cgColour
.reset( col
);
85 #if wxOSX_USE_COCOA_OR_CARBON
86 void wxColour::InitRGBColor( const RGBColor
& col
)
89 m_blue
= col
.blue
>> 8;
90 m_green
= col
.green
>> 8;
91 m_alpha
= wxALPHA_OPAQUE
;
93 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
94 if ( CGColorCreateGenericRGB
!= NULL
)
95 cfcol
= CGColorCreateGenericRGB((CGFloat
)(col
.red
/ 65535.0), (CGFloat
)(col
.green
/ 65535.0),
96 (CGFloat
)(col
.blue
/ 65535.0), (CGFloat
) 1.0 );
100 CGFloat components
[4] = { (CGFloat
)(col
.red
/ 65535.0), (CGFloat
)(col
.green
/ 65535.0),
101 (CGFloat
)(col
.blue
/ 65535.0), (CGFloat
) 1.0 } ;
102 cfcol
= CGColorCreate( wxMacGetGenericRGBColorSpace() , components
) ;
104 m_cgColour
.reset( cfcol
);
108 void wxColour::InitCGColorRef( CGColorRef col
)
110 m_cgColour
.reset( col
);
111 size_t noComp
= CGColorGetNumberOfComponents( col
);
113 const CGFloat
*components
= NULL
;
114 if ( noComp
>= 1 && noComp
<= 4 )
116 // TODO verify whether we really are on a RGB color space
117 m_alpha
= wxALPHA_OPAQUE
;
118 components
= CGColorGetComponents( col
);
120 InitFromComponents(components
, noComp
);
123 void wxColour::InitFromComponents(const CGFloat
* components
, size_t numComponents
)
125 if ( numComponents
< 1 || !components
)
127 m_alpha
= wxALPHA_OPAQUE
;
128 m_red
= m_green
= m_blue
= 0;
132 if ( numComponents
>= 3 )
134 m_red
= (int)(components
[0]*255+0.5);
135 m_green
= (int)(components
[1]*255+0.5);
136 m_blue
= (int)(components
[2]*255+0.5);
137 if ( numComponents
== 4 )
138 m_alpha
= (int)(components
[3]*255+0.5);
142 m_red
= (int)(components
[0]*255+0.5);
143 m_green
= (int)(components
[0]*255+0.5);
144 m_blue
= (int)(components
[0]*255+0.5);
148 bool wxColour::operator == (const wxColour
& colour
) const
150 return ( (IsOk() == colour
.IsOk()) && (!IsOk() ||
151 CGColorEqualToColor( m_cgColour
, colour
.m_cgColour
) ) );