]>
Commit | Line | Data |
---|---|---|
8cf73271 | 1 | ///////////////////////////////////////////////////////////////////////////// |
edc536d3 | 2 | // Name: wx/mac/carbon/colour.h |
8cf73271 SC |
3 | // Purpose: wxColour class |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
65571936 | 9 | // Licence: wxWindows licence |
8cf73271 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_COLOUR_H_ | |
13 | #define _WX_COLOUR_H_ | |
14 | ||
8cf73271 SC |
15 | #include "wx/object.h" |
16 | #include "wx/string.h" | |
17 | ||
18 | // Colour | |
19 | class WXDLLEXPORT wxColour: public wxObject | |
20 | { | |
21 | public: | |
edc536d3 WS |
22 | // constructors |
23 | // ------------ | |
24 | ||
8cf73271 | 25 | // default |
edc536d3 WS |
26 | wxColour() { Init(); } |
27 | ||
28 | // from separate RGB | |
29 | wxColour( unsigned char red, unsigned char green, unsigned char blue ) | |
30 | { Set(red, green, blue); } | |
31 | ||
32 | // from packed RGB | |
33 | wxColour( unsigned long colRGB ) | |
34 | { Set(colRGB); } | |
8cf73271 SC |
35 | |
36 | // implicit conversion from the colour name | |
edc536d3 WS |
37 | wxColour( const wxString &colourName ) |
38 | { InitFromName(colourName); } | |
39 | wxColour( const wxChar *colourName ) | |
40 | { InitFromName(colourName); } | |
8cf73271 SC |
41 | |
42 | // copy ctors and assignment operators | |
edc536d3 WS |
43 | wxColour( const wxColour& col ); |
44 | wxColour& operator = ( const wxColour& col ); | |
8cf73271 SC |
45 | |
46 | // dtor | |
edc536d3 WS |
47 | ~wxColour(); |
48 | ||
49 | // Set() functions | |
50 | void Set( unsigned char red, unsigned char green, unsigned char blue ); | |
51 | void Set( unsigned long colRGB ) | |
52 | { | |
53 | // we don't need to know sizeof(long) here because we assume that the three | |
54 | // least significant bytes contain the R, G and B values | |
55 | Set((unsigned char)colRGB, | |
56 | (unsigned char)(colRGB >> 8), | |
57 | (unsigned char)(colRGB >> 16)); | |
58 | } | |
59 | ||
60 | // accessors | |
61 | bool Ok() const {return m_isInit; } | |
62 | ||
63 | unsigned char Red() const { return m_red; } | |
64 | unsigned char Green() const { return m_green; } | |
65 | unsigned char Blue() const { return m_blue; } | |
66 | ||
67 | // comparison | |
68 | bool operator == (const wxColour& colour) const | |
69 | { | |
70 | return (m_isInit == colour.m_isInit | |
71 | && m_red == colour.m_red | |
72 | && m_green == colour.m_green | |
73 | && m_blue == colour.m_blue); | |
74 | } | |
75 | bool operator != (const wxColour& colour) const { return !(*this == colour); } | |
76 | ||
77 | const WXCOLORREF& GetPixel() const { return m_pixel; }; | |
8cf73271 SC |
78 | |
79 | void InitFromName(const wxString& col); | |
80 | ||
81 | protected : | |
82 | ||
83 | // Helper function | |
84 | void Init(); | |
85 | ||
86 | private: | |
edc536d3 WS |
87 | bool m_isInit; |
88 | unsigned char m_red; | |
89 | unsigned char m_blue; | |
90 | unsigned char m_green; | |
8cf73271 SC |
91 | |
92 | public: | |
edc536d3 WS |
93 | WXCOLORREF m_pixel ; |
94 | void Set( const WXCOLORREF* color ) ; | |
8cf73271 SC |
95 | |
96 | private: | |
edc536d3 | 97 | DECLARE_DYNAMIC_CLASS(wxColour) |
8cf73271 SC |
98 | }; |
99 | ||
100 | #endif | |
101 | // _WX_COLOUR_H_ |