]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: colour.h | |
3 | // Purpose: wxColour class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
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 | #ifdef __GNUG__ | |
16 | #pragma interface "colour.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/object.h" | |
20 | #include "wx/string.h" | |
21 | ||
22 | // Colour | |
e4a81a2e | 23 | class WXDLLEXPORT wxColour : public wxObject |
9b6dbb09 | 24 | { |
0d57be45 | 25 | DECLARE_DYNAMIC_CLASS(wxColour) |
9b6dbb09 | 26 | public: |
e4a81a2e VZ |
27 | // ctors |
28 | // default | |
9b6dbb09 | 29 | wxColour(); |
e4a81a2e | 30 | // from RGB |
87832b70 | 31 | wxColour( unsigned char red, unsigned char green, unsigned char blue ); |
5f83a454 RD |
32 | wxColour( unsigned long colRGB ) { Set(colRGB); } |
33 | ||
e4a81a2e VZ |
34 | // implicit conversion from the colour name |
35 | wxColour( const wxString &colourName ) { InitFromName(colourName); } | |
36 | wxColour( const char *colourName ) { InitFromName(colourName); } | |
37 | ||
38 | // copy ctors and assignment operators | |
39 | wxColour( const wxColour& col ); | |
e4a81a2e VZ |
40 | wxColour& operator = ( const wxColour& col ); |
41 | ||
42 | // dtor | |
43 | ~wxColour(); | |
44 | ||
45 | // Set() functions | |
46 | void Set( unsigned char red, unsigned char green, unsigned char blue ); | |
47 | void Set( unsigned long colRGB ) | |
48 | { | |
9b6dbb09 JS |
49 | // we don't need to know sizeof(long) here because we assume that the three |
50 | // least significant bytes contain the R, G and B values | |
e4a81a2e | 51 | Set((unsigned char)colRGB, |
9b6dbb09 | 52 | (unsigned char)(colRGB >> 8), |
e4a81a2e | 53 | (unsigned char)(colRGB >> 16)); |
9b6dbb09 JS |
54 | } |
55 | ||
e4a81a2e VZ |
56 | // accessors |
57 | bool Ok() const {return m_isInit; } | |
0d57be45 JS |
58 | unsigned char Red() const { return m_red; } |
59 | unsigned char Green() const { return m_green; } | |
60 | unsigned char Blue() const { return m_blue; } | |
9b6dbb09 | 61 | |
e4a81a2e VZ |
62 | int GetPixel() const { return m_pixel; }; |
63 | void SetPixel(int pixel) { m_pixel = pixel; m_isInit = TRUE; }; | |
dfc54541 | 64 | |
33b64e6f | 65 | inline bool operator == (const wxColour& colour) const { return (m_red == colour.m_red && m_green == colour.m_green && m_blue == colour.m_blue); } |
0d57be45 | 66 | |
33b64e6f | 67 | inline bool operator != (const wxColour& colour) const { return (!(m_red == colour.m_red && m_green == colour.m_green && m_blue == colour.m_blue)); } |
0d57be45 | 68 | |
dfc54541 JS |
69 | // Allocate a colour, or nearest colour, using the given display. |
70 | // If realloc is TRUE, ignore the existing pixel, otherwise just return | |
71 | // the existing one. | |
16c1f7f3 | 72 | // Returns the allocated pixel. |
dfc54541 JS |
73 | |
74 | // TODO: can this handle mono displays? If not, we should have an extra | |
75 | // flag to specify whether this should be black or white by default. | |
76 | ||
16c1f7f3 | 77 | int AllocColour(WXDisplay* display, bool realloc = FALSE); |
9b6dbb09 | 78 | |
0d57be45 JS |
79 | void InitFromName(const wxString& col); |
80 | ||
e4a81a2e | 81 | private: |
dfc54541 | 82 | bool m_isInit; |
9b6dbb09 JS |
83 | unsigned char m_red; |
84 | unsigned char m_blue; | |
85 | unsigned char m_green; | |
dfc54541 | 86 | |
e4a81a2e VZ |
87 | public: |
88 | int m_pixel; | |
9b6dbb09 JS |
89 | }; |
90 | ||
9b6dbb09 JS |
91 | #endif |
92 | // _WX_COLOUR_H_ |