]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/stubs/colour.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxColour class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
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 // implicit conversion from the colour name
32 wxColour( const wxString
&colourName
) { InitFromName(colourName
); }
33 wxColour( const char *colourName
) { InitFromName(colourName
); }
35 // copy ctors and assignment operators
36 wxColour( const wxColour
& col
);
37 wxColour( const wxColour
* col
);
38 wxColour
& operator = ( const wxColour
& col
);
44 void Set( unsigned char red
, unsigned char green
, unsigned char blue
);
45 void Set( unsigned long colRGB
)
47 // we don't need to know sizeof(long) here because we assume that the three
48 // least significant bytes contain the R, G and B values
49 Set((unsigned char)colRGB
,
50 (unsigned char)(colRGB
>> 8),
51 (unsigned char)(colRGB
>> 16));
55 bool Ok() const {return m_isInit
; }
57 // Let's remove this inelegant function
58 #if WXWIN_COMPATIBILITY
59 void Get(unsigned char *r
, unsigned char *g
, unsigned char *b
) const;
62 unsigned char Red() const { return m_red
; }
63 unsigned char Green() const { return m_green
; }
64 unsigned char Blue() const { return m_blue
; }
67 bool operator == (const wxColour
& colour
) const
69 return (m_red
== colour
.m_red
&&
70 m_green
== colour
.m_green
&&
71 m_blue
== colour
.m_blue
);
73 bool operator != (const wxColour
& colour
) const { return !(*this == colour
); }
75 void InitFromName(const wxString
& col
);
78 WXCOLORREF GetPixel() const { return m_pixel; };
85 unsigned char m_green
;
88 /* TODO: implementation
93 DECLARE_DYNAMIC_CLASS(wxColour
)