]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/colordlg.tex
added the static function GetLabelText() to wxStaticText which was mentioned in the...
[wxWidgets.git] / docs / latex / wx / colordlg.tex
... / ...
CommitLineData
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
12\wxheading{Include files}
13
14<wx/colordlg.h>
15
16\wxheading{Library}
17
18\helpref{wxCore}{librarieslist}
19
20\wxheading{See also}
21
22\helpref{wxColourDialog Overview}{wxcolourdialogoverview},\\
23\helpref{wxColour}{wxcolour},\\
24\helpref{wxColourData}{wxcolourdata},\\
25\helpref{wxGetColourFromUser}{wxgetcolourfromuser}
26
27\latexignore{\rtfignore{\wxheading{Members}}}
28
29\membersection{wxColourDialog::wxColourDialog}\label{wxcolourdialogctor}
30
31\func{}{wxColourDialog}{\param{wxWindow* }{parent}, \param{wxColourData* }{data = NULL}}
32
33Constructor. Pass a parent window, and optionally a pointer to a block of colour
34data, which will be copied to the colour dialog's colour data. Custom
35colours from colour data object will be be used in dialog's colour palette.
36Invalid entries in custom colours list will be ignored on some platforms (GTK)
37or replaced with white colour on platforms where custom colours palette has
38fixed size (MSW).
39
40\wxheading{See also}
41
42\helpref{wxColourData}{wxcolourdata}
43
44\membersection{wxColourDialog::\destruct{wxColourDialog}}\label{wxcolourdialogdtor}
45
46\func{}{\destruct{wxColourDialog}}{\void}
47
48Destructor.
49
50\membersection{wxColourDialog::Create}\label{wxcolourdialogcreate}
51
52\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxColourData* }{data = NULL}}
53
54Same as \helpref{constructor}{wxcolourdialogctor}.
55
56\membersection{wxColourDialog::GetColourData}\label{wxcolourdialoggetcolourdata}
57
58\func{wxColourData\&}{GetColourData}{\void}
59
60Returns the \helpref{colour data}{wxcolourdata} associated with the colour dialog.
61
62\membersection{wxColourDialog::ShowModal}\label{wxcolourdialogshowmodal}
63
64\func{int}{ShowModal}{\void}
65
66Shows the dialog, returning wxID\_OK if the user pressed OK, and wxID\_CANCEL
67otherwise.
68
69