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