void SetCustomColour(int i, const wxColour& colour);
/**
- Assignment operator for the colour data.
+ Converts the colours saved in this class in a string form, separing
+ the various colours with a comma.
*/
- wxColourData& operator =(const wxColourData& data);
+ wxString ToString() const;
+ /**
+ Decodes the given string, which should be in the same format returned
+ by ToString(), and sets the internal colours.
+ */
+ bool FromString(const wxString& str);
- /** @todo document these */
- wxString wxColourData::ToString() const;
- bool wxColourData::FromString(const wxString& str);
+ /**
+ Assignment operator for the colour data.
+ */
+ wxColourData& operator =(const wxColourData& data);
};
@since 2.9.0
*/
- static wxString wxXmlResource::FindXRCIDById(int numId);
+ static wxString FindXRCIDById(int numId);
/**
Gets the global resources object or creates one if none exists.