]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/palmos/colour.h | |
3 | // Purpose: wxColour class | |
4 | // Author: William Osborne - minimal working wxPalmOS port | |
5 | // Modified by: | |
6 | // Created: 10/13/04 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) William Osborne | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_COLOUR_H_ | |
13 | #define _WX_COLOUR_H_ | |
14 | ||
15 | #include "wx/object.h" | |
16 | ||
17 | // ---------------------------------------------------------------------------- | |
18 | // wxColour | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
21 | class WXDLLEXPORT wxColour : public wxColourBase | |
22 | { | |
23 | public: | |
24 | // constructors | |
25 | // ------------ | |
26 | ||
27 | wxColour() { Init(); } | |
28 | DEFINE_STD_WXCOLOUR_CONSTRUCTORS | |
29 | ||
30 | // copy ctors and assignment operators | |
31 | wxColour(const wxColour& col); | |
32 | wxColour& operator=( const wxColour& col); | |
33 | ||
34 | // dtor | |
35 | ~wxColour(); | |
36 | ||
37 | ||
38 | ||
39 | bool Ok() const { return m_isInit; } | |
40 | ||
41 | unsigned char Red() const { return m_red; } | |
42 | unsigned char Green() const { return m_green; } | |
43 | unsigned char Blue() const { return m_blue; } | |
44 | ||
45 | // comparison | |
46 | bool operator==(const wxColour& colour) const | |
47 | { | |
48 | return m_isInit == colour.m_isInit | |
49 | && m_red == colour.m_red | |
50 | && m_green == colour.m_green | |
51 | && m_blue == colour.m_blue; | |
52 | } | |
53 | ||
54 | bool operator != (const wxColour& colour) const { return !(*this == colour); } | |
55 | ||
56 | WXCOLORREF GetPixel() const { return m_pixel; }; | |
57 | ||
58 | public: | |
59 | WXCOLORREF m_pixel; | |
60 | ||
61 | protected: | |
62 | // Helper function | |
63 | void Init(); | |
64 | ||
65 | virtual void InitWith(unsigned char red, unsigned char green, unsigned char blue); | |
66 | ||
67 | private: | |
68 | bool m_isInit; | |
69 | unsigned char m_red; | |
70 | unsigned char m_blue; | |
71 | unsigned char m_green; | |
72 | ||
73 | private: | |
74 | DECLARE_DYNAMIC_CLASS(wxColour) | |
75 | }; | |
76 | ||
77 | #endif | |
78 | // _WX_COLOUR_H_ |