-
- // from separate RGB
- wxColour( unsigned char red, unsigned char green, unsigned char blue )
- { Set(red, green, blue); }
-
- // from packed RGB
- wxColour( unsigned long colRGB )
- { Set(colRGB); }
-
- // implicit conversion from the colour name
- wxColour( const wxString &colourName )
- { InitFromName(colourName); }
- wxColour( const wxChar *colourName )
- { InitFromName(colourName); }
-
- // copy ctors and assignment operators
- wxColour( const wxColour& col );
- wxColour& operator = ( const wxColour& col );