]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxColourDialog}}\label{wxcolourdialog} |
2 | ||
3 | This class represents the colour chooser dialog. | |
4 | ||
5 | \wxheading{Derived from} | |
6 | ||
7 | \helpref{wxDialog}{wxdialog}\\ | |
8 | \helpref{wxWindow}{wxwindow}\\ | |
9 | \helpref{wxEvtHandler}{wxevthandler}\\ | |
10 | \helpref{wxObject}{wxobject} | |
11 | ||
954b8ae6 JS |
12 | \wxheading{Include files} |
13 | ||
14 | <wx/colordlg.h> | |
15 | ||
a660d684 KB |
16 | \wxheading{See also} |
17 | ||
d741c583 VZ |
18 | \helpref{wxColourDialog Overview}{wxcolourdialogoverview},\\ |
19 | \helpref{wxColour}{wxcolour},\\ | |
20 | \helpref{wxColourData}{wxcolourdata},\\ | |
21 | \helpref{wxGetColourFromUser}{wxgetcolourfromuser} | |
a660d684 KB |
22 | |
23 | \latexignore{\rtfignore{\wxheading{Members}}} | |
24 | ||
f510b7b2 | 25 | \membersection{wxColourDialog::wxColourDialog}\label{wxcolourdialogctor} |
a660d684 KB |
26 | |
27 | \func{}{wxColourDialog}{\param{wxWindow* }{parent}, \param{wxColourData* }{data = NULL}} | |
28 | ||
29 | Constructor. Pass a parent window, and optionally a pointer to a block of colour | |
393c836c VS |
30 | data, which will be copied to the colour dialog's colour data. Custom |
31 | colours from colour data object will be be used in dialog's colour palette. | |
32 | Invalid entries in custom colours list will be ignored on some platforms (GTK) | |
33 | or replaced with white colour on platforms where custom colours palette has | |
34 | fixed size (MSW). | |
a660d684 KB |
35 | |
36 | \wxheading{See also} | |
37 | ||
38 | \helpref{wxColourData}{wxcolourdata} | |
39 | ||
f510b7b2 | 40 | \membersection{wxColourDialog::\destruct{wxColourDialog}}\label{wxcolourdialogdtor} |
a660d684 KB |
41 | |
42 | \func{}{\destruct{wxColourDialog}}{\void} | |
43 | ||
44 | Destructor. | |
45 | ||
f510b7b2 | 46 | \membersection{wxColourDialog::Create}\label{wxcolourdialogcreate} |
f6bcfd97 BP |
47 | |
48 | \func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxColourData* }{data = NULL}} | |
49 | ||
f510b7b2 | 50 | Same as \helpref{constructor}{wxcolourdialogctor}. |
f6bcfd97 | 51 | |
f510b7b2 | 52 | \membersection{wxColourDialog::GetColourData}\label{wxcolourdialoggetcolourdata} |
a660d684 KB |
53 | |
54 | \func{wxColourData\&}{GetColourData}{\void} | |
55 | ||
56 | Returns the \helpref{colour data}{wxcolourdata} associated with the colour dialog. | |
57 | ||
f510b7b2 | 58 | \membersection{wxColourDialog::ShowModal}\label{wxcolourdialogshowmodal} |
a660d684 KB |
59 | |
60 | \func{int}{ShowModal}{\void} | |
61 | ||
3134f933 | 62 | Shows the dialog, returning wxID\_OK if the user pressed OK, and wxID\_CANCEL |
a660d684 KB |
63 | otherwise. |
64 | ||
65 |