]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/colour.tex
wxChoice/wxComboBox background colour change (to get back to where we were);
[wxWidgets.git] / docs / latex / wx / colour.tex
... / ...
CommitLineData
1\section{\class{wxColour}}\label{wxcolour}
2
3A colour is an object representing a combination of Red, Green, and Blue (RGB) intensity values,
4and is used to determine drawing colours. See the
5entry for \helpref{wxColourDatabase}{wxcolourdatabase} for how a pointer to a predefined,
6named colour may be returned instead of creating a new colour.
7
8Valid RGB values are in the range 0 to 255.
9
10\wxheading{Derived from}
11
12\helpref{wxObject}{wxobject}
13
14\wxheading{Include files}
15
16<wx/colour.h>
17
18\wxheading{Predefined objects}
19
20Objects:
21
22{\bf wxNullColour}
23
24Pointers:
25
26{\bf wxBLACK\\
27wxWHITE\\
28wxRED\\
29wxBLUE\\
30wxGREEN\\
31wxCYAN\\
32wxLIGHT\_GREY}
33
34\wxheading{See also}
35
36\helpref{wxColourDatabase}{wxcolourdatabase}, \helpref{wxPen}{wxpen}, \helpref{wxBrush}{wxbrush},\rtfsp
37\helpref{wxColourDialog}{wxcolourdialog}
38
39\latexignore{\rtfignore{\wxheading{Members}}}
40
41\membersection{wxColour::wxColour}\label{wxcolourconstr}
42
43\func{}{wxColour}{\void}
44
45Default constructor.
46
47\func{}{wxColour}{\param{const unsigned char}{ red}, \param{const unsigned char}{ green}, \param{const unsigned char}{ blue}}
48
49Constructs a colour from red, green and blue values.
50
51\func{}{wxColour}{\param{const wxString\& }{colourNname}}
52
53Constructs a colour object using a colour name
54listed in {\bf wxTheColourDatabase}.
55
56\func{}{wxColour}{\param{const wxColour\&}{ colour}}
57
58Copy constructor.
59
60\wxheading{Parameters}
61
62\docparam{red}{The red value.}
63
64\docparam{green}{The green value.}
65
66\docparam{blue}{The blue value.}
67
68\docparam{colourName}{The colour name.}
69
70\docparam{colour}{The colour to copy.}
71
72\wxheading{See also}
73
74\helpref{wxColourDatabase}{wxcolourdatabase}
75
76\pythonnote{Constructors supported by wxPython are:\par
77\indented{2cm}{\begin{twocollist}
78\twocolitem{\bf{wxColour(red=0, green=0, blue=0)}}{}
79\twocolitem{\bf{wxNamedColour(name)}}{}
80\end{twocollist}}
81}
82
83
84\membersection{wxColour::Blue}\label{wxcolourblue}
85
86\constfunc{unsigned char}{Blue}{\void}
87
88Returns the blue intensity.
89
90\membersection{wxColour::GetPixel}\label{wxcolourgetpixel}
91
92\constfunc{long}{GetPixel}{\void}
93
94Returns a pixel value which is platform-dependent. On Windows, a COLORREF is returned.
95On X, an allocated pixel value is returned.
96
97-1 is returned if the pixel is invalid (on X, unallocated).
98
99\membersection{wxColour::Green}\label{wxcolourgreen}
100
101\constfunc{unsigned char}{Green}{\void}
102
103Returns the green intensity.
104
105\membersection{wxColour::Ok}\label{wxcolourok}
106
107\constfunc{bool}{Ok}{\void}
108
109Returns TRUE if the colour object is valid (the colour has been initialised with RGB values).
110
111\membersection{wxColour::Red}\label{wxcolourred}
112
113\constfunc{unsigned char}{Red}{\void}
114
115Returns the red intensity.
116
117\membersection{wxColour::Set}\label{wxcolourset}
118
119\func{void}{Set}{\param{const unsigned char}{ red}, \param{const unsigned char}{ green}, \param{const unsigned char}{ blue}}
120
121Sets the RGB intensity values.
122
123\membersection{wxColour::operator $=$}\label{wxcolourassign}
124
125\func{wxColour\&}{operator $=$}{\param{const wxColour\&}{ colour}}
126
127Assignment operator, taking another colour object.
128
129\func{wxColour\&}{operator $=$}{\param{const wxString\&}{ colourName}}
130
131Assignment operator, using a colour name to be found in the colour database.
132
133\wxheading{See also}
134
135\helpref{wxColourDatabase}{wxcolourdatabase}
136
137\membersection{wxColour::operator $==$}\label{wxcolourequality}
138
139\func{bool}{operator $==$}{\param{const wxColour\&}{ colour}}
140
141Tests the equality of two colours by comparing individual red, green blue colours.
142
143\membersection{wxColour::operator $!=$}\label{wxcolourinequality}
144
145\func{bool}{operator $!=$}{\param{const wxColour\&}{ colour}}
146
147Tests the inequality of two colours by comparing individual red, green blue colours.
148
149\section{\class{wxColourData}}\label{wxcolourdata}
150
151This class holds a variety of information related to colour dialogs.
152
153\wxheading{Derived from}
154
155\helpref{wxObject}{wxobject}
156
157\wxheading{Include files}
158
159<wx/cmndata.h>
160
161\wxheading{See also}
162
163\helpref{wxColour}{wxcolour}, \helpref{wxColourDialog}{wxcolourdialog}, \helpref{wxColourDialog overview}{wxcolourdialogoverview}
164
165\latexignore{\rtfignore{\wxheading{Members}}}
166
167\membersection{wxColourData::wxColourData}\label{wxcolourdataconstr}
168
169\func{}{wxColourData}{\void}
170
171Constructor. Initializes the custom colours to white, the {\it data colour} setting
172to black, and the {\it choose full} setting to TRUE.
173
174\membersection{wxColourData::\destruct{wxColourData}}
175
176\func{}{\destruct{wxColourData}}{\void}
177
178Destructor.
179
180\membersection{wxColourData::GetChooseFull}\label{wxcolourdatagetchoosefull}
181
182\constfunc{bool}{GetChooseFull}{\void}
183
184Under Windows, determines whether the Windows colour dialog will display the full dialog
185with custom colour selection controls. Has no meaning under other platforms.
186
187The default value is TRUE.
188
189\membersection{wxColourData::GetColour}\label{wxcolourdatagetcolour}
190
191\constfunc{wxColour\&}{GetColour}{\void}
192
193Gets the current colour associated with the colour dialog.
194
195The default colour is black.
196
197\membersection{wxColourData::GetCustomColour}\label{wxcolourdatagetcustomcolour}
198
199\constfunc{wxColour\&}{GetCustomColour}{\param{int}{ i}}
200
201Gets the {\it i}th custom colour associated with the colour dialog. {\it i} should
202be an integer between 0 and 15.
203
204The default custom colours are all white.
205
206\membersection{wxColourData::SetChooseFull}\label{wxcolourdatasetchoosefull}
207
208\func{void}{SetChooseFull}{\param{const bool }{flag}}
209
210Under Windows, tells the Windows colour dialog to display the full dialog
211with custom colour selection controls. Under other platforms, has no effect.
212
213The default value is TRUE.
214
215\membersection{wxColourData::SetColour}\label{wxcolourdatasetcolour}
216
217\func{void}{SetColour}{\param{const wxColour\&}{ colour}}
218
219Sets the default colour for the colour dialog.
220
221The default colour is black.
222
223\membersection{wxColourData::SetCustomColour}\label{wxcolourdatasetcustomcolour}
224
225\func{void}{SetColour}{\param{int}{ i}, \param{const wxColour\&}{ colour}}
226
227Sets the {\it i}th custom colour for the colour dialog. {\it i} should
228be an integer between 0 and 15.
229
230The default custom colours are all white.
231
232\membersection{wxColourData::operator $=$}\label{wxcolourdataassign}
233
234\func{void}{operator $=$}{\param{const wxColourData\&}{ data}}
235
236Assingment operator for the colour data.
237
238\section{\class{wxColourDatabase}}\label{wxcolourdatabase}
239
240wxWindows maintains a database of standard RGB colours for a predefined
241set of named colours (such as ``BLACK'', ``LIGHT GREY''). The
242application may add to this set if desired by using {\it Append}. There
243is only one instance of this class: {\bf wxTheColourDatabase}.
244
245\wxheading{Derived from}
246
247\helpref{wxList}{wxlist}\\
248\helpref{wxObject}{wxobject}
249
250\wxheading{Include files}
251
252<wx/gdicmn.h>
253
254\wxheading{Remarks}
255
256The colours in the standard database are as follows:
257
258AQUAMARINE, BLACK, BLUE, BLUE VIOLET, BROWN, CADET BLUE, CORAL,
259CORNFLOWER BLUE, CYAN, DARK GREY, DARK GREEN, DARK OLIVE GREEN, DARK
260ORCHID, DARK SLATE BLUE, DARK SLATE GREY DARK TURQUOISE, DIM GREY,
261FIREBRICK, FOREST GREEN, GOLD, GOLDENROD, GREY, GREEN, GREEN YELLOW,
262INDIAN RED, KHAKI, LIGHT BLUE, LIGHT GREY, LIGHT STEEL BLUE, LIME GREEN,
263MAGENTA, MAROON, MEDIUM AQUAMARINE, MEDIUM BLUE, MEDIUM FOREST GREEN,
264MEDIUM GOLDENROD, MEDIUM ORCHID, MEDIUM SEA GREEN, MEDIUM SLATE BLUE,
265MEDIUM SPRING GREEN, MEDIUM TURQUOISE, MEDIUM VIOLET RED, MIDNIGHT BLUE,
266NAVY, ORANGE, ORANGE RED, ORCHID, PALE GREEN, PINK, PLUM, PURPLE, RED,
267SALMON, SEA GREEN, SIENNA, SKY BLUE, SLATE BLUE, SPRING GREEN, STEEL
268BLUE, TAN, THISTLE, TURQUOISE, VIOLET, VIOLET RED, WHEAT, WHITE, YELLOW,
269YELLOW GREEN.
270
271\wxheading{See also}
272
273\helpref{wxColour}{wxcolour}
274
275\latexignore{\rtfignore{\wxheading{Members}}}
276
277\membersection{wxColourDatabase::wxColourDatabase}\label{wxcolourdatabaseconstr}
278
279\func{}{wxColourDatabase}{\void}
280
281Constructs the colour database.
282
283\membersection{wxColourDatabase::FindColour}\label{wxcolourdatabasefindcolour}
284
285\func{wxColour*}{FindColour}{\param{const wxString\& }{colourName}}
286
287Finds a colour given the name. Returns NULL if not found.
288
289\membersection{wxColourDatabase::FindName}\label{wxcolourdatabasefindname}
290
291\constfunc{wxString}{FindName}{\param{const wxColour\&}{ colour}}
292
293Finds a colour name given the colour. Returns NULL if not found.
294
295\membersection{wxColourDatabase::Initialize}\label{wxcolourdatabaseinitialize}
296
297\func{void}{Initialize}{\void}
298
299Initializes the database with a number of stock colours. Called by wxWindows
300on start-up.
301
302