]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
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$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
2bda0e17 KB |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_COLOUR_H_ |
13 | #define _WX_COLOUR_H_ | |
2bda0e17 KB |
14 | |
15 | #ifdef __GNUG__ | |
16 | #pragma interface "colour.h" | |
17 | #endif | |
2d996ed1 | 18 | #include "wx/object.h" |
2bda0e17 KB |
19 | |
20 | // Colour | |
21 | class WXDLLEXPORT wxColour: public wxObject | |
22 | { | |
2bda0e17 | 23 | public: |
e4a81a2e VZ |
24 | // ctors |
25 | // default | |
68dda785 | 26 | wxColour(); |
e4a81a2e | 27 | // from RGB |
87832b70 | 28 | wxColour( unsigned char red, unsigned char green, unsigned char blue ); |
5f83a454 RD |
29 | wxColour( unsigned long colRGB ) { Set(colRGB); } |
30 | ||
e4a81a2e VZ |
31 | // implicit conversion from the colour name |
32 | wxColour( const wxString &colourName ) { InitFromName(colourName); } | |
33 | wxColour( const char *colourName ) { InitFromName(colourName); } | |
34 | ||
5f83a454 | 35 | |
e4a81a2e VZ |
36 | // copy ctors and assignment operators |
37 | wxColour( const wxColour& col ); | |
5f83a454 | 38 | wxColour( const wxColour* col ); |
e4a81a2e VZ |
39 | wxColour& operator = ( const wxColour& col ); |
40 | ||
41 | // dtor | |
68dda785 VZ |
42 | ~wxColour(); |
43 | ||
e4a81a2e VZ |
44 | // Set() functions |
45 | void Set( unsigned char red, unsigned char green, unsigned char blue ); | |
e0a09ce4 RD |
46 | void Set(unsigned long colRGB) |
47 | { | |
ec845369 VZ |
48 | // we don't need to know sizeof(long) here because we assume that the three |
49 | // least significant bytes contain the R, G and B values | |
e0a09ce4 | 50 | Set((unsigned char)colRGB, |
ec845369 | 51 | (unsigned char)(colRGB >> 8), |
e0a09ce4 | 52 | (unsigned char)(colRGB >> 16)); |
ec845369 | 53 | } |
2bda0e17 | 54 | |
e4a81a2e VZ |
55 | // accessors |
56 | bool Ok() const {return m_isInit; } | |
57 | ||
2bda0e17 KB |
58 | // Let's remove this inelegant function |
59 | #if WXWIN_COMPATIBILITY | |
60 | void Get(unsigned char *r, unsigned char *g, unsigned char *b) const; | |
61 | #endif | |
62 | ||
e4a81a2e VZ |
63 | unsigned char Red() const { return m_red; } |
64 | unsigned char Green() const { return m_green; } | |
65 | unsigned char Blue() const { return m_blue; } | |
2bda0e17 | 66 | |
e4a81a2e | 67 | // comparison |
33b64e6f | 68 | bool operator == (const wxColour& colour) const |
e4a81a2e | 69 | { |
5f83a454 RD |
70 | return (m_red == colour.m_red && |
71 | m_green == colour.m_green && | |
e4a81a2e VZ |
72 | m_blue == colour.m_blue); |
73 | } | |
33b64e6f | 74 | bool operator != (const wxColour& colour) const { return !(*this == colour); } |
2bda0e17 | 75 | |
68dda785 | 76 | WXCOLORREF GetPixel() const { return m_pixel; }; |
2bda0e17 | 77 | |
68dda785 | 78 | private: |
e4a81a2e | 79 | bool m_isInit; |
2bda0e17 KB |
80 | unsigned char m_red; |
81 | unsigned char m_blue; | |
82 | unsigned char m_green; | |
68dda785 VZ |
83 | |
84 | // helper func | |
85 | void InitFromName(const wxString& colourName); | |
86 | ||
87 | public: | |
2bda0e17 | 88 | WXCOLORREF m_pixel ; |
68dda785 VZ |
89 | |
90 | private: | |
91 | DECLARE_DYNAMIC_CLASS(wxColour) | |
2bda0e17 KB |
92 | }; |
93 | ||
2bda0e17 | 94 | #endif |
bbcdf8bc | 95 | // _WX_COLOUR_H_ |