]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/colour.h | |
40989e46 | 3 | // Purpose: wxColourBase definition |
99d80019 | 4 | // Author: Julian Smart |
40989e46 | 5 | // Modified by: Francesco Montorsi |
99d80019 JS |
6 | // Created: |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_COLOUR_H_BASE_ |
13 | #define _WX_COLOUR_H_BASE_ | |
14 | ||
e45689df | 15 | #include "wx/defs.h" |
40989e46 WS |
16 | #include "wx/gdiobj.h" |
17 | ||
18 | ||
6f5d7825 RR |
19 | class WXDLLEXPORT wxColour; |
20 | ||
7d01c54d | 21 | // the standard wxColour constructors; |
40989e46 WS |
22 | // this macro avoids to repeat these lines across all colour.h files, since |
23 | // Set() is a virtual function and thus cannot be called by wxColourBase | |
24 | // constructors | |
3d4424f7 | 25 | #define DEFINE_STD_WXCOLOUR_CONSTRUCTORS \ |
aea95b1c VZ |
26 | wxColour( ChannelType red, ChannelType green, ChannelType blue, \ |
27 | ChannelType alpha = wxALPHA_OPAQUE ) \ | |
3d4424f7 VS |
28 | { Set(red, green, blue, alpha); } \ |
29 | wxColour( unsigned long colRGB ) { Set(colRGB); } \ | |
ccfc7127 VS |
30 | wxColour(const wxString& colourName) { Set(colourName); } \ |
31 | wxColour(const char *colourName) { Set(colourName); } \ | |
32 | wxColour(const wchar_t *colourName) { Set(colourName); } | |
40989e46 WS |
33 | |
34 | ||
7d01c54d | 35 | // flags for wxColour -> wxString conversion (see wxColour::GetAsString) |
40989e46 WS |
36 | #define wxC2S_NAME 1 // return colour name, when possible |
37 | #define wxC2S_CSS_SYNTAX 2 // return colour in rgb(r,g,b) syntax | |
38 | #define wxC2S_HTML_SYNTAX 4 // return colour in #rrggbb syntax | |
39 | ||
40 | ||
a69aabc3 SC |
41 | const unsigned char wxALPHA_TRANSPARENT = 0; |
42 | const unsigned char wxALPHA_OPAQUE = 0xff; | |
40989e46 | 43 | |
6f5d7825 RR |
44 | // ---------------------------------------------------------------------------- |
45 | // wxVariant support | |
46 | // ---------------------------------------------------------------------------- | |
47 | ||
48 | #if wxUSE_VARIANT | |
49 | #include "wx/variant.h" | |
50 | DECLARE_VARIANT_OBJECT_EXPORTED(wxColour,WXDLLEXPORT) | |
51 | #endif | |
52 | ||
40989e46 WS |
53 | //----------------------------------------------------------------------------- |
54 | // wxColourBase: this class has no data members, just some functions to avoid | |
55 | // code redundancy in all native wxColour implementations | |
56 | //----------------------------------------------------------------------------- | |
57 | ||
58 | class WXDLLEXPORT wxColourBase : public wxGDIObject | |
59 | { | |
40989e46 | 60 | public: |
aea95b1c VZ |
61 | // type of a single colour component |
62 | typedef unsigned char ChannelType; | |
63 | ||
40989e46 WS |
64 | wxColourBase() {} |
65 | virtual ~wxColourBase() {} | |
66 | ||
67 | ||
68 | // Set() functions | |
69 | // --------------- | |
70 | ||
aea95b1c VZ |
71 | void Set(ChannelType red, |
72 | ChannelType green, | |
73 | ChannelType blue, | |
74 | ChannelType alpha = wxALPHA_OPAQUE) | |
75 | { InitRGBA(red,green,blue, alpha); } | |
40989e46 WS |
76 | |
77 | // implemented in colourcmn.cpp | |
40989e46 | 78 | bool Set(const wxString &str) |
aea95b1c | 79 | { return FromString(str); } |
40989e46 WS |
80 | |
81 | void Set(unsigned long colRGB) | |
82 | { | |
83 | // we don't need to know sizeof(long) here because we assume that the three | |
84 | // least significant bytes contain the R, G and B values | |
8936f975 VZ |
85 | Set((ChannelType)(0xFF & colRGB), |
86 | (ChannelType)(0xFF & (colRGB >> 8)), | |
87 | (ChannelType)(0xFF & (colRGB >> 16))); | |
40989e46 WS |
88 | } |
89 | ||
90 | ||
91 | ||
92 | // accessors | |
93 | // --------- | |
94 | ||
b7cacb43 VZ |
95 | virtual bool Ok() const { return IsOk(); } |
96 | virtual bool IsOk() const = 0; | |
40989e46 | 97 | |
aea95b1c VZ |
98 | virtual ChannelType Red() const = 0; |
99 | virtual ChannelType Green() const = 0; | |
100 | virtual ChannelType Blue() const = 0; | |
101 | virtual ChannelType Alpha() const | |
a69aabc3 | 102 | { return wxALPHA_OPAQUE ; } |
40989e46 WS |
103 | |
104 | // implemented in colourcmn.cpp | |
105 | virtual wxString GetAsString(long flags = wxC2S_NAME | wxC2S_CSS_SYNTAX) const; | |
106 | ||
107 | ||
108 | ||
109 | // old, deprecated | |
110 | // --------------- | |
111 | ||
7d01c54d WS |
112 | #if WXWIN_COMPATIBILITY_2_6 |
113 | wxDEPRECATED( static wxColour CreateByName(const wxString& name) ); | |
114 | wxDEPRECATED( void InitFromName(const wxString& col) ); | |
115 | #endif | |
aea95b1c VZ |
116 | |
117 | protected: | |
118 | virtual void | |
119 | InitRGBA(ChannelType r, ChannelType g, ChannelType b, ChannelType a) = 0; | |
120 | ||
e86d4e59 | 121 | virtual bool FromString(const wxString& s); |
40989e46 WS |
122 | }; |
123 | ||
124 | ||
e45689df | 125 | |
4055ed82 | 126 | #if defined(__WXPALMOS__) |
aea95b1c | 127 | #include "wx/generic/colour.h" |
ffecfa5a | 128 | #elif defined(__WXMSW__) |
aea95b1c | 129 | #include "wx/msw/colour.h" |
34138703 | 130 | #elif defined(__WXMOTIF__) |
aea95b1c | 131 | #include "wx/motif/colour.h" |
1be7a35c | 132 | #elif defined(__WXGTK20__) |
aea95b1c | 133 | #include "wx/gtk/colour.h" |
1be7a35c | 134 | #elif defined(__WXGTK__) |
aea95b1c | 135 | #include "wx/gtk1/colour.h" |
1e6feb95 | 136 | #elif defined(__WXMGL__) |
aea95b1c | 137 | #include "wx/generic/colour.h" |
b3c86150 | 138 | #elif defined(__WXDFB__) |
aea95b1c | 139 | #include "wx/generic/colour.h" |
83df96d6 | 140 | #elif defined(__WXX11__) |
aea95b1c | 141 | #include "wx/x11/colour.h" |
34138703 | 142 | #elif defined(__WXMAC__) |
aea95b1c | 143 | #include "wx/mac/colour.h" |
e64df9bc | 144 | #elif defined(__WXCOCOA__) |
aea95b1c | 145 | #include "wx/cocoa/colour.h" |
1777b9bb | 146 | #elif defined(__WXPM__) |
aea95b1c | 147 | #include "wx/os2/colour.h" |
34138703 JS |
148 | #endif |
149 | ||
e4a81a2e VZ |
150 | #define wxColor wxColour |
151 | ||
aea95b1c | 152 | #endif // _WX_COLOUR_H_BASE_ |