]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/colour.h
WinCE bitmap patch from Johannes Schindelin <Johannes.Schindelin@gmx.de>
[wxWidgets.git] / include / wx / msw / colour.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: colour.h
3// Purpose: wxColour class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_COLOUR_H_
13#define _WX_COLOUR_H_
14
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16#pragma interface "colour.h"
17#endif
18#include "wx/object.h"
19
20// Colour
21class WXDLLEXPORT wxColour: public wxObject
22{
23public:
24 // ctors
25 // default
26 wxColour();
27 // from RGB
28 wxColour( unsigned char red, unsigned char green, unsigned char blue );
29 wxColour( unsigned long colRGB ) { Set(colRGB); }
30
31 // implicit conversion from the colour name
32 wxColour( const wxString &colourName ) { InitFromName(colourName); }
33 wxColour( const wxChar *colourName ) { InitFromName(colourName); }
34
35
36 // copy ctors and assignment operators
37 wxColour( const wxColour& col );
38 wxColour& operator = ( const wxColour& col );
39
40 // dtor
41 ~wxColour();
42
43 // to have the matching Create also for this class
44 void Create( unsigned char red, unsigned char green, unsigned char blue )
45 { Set( red , green , blue ) ; }
46
47 // Set() functions
48 void Set( unsigned char red, unsigned char green, unsigned char blue );
49 void Set(unsigned long colRGB)
50 {
51 // we don't need to know sizeof(long) here because we assume that the three
52 // least significant bytes contain the R, G and B values
53 Set((unsigned char)colRGB,
54 (unsigned char)(colRGB >> 8),
55 (unsigned char)(colRGB >> 16));
56 }
57
58 // accessors
59 bool Ok() const {return m_isInit; }
60
61 unsigned char Red() const { return m_red; }
62 unsigned char Green() const { return m_green; }
63 unsigned char Blue() const { return m_blue; }
64
65 // comparison
66 bool operator==(const wxColour& colour) const
67 {
68 return m_isInit == colour.m_isInit &&
69 m_red == colour.m_red &&
70 m_green == colour.m_green &&
71 m_blue == colour.m_blue;
72 }
73
74 bool operator != (const wxColour& colour) const { return !(*this == colour); }
75
76 WXCOLORREF GetPixel() const { return m_pixel; };
77
78public:
79 WXCOLORREF m_pixel;
80
81private:
82 bool m_isInit;
83 unsigned char m_red;
84 unsigned char m_blue;
85 unsigned char m_green;
86
87 // helper func
88 void InitFromName(const wxString& colourName);
89
90private:
91 DECLARE_DYNAMIC_CLASS(wxColour)
92};
93
94#endif
95 // _WX_COLOUR_H_