X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4fe9efc1b937af4f1b4f5da545de9f24464fa01b..f081c944e891b0cc76ba648982175279bdbce904:/src/os2/colour.cpp?ds=sidebyside diff --git a/src/os2/colour.cpp b/src/os2/colour.cpp index b9bd2f6bc3..6845104c4e 100644 --- a/src/os2/colour.cpp +++ b/src/os2/colour.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: colour.cpp +// Name: src/os2/colour.cpp // Purpose: wxColour class // Author: David Webster // Modified by: @@ -25,11 +25,16 @@ IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject) // Colour -wxColour::wxColour () +void wxColour::Init() { - m_bIsInit = FALSE; + m_bIsInit = false; m_vPixel = 0; m_cRed = m_cBlue = m_cGreen = 0; +} // end of wxColour::Init + +wxColour::wxColour () +{ + Init(); } // end of wxColour::wxColour wxColour::wxColour ( @@ -38,22 +43,14 @@ wxColour::wxColour ( , unsigned char cBlue ) { - m_cRed = cRed; - m_cGreen = cGreen; - m_cBlue = cBlue; - m_bIsInit = TRUE; - m_vPixel = OS2RGB (m_cRed, m_cGreen, m_cBlue); + Set(cRed, cGreen, cBlue); } // end of wxColour::wxColour -wxColour::wxColour ( +wxColour::wxColour( const wxColour& rCol ) { - m_cRed = rCol.m_cRed; - m_cGreen = rCol.m_cGreen; - m_cBlue = rCol.m_cBlue; - m_bIsInit = rCol.m_bIsInit; - m_vPixel = rCol.m_vPixel; + *this = rCol; } // end of wxColour::wxColour wxColour& wxColour::operator =( @@ -72,30 +69,26 @@ void wxColour::InitFromName( const wxString& sCol ) { - wxColour* pTheColour = wxTheColourDatabase->FindColour(sCol); - - if (pTheColour) + if ( wxTheColourDatabase ) { - m_cRed = pTheColour->Red(); - m_cGreen = pTheColour->Green(); - m_cBlue = pTheColour->Blue(); - m_bIsInit = TRUE; + wxColour col = wxTheColourDatabase->Find(sCol); + if ( col.Ok() ) + { + *this = col; + return; + } } - else - { - m_cRed = 0; - m_cGreen = 0; - m_cBlue = 0; - m_bIsInit = FALSE; - } - m_vPixel = OS2RGB (m_cRed, m_cGreen, m_cBlue); + + // leave invalid + Init(); + } // end of wxColour::InitFromName -wxColour::~wxColour () +wxColour::~wxColour() { } // end of wxColour::~wxColour -void wxColour::Set ( +void wxColour::Set( unsigned char cRed , unsigned char cGreen , unsigned char cBlue @@ -104,6 +97,6 @@ void wxColour::Set ( m_cRed = cRed; m_cGreen = cGreen; m_cBlue = cBlue; - m_bIsInit = TRUE; + m_bIsInit = true; m_vPixel = OS2RGB (m_cRed, m_cGreen, m_cBlue); } // end of wxColour::Set