]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mgl/colour.h
Add comment about wxBitmap::SetPalette() not being implemented
[wxWidgets.git] / include / wx / mgl / colour.h
index eb75ad93ba210c1ea0f79304a4e3aa677aed1e00..ac3c8e2a162b6c283138f4bc7844559d74372c1d 100644 (file)
@@ -25,7 +25,8 @@ public:
       // default
     wxColour();
       // from RGB
       // default
     wxColour();
       // from RGB
-    wxColour(unsigned char red, unsigned char green, unsigned char blue);
+    wxColour(unsigned char red, unsigned char green, unsigned char blue)
+        { Set(red, green, blue); }
     wxColour(unsigned long colRGB) { Set(colRGB); }
 
       // implicit conversion from the colour name
     wxColour(unsigned long colRGB) { Set(colRGB); }
 
       // implicit conversion from the colour name
@@ -68,15 +69,19 @@ public:
     }
     bool operator != (const wxColour& colour) const { return !(*this == colour); }
 
     }
     bool operator != (const wxColour& colour) const { return !(*this == colour); }
 
+    void InitFromName(const wxString& colourName);
+
+protected:
+
+    // Helper function
+    void Init();
+
 private:
     bool m_isInit;
     unsigned char m_red;
     unsigned char m_blue;
     unsigned char m_green;
 
 private:
     bool m_isInit;
     unsigned char m_red;
     unsigned char m_blue;
     unsigned char m_green;
 
-    // helper func
-    void InitFromName(const wxString& colourName);
-
 private:
     DECLARE_DYNAMIC_CLASS(wxColour)
 };
 private:
     DECLARE_DYNAMIC_CLASS(wxColour)
 };