]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: colour.cpp | |
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 |
65571936 | 9 | // Licence: wxWindows licence |
e9576ca5 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
a8e9860d | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
e9576ca5 SC |
13 | #pragma implementation "colour.h" |
14 | #endif | |
15 | ||
a8e9860d SC |
16 | #include "wx/wxprec.h" |
17 | ||
e9576ca5 SC |
18 | #include "wx/gdicmn.h" |
19 | #include "wx/colour.h" | |
20 | ||
e9576ca5 | 21 | IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject) |
e9576ca5 SC |
22 | |
23 | // Colour | |
24 | ||
76a5e5d2 SC |
25 | #include "wx/mac/private.h" |
26 | ||
27 | static void wxComposeRGBColor( WXCOLORREF* color , int red, int blue, int green ) ; | |
aad6765c | 28 | static void wxComposeRGBColor( WXCOLORREF* color , int red, int blue, int green ) |
519cb848 | 29 | { |
76a5e5d2 | 30 | RGBColor* col = (RGBColor*) color ; |
e40298d5 JS |
31 | col->red = (red << 8) + red; |
32 | col->blue = (blue << 8) + blue; | |
33 | col->green = (green << 8) + green; | |
519cb848 SC |
34 | } |
35 | ||
564a150b | 36 | void wxColour::Init() |
e9576ca5 | 37 | { |
aad6765c | 38 | m_isInit = false; |
564a150b VZ |
39 | m_red = |
40 | m_blue = | |
41 | m_green = 0; | |
aad6765c | 42 | |
e40298d5 | 43 | wxComposeRGBColor( &m_pixel , m_red , m_blue , m_green ) ; |
e9576ca5 SC |
44 | } |
45 | ||
e9576ca5 | 46 | wxColour::wxColour (const wxColour& col) |
d84afea9 | 47 | : wxObject() |
e9576ca5 SC |
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; | |
519cb848 | 53 | |
76a5e5d2 | 54 | memcpy( &m_pixel , &col.m_pixel , 6 ) ; |
519cb848 SC |
55 | } |
56 | ||
e9576ca5 SC |
57 | wxColour& wxColour::operator =(const wxColour& col) |
58 | { | |
e40298d5 JS |
59 | m_red = col.m_red; |
60 | m_green = col.m_green; | |
61 | m_blue = col.m_blue; | |
62 | m_isInit = col.m_isInit; | |
aad6765c | 63 | |
e40298d5 | 64 | memcpy( &m_pixel , &col.m_pixel , 6 ) ; |
aad6765c | 65 | |
e40298d5 | 66 | return *this; |
e9576ca5 SC |
67 | } |
68 | ||
564a150b | 69 | void wxColour::InitFromName(const wxString& name) |
e9576ca5 | 70 | { |
aad6765c | 71 | if ( wxTheColourDatabase ) |
e9576ca5 | 72 | { |
aad6765c JS |
73 | wxColour col = wxTheColourDatabase->Find(name); |
74 | if ( col.Ok() ) | |
75 | { | |
76 | *this = col; | |
77 | return; | |
78 | } | |
e9576ca5 | 79 | } |
aad6765c JS |
80 | |
81 | // leave invalid | |
82 | Init(); | |
e9576ca5 SC |
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; | |
aad6765c | 94 | m_isInit = true; |
519cb848 | 95 | |
e40298d5 | 96 | wxComposeRGBColor( &m_pixel , m_red , m_blue , m_green ) ; |
e9576ca5 | 97 | } |
76a5e5d2 SC |
98 | |
99 | void wxColour::Set( const WXCOLORREF* color ) | |
aad6765c | 100 | { |
76a5e5d2 SC |
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 ; | |
d84afea9 | 106 | } |