]>
Commit | Line | Data |
---|---|---|
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 | 17 | class WXDLLIMPEXP_CORE wxColour : public wxColourBase |
c801d85f | 18 | { |
e4a81a2e | 19 | public: |
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 | |
b7cacb43 | 30 | bool IsOk() const { return m_refData != NULL; } |
aad6765c | 31 | |
c89f5c02 RR |
32 | bool operator == ( const wxColour& col ) const; |
33 | bool operator != ( const wxColour& col ) const { return !(*this == col); } | |
34 | ||
c89f5c02 RR |
35 | unsigned char Red() const; |
36 | unsigned char Green() const; | |
37 | unsigned char Blue() const; | |
dc888336 | 38 | unsigned char Alpha() const; |
c89f5c02 | 39 | |
c89f5c02 RR |
40 | // Implementation part |
41 | void CalcPixel( GdkColormap *cmap ); | |
42 | int GetPixel() const; | |
c6685317 | 43 | const GdkColor *GetColor() const; |
c0ac1c32 | 44 | |
68dda785 | 45 | protected: |
aea95b1c VZ |
46 | virtual void |
47 | InitRGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a); | |
48 | ||
e86d4e59 | 49 | virtual bool FromString(const wxString& str); |
68dda785 VZ |
50 | |
51 | private: | |
c89f5c02 | 52 | DECLARE_DYNAMIC_CLASS(wxColour) |
c801d85f | 53 | }; |
c0ac1c32 | 54 | |
0416c418 | 55 | #endif // _WX_GTK_COLOUR_H_ |