// wxColour
//-----------------------------------------------------------------------------
-class wxColour: public wxGDIObject
+class WXDLLEXPORT wxColour: public wxGDIObject
{
public:
wxColour() { }
-
+
// Construct from RGB
wxColour( unsigned char red, unsigned char green, unsigned char blue );
wxColour( unsigned long colRGB ) { Set(colRGB); }
~wxColour();
bool Ok() const { return m_refData != NULL; }
-
+
bool operator == ( const wxColour& col ) const;
bool operator != ( const wxColour& col ) const { return !(*this == col); }
unsigned char Blue() const;
// Implementation part
-
+
void CalcPixel( WXColormap cmap );
unsigned long GetPixel() const;
WXColor *GetColor() const;
+ void InitFromName(const wxString& colourName);
+
protected:
// ref counting code
virtual wxObjectRefData *CreateRefData() const;
virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
-
- // Helper functions
- void InitFromName(const wxString& colourName);
+
private:
DECLARE_DYNAMIC_CLASS(wxColour)