This is a combination of running clang-tidy with modernize-use-nullptr check for some ports (GTK, X11, OSX) and manual changes to the ports for which it couldn't be used easily (MSW, DFB) and also manually updating the docs. Also replace NULL with null or nullptr in the comments as this is more consistent with the use of nullptr in the code and makes it simpler to grep for the remaining occurrences of NULL itself. And also use null in the assert messages. Only a few occurrences of "NULL" are still left in non-C files, mostly corresponding to unclear comments or string output which it might not be safe to change.
179 lines
6.5 KiB
Objective-C
179 lines
6.5 KiB
Objective-C
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: clrpicker.h
|
|
// Purpose: interface of wxColourPickerCtrl
|
|
// Author: wxWidgets team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define wxCLRP_USE_TEXTCTRL (wxPB_USE_TEXTCTRL)
|
|
#define wxCLRP_DEFAULT_STYLE 0
|
|
#define wxCLRP_SHOW_LABEL 0x0008
|
|
#define wxCLRP_SHOW_ALPHA 0x0010
|
|
|
|
wxEventType wxEVT_COLOURPICKER_CHANGED;
|
|
wxEventType wxEVT_COLOURPICKER_CURRENT_CHANGED;
|
|
wxEventType wxEVT_COLOURPICKER_DIALOG_CANCELLED;
|
|
|
|
|
|
/**
|
|
@class wxColourPickerCtrl
|
|
|
|
This control allows the user to select a colour. The generic implementation
|
|
is a button which brings up a wxColourDialog when clicked. Native
|
|
implementation may differ but this is usually a (small) widget which give
|
|
access to the colour-chooser dialog. It is only available if
|
|
@c wxUSE_COLOURPICKERCTRL is set to 1 (the default).
|
|
|
|
@beginStyleTable
|
|
@style{wxCLRP_DEFAULT_STYLE}
|
|
The default style: 0.
|
|
@style{wxCLRP_USE_TEXTCTRL}
|
|
Creates a text control to the left of the picker button which is
|
|
completely managed by the wxColourPickerCtrl and which can be used
|
|
by the user to specify a colour (see SetColour). The text control
|
|
is automatically synchronized with button's value. Use functions
|
|
defined in wxPickerBase to modify the text control.
|
|
@style{wxCLRP_SHOW_LABEL}
|
|
Shows the colour in HTML form (AABBCC) as colour button label
|
|
(instead of no label at all).
|
|
@style{wxCLRP_SHOW_ALPHA}
|
|
Allows selecting opacity in the colour-chooser (effective under
|
|
wxGTK and wxOSX).
|
|
@endStyleTable
|
|
|
|
@beginEventEmissionTable{wxColourPickerEvent}
|
|
@event{EVT_COLOURPICKER_CHANGED(id, func)}
|
|
The user changed the colour selected in the control either using the
|
|
button or using text control (see @c wxCLRP_USE_TEXTCTRL; note that
|
|
in this case the event is fired only if the user's input is valid,
|
|
i.e. recognizable). When using a popup dialog for changing the
|
|
colour, this event is sent only when the changes in the dialog are
|
|
accepted by the user, unlike @c EVT_COLOURPICKER_CURRENT_CHANGED.
|
|
@event{EVT_COLOURPICKER_CURRENT_CHANGED(id, func)}
|
|
The user changed the currently selected colour in the dialog
|
|
associated with the control. This event is sent immediately when the
|
|
selection changes and you must also handle @c EVT_COLOUR_CANCELLED
|
|
to revert to the previously selected colour if the selection ends up
|
|
not being accepted. This event is new since wxWidgets 3.1.3 and
|
|
currently is only implemented in wxMSW.
|
|
@event{EVT_COLOURPICKER_DIALOG_CANCELLED(id, func)}
|
|
The user cancelled the colour dialog associated with the control,
|
|
i.e. closed it without accepting the selection. This event is new
|
|
since wxWidgets 3.1.3 and currently is only implemented in wxMSW.
|
|
@endEventTable
|
|
|
|
@library{wxcore}
|
|
@category{pickers}
|
|
@appearance{colourpickerctrl}
|
|
|
|
@see wxColourDialog, wxColourPickerEvent
|
|
*/
|
|
class wxColourPickerCtrl : public wxPickerBase
|
|
{
|
|
public:
|
|
wxColourPickerCtrl();
|
|
|
|
/**
|
|
Initializes the object and calls Create() with all the parameters.
|
|
*/
|
|
wxColourPickerCtrl(wxWindow* parent, wxWindowID id,
|
|
const wxColour& colour = *wxBLACK,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxCLRP_DEFAULT_STYLE,
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
const wxString& name = wxColourPickerCtrlNameStr);
|
|
|
|
/**
|
|
Creates a colour picker with the given arguments.
|
|
|
|
@param parent
|
|
Parent window, must not be non-null.
|
|
@param id
|
|
The identifier for the control.
|
|
@param colour
|
|
The initial colour shown in the control.
|
|
@param pos
|
|
Initial position.
|
|
@param size
|
|
Initial size.
|
|
@param style
|
|
The window style, see wxCRLP_* flags.
|
|
@param validator
|
|
Validator which can be used for additional data checks.
|
|
@param name
|
|
Control name.
|
|
|
|
@return @true if the control was successfully created or @false if
|
|
creation failed.
|
|
*/
|
|
bool Create(wxWindow* parent, wxWindowID id,
|
|
const wxColour& colour = *wxBLACK,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxCLRP_DEFAULT_STYLE,
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
const wxString& name = wxColourPickerCtrlNameStr);
|
|
|
|
/**
|
|
Returns the currently selected colour.
|
|
*/
|
|
wxColour GetColour() const;
|
|
|
|
///@{
|
|
/**
|
|
Sets the currently selected colour. See wxColour::Set().
|
|
*/
|
|
void SetColour(const wxColour& col);
|
|
void SetColour(const wxString& colname);
|
|
///@}
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
@class wxColourPickerEvent
|
|
|
|
This event class is used for the events generated by wxColourPickerCtrl.
|
|
|
|
@beginEventTable{wxColourPickerEvent}
|
|
@event{EVT_COLOURPICKER_CHANGED(id, func)}
|
|
Generated whenever the selected colour changes.
|
|
@event{EVT_COLOURPICKER_CURRENT_CHANGED(id, func)}
|
|
Generated whenever the currently selected colour in the dialog shown
|
|
by the picker changes. This event is new since wxWidgets 3.1.3 and
|
|
currently is only implemented in wxMSW.
|
|
@event{EVT_COLOURPICKER_DIALOG_CANCELLED(id, func)}
|
|
Generated when the user cancels the colour dialog associated with
|
|
the control, i.e. closes it without accepting the selection. This
|
|
event is new since wxWidgets 3.1.3 and currently is only implemented
|
|
in wxMSW.
|
|
@endEventTable
|
|
|
|
@library{wxcore}
|
|
@category{events}
|
|
|
|
@see wxColourPickerCtrl
|
|
*/
|
|
class wxColourPickerEvent : public wxCommandEvent
|
|
{
|
|
public:
|
|
wxColourPickerEvent();
|
|
|
|
/**
|
|
The constructor is not normally used by the user code.
|
|
*/
|
|
wxColourPickerEvent(wxObject* generator, int id,
|
|
const wxColour& colour);
|
|
|
|
/**
|
|
Retrieve the colour the user has just selected.
|
|
*/
|
|
wxColour GetColour() const;
|
|
|
|
/**
|
|
Set the colour associated with the event.
|
|
*/
|
|
void SetColour(const wxColour& pos);
|
|
};
|
|
|