X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9eb49b58c0937a0c475fca5b54c69c2d1256b8d4..dd9f8b6bb6935360a8271dc3e8749fb026b601a8:/src/gtk1/colour.cpp diff --git a/src/gtk1/colour.cpp b/src/gtk1/colour.cpp index 39dcf5e3bd..60d6b17e66 100644 --- a/src/gtk1/colour.cpp +++ b/src/gtk1/colour.cpp @@ -12,7 +12,10 @@ #include "wx/colour.h" -#include "wx/gdicmn.h" +#ifndef WX_PRECOMP + #include "wx/gdicmn.h" +#endif + #include "wx/gtk1/private.h" #include @@ -23,7 +26,7 @@ // wxColour //----------------------------------------------------------------------------- -class wxColourRefData: public wxObjectRefData +class wxColourRefData : public wxGDIRefData { public: wxColourRefData() @@ -37,14 +40,13 @@ public: } wxColourRefData(const wxColourRefData& data) - : wxObjectRefData() { m_color = data.m_color; m_colormap = data.m_colormap; m_hasPixel = data.m_hasPixel; } - ~wxColourRefData() + virtual ~wxColourRefData() { FreeColour(); } @@ -156,17 +158,18 @@ bool wxColour::operator == ( const wxColour& col ) const own->green == other->green; } -wxObjectRefData *wxColour::CreateRefData() const +wxGDIRefData *wxColour::CreateGDIRefData() const { return new wxColourRefData; } -wxObjectRefData *wxColour::CloneRefData(const wxObjectRefData *data) const +wxGDIRefData *wxColour::CloneGDIRefData(const wxGDIRefData *data) const { return new wxColourRefData(*(wxColourRefData *)data); } -void wxColour::InitWith( unsigned char red, unsigned char green, unsigned char blue ) +void wxColour::InitRGBA(unsigned char red, unsigned char green, unsigned char blue, + unsigned char WXUNUSED(alpha)) { AllocExclusive(); @@ -221,10 +224,10 @@ GdkColor *wxColour::GetColor() const return &M_COLDATA->m_color; } -bool wxColour::FromString(const wxChar *str) +bool wxColour::FromString(const wxString& str) { GdkColor colGDK; - if ( gdk_color_parse( str, &colGDK ) ) + if ( gdk_color_parse( wxGTK_CONV(str), &colGDK ) ) { UnRef();