#if wxUSE_COLOURPICKERCTRL
-#include "wx/control.h"
#include "wx/pickerbase.h"
// event handler for our picker
void OnColourChange(wxColourPickerEvent &);
+protected:
virtual long GetPickerStyle(long style) const
{ return (style & wxCLRP_SHOW_LABEL); }
-protected:
-
// true if the next UpdateTextCtrl() call is to ignore
bool m_bIgnoreNextTextCtrlUpdate;
wxColour GetColour() const { return m_colour; }
void SetColour(const wxColour &c) { m_colour = c; }
+
+ // default copy ctor, assignment operator and dtor are ok
+ virtual wxEvent *Clone() const { return new wxColourPickerEvent(*this); }
+
private:
wxColour m_colour;
- DECLARE_DYNAMIC_CLASS_NO_COPY(wxColourPickerEvent)
+ DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxColourPickerEvent)
};
// ----------------------------------------------------------------------------