]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/colour.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxColour class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "colour.h"
19 #include "wx/object.h"
20 #include "wx/string.h"
23 class WXDLLEXPORT wxColour
: public wxObject
30 wxColour( unsigned char red
, unsigned char green
, unsigned char blue
);
31 wxColour( unsigned long colRGB
)
32 : m_isInit(FALSE
), m_red(0), m_blue(0), m_green(0)
35 // implicit conversion from the colour name
36 wxColour( const wxString
&colourName
)
37 : m_isInit(FALSE
), m_red(0), m_blue(0), m_green(0)
38 { InitFromName(colourName
); }
39 wxColour( const wxChar
*colourName
)
40 : m_isInit(FALSE
), m_red(0), m_blue(0), m_green(0)
41 { InitFromName(colourName
); }
43 // copy ctors and assignment operators
44 wxColour( const wxColour
& col
);
45 wxColour( const wxColour
* col
);
46 wxColour
& operator = ( const wxColour
& col
);
52 void Set( unsigned char red
, unsigned char green
, unsigned char blue
);
53 void Set( unsigned long colRGB
)
55 // we don't need to know sizeof(long) here because we assume that the three
56 // least significant bytes contain the R, G and B values
57 Set((unsigned char)colRGB
,
58 (unsigned char)(colRGB
>> 8),
59 (unsigned char)(colRGB
>> 16));
63 bool Ok() const {return m_isInit
; }
65 // Let's remove this inelegant function
66 #if WXWIN_COMPATIBILITY
67 void Get(unsigned char *r
, unsigned char *g
, unsigned char *b
) const;
70 unsigned char Red() const { return m_red
; }
71 unsigned char Green() const { return m_green
; }
72 unsigned char Blue() const { return m_blue
; }
75 bool operator == (const wxColour
& colour
) const
77 return (m_isInit
== colour
.m_isInit
&&
78 m_red
== colour
.m_red
&&
79 m_green
== colour
.m_green
&&
80 m_blue
== colour
.m_blue
);
82 bool operator != (const wxColour
& colour
) const { return !(*this == colour
); }
84 void InitFromName(const wxString
& col
);
86 const WXCOLORREF
& GetPixel() const { return m_pixel
; };
92 unsigned char m_green
;
96 void Set( const WXCOLORREF
* color
) ;
99 DECLARE_DYNAMIC_CLASS(wxColour
)