]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/colour.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxColour class
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/object.h"
18 class WXDLLEXPORT wxColour
: public wxObject
33 wxColour( unsigned char cRed
39 // Implicit conversion from the colour name
41 wxColour(const wxString
& rColourName
) { InitFromName(rColourName
); }
42 wxColour(const char* zColourName
) { InitFromName(zColourName
); }
45 // Copy ctors and assignment operators
47 wxColour(const wxColour
& rCol
);
48 wxColour(const wxColour
* pCol
);
49 wxColour
&operator = (const wxColour
& rCol
);
59 void Set( unsigned char cRed
63 void Set(unsigned long lColRGB
)
66 // We don't need to know sizeof(long) here because we assume that the three
67 // least significant bytes contain the R, G and B values
69 Set( (unsigned char)lColRGB
70 ,(unsigned char)(lColRGB
>> 8)
71 ,(unsigned char)(lColRGB
>> 16)
74 void Set(const wxString
& rsColour
)
76 InitFromName(rsColour
);
82 bool Ok(void) const {return m_bIsInit
; }
85 // Let's remove this inelegant function
87 #if WXWIN_COMPATIBILITY
88 void Get( unsigned char* pRed
89 ,unsigned char* pGreen
94 unsigned char Red(void) const { return m_cRed
; }
95 unsigned char Green(void) const { return m_cGreen
; }
96 unsigned char Blue(void) const { return m_cBlue
; }
101 bool operator == (const wxColour
& rColour
) const
103 return (m_cRed
== rColour
.m_cRed
&&
104 m_cGreen
== rColour
.m_cGreen
&&
105 m_cBlue
== rColour
.m_cBlue
108 bool operator != (const wxColour
& rColour
) const { return !(*this == rColour
); }
110 void InitFromName(const wxString
& rCol
);
111 WXCOLORREF
GetPixel(void) const { return m_vPixel
; };
115 unsigned char m_cRed
;
116 unsigned char m_cBlue
;
117 unsigned char m_cGreen
;
120 WXCOLORREF m_vPixel
;
122 DECLARE_DYNAMIC_CLASS(wxColour
)
123 }; // end of class wxColour