]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/colour.cpp
Implement GetCountPerPage, and fix a bug where we don't check for the state mask...
[wxWidgets.git] / src / mac / carbon / colour.cpp
index 9d1435aa82a0581129e7576c0365224bd6a365f7..d752b70530579cb57e3fe62123e151a8de88f3dd 100644 (file)
 
 IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
 
-static void wxComposeRGBColor( WXCOLORREF* color , int red, int blue, int green );
+wxColour::wxColour(const RGBColor& col)
+{
+    FromRGBColor((WXCOLORREF *)&col);
+}
+
 static void wxComposeRGBColor( WXCOLORREF* color , int red, int blue, int green )
 {
     RGBColor* col = (RGBColor*) color;
@@ -55,7 +59,7 @@ void wxColour::InitRGBA (unsigned char r, unsigned char g, unsigned char b, unsi
     wxComposeRGBColor( &m_pixel , m_red , m_blue , m_green );
 }
 
-void wxColour::FromRGBColor( const WXCOLORREF* color )
+void wxColour::FromRGBColor( WXCOLORREF* color )
 {
     RGBColor* col = (RGBColor*) color;
     memcpy( &m_pixel, color, 6 );
@@ -63,3 +67,15 @@ void wxColour::FromRGBColor( const WXCOLORREF* color )
     m_blue = col->blue >> 8;
     m_green = col->green >> 8;
 }
+
+wxColour& wxColour::operator=(const RGBColor& col)
+{
+    FromRGBColor((WXCOLORREF *)&col);
+    return *this;
+}
+
+bool wxColour::IsOk() const 
+{
+    return m_isInit; 
+}
+