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
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2003-10-18 23:20:13 +00:00
|
|
|
#pragma interface "colour.h"
|
1998-05-20 14:12:05 +00:00
|
|
|
#endif
|
2003-10-18 23:20:13 +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
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxColour : public wxObject
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2003-10-18 23:20:13 +00:00
|
|
|
// constructors
|
|
|
|
// ------------
|
|
|
|
|
1998-10-20 14:35:22 +00:00
|
|
|
// default
|
2003-10-18 23:20:13 +00:00
|
|
|
wxColour() { Init(); }
|
|
|
|
|
|
|
|
// from separate RGB
|
|
|
|
wxColour( unsigned char red, unsigned char green, unsigned char blue )
|
|
|
|
{ Set(red, green, blue); }
|
|
|
|
|
|
|
|
// from packed RGB
|
|
|
|
wxColour( unsigned long colRGB ) { Set(colRGB); }
|
1999-02-04 19:03:55 +00:00
|
|
|
|
1998-10-20 14:35:22 +00:00
|
|
|
// implicit conversion from the colour name
|
2003-10-18 23:20:13 +00:00
|
|
|
wxColour(const wxString &colourName) { InitFromName(colourName); }
|
|
|
|
wxColour(const wxChar *colourName) { InitFromName(colourName); }
|
1998-10-20 14:35:22 +00:00
|
|
|
|
1999-02-04 19:03:55 +00:00
|
|
|
|
1998-10-20 14:35:22 +00:00
|
|
|
// copy ctors and assignment operators
|
2003-10-18 23:20:13 +00:00
|
|
|
wxColour(const wxColour& col);
|
|
|
|
wxColour& operator=( const wxColour& col);
|
1998-10-20 14:35:22 +00:00
|
|
|
|
|
|
|
// dtor
|
2003-10-18 23:20:13 +00:00
|
|
|
~wxColour();
|
|
|
|
|
|
|
|
|
|
|
|
// other methods
|
|
|
|
// -------------
|
|
|
|
|
2003-12-11 10:10:40 +00:00
|
|
|
// to have the matching Create also for this class
|
2003-10-18 23:20:13 +00:00
|
|
|
void Create( unsigned char red, unsigned char green, unsigned char blue )
|
2003-12-11 10:10:40 +00:00
|
|
|
{ Set(red, green, blue); }
|
2003-10-18 23:20:13 +00:00
|
|
|
|
|
|
|
// Set() functions
|
|
|
|
void Set(unsigned char red, unsigned char green, unsigned char blue);
|
|
|
|
void Set(unsigned long colRGB)
|
|
|
|
{
|
|
|
|
// we don't need to know sizeof(long) here because we assume that the three
|
|
|
|
// least significant bytes contain the R, G and B values
|
|
|
|
Set((unsigned char)colRGB,
|
2003-12-11 10:10:40 +00:00
|
|
|
(unsigned char)(colRGB >> 8),
|
|
|
|
(unsigned char)(colRGB >> 16));
|
2003-10-18 23:20:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
// ---------
|
|
|
|
|
2003-12-11 10:10:40 +00:00
|
|
|
bool Ok() 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; }
|
|
|
|
|
|
|
|
// 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
|
|
|
|
&& m_blue == colour.m_blue;
|
2003-10-18 23:20:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator != (const wxColour& colour) const { return !(*this == colour); }
|
|
|
|
|
|
|
|
WXCOLORREF GetPixel() const { return m_pixel; };
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2003-12-11 10:10:40 +00:00
|
|
|
void InitFromName(const wxString& colourName);
|
|
|
|
|
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();
|
|
|
|
|
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;
|
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
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1999-12-16 21:29:54 +00:00
|
|
|
// _WX_COLOUR_H_
|