1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/colour.h
3 // Purpose: wxColour class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/object.h"
16 #include "wx/string.h"
19 class WXDLLEXPORT wxColour
: public wxColourBase
21 DECLARE_DYNAMIC_CLASS(wxColour
)
27 wxColour() { Init(); }
28 DEFINE_STD_WXCOLOUR_CONSTRUCTORS
30 // copy ctors and assignment operators
31 wxColour( const wxColour
& col
);
32 wxColour
& operator = ( const wxColour
& col
);
39 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
; }
44 int GetPixel() const { return m_pixel
; };
45 void SetPixel(int pixel
) { m_pixel
= pixel
; m_isInit
= true; };
47 inline bool operator == (const wxColour
& colour
) const { return (m_red
== colour
.m_red
&& m_green
== colour
.m_green
&& m_blue
== colour
.m_blue
); }
49 inline bool operator != (const wxColour
& colour
) const { return (!(m_red
== colour
.m_red
&& m_green
== colour
.m_green
&& m_blue
== colour
.m_blue
)); }
51 // Allocate a colour, or nearest colour, using the given display.
52 // If realloc is true, ignore the existing pixel, otherwise just return
54 // Returns the allocated pixel.
56 // TODO: can this handle mono displays? If not, we should have an extra
57 // flag to specify whether this should be black or white by default.
59 int AllocColour(WXDisplay
* display
, bool realloc
= false);
65 virtual void InitWith( unsigned char red
, unsigned char green
, unsigned char blue
);
71 unsigned char m_green
;