X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1f0299c17dc878540bf190c290392db241b425ad..39570cd47981d75ac61a1734eb91628cbcfbfa39:/src/gtk1/colour.cpp diff --git a/src/gtk1/colour.cpp b/src/gtk1/colour.cpp index b0efc2dcc2..f66321773e 100644 --- a/src/gtk1/colour.cpp +++ b/src/gtk1/colour.cpp @@ -46,17 +46,17 @@ wxColourRefData::wxColourRefData(void) m_color.pixel = 0; m_colormap = NULL; m_hasPixel = FALSE; -}; +} wxColourRefData::~wxColourRefData(void) { FreeColour(); -}; +} void wxColourRefData::FreeColour(void) { // if (m_hasPixel) gdk_colors_free( m_colormap, &m_color, 1, 0 ); -}; +} //----------------------------------------------------------------------------- @@ -68,7 +68,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxColour,wxGDIObject) wxColour::wxColour(void) { -}; +} wxColour::wxColour( char red, char green, char blue ) { @@ -77,7 +77,7 @@ wxColour::wxColour( char red, char green, char blue ) M_COLDATA->m_color.green = ((unsigned short)green) << SHIFT; M_COLDATA->m_color.blue = ((unsigned short)blue) << SHIFT; M_COLDATA->m_color.pixel = 0; -}; +} wxColour::wxColour( const wxString &colourName ) { @@ -93,32 +93,33 @@ wxColour::wxColour( const wxString &colourName ) m_refData = new wxColourRefData(); if (!gdk_color_parse( colourName, &M_COLDATA->m_color )) { + wxFAIL_MSG( "wxColour: couldn't find colour" ); delete m_refData; m_refData = NULL; - }; - }; -}; + } + } +} wxColour::wxColour( const wxColour& col ) { Ref( col ); -}; +} wxColour::wxColour( const wxColour* col ) { if (col) Ref( *col ); -}; +} wxColour::~wxColour(void) { -}; +} wxColour& wxColour::operator = ( const wxColour& col ) { if (*this == col) return (*this); Ref( col ); return *this; -}; +} wxColour& wxColour::operator = ( const wxString& colourName ) { @@ -134,22 +135,23 @@ wxColour& wxColour::operator = ( const wxString& colourName ) m_refData = new wxColourRefData(); if (!gdk_color_parse( colourName, &M_COLDATA->m_color )) { + wxFAIL_MSG( "wxColour: couldn't find colour" ); delete m_refData; m_refData = NULL; - }; - }; + } + } return *this; -}; +} bool wxColour::operator == ( const wxColour& col ) { return m_refData == col.m_refData; -}; +} bool wxColour::operator != ( const wxColour& col) { return m_refData != col.m_refData; -}; +} void wxColour::Set( const unsigned char red, const unsigned char green, const unsigned char blue ) { @@ -159,30 +161,30 @@ void wxColour::Set( const unsigned char red, const unsigned char green, const un M_COLDATA->m_color.green = ((unsigned short)green) << SHIFT; M_COLDATA->m_color.blue = ((unsigned short)blue) << SHIFT; M_COLDATA->m_color.pixel = 0; -}; +} unsigned char wxColour::Red(void) const { if (!Ok()) return 0; return (unsigned char)(M_COLDATA->m_color.red >> SHIFT); -}; +} unsigned char wxColour::Green(void) const { if (!Ok()) return 0; return (unsigned char)(M_COLDATA->m_color.green >> SHIFT); -}; +} unsigned char wxColour::Blue(void) const { if (!Ok()) return 0; return (unsigned char)(M_COLDATA->m_color.blue >> SHIFT); -}; +} bool wxColour::Ok(void) const { return (m_refData); -}; +} void wxColour::CalcPixel( GdkColormap *cmap ) { @@ -206,20 +208,20 @@ void wxColour::CalcPixel( GdkColormap *cmap ) #endif M_COLDATA->m_colormap = cmap; -}; +} int wxColour::GetPixel(void) { if (!Ok()) return 0; return M_COLDATA->m_color.pixel; -}; +} GdkColor *wxColour::GetColor(void) { if (!Ok()) return NULL; return &M_COLDATA->m_color; -}; +}