]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/x11/colour.h
removed wxUSE_TOOLBAR_SIMPLE leftovers from the main sources, it's not used anywhere...
[wxWidgets.git] / include / wx / x11 / colour.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/x11/colour.h
3// Purpose: wxColour class
4// Author: Julian Smart, Robert Roebling
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart, Robert Roebling
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_COLOUR_H_
13#define _WX_COLOUR_H_
14
15#include "wx/defs.h"
16#include "wx/object.h"
17#include "wx/string.h"
18#include "wx/gdiobj.h"
19#include "wx/palette.h"
20
21//-----------------------------------------------------------------------------
22// classes
23//-----------------------------------------------------------------------------
24
25class WXDLLIMPEXP_CORE wxDC;
26class WXDLLIMPEXP_CORE wxPaintDC;
27class WXDLLIMPEXP_CORE wxBitmap;
28class WXDLLIMPEXP_CORE wxWindow;
29
30class WXDLLIMPEXP_CORE wxColour;
31
32//-----------------------------------------------------------------------------
33// wxColour
34//-----------------------------------------------------------------------------
35
36class WXDLLEXPORT wxColour : public wxColourBase
37{
38public:
39 // constructors
40 // ------------
41
42 wxColour() {}
43 DEFINE_STD_WXCOLOUR_CONSTRUCTORS
44
45 ~wxColour();
46
47 bool Ok() const { return m_refData != NULL; }
48
49 bool operator == ( const wxColour& col ) const;
50 bool operator != ( const wxColour& col ) const { return !(*this == col); }
51
52 unsigned char Red() const;
53 unsigned char Green() const;
54 unsigned char Blue() const;
55
56 // Implementation part
57
58 void CalcPixel( WXColormap cmap );
59 unsigned long GetPixel() const;
60 WXColor *GetColor() const;
61
62protected:
63 // ref counting code
64 virtual wxObjectRefData *CreateRefData() const;
65 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
66
67 virtual bool FromString(const wxChar *str);
68 virtual void InitWith( unsigned char red, unsigned char green, unsigned char blue );
69
70private:
71 DECLARE_DYNAMIC_CLASS(wxColour)
72};
73
74#endif
75
76// _WX_COLOUR_H_