1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cococa/colour.mm
3 // Purpose: wxColour class
4 // Author: David Elliott
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWidgets licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/colour.h"
17 #include "wx/gdicmn.h"
20 #include "wx/cocoa/autorelease.h"
22 #import <AppKit/NSColor.h>
24 IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
28 m_cocoaNSColor = NULL;
34 wxColour::wxColour (const wxColour& col)
35 : m_cocoaNSColor(col.m_cocoaNSColor)
37 , m_green(col.m_green)
39 , m_alpha(col.m_alpha)
41 [m_cocoaNSColor retain];
44 wxColour::wxColour( WX_NSColor aColor )
50 wxColour& wxColour::operator =(const wxColour& col)
52 m_cocoaNSColor = col.m_cocoaNSColor;
54 m_green = col.m_green;
56 m_alpha = col.m_alpha;
57 [m_cocoaNSColor retain];
61 wxColour::~wxColour ()
63 [m_cocoaNSColor release];
66 void wxColour::InitRGBA(unsigned char r,
71 wxAutoNSAutoreleasePool pool;
72 [m_cocoaNSColor release];
73 m_cocoaNSColor = [[NSColor colorWithCalibratedRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:a/255.0] retain];
80 void wxColour::Set( WX_NSColor aColor )
83 [m_cocoaNSColor release];
84 m_cocoaNSColor = aColor;
86 /* Make a temporary color in RGB format and get the values. Note that
87 unless the color was actually RGB to begin with it's likely that
88 these will be fairly bogus. Particulary if the color is a pattern. */
89 NSColor *rgbColor = [m_cocoaNSColor colorUsingColorSpaceName:NSCalibratedRGBColorSpace];
90 m_red = (wxUint8) ([rgbColor redComponent] * 255.0);
91 m_green = (wxUint8) ([rgbColor greenComponent] * 255.0);
92 m_blue = (wxUint8) ([rgbColor blueComponent] * 255.0);
93 m_alpha = (wxUint8) ([rgbColor alphaComponent] * 255.0);