]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/colordlg.tex
Added event table macros to wxGrid that take window identifiers
[wxWidgets.git] / docs / latex / wx / colordlg.tex
CommitLineData
a660d684
KB
1\section{\class{wxColourDialog}}\label{wxcolourdialog}
2
3This 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
f6bcfd97 25\membersection{wxColourDialog::wxColourDialog}\label{wxcolourdialogwxcolourdialog}
a660d684
KB
26
27\func{}{wxColourDialog}{\param{wxWindow* }{parent}, \param{wxColourData* }{data = NULL}}
28
29Constructor. Pass a parent window, and optionally a pointer to a block of colour
393c836c
VS
30data, which will be copied to the colour dialog's colour data. Custom
31colours from colour data object will be be used in dialog's colour palette.
32Invalid entries in custom colours list will be ignored on some platforms (GTK)
33or replaced with white colour on platforms where custom colours palette has
34fixed size (MSW).
a660d684
KB
35
36\wxheading{See also}
37
38\helpref{wxColourData}{wxcolourdata}
39
40\membersection{wxColourDialog::\destruct{wxColourDialog}}
41
42\func{}{\destruct{wxColourDialog}}{\void}
43
44Destructor.
45
f6bcfd97
BP
46\membersection{wxColourDialog::Create}
47
48\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxColourData* }{data = NULL}}
49
50Same as \helpref{constructor}{wxcolourdialogwxcolourdialog}.
51
a660d684
KB
52\membersection{wxColourDialog::GetColourData}
53
54\func{wxColourData\&}{GetColourData}{\void}
55
56Returns the \helpref{colour data}{wxcolourdata} associated with the colour dialog.
57
58\membersection{wxColourDialog::ShowModal}
59
60\func{int}{ShowModal}{\void}
61
62Shows the dialog, returning wxID\_OK if the user pressed OK, and wxOK\_CANCEL
63otherwise.
64
65