1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxColourPickerCtrl and wxColourPickerEvent documentation
4 %% Author: Francesco Montorsi
7 %% Copyright: (c) 2006 Francesco Montorsi
8 %% License: wxWindows license
9 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11 \section{\class{wxColourPickerCtrl
}}\label{wxcolourpickerctrl
}
13 This control allows the user to select a colour. The generic implementation is
14 a button which brings up a
\helpref{wxColourDialog
}{wxcolourdialog
} when clicked. Native implementation
15 may differ but this is usually a (small) widget which give access to the colour-chooser
17 It is only available if
\texttt{wxUSE
\_COLOURPICKERCTRL} is set to $
1$ (the default).
19 \wxheading{Derived from
}
21 \helpref{wxPickerBase
}{wxpickerbase
}\\
22 \helpref{wxControl
}{wxcontrol
}\\
23 \helpref{wxWindow
}{wxwindow
}\\
24 \helpref{wxEvtHandler
}{wxevthandler
}\\
25 \helpref{wxObject
}{wxobject
}
27 \wxheading{Include files
}
31 \wxheading{Window styles
}
34 \begin{twocollist
}\itemsep=
0pt
35 \twocolitem{\windowstyle{wxCLRP
\_DEFAULT\_STYLE}}{The default style:
0.
}
36 \twocolitem{\windowstyle{wxCLRP
\_USE\_TEXTCTRL}}{Creates a text control to the left of the
37 picker button which is completely managed by the
\helpref{wxColourPickerCtrl
}{wxcolourpickerctrl
}
38 and which can be used by the user to specify a colour (see
\helpref{SetColour
}{wxcolourpickerctrlsetcolour
}).
39 The text control is automatically synchronized with button's value. Use functions defined in
\helpref{wxPickerBase
}{wxpickerbase
} to modify the text control.
}
40 \twocolitem{\windowstyle{wxCLRP
\_SHOW\_LABEL}}{Shows the colour in HTML form (#AABBCC) as colour button label
41 (instead of no label at all).
}
44 \wxheading{Event handling
}
47 \begin{twocollist
}\itemsep=
0pt
48 \twocolitem{{\bf EVT
\_COLOURPICKER\_CHANGED(id, func)
}}{The user changed the
49 colour selected in the control either using the button or using text control
50 (see wxCLRP
\_USE\_TEXTCTRL; note that in this case the event is fired only if
51 the user's input is valid, i.e. recognizable).
}
56 \helpref{wxColourDialog
}{wxcolourdialog
},\\
57 \helpref{wxColourPickerEvent
}{wxcolourpickerevent
}
60 \latexignore{\rtfignore{\wxheading{Members
}}}
62 \membersection{wxColourPickerCtrl::wxColourPickerCtrl
}\label{wxcolourpickerctrl
}
64 \func{}{wxColourPickerCtrl
}{\param{wxWindow *
}{parent
},
\rtfsp
65 \param{wxWindowID
}{ id
},
\rtfsp
66 \param{const wxColour\&
}{colour = *wxBLACK
},
\rtfsp
67 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
\rtfsp
68 \param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
69 \param{long
}{ style = wxCLRP
\_DEFAULT\_STYLE},
\rtfsp
70 \param{const wxValidator\&
}{validator = wxDefaultValidator
},
71 \param{const wxString\&
}{name = ``colourpickerctrl"
}}
73 Initializes the object and calls
\helpref{Create
}{wxcolourpickerctrlcreate
} with
77 \membersection{wxColourPickerCtrl::Create
}\label{wxcolourpickerctrlcreate
}
79 \func{bool
}{Create
}{\param{wxWindow *
}{parent
},
\rtfsp
80 \param{wxWindowID
}{ id
},
\rtfsp
81 \param{const wxColour\&
}{colour = *wxBLACK
},
\rtfsp
82 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
\rtfsp
83 \param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
84 \param{long
}{ style = wxCLRP
\_DEFAULT\_STYLE},
\rtfsp
85 \param{const wxValidator\&
}{validator = wxDefaultValidator
},
86 \param{const wxString\&
}{name = ``colourpickerctrl"
}}
88 \wxheading{Parameters
}
90 \docparam{parent
}{Parent window, must not be non-
\texttt{NULL
}.
}
92 \docparam{id
}{The identifier for the control.
}
94 \docparam{colour
}{The initial colour shown in the control.
}
96 \docparam{pos
}{Initial position.
}
98 \docparam{size
}{Initial size.
}
100 \docparam{style
}{The window style, see
{\tt wxCRLP
\_*
} flags.
}
102 \docparam{validator
}{Validator which can be used for additional date checks.
}
104 \docparam{name
}{Control name.
}
106 \wxheading{Return value
}
108 \true if the control was successfully created or
\false if creation failed.
111 \membersection{wxColourPickerCtrl::GetColour
}\label{wxcolourpickerctrlgetcolour
}
113 \constfunc{wxColour
}{GetColour
}{\void}
115 Returns the currently selected colour.
118 \membersection{wxColourPickerCtrl::SetColour
}\label{wxcolourpickerctrlsetcolour
}
120 \func{void
}{SetColour
}{\param{const wxColour \&
}{col
}}
122 \func{void
}{SetColour
}{\param{const wxString \&
}{colname
}}
124 Sets the currently selected colour. See
\helpref{wxColour::Set
}{wxcolourset
}.
129 %% wxColourPickerEvent documentation
131 \section{\class{wxColourPickerEvent
}}\label{wxcolourpickerevent
}
133 This event class is used for the events generated by
134 \helpref{wxColourPickerCtrl
}{wxcolourpickerctrl
}.
136 \wxheading{Derived from
}
138 \helpref{wxCommandEvent
}{wxcommandevent
}\\
139 \helpref{wxEvent
}{wxevent
}\\
140 \helpref{wxObject
}{wxobject
}
142 \wxheading{Include files
}
146 \wxheading{Event handling
}
148 To process input from a wxColourPickerCtrl, use one of these event handler macros to
149 direct input to member function that take a
150 \helpref{wxColourPickerEvent
}{wxcolourpickerevent
} argument:
154 \twocolitem{{\bf EVT
\_COLOURPICKER\_CHANGED(id, func)
}}{Generated whenever the selected colour changes.
}
160 \helpref{wxColourPickerCtrl
}{wxcolourpickerctrl
}
162 \latexignore{\rtfignore{\wxheading{Members
}}}
164 \membersection{wxColourPickerEvent::wxColourPickerEvent
}\label{wxcolourpickereventctor
}
166 \func{}{wxColourPickerEvent
}{\param{wxObject *
}{ generator
},
\param{int
}{ id
},
\param{const wxColour\&
}{ colour
}}
168 The constructor is not normally used by the user code.
171 \membersection{wxColourPickerEvent::GetColour
}\label{wxcolourpickereventgetcolour
}
173 \constfunc{wxColour
}{GetColour
}{\void}
175 Retrieve the colour the user has just selected.
178 \membersection{wxColourPickerEvent::SetColour
}\label{wxcolourpickereventsetcolour
}
180 \func{void
}{SetColour
}{\param{const wxColour \&
}{pos
}}
182 Set the colour associated with the event.