1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxColour docs
5 %% Modified by: Francesco Montorsi
8 %% Copyright: (c) wxWidgets
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxColour
}}\label{wxcolour
}
14 A colour is an object representing a combination of Red, Green, and Blue (RGB) intensity values,
15 and is used to determine drawing colours. See the
16 entry for
\helpref{wxColourDatabase
}{wxcolourdatabase
} for how a pointer to a predefined,
17 named colour may be returned instead of creating a new colour.
19 Valid RGB values are in the range
0 to
255.
21 You can retrieve the current system colour settings with
\helpref{wxSystemSettings
}{wxsystemsettings
}.
23 \wxheading{Derived from
}
25 \helpref{wxObject
}{wxobject
}
27 \wxheading{Include files
}
31 \wxheading{Predefined objects
}
49 \helpref{wxColourDatabase
}{wxcolourdatabase
},
\helpref{wxPen
}{wxpen
},
\helpref{wxBrush
}{wxbrush
},
\rtfsp
50 \helpref{wxColourDialog
}{wxcolourdialog
},
\helpref{wxSystemSettings
}{wxsystemsettings
}
52 \latexignore{\rtfignore{\wxheading{Members
}}}
55 \membersection{wxColour::wxColour
}\label{wxcolourconstr
}
57 \func{}{wxColour
}{\void}
61 \func{}{wxColour
}{\param{unsigned char
}{ red
},
\param{unsigned char
}{ green
},
\param{unsigned char
}{ blue
},
\param{unsigned char
}{ alpha=wxALPHA
\_OPAQUE}}
63 Constructs a colour from red, green, blue and alpha values.
65 \func{}{wxColour
}{\param{const wxString\&
}{colourNname
}}
67 Constructs a colour using the given string. See
\helpref{Set
}{wxcolourset
} for more info.
69 \func{}{wxColour
}{\param{const wxColour\&
}{ colour
}}
73 \wxheading{Parameters
}
75 \docparam{red
}{The red value.
}
77 \docparam{green
}{The green value.
}
79 \docparam{blue
}{The blue value.
}
81 \docparam{alpha
}{The alpha value. Alpha values range from
0 (wxALPHA
\_TRANSPARENT) to
255 (wxALPHA
\_OPAQUE).
}
83 \docparam{colourName
}{The colour name.
}
85 \docparam{colour
}{The colour to copy.
}
89 \helpref{wxColourDatabase
}{wxcolourdatabase
}
91 \pythonnote{Constructors supported by wxPython are:
\par
92 \indented{2cm
}{\begin{twocollist
}
93 \twocolitem{{\bf wxColour(red=
0, green=
0, blue=
0)
}}{}
94 \twocolitem{{\bf wxNamedColour(name)
}}{}
100 \membersection{wxColour::Alpha
}\label{wxcolouralpha
}
102 \constfunc{unsigned char
}{Alpha
}{\void}
104 Returns the alpha value, on platforms where alpha is not yet supported, this always returns wxALPHA
\_OPAQUE.
107 \membersection{wxColour::Blue
}\label{wxcolourblue
}
109 \constfunc{unsigned char
}{Blue
}{\void}
111 Returns the blue intensity.
114 \membersection{wxColour::GetAsString
}\label{wxcolourgetasstring
}
116 \constfunc{wxString
}{GetAsString
}{\param{long
}{ flags
}}
118 Converts this colour to a
\helpref{wxString
}{wxstring
}
119 using the given
{\it flags
}.
121 The supported flags are
{\bf wxC2S
\_NAME}, to obtain the colour
122 name (e.g. wxColour(
255,
0,
0) ->
\texttt{``red"
}),
{\bf wxC2S
\_CSS\_SYNTAX}, to obtain
123 the colour in the
\texttt{``rgb(r,g,b)"
} syntax
124 (e.g. wxColour(
255,
0,
0) ->
\texttt{``rgb(
255,
0,
0)"
}), and
{\bf wxC2S
\_HTML\_SYNTAX}, to obtain
125 the colour as
\texttt{``\#"
} followed by
6 hexadecimal digits
126 (e.g. wxColour(
255,
0,
0) ->
\texttt{``\#FF0000"
}).
128 This function never fails and always returns a non-empty string.
132 \membersection{wxColour::GetPixel
}\label{wxcolourgetpixel
}
134 \constfunc{long
}{GetPixel
}{\void}
136 Returns a pixel value which is platform-dependent. On Windows, a COLORREF is returned.
137 On X, an allocated pixel value is returned.
139 -
1 is returned if the pixel is invalid (on X, unallocated).
142 \membersection{wxColour::Green
}\label{wxcolourgreen
}
144 \constfunc{unsigned char
}{Green
}{\void}
146 Returns the green intensity.
149 \membersection{wxColour::Ok
}\label{wxcolourok
}
151 \constfunc{bool
}{Ok
}{\void}
153 Returns
\true if the colour object is valid (the colour has been initialised with RGB values).
156 \membersection{wxColour::Red
}\label{wxcolourred
}
158 \constfunc{unsigned char
}{Red
}{\void}
160 Returns the red intensity.
163 \membersection{wxColour::Set
}\label{wxcolourset
}
165 \func{void
}{Set
}{\param{unsigned char
}{ red
},
\param{unsigned char
}{ green
},
\param{unsigned char
}{ blue
},
\param{unsigned char
}{ alpha=wxALPHA
\_OPAQUE}}
167 \func{void
}{Set
}{\param{unsigned long
}{ RGB
}}
169 \func{bool
}{Set
}{\param{const wxString \&
}{ str
}}
171 Sets the RGB intensity values using the given values (first overload), extracting them from the packed long (second overload), using the given string (third overloard).
173 When using third form, Set() accepts: colour names (those listed in
\helpref{wxTheColourDatabase
}{wxcolourdatabase
}), the CSS-like
\texttt{``RGB(r,g,b)"
} syntax (case insensitive) and the HTML-like syntax (i.e.
\texttt{``\#"
} followed by
6 hexadecimal digits for red, green, blue components).
175 Returns
\true if the conversion was successful,
\false otherwise.
180 \membersection{wxColour::operator $=$
}\label{wxcolourassign
}
182 \func{wxColour\&
}{operator $=$
}{\param{const wxColour\&
}{ colour
}}
184 Assignment operator, taking another colour object.
186 \func{wxColour\&
}{operator $=$
}{\param{const wxString\&
}{ colourName
}}
188 Assignment operator, using a colour name to be found in the colour database.
192 \helpref{wxColourDatabase
}{wxcolourdatabase
}
195 \membersection{wxColour::operator $==$
}\label{wxcolourequality
}
197 \func{bool
}{operator $==$
}{\param{const wxColour\&
}{ colour
}}
199 Tests the equality of two colours by comparing individual red, green, blue colours and alpha values.
202 \membersection{wxColour::operator $!=$
}\label{wxcolourinequality
}
204 \func{bool
}{operator $!=$
}{\param{const wxColour\&
}{ colour
}}
206 Tests the inequality of two colours by comparing individual red, green, blue colours and alpha values.
208 \section{\class{wxColourData
}}\label{wxcolourdata
}
210 This class holds a variety of information related to colour dialogs.
212 \wxheading{Derived from
}
214 \helpref{wxObject
}{wxobject
}
216 \wxheading{Include files
}
222 \helpref{wxColour
}{wxcolour
},
\helpref{wxColourDialog
}{wxcolourdialog
},
\helpref{wxColourDialog overview
}{wxcolourdialogoverview
}
224 \latexignore{\rtfignore{\wxheading{Members
}}}
227 \membersection{wxColourData::wxColourData
}\label{wxcolourdatactor
}
229 \func{}{wxColourData
}{\void}
231 Constructor. Initializes the custom colours to
{\tt wxNullColour
},
232 the
{\it data colour
} setting
233 to black, and the
{\it choose full
} setting to true.
236 \membersection{wxColourData::
\destruct{wxColourData
}}\label{wxcolourdatadtor
}
238 \func{}{\destruct{wxColourData
}}{\void}
243 \membersection{wxColourData::GetChooseFull
}\label{wxcolourdatagetchoosefull
}
245 \constfunc{bool
}{GetChooseFull
}{\void}
247 Under Windows, determines whether the Windows colour dialog will display the full dialog
248 with custom colour selection controls. Under PalmOS, determines whether colour dialog
249 will display full rgb colour picker or only available palette indexer.
250 Has no meaning under other platforms.
252 The default value is true.
255 \membersection{wxColourData::GetColour
}\label{wxcolourdatagetcolour
}
257 \constfunc{wxColour\&
}{GetColour
}{\void}
259 Gets the current colour associated with the colour dialog.
261 The default colour is black.
264 \membersection{wxColourData::GetCustomColour
}\label{wxcolourdatagetcustomcolour
}
266 \constfunc{wxColour\&
}{GetCustomColour
}{\param{int
}{ i
}}
268 Gets the
{\it i
}th custom colour associated with the colour dialog.
{\it i
} should
269 be an integer between
0 and
15.
271 The default custom colours are invalid colours.
274 \membersection{wxColourData::SetChooseFull
}\label{wxcolourdatasetchoosefull
}
276 \func{void
}{SetChooseFull
}{\param{const bool
}{flag
}}
278 Under Windows, tells the Windows colour dialog to display the full dialog
279 with custom colour selection controls. Under other platforms, has no effect.
281 The default value is true.
284 \membersection{wxColourData::SetColour
}\label{wxcolourdatasetcolour
}
286 \func{void
}{SetColour
}{\param{const wxColour\&
}{ colour
}}
288 Sets the default colour for the colour dialog.
290 The default colour is black.
293 \membersection{wxColourData::SetCustomColour
}\label{wxcolourdatasetcustomcolour
}
295 \func{void
}{SetCustomColour
}{\param{int
}{ i
},
\param{const wxColour\&
}{ colour
}}
297 Sets the
{\it i
}th custom colour for the colour dialog.
{\it i
} should
298 be an integer between
0 and
15.
300 The default custom colours are invalid colours.
303 \membersection{wxColourData::operator $=$
}\label{wxcolourdataassign
}
305 \func{void
}{operator $=$
}{\param{const wxColourData\&
}{ data
}}
307 Assignment operator for the colour data.
312 \section{\class{wxColourDatabase
}}\label{wxcolourdatabase
}
314 wxWidgets maintains a database of standard RGB colours for a predefined
315 set of named colours (such as ``BLACK'', ``LIGHT GREY''). The
316 application may add to this set if desired by using
317 \helpref{AddColour
}{wxcolourdatabaseaddcolour
} and may use it to look up
318 colours by names using
\helpref{Find
}{wxcolourdatabasefind
} or find the names
319 for the standard colour suing
\helpref{FindName
}{wxcolourdatabasefindname
}.
321 There is one predefined instance of this class called
322 {\bf wxTheColourDatabase
}.
324 \wxheading{Derived from
}
328 \wxheading{Include files
}
334 The standard database contains at least the following colours:
336 AQUAMARINE, BLACK, BLUE, BLUE VIOLET, BROWN, CADET BLUE, CORAL,
337 CORNFLOWER BLUE, CYAN, DARK GREY, DARK GREEN, DARK OLIVE GREEN, DARK
338 ORCHID, DARK SLATE BLUE, DARK SLATE GREY DARK TURQUOISE, DIM GREY,
339 FIREBRICK, FOREST GREEN, GOLD, GOLDENROD, GREY, GREEN, GREEN YELLOW,
340 INDIAN RED, KHAKI, LIGHT BLUE, LIGHT GREY, LIGHT STEEL BLUE, LIME GREEN,
341 MAGENTA, MAROON, MEDIUM AQUAMARINE, MEDIUM BLUE, MEDIUM FOREST GREEN,
342 MEDIUM GOLDENROD, MEDIUM ORCHID, MEDIUM SEA GREEN, MEDIUM SLATE BLUE,
343 MEDIUM SPRING GREEN, MEDIUM TURQUOISE, MEDIUM VIOLET RED, MIDNIGHT BLUE,
344 NAVY, ORANGE, ORANGE RED, ORCHID, PALE GREEN, PINK, PLUM, PURPLE, RED,
345 SALMON, SEA GREEN, SIENNA, SKY BLUE, SLATE BLUE, SPRING GREEN, STEEL
346 BLUE, TAN, THISTLE, TURQUOISE, VIOLET, VIOLET RED, WHEAT, WHITE, YELLOW,
351 \helpref{wxColour
}{wxcolour
}
353 \latexignore{\rtfignore{\wxheading{Members
}}}
356 \membersection{wxColourDatabase::wxColourDatabase
}\label{wxcolourdatabaseconstr
}
358 \func{}{wxColourDatabase
}{\void}
360 Constructs the colour database. It will be initialized at the first use.
363 \membersection{wxColourDatabase::AddColour
}\label{wxcolourdatabaseaddcolour
}
365 \func{void
}{AddColour
}{\param{const wxString\&
}{colourName
},
\param{const wxColour\&
}{colour
}}
367 \func{void
}{AddColour
}{\param{const wxString\&
}{colourName
},
\param{wxColour*
}{colour
}}
369 Adds a colour to the database. If a colour with the same name already exists,
372 Please note that the overload taking a pointer is deprecated and will be
373 removed in the next wxWidgets version, please don't use it.
376 \membersection{wxColourDatabase::Find
}\label{wxcolourdatabasefind
}
378 \func{wxColour
}{Find
}{\param{const wxString\&
}{colourName
}}
380 Finds a colour given the name. Returns an invalid colour object (that is, such
381 that its
\helpref{Ok()
}{wxcolourok
} method returns
\false) if the colour wasn't
382 found in the database.
385 \membersection{wxColourDatabase::FindName
}\label{wxcolourdatabasefindname
}
387 \constfunc{wxString
}{FindName
}{\param{const wxColour\&
}{ colour
}}
389 Finds a colour name given the colour. Returns an empty string if the colour is
390 not found in the database.