X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e4db172a3b318df9aff178eb6c5da149d56e0859..7c722b22b31219213887fd902651bd5cc276e16e:/src/common/colourcmn.cpp diff --git a/src/common/colourcmn.cpp b/src/common/colourcmn.cpp index 4c7d7c088f..3969790771 100644 --- a/src/common/colourcmn.cpp +++ b/src/common/colourcmn.cpp @@ -21,6 +21,7 @@ #ifndef WX_PRECOMP #include "wx/log.h" + #include "wx/utils.h" #endif #include "wx/gdicmn.h" @@ -38,12 +39,16 @@ bool wxColourBase::FromString(const wxChar *str) if ( wxStrncmp(str, wxT("RGB"), 3) == 0 || wxStrncmp(str, wxT("rgb"), 3) == 0 ) { - // RGB specification CSS-like + // CSS-like RGB specification + // according to http://www.w3.org/TR/REC-CSS2/syndata.html#color-units + // values outside 0-255 range are allowed but should be clipped int red, green, blue; if (wxSscanf(&str[3], wxT("(%d, %d, %d)"), &red, &green, &blue) != 3) return false; - Set((unsigned char)red, (unsigned char)green, (unsigned char)blue); + Set((unsigned char)wxClip(red,0,255), + (unsigned char)wxClip(green,0,255), + (unsigned char)wxClip(blue,0,255)); } else if ( str[0] == wxT('#') && wxStrlen(str) == 7 ) { @@ -101,7 +106,17 @@ wxString wxColourBase::GetAsString(long flags) const return colName; } +#if WXWIN_COMPATIBILITY_2_6 + +// static wxColour wxColourBase::CreateByName(const wxString& name) { return wxColour(name); } + +void wxColourBase::InitFromName(const wxString& col) +{ + Set(col); +} + +#endif // WXWIN_COMPATIBILITY_2_6