]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/colour.h
compilation fix: wxGenericCollapsiblePane needs wxButton and wxStaticLine
[wxWidgets.git] / include / wx / mac / carbon / colour.h
index 219761c48f040fb0aaedff0266900658e1920800..05fa12dc8fd9b539991f79ea9fad49a8dfa77abf 100644 (file)
@@ -30,7 +30,8 @@ public:
     virtual ~wxColour();
 
     // accessors
-    bool Ok() const {return m_isInit; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const {return m_isInit; }
 
     unsigned char Red() const { return m_red; }
     unsigned char Green() const { return m_green; }
@@ -55,12 +56,8 @@ protected :
     // Helper function
     void Init();
 
-    void InitWith( unsigned char red, unsigned char green, unsigned char blue ) 
-    {
-        InitWith( red, green, blue , wxALPHA_OPAQUE ) ;
-    }
-
-    void InitWith( unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha );
+    virtual void
+    InitRGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
 
 private:
     bool          m_isInit;
@@ -72,7 +69,7 @@ private:
 public:
     WXCOLORREF m_pixel ;
     void FromRGBColor( const WXCOLORREF* color ) ;
-    
+
 
 private:
     DECLARE_DYNAMIC_CLASS(wxColour)