]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/colour.h
fixed wxGTK1 compilation after wxDC changes (still doesn't work)
[wxWidgets.git] / include / wx / gtk / colour.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
edc536d3 2// Name: wx/gtk/colour.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
dbf858b5 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
0416c418
PC
10#ifndef _WX_GTK_COLOUR_H_
11#define _WX_GTK_COLOUR_H_
c801d85f
KB
12
13//-----------------------------------------------------------------------------
14// wxColour
15//-----------------------------------------------------------------------------
16
40989e46 17class WXDLLIMPEXP_CORE wxColour : public wxColourBase
c801d85f 18{
e4a81a2e 19public:
edc536d3
WS
20 // constructors
21 // ------------
22
23 // default
40989e46
WS
24 wxColour() {}
25 DEFINE_STD_WXCOLOUR_CONSTRUCTORS
c6685317 26 wxColour(const GdkColor& gdkColor);
401eb3de 27
d3c7fc99 28 virtual ~wxColour();
c89f5c02 29
8f884a0d
VZ
30 bool operator==(const wxColour& col) const;
31 bool operator!=(const wxColour& col) const { return !(*this == col); }
c89f5c02 32
c89f5c02
RR
33 unsigned char Red() const;
34 unsigned char Green() const;
35 unsigned char Blue() const;
dc888336 36 unsigned char Alpha() const;
c89f5c02 37
c89f5c02
RR
38 // Implementation part
39 void CalcPixel( GdkColormap *cmap );
40 int GetPixel() const;
c6685317 41 const GdkColor *GetColor() const;
c0ac1c32 42
68dda785 43protected:
aea95b1c
VZ
44 virtual void
45 InitRGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
46
e86d4e59 47 virtual bool FromString(const wxString& str);
68dda785
VZ
48
49private:
c89f5c02 50 DECLARE_DYNAMIC_CLASS(wxColour)
c801d85f 51};
c0ac1c32 52
0416c418 53#endif // _WX_GTK_COLOUR_H_