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