]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/colour.h
undoing my duplicate efforts to solve the same problem ...
[wxWidgets.git] / include / wx / mac / carbon / colour.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/carbon/colour.h
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
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_COLOUR_H_
13 #define _WX_COLOUR_H_
14
15 #include "wx/object.h"
16 #include "wx/string.h"
17
18 // Colour
19 class WXDLLEXPORT wxColour: public wxColourBase
20 {
21 public:
22 // constructors
23 // ------------
24
25 // default
26 wxColour() { Init(); }
27 DEFINE_STD_WXCOLOUR_CONSTRUCTORS
28
29 // dtor
30 virtual ~wxColour();
31
32 // accessors
33 bool Ok() const {return m_isInit; }
34
35 unsigned char Red() const { return m_red; }
36 unsigned char Green() const { return m_green; }
37 unsigned char Blue() const { return m_blue; }
38 unsigned char Alpha() const { return m_alpha; }
39
40 // comparison
41 bool operator == (const wxColour& colour) const
42 {
43 return (m_isInit == colour.m_isInit
44 && m_red == colour.m_red
45 && m_green == colour.m_green
46 && m_blue == colour.m_blue
47 && m_alpha == colour.m_alpha);
48 }
49 bool operator != (const wxColour& colour) const { return !(*this == colour); }
50
51 const WXCOLORREF& GetPixel() const { return m_pixel; };
52
53 protected :
54
55 // Helper function
56 void Init();
57
58 virtual void
59 InitRGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
60
61 private:
62 bool m_isInit;
63 unsigned char m_red;
64 unsigned char m_blue;
65 unsigned char m_green;
66 unsigned char m_alpha;
67
68 public:
69 WXCOLORREF m_pixel ;
70 void FromRGBColor( const WXCOLORREF* color ) ;
71
72
73 private:
74 DECLARE_DYNAMIC_CLASS(wxColour)
75 };
76
77 #endif
78 // _WX_COLOUR_H_