]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/colour.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/colour.cpp
3 // Purpose: wxColour class
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
18 #include "wx/colour.h"
21 #include "wx/gdicmn.h"
24 #include "wx/msw/private.h"
40 void wxColour::InitRGBA(unsigned char r
, unsigned char g
, unsigned char b
,
48 m_pixel
= PALETTERGB(m_red
, m_green
, m_blue
);