]> git.saurik.com Git - wxWidgets.git/blame - src/palmos/colour.cpp
simplifying alpha, adding commented part for high-res screens
[wxWidgets.git] / src / palmos / colour.cpp
CommitLineData
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
dd05139a
WS
21#ifndef WX_PRECOMP
22 #include "wx/gdicmn.h"
23#endif
ffecfa5a
JS
24
25#include <string.h>
26
27#if wxUSE_EXTENDED_RTTI
28
29template<> void wxStringReadValue(const wxString &s , wxColour &data )
30{
40989e46 31 if ( !data.Set(s) )
ffecfa5a
JS
32 {
33 wxLogError(_("String To Colour : Incorrect colour specification : %s"),
34 s.c_str() );
35 data = wxNullColour;
36 }
ffecfa5a
JS
37}
38
39template<> void wxStringWriteValue(wxString &s , const wxColour &data )
40{
40989e46 41 s = data.GetAsString(wxC2S_HTML_SYNTAX);
ffecfa5a
JS
42}
43
44wxTO_STRING_IMP( wxColour )
45wxFROM_STRING_IMP( wxColour )
e2731512 46
ffecfa5a
JS
47IMPLEMENT_DYNAMIC_CLASS_WITH_COPY_AND_STREAMERS_XTI( wxColour , wxObject , "wx/colour.h" , &wxTO_STRING( wxColour ) , &wxFROM_STRING( wxColour ))
48
49wxBEGIN_PROPERTIES_TABLE(wxColour)
50 wxREADONLY_PROPERTY( Red, unsigned char, Red, EMPTY_MACROVALUE , 0 /*flags*/, wxT("Helpstring"), wxT("group"))
51 wxREADONLY_PROPERTY( Green, unsigned char, Green, EMPTY_MACROVALUE , 0 /*flags*/, wxT("Helpstring"), wxT("group"))
52 wxREADONLY_PROPERTY( Blue, unsigned char, Blue, EMPTY_MACROVALUE , 0 /*flags*/, wxT("Helpstring"), wxT("group"))
53wxEND_PROPERTIES_TABLE()
54
55wxCONSTRUCTOR_3( wxColour, unsigned char, Red, unsigned char, Green, unsigned char, Blue )
56
57wxBEGIN_HANDLERS_TABLE(wxColour)
58wxEND_HANDLERS_TABLE()
59#else
60IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
61#endif
62
63// Colour
64
65void wxColour::Init()
66{
67 m_isInit = false;
68 m_pixel = 0;
69 m_red =
70 m_blue =
71 m_green = 0;
72}
73
74wxColour::wxColour(const wxColour& col)
75{
76 *this = col;
77}
78
79wxColour& wxColour::operator=(const wxColour& col)
80{
81 m_red = col.m_red;
82 m_green = col.m_green;
83 m_blue = col.m_blue;
84 m_isInit = col.m_isInit;
85 m_pixel = col.m_pixel;
86 return *this;
87}
88
ffecfa5a
JS
89wxColour::~wxColour()
90{
91}
92
40989e46 93void wxColour::InitWith(unsigned char r, unsigned char g, unsigned char b)
ffecfa5a 94{
edc536d3
WS
95 m_red = r;
96 m_green = g;
97 m_blue = b;
98 m_isInit = true;
ffecfa5a 99}