]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/colour.h
Added SWIG patches to allow compiling the generated code with
[wxWidgets.git] / include / wx / gtk / colour.h
index 87004ed23a10626f84757a62e4e346439787994a..26f002d077f14163c28b81731044c9028fc0795b 100644 (file)
@@ -40,11 +40,10 @@ public:
     // default
     wxColour() {}
     DEFINE_STD_WXCOLOUR_CONSTRUCTORS
+    wxColour(const GdkColor& gdkColor);
 
     ~wxColour();
 
-    virtual bool FromString(const wxChar *str);
-
     bool Ok() const { return m_refData != NULL; }
 
     bool operator == ( const wxColour& col ) const;
@@ -57,13 +56,16 @@ public:
     // Implementation part
     void CalcPixel( GdkColormap *cmap );
     int GetPixel() const;
+#ifdef __WXGTK24__
+    const GdkColor *GetColor() const;
+#else
+    // GDK functions from old gtk2 versions take non-const color parameters,
+    // too many uses to deal with individually
     GdkColor *GetColor() const;
+#endif
 
 protected:
-    // ref counting code
-    virtual wxObjectRefData *CreateRefData() const;
-    virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
-
+    virtual bool FromString(const wxChar *str);
     virtual void InitWith( unsigned char red, unsigned char green, unsigned char blue );
 
 private: