]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
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$ | |
6c9a19aa | 8 | // Copyright: (c) Julian Smart |
aad6765c | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
14f355c2 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
2bda0e17 KB |
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" | |
8cb172b4 | 24 | #include "wx/msw/private.h" |
2bda0e17 KB |
25 | |
26 | #include <string.h> | |
2bda0e17 | 27 | |
066f1b7a | 28 | #if wxUSE_EXTENDED_RTTI |
067e9be6 | 29 | |
067e9be6 SC |
30 | template<> void wxStringReadValue(const wxString &s , wxColour &data ) |
31 | { | |
aad6765c JS |
32 | // copied from VS xrc |
33 | unsigned long tmp = 0; | |
067e9be6 | 34 | |
aad6765c JS |
35 | if (s.Length() != 7 || s[0u] != wxT('#') |
36 | || wxSscanf(s.c_str(), wxT("#%lX"), &tmp) != 1) | |
067e9be6 | 37 | { |
aad6765c JS |
38 | wxLogError(_("String To Colour : Incorrect colour specification : %s"), |
39 | s.c_str() ); | |
067e9be6 SC |
40 | data = wxNullColour; |
41 | } | |
aad6765c JS |
42 | else |
43 | { | |
44 | data = wxColour((unsigned char) ((tmp & 0xFF0000) >> 16) , | |
45 | (unsigned char) ((tmp & 0x00FF00) >> 8), | |
46 | (unsigned char) ((tmp & 0x0000FF))); | |
47 | } | |
067e9be6 SC |
48 | } |
49 | ||
50 | template<> void wxStringWriteValue(wxString &s , const wxColour &data ) | |
51 | { | |
aad6765c JS |
52 | s = wxString::Format(wxT("#%02X%02X%02X"), |
53 | data.Red(), data.Green(), data.Blue() ); | |
067e9be6 SC |
54 | } |
55 | ||
aad6765c | 56 | IMPLEMENT_DYNAMIC_CLASS_WITH_COPY_AND_STREAMERS_XTI( wxColour , wxObject , "wx/colour.h" , &wxToStringConverter<wxColour> , &wxFromStringConverter<wxColour>) |
066f1b7a | 57 | |
3ff066a4 | 58 | wxBEGIN_PROPERTIES_TABLE(wxColour) |
aad6765c JS |
59 | wxREADONLY_PROPERTY( Red, unsigned char, Red, , 0 /*flags*/, wxT("Helpstring"), wxT("group")) |
60 | wxREADONLY_PROPERTY( Green, unsigned char, Green, , 0 /*flags*/, wxT("Helpstring"), wxT("group")) | |
61 | wxREADONLY_PROPERTY( Blue, unsigned char, Blue, , 0 /*flags*/, wxT("Helpstring"), wxT("group")) | |
3ff066a4 | 62 | wxEND_PROPERTIES_TABLE() |
066f1b7a | 63 | |
aad6765c | 64 | wxCONSTRUCTOR_3( wxColour, unsigned char, Red, unsigned char, Green, unsigned char, Blue ) |
066f1b7a | 65 | |
3ff066a4 SC |
66 | wxBEGIN_HANDLERS_TABLE(wxColour) |
67 | wxEND_HANDLERS_TABLE() | |
066f1b7a | 68 | #else |
2bda0e17 | 69 | IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject) |
066f1b7a | 70 | #endif |
2bda0e17 KB |
71 | |
72 | // Colour | |
73 | ||
f75aecd0 | 74 | void wxColour::Init() |
2bda0e17 | 75 | { |
aad6765c | 76 | m_isInit = false; |
f75aecd0 VZ |
77 | m_pixel = 0; |
78 | m_red = | |
79 | m_blue = | |
80 | m_green = 0; | |
2bda0e17 KB |
81 | } |
82 | ||
aad6765c | 83 | wxColour::wxColour(const wxColour& col) |
2bda0e17 | 84 | { |
f75aecd0 | 85 | *this = col; |
2bda0e17 KB |
86 | } |
87 | ||
f75aecd0 | 88 | wxColour& wxColour::operator=(const wxColour& col) |
2bda0e17 | 89 | { |
f75aecd0 VZ |
90 | m_red = col.m_red; |
91 | m_green = col.m_green; | |
92 | m_blue = col.m_blue; | |
93 | m_isInit = col.m_isInit; | |
94 | m_pixel = col.m_pixel; | |
95 | return *this; | |
2bda0e17 KB |
96 | } |
97 | ||
f75aecd0 | 98 | void wxColour::InitFromName(const wxString& name) |
2bda0e17 | 99 | { |
f75aecd0 | 100 | if ( wxTheColourDatabase ) |
2bda0e17 | 101 | { |
f75aecd0 VZ |
102 | wxColour col = wxTheColourDatabase->Find(name); |
103 | if ( col.Ok() ) | |
104 | { | |
105 | *this = col; | |
106 | return; | |
107 | } | |
2bda0e17 | 108 | } |
f75aecd0 VZ |
109 | |
110 | // leave invalid | |
111 | Init(); | |
2bda0e17 KB |
112 | } |
113 | ||
68dda785 | 114 | wxColour::~wxColour() |
2bda0e17 KB |
115 | { |
116 | } | |
117 | ||
aad6765c | 118 | void wxColour::Set(unsigned char r, unsigned char g, unsigned char b) |
2bda0e17 | 119 | { |
f75aecd0 VZ |
120 | m_red = r; |
121 | m_green = g; | |
122 | m_blue = b; | |
aad6765c JS |
123 | m_isInit = true; |
124 | m_pixel = PALETTERGB(m_red, m_green, m_blue); | |
2bda0e17 | 125 | } |
f75aecd0 | 126 |