]>
git.saurik.com Git - wxWidgets.git/blob - src/mgl/colour.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mgl/colour.cpp
3 // Purpose: wxColour class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
19 #include "wx/gdicmn.h"
20 #include "wx/colour.h"
22 IMPLEMENT_DYNAMIC_CLASS(wxColour
, wxObject
)
39 wxColour::wxColour(const wxColour
& col
)
44 wxColour
& wxColour::operator =(const wxColour
& col
)
47 m_green
= col
.m_green
;
49 m_isInit
= col
.m_isInit
;
53 void wxColour::InitFromName(const wxString
& name
)
55 if ( wxTheColourDatabase
)
57 wxColour col
= wxTheColourDatabase
->Find(name
);
73 void wxColour::Set(unsigned char r
, unsigned char g
, unsigned char b
)