X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c23a0b01b3fb667ec41fc8271ce1ee5b5aa4e19..7a11869dde55ba034e280fd7a764872c8de642cf:/include/wx/stubs/colour.h?ds=inline diff --git a/include/wx/stubs/colour.h b/include/wx/stubs/colour.h index 19c7cd9ee0..452d946cdc 100644 --- a/include/wx/stubs/colour.h +++ b/include/wx/stubs/colour.h @@ -16,13 +16,16 @@ #pragma interface "colour.h" #endif +#include "wx/object.h" +#include "wx/string.h" + // Colour class WXDLLEXPORT wxColour: public wxObject { DECLARE_DYNAMIC_CLASS(wxColour) public: wxColour(); - wxColour(const unsigned char r, const unsigned char g, const unsigned char b); + wxColour(unsigned char r, unsigned char g, unsigned char b); wxColour(unsigned long colRGB) { Set(colRGB); } wxColour(const wxColour& col); wxColour(const wxString& col); @@ -49,7 +52,9 @@ public: inline bool operator != (const wxColour& colour) { return (!(m_red == colour.m_red && m_green == colour.m_green && m_blue == colour.m_blue)); } +/* TODO WXCOLORREF GetPixel() const { return m_pixel; }; +*/ private: bool m_isInit;