adding constants

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40840 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2006-08-26 16:16:16 +00:00
parent 151dab1197
commit a69aabc360
2 changed files with 5 additions and 3 deletions

View File

@ -36,6 +36,8 @@
class WXDLLEXPORT wxColour;
const unsigned char wxALPHA_TRANSPARENT = 0;
const unsigned char wxALPHA_OPAQUE = 0xff;
//-----------------------------------------------------------------------------
// wxColourBase: this class has no data members, just some functions to avoid
@ -64,7 +66,7 @@ public:
// Set() functions
// ---------------
void Set(unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha = 255)
void Set(unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha = wxALPHA_OPAQUE)
{ InitWith(red,green,blue, alpha); }
// implemented in colourcmn.cpp
@ -94,7 +96,7 @@ public:
virtual unsigned char Green() const = 0;
virtual unsigned char Blue() const = 0;
virtual unsigned char Alpha() const
{ return 255 ; }
{ return wxALPHA_OPAQUE ; }
// implemented in colourcmn.cpp
virtual wxString GetAsString(long flags = wxC2S_NAME | wxC2S_CSS_SYNTAX) const;

View File

@ -57,7 +57,7 @@ protected :
void InitWith( unsigned char red, unsigned char green, unsigned char blue )
{
InitWith( red, green, blue , 255) ;
InitWith( red, green, blue , wxALPHA_OPAQUE ) ;
}
void InitWith( unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha );