]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/colour.cpp
build fixes after previous commit
[wxWidgets.git] / src / msw / colour.cpp
index b48c44724f6ee3adc00eb0748bcd77b4fb0a5d30..acd528ef631d73a5247c9deaf8776e7b6e24ce7e 100644 (file)
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
-#include "wx/colour.h"
-
 #ifdef __BORLANDC__
     #pragma hdrstop
 #endif
 
-#include "wx/gdicmn.h"
+#include "wx/colour.h"
+
+#ifndef WX_PRECOMP
+    #include "wx/gdicmn.h"
+#endif
+
 #include "wx/msw/private.h"
 
 #include <string.h>
@@ -51,7 +54,7 @@ wxBEGIN_PROPERTIES_TABLE(wxColour)
     wxREADONLY_PROPERTY( Blue, unsigned char, Blue, EMPTY_MACROVALUE , 0 /*flags*/, wxT("Helpstring"), wxT("group"))
 wxEND_PROPERTIES_TABLE()
 
-wxCONSTRUCTOR_3( wxColour, unsigned char, Red, unsigned char, Green, unsigned char, Blue )
+wxDIRECT_CONSTRUCTOR_3( wxColour, unsigned char, Red, unsigned char, Green, unsigned char, Blue )
 
 wxBEGIN_HANDLERS_TABLE(wxColour)
 wxEND_HANDLERS_TABLE()
@@ -65,6 +68,7 @@ void wxColour::Init()
 {
     m_isInit = false;
     m_pixel = 0;
+    m_alpha =
     m_red =
     m_blue =
     m_green = 0;
@@ -74,11 +78,13 @@ wxColour::~wxColour()
 {
 }
 
-void wxColour::InitWith(unsigned char r, unsigned char g, unsigned char b)
+void wxColour::InitRGBA(unsigned char r, unsigned char g, unsigned char b,
+                        unsigned char a)
 {
     m_red = r;
     m_green = g;
     m_blue = b;
+    m_alpha = a;
     m_isInit = true;
     m_pixel = PALETTERGB(m_red, m_green, m_blue);
 }