]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e2731512 | 2 | // Name: src/palmos/colour.cpp |
ffecfa5a | 3 | // Purpose: wxColour class |
e2731512 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e2731512 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
ffecfa5a JS |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
40989e46 | 14 | |
ffecfa5a | 15 | #ifdef __BORLANDC__ |
40989e46 | 16 | #pragma hdrstop |
ffecfa5a JS |
17 | #endif |
18 | ||
7cf41a5d WS |
19 | #include "wx/colour.h" |
20 | ||
ffecfa5a JS |
21 | #include "wx/gdicmn.h" |
22 | ||
23 | #include <string.h> | |
24 | ||
25 | #if wxUSE_EXTENDED_RTTI | |
26 | ||
27 | template<> void wxStringReadValue(const wxString &s , wxColour &data ) | |
28 | { | |
40989e46 | 29 | if ( !data.Set(s) ) |
ffecfa5a JS |
30 | { |
31 | wxLogError(_("String To Colour : Incorrect colour specification : %s"), | |
32 | s.c_str() ); | |
33 | data = wxNullColour; | |
34 | } | |
ffecfa5a JS |
35 | } |
36 | ||
37 | template<> void wxStringWriteValue(wxString &s , const wxColour &data ) | |
38 | { | |
40989e46 | 39 | s = data.GetAsString(wxC2S_HTML_SYNTAX); |
ffecfa5a JS |
40 | } |
41 | ||
42 | wxTO_STRING_IMP( wxColour ) | |
43 | wxFROM_STRING_IMP( wxColour ) | |
e2731512 | 44 | |
ffecfa5a JS |
45 | IMPLEMENT_DYNAMIC_CLASS_WITH_COPY_AND_STREAMERS_XTI( wxColour , wxObject , "wx/colour.h" , &wxTO_STRING( wxColour ) , &wxFROM_STRING( wxColour )) |
46 | ||
47 | wxBEGIN_PROPERTIES_TABLE(wxColour) | |
48 | wxREADONLY_PROPERTY( Red, unsigned char, Red, EMPTY_MACROVALUE , 0 /*flags*/, wxT("Helpstring"), wxT("group")) | |
49 | wxREADONLY_PROPERTY( Green, unsigned char, Green, EMPTY_MACROVALUE , 0 /*flags*/, wxT("Helpstring"), wxT("group")) | |
50 | wxREADONLY_PROPERTY( Blue, unsigned char, Blue, EMPTY_MACROVALUE , 0 /*flags*/, wxT("Helpstring"), wxT("group")) | |
51 | wxEND_PROPERTIES_TABLE() | |
52 | ||
53 | wxCONSTRUCTOR_3( wxColour, unsigned char, Red, unsigned char, Green, unsigned char, Blue ) | |
54 | ||
55 | wxBEGIN_HANDLERS_TABLE(wxColour) | |
56 | wxEND_HANDLERS_TABLE() | |
57 | #else | |
58 | IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject) | |
59 | #endif | |
60 | ||
61 | // Colour | |
62 | ||
63 | void wxColour::Init() | |
64 | { | |
65 | m_isInit = false; | |
66 | m_pixel = 0; | |
67 | m_red = | |
68 | m_blue = | |
69 | m_green = 0; | |
70 | } | |
71 | ||
72 | wxColour::wxColour(const wxColour& col) | |
73 | { | |
74 | *this = col; | |
75 | } | |
76 | ||
77 | wxColour& wxColour::operator=(const wxColour& col) | |
78 | { | |
79 | m_red = col.m_red; | |
80 | m_green = col.m_green; | |
81 | m_blue = col.m_blue; | |
82 | m_isInit = col.m_isInit; | |
83 | m_pixel = col.m_pixel; | |
84 | return *this; | |
85 | } | |
86 | ||
ffecfa5a JS |
87 | wxColour::~wxColour() |
88 | { | |
89 | } | |
90 | ||
40989e46 | 91 | void wxColour::InitWith(unsigned char r, unsigned char g, unsigned char b) |
ffecfa5a | 92 | { |
edc536d3 WS |
93 | m_red = r; |
94 | m_green = g; | |
95 | m_blue = b; | |
96 | m_isInit = true; | |
ffecfa5a | 97 | } |