1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2003-10-18 23:20:13 +00:00
|
|
|
// Name: wx/msw/colour.h
|
1998-05-20 14:12:05 +00:00
|
|
|
// Purpose: wxColour class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_COLOUR_H_
|
|
|
|
#define _WX_COLOUR_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-09-14 20:57:06 +00:00
|
|
|
#include "wx/object.h"
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2003-10-18 23:20:13 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:12:05 +00:00
|
|
|
// Colour
|
2003-10-18 23:20:13 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxColour : public wxColourBase
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2003-10-18 23:20:13 +00:00
|
|
|
// constructors
|
|
|
|
// ------------
|
2006-04-24 14:52:23 +00:00
|
|
|
DEFINE_STD_WXCOLOUR_CONSTRUCTORS
|
2003-10-18 23:20:13 +00:00
|
|
|
|
|
|
|
// accessors
|
|
|
|
// ---------
|
|
|
|
|
2007-12-15 17:54:20 +00:00
|
|
|
virtual bool IsOk() const { return m_isInit; }
|
2003-10-18 23:20:13 +00:00
|
|
|
|
|
|
|
unsigned char Red() const { return m_red; }
|
|
|
|
unsigned char Green() const { return m_green; }
|
|
|
|
unsigned char Blue() const { return m_blue; }
|
2006-09-30 13:29:45 +00:00
|
|
|
unsigned char Alpha() const { return m_alpha ; }
|
2003-10-18 23:20:13 +00:00
|
|
|
|
|
|
|
// comparison
|
|
|
|
bool operator==(const wxColour& colour) const
|
|
|
|
{
|
2003-12-11 10:10:40 +00:00
|
|
|
return m_isInit == colour.m_isInit
|
|
|
|
&& m_red == colour.m_red
|
|
|
|
&& m_green == colour.m_green
|
2006-09-30 13:29:45 +00:00
|
|
|
&& m_blue == colour.m_blue
|
|
|
|
&& m_alpha == colour.m_alpha;
|
2003-10-18 23:20:13 +00:00
|
|
|
}
|
|
|
|
|
2007-12-22 15:03:58 +00:00
|
|
|
bool operator!=(const wxColour& colour) const { return !(*this == colour); }
|
2003-10-18 23:20:13 +00:00
|
|
|
|
2007-04-14 09:58:37 +00:00
|
|
|
WXCOLORREF GetPixel() const { return m_pixel; }
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-12-16 21:29:54 +00:00
|
|
|
public:
|
2003-10-18 23:20:13 +00:00
|
|
|
WXCOLORREF m_pixel;
|
1999-12-16 21:29:54 +00:00
|
|
|
|
2003-12-11 10:10:40 +00:00
|
|
|
protected:
|
|
|
|
// Helper function
|
|
|
|
void Init();
|
|
|
|
|
2006-09-10 02:00:24 +00:00
|
|
|
virtual void
|
|
|
|
InitRGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
|
2006-04-24 14:52:23 +00:00
|
|
|
|
1998-10-19 14:18:56 +00:00
|
|
|
private:
|
2003-10-18 23:20:13 +00:00
|
|
|
bool m_isInit;
|
|
|
|
unsigned char m_red;
|
|
|
|
unsigned char m_blue;
|
|
|
|
unsigned char m_green;
|
2006-09-30 13:29:45 +00:00
|
|
|
unsigned char m_alpha;
|
1998-10-19 14:18:56 +00:00
|
|
|
|
|
|
|
private:
|
2003-10-18 23:20:13 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxColour)
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
2007-12-22 15:03:58 +00:00
|
|
|
#endif // _WX_COLOUR_H_
|