]> git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/colour.cpp
Adding David Surovell's fixes and extensions
[wxWidgets.git] / src / mac / carbon / colour.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: 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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "colour.h"
14 #endif
15
16 #include "wx/wxprec.h"
17
18 #include "wx/gdicmn.h"
19 #include "wx/colour.h"
20
21 IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
22
23 // Colour
24
25 #include "wx/mac/private.h"
26
27 static void wxComposeRGBColor( WXCOLORREF* color , int red, int blue, int green ) ;
28 static void wxComposeRGBColor( WXCOLORREF* color , int red, int blue, int green )
29 {
30 RGBColor* col = (RGBColor*) color ;
31 col->red = (red << 8) + red;
32 col->blue = (blue << 8) + blue;
33 col->green = (green << 8) + green;
34 }
35
36 void wxColour::Init()
37 {
38 m_isInit = false;
39 m_red =
40 m_blue =
41 m_green = 0;
42
43 wxComposeRGBColor( &m_pixel , m_red , m_blue , m_green ) ;
44 }
45
46 wxColour::wxColour (const wxColour& col)
47 : wxObject()
48 {
49 m_red = col.m_red;
50 m_green = col.m_green;
51 m_blue = col.m_blue;
52 m_isInit = col.m_isInit;
53
54 memcpy( &m_pixel , &col.m_pixel , 6 ) ;
55 }
56
57 wxColour& wxColour::operator =(const wxColour& col)
58 {
59 m_red = col.m_red;
60 m_green = col.m_green;
61 m_blue = col.m_blue;
62 m_isInit = col.m_isInit;
63
64 memcpy( &m_pixel , &col.m_pixel , 6 ) ;
65
66 return *this;
67 }
68
69 void wxColour::InitFromName(const wxString& name)
70 {
71 if ( wxTheColourDatabase )
72 {
73 wxColour col = wxTheColourDatabase->Find(name);
74 if ( col.Ok() )
75 {
76 *this = col;
77 return;
78 }
79 }
80
81 // leave invalid
82 Init();
83 }
84
85 wxColour::~wxColour ()
86 {
87 }
88
89 void wxColour::Set (unsigned char r, unsigned char g, unsigned char b)
90 {
91 m_red = r;
92 m_green = g;
93 m_blue = b;
94 m_isInit = true;
95
96 wxComposeRGBColor( &m_pixel , m_red , m_blue , m_green ) ;
97 }
98
99 void wxColour::Set( const WXCOLORREF* color )
100 {
101 RGBColor* col = (RGBColor*) color ;
102 memcpy( &m_pixel , color , 6 ) ;
103 m_red = col->red>>8 ;
104 m_blue = col->blue>>8 ;
105 m_green = col->green>>8 ;
106 }