]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/stubs/colour.h
Changed floats to doubles in wxexpr.h; added a flag in accel.h (wxACCEL_NONE for
[wxWidgets.git] / include / wx / stubs / colour.h
index 19c7cd9ee0c014916f1acb490b0177cdece38697..452d946cdca9377a672c963a33daac7933761abe 100644 (file)
 #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;