]>
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 VZ |
30 | bool Ok() const { return IsOk(); } |
31 | bool IsOk() const { return m_refData != NULL; } | |
aad6765c | 32 | |
c89f5c02 RR |
33 | bool operator == ( const wxColour& col ) const; |
34 | bool operator != ( const wxColour& col ) const { return !(*this == col); } | |
35 | ||
c89f5c02 RR |
36 | unsigned char Red() const; |
37 | unsigned char Green() const; | |
38 | unsigned char Blue() const; | |
dc888336 | 39 | unsigned char Alpha() const; |
c89f5c02 | 40 | |
c89f5c02 RR |
41 | // Implementation part |
42 | void CalcPixel( GdkColormap *cmap ); | |
43 | int GetPixel() const; | |
4f558e23 | 44 | #ifdef __WXGTK24__ |
c6685317 | 45 | const GdkColor *GetColor() const; |
4f558e23 PC |
46 | #else |
47 | // GDK functions from old gtk2 versions take non-const color parameters, | |
48 | // too many uses to deal with individually | |
49 | GdkColor *GetColor() const; | |
50 | #endif | |
c0ac1c32 | 51 | |
68dda785 | 52 | protected: |
aea95b1c VZ |
53 | virtual void |
54 | InitRGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a); | |
55 | ||
cb3db090 | 56 | virtual bool FromString(const wxChar *str); |
68dda785 VZ |
57 | |
58 | private: | |
c89f5c02 | 59 | DECLARE_DYNAMIC_CLASS(wxColour) |
c801d85f | 60 | }; |
c0ac1c32 | 61 | |
0416c418 | 62 | #endif // _WX_GTK_COLOUR_H_ |