]>
git.saurik.com Git - wxWidgets.git/blob - interface/colour.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxColour
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 A colour is an object representing a combination of Red, Green, and Blue
14 (RGB) intensity values, and is used to determine drawing colours. See the
15 entry for wxColourDatabase for how a pointer to a predefined, named colour
16 may be returned instead of creating a new colour.
18 Valid RGB values are in the range 0 to 255.
20 You can retrieve the current system colour settings with wxSystemSettings.
26 - ::wxNullColour - An empty, invalid colour.
35 @see wxColourDatabase, wxPen, wxBrush, wxColourDialog, wxSystemSettings
37 class wxColour
: public wxObject
54 The alpha value. Alpha values range from 0 (wxALPHA_TRANSPARENT) to
57 wxColour(unsigned char red
, unsigned char green
, unsigned char blue
,
58 unsigned char alpha
= wxALPHA_OPAQUE
);
64 wxColour(const wxString
& colourName
);
69 wxColour(const wxColour
& colour
);
72 Returns the alpha value, on platforms where alpha is not yet supported, this
73 always returns wxALPHA_OPAQUE.
75 unsigned char Alpha() const;
78 Returns the blue intensity.
80 unsigned char Blue() const;
83 Converts this colour to a wxString using the given flags.
85 The supported flags are wxC2S_NAME, to obtain the colour name (e.g.
86 wxColour(255,0,0) == "red"), wxC2S_CSS_SYNTAX, to obtain the colour in
87 the "rgb(r,g,b)" or "rgba(r,g,b,a)" syntax (e.g.
88 wxColour(255,0,0,85) == "rgba(255,0,0,0.333)"), and wxC2S_HTML_SYNTAX,
89 to obtain the colour as "#" followed by 6 hexadecimal digits (e.g.
90 wxColour(255,0,0) == "#FF0000").
92 This function never fails and always returns a non-empty string but
93 asserts if the colour has alpha channel (i.e. is non opaque) but
94 wxC2S_CSS_SYNTAX (which is the only one supporting alpha) is not
99 wxString
GetAsString(long flags
);
102 Returns a pixel value which is platform-dependent. On Windows, a COLORREF is
104 On X, an allocated pixel value is returned.
105 -1 is returned if the pixel is invalid (on X, unallocated).
107 long GetPixel() const;
110 Returns the green intensity.
112 unsigned char Green() const;
115 Returns @true if the colour object is valid (the colour has been initialised
121 Returns the red intensity.
123 unsigned char Red() const;
127 Sets the RGB intensity values using the given values (first overload),
128 extracting them from the packed long (second overload), using the given
129 string (third overloard).
131 When using third form, Set() accepts: colour names (those listed in
132 wxTheColourDatabase()), the CSS-like @c "rgb(r,g,b)" or
133 @c "rgba(r,g,b,a)" syntax (case insensitive) and the HTML-like syntax
134 (i.e. @c "#" followed by 6 hexadecimal digits for red, green, blue
137 Returns @true if the conversion was successful, @false otherwise.
141 void Set(unsigned char red
, unsigned char green
,
143 unsigned char alpha
= wxALPHA_OPAQUE
);
144 void Set(unsigned long RGB
);
145 bool Set(const wxString
& str
);
149 Tests the inequality of two colours by comparing individual red, green, blue
150 colours and alpha values.
152 bool operator !=(const wxColour
& colour
);
156 Assignment operator, using a colour name to be found in the colour database.
158 @see wxColourDatabase
160 wxColour
operator =(const wxColour
& colour
);
161 wxColour
operator =(const wxString
& colourName
);
165 Tests the equality of two colours by comparing individual red, green, blue
166 colours and alpha values.
168 bool operator ==(const wxColour
& colour
);
172 /** @name Predefined colors. */
174 wxColour wxNullColour
;
179 wxColour
* wxLIGHT_GREY
;
186 // ============================================================================
187 // Global functions/macros
188 // ============================================================================
190 /** @ingroup group_funcmacro_misc */
194 Converts string to a wxColour best represented by the given string. Returns
197 @see wxToString(const wxColour&)
201 bool wxFromString(const wxString
& string
, wxColour
* colour
);
204 Converts the given wxColour into a string.
206 @see wxFromString(const wxString&, wxColour*)
210 wxString
wxToString(const wxColour
& colour
);