]>
Commit | Line | Data |
---|---|---|
32b8ec41 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: colour.cpp | |
3 | // Purpose: wxColour class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
e3a1e3e0 | 8 | // Copyright: (c) Julian Smart |
32b8ec41 VZ |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
14f355c2 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
32b8ec41 VZ |
13 | #pragma implementation "colour.h" |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #include "wx/gdicmn.h" | |
c3d15542 | 24 | #include "wx/colour.h" |
32b8ec41 VZ |
25 | |
26 | IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject) | |
27 | ||
28 | // Colour | |
29 | ||
564a150b | 30 | void wxColour::Init() |
32b8ec41 | 31 | { |
564a150b VZ |
32 | m_red = |
33 | m_blue = | |
34 | m_green = 0; | |
35 | m_isInit = FALSE; | |
32b8ec41 VZ |
36 | } |
37 | ||
38 | wxColour::wxColour(const wxColour& col) | |
39 | { | |
564a150b | 40 | *this = col; |
32b8ec41 VZ |
41 | } |
42 | ||
43 | wxColour& wxColour::operator =(const wxColour& col) | |
44 | { | |
564a150b VZ |
45 | m_red = col.m_red; |
46 | m_green = col.m_green; | |
47 | m_blue = col.m_blue; | |
48 | m_isInit = col.m_isInit; | |
49 | return *this; | |
32b8ec41 VZ |
50 | } |
51 | ||
564a150b | 52 | void wxColour::InitFromName(const wxString& name) |
32b8ec41 | 53 | { |
564a150b VZ |
54 | wxColour *col = wxTheColourDatabase->Find(name); |
55 | if ( col.Ok() ) | |
32b8ec41 | 56 | { |
564a150b | 57 | *this = col; |
32b8ec41 | 58 | } |
564a150b | 59 | else |
32b8ec41 | 60 | { |
564a150b | 61 | Init(); |
32b8ec41 VZ |
62 | } |
63 | } | |
64 | ||
65 | wxColour::~wxColour() | |
66 | { | |
67 | } | |
68 | ||
69 | void wxColour::Set(unsigned char r, unsigned char g, unsigned char b) | |
70 | { | |
564a150b VZ |
71 | m_red = r; |
72 | m_green = g; | |
73 | m_blue = b; | |
74 | m_isInit = TRUE; | |
32b8ec41 | 75 | } |