]>
git.saurik.com Git - wxWidgets.git/blob - src/mgl/colour.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxColour class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "colour.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
23 #include "wx/gdicmn.h"
24 #include "wx/colour.h"
26 IMPLEMENT_DYNAMIC_CLASS(wxColour
, wxObject
)
43 wxColour::wxColour(const wxColour
& col
)
48 wxColour
& wxColour::operator =(const wxColour
& col
)
51 m_green
= col
.m_green
;
53 m_isInit
= col
.m_isInit
;
57 void wxColour::InitFromName(const wxString
& name
)
59 if ( wxTheColourDatabase
)
61 wxColour col
= wxTheColourDatabase
->Find(name
);
77 void wxColour::Set(unsigned char r
, unsigned char g
, unsigned char b
)