1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/classic/colour.h
3 // Purpose: wxColour class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/object.h"
16 #include "wx/string.h"
19 class WXDLLEXPORT wxColour
: public wxColourBase
26 wxColour() { Init(); }
27 DEFINE_STD_WXCOLOUR_CONSTRUCTORS
29 // copy ctors and assignment operators
30 wxColour( const wxColour
& col
);
31 wxColour( const wxColour
* col
);
32 wxColour
& operator = ( const wxColour
& col
);
38 bool Ok() const {return m_isInit
; }
40 unsigned char Red() const { return m_red
; }
41 unsigned char Green() const { return m_green
; }
42 unsigned char Blue() const { return m_blue
; }
45 bool operator == (const wxColour
& colour
) const
47 return (m_isInit
== colour
.m_isInit
48 && m_red
== colour
.m_red
49 && m_green
== colour
.m_green
50 && m_blue
== colour
.m_blue
);
52 bool operator != (const wxColour
& colour
) const { return !(*this == colour
); }
54 const WXCOLORREF
& GetPixel() const { return m_pixel
; };
61 void InitWith( unsigned char red
, unsigned char green
, unsigned char blue
);
67 unsigned char m_green
;
71 void Set( const WXCOLORREF
* color
) ;
74 DECLARE_DYNAMIC_CLASS(wxColour
)