]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/mac/carbon/colour.cpp | |
3 | // Purpose: wxColour class | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #include "wx/colour.h" | |
15 | ||
16 | #ifndef WX_PRECOMP | |
17 | #include "wx/gdicmn.h" | |
18 | #endif | |
19 | ||
20 | #include "wx/mac/private.h" | |
21 | ||
22 | IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject) | |
23 | ||
24 | wxColour::wxColour(const RGBColor& col) | |
25 | { | |
26 | InitRGBColor(col); | |
27 | } | |
28 | ||
29 | wxColour::wxColour(CGColorRef col) | |
30 | { | |
31 | InitCGColorRef(col); | |
32 | } | |
33 | ||
34 | void wxColour::GetRGBColor( RGBColor *col ) const | |
35 | { | |
36 | col->red = (m_red << 8) + m_red; | |
37 | col->blue = (m_blue << 8) + m_blue; | |
38 | col->green = (m_green << 8) + m_green; | |
39 | } | |
40 | ||
41 | wxColour& wxColour::operator=(const RGBColor& col) | |
42 | { | |
43 | InitRGBColor(col); | |
44 | return *this; | |
45 | } | |
46 | ||
47 | wxColour& wxColour::operator=(CGColorRef col) | |
48 | { | |
49 | InitCGColorRef(col); | |
50 | return *this; | |
51 | } | |
52 | ||
53 | wxColour& wxColour::operator=(const wxColour& col) | |
54 | { | |
55 | m_red = col.m_red; | |
56 | m_green = col.m_green; | |
57 | m_blue = col.m_blue; | |
58 | m_alpha = col.m_alpha; | |
59 | m_cgColour = col.m_cgColour; | |
60 | return *this; | |
61 | } | |
62 | ||
63 | void wxColour::InitRGBA (ChannelType r, ChannelType g, ChannelType b, ChannelType a) | |
64 | { | |
65 | m_red = r; | |
66 | m_green = g; | |
67 | m_blue = b; | |
68 | m_alpha = a ; | |
69 | ||
70 | CGColorRef col = 0 ; | |
71 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 | |
72 | if ( CGColorCreateGenericRGB ) | |
73 | col = CGColorCreateGenericRGB( r / 255.0, g / 255.0, b / 255.0, a / 255.0 ); | |
74 | else | |
75 | #endif | |
76 | { | |
77 | CGFloat components[4] = { r / 255.0, g / 255.0, b / 255.0, a / 255.0 } ; | |
78 | col = CGColorCreate( wxMacGetGenericRGBColorSpace() , components ) ; | |
79 | } | |
80 | m_cgColour.reset( col ); | |
81 | } | |
82 | ||
83 | void wxColour::InitRGBColor( const RGBColor& col ) | |
84 | { | |
85 | m_red = col.red >> 8; | |
86 | m_blue = col.blue >> 8; | |
87 | m_green = col.green >> 8; | |
88 | m_alpha = wxALPHA_OPAQUE; | |
89 | CGColorRef cfcol; | |
90 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 | |
91 | if ( CGColorCreateGenericRGB ) | |
92 | cfcol = CGColorCreateGenericRGB( col.red / 65535.0, col.green / 65535.0, col.blue / 65535.0, 1.0 ); | |
93 | else | |
94 | #endif | |
95 | { | |
96 | CGFloat components[4] = { col.red / 65535.0, col.green / 65535.0, col.blue / 65535.0, 1.0 } ; | |
97 | cfcol = CGColorCreate( wxMacGetGenericRGBColorSpace() , components ) ; | |
98 | } | |
99 | m_cgColour.reset( cfcol ); | |
100 | } | |
101 | ||
102 | void wxColour::InitCGColorRef( CGColorRef col ) | |
103 | { | |
104 | m_cgColour.reset( col ); | |
105 | size_t noComp = CGColorGetNumberOfComponents( col ); | |
106 | if ( noComp >=3 && noComp <= 4 ) | |
107 | { | |
108 | // TODO verify whether we really are on a RGB color space | |
109 | const CGFloat *components = CGColorGetComponents( col ); | |
110 | m_red = (int)(components[0]*255+0.5); | |
111 | m_green = (int)(components[1]*255+0.5); | |
112 | m_blue = (int)(components[2]*255+0.5); | |
113 | if ( noComp == 4 ) | |
114 | m_alpha = (int)(components[3]*255+0.5); | |
115 | else | |
116 | m_alpha = wxALPHA_OPAQUE; | |
117 | } | |
118 | else | |
119 | { | |
120 | m_alpha = wxALPHA_OPAQUE; | |
121 | m_red = m_green = m_blue = 0; | |
122 | } | |
123 | } | |
124 | ||
125 | bool wxColour::operator == (const wxColour& colour) const | |
126 | { | |
127 | return ( (IsOk() == colour.IsOk()) && (!IsOk() || | |
128 | CGColorEqualToColor( m_cgColour, colour.m_cgColour ) ) ); | |
129 | } | |
130 | ||
131 |