X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ec376c8fd9ff813392030426acd2317c6fa6527e..d10e22fe8ad283f37b1809349028ffc282e393ce:/src/common/clrpickercmn.cpp?ds=sidebyside diff --git a/src/common/clrpickercmn.cpp b/src/common/clrpickercmn.cpp index 5f208643e5..03c2f5caaa 100644 --- a/src/common/clrpickercmn.cpp +++ b/src/common/clrpickercmn.cpp @@ -24,16 +24,19 @@ #pragma hdrstop #endif +#if wxUSE_COLOURPICKERCTRL + #include "wx/clrpicker.h" +#ifndef WX_PRECOMP + #include "wx/textctrl.h" +#endif // ============================================================================ // implementation // ============================================================================ -#if wxUSE_COLOURPICKERCTRL - DEFINE_EVENT_TYPE(wxEVT_COMMAND_COLOURPICKER_CHANGED) IMPLEMENT_DYNAMIC_CLASS(wxColourPickerCtrl, wxPickerBase) IMPLEMENT_DYNAMIC_CLASS(wxColourPickerEvent, wxEvent) @@ -56,8 +59,13 @@ bool wxColourPickerCtrl::Create( wxWindow *parent, wxWindowID id, // we are not interested to the ID of our picker as we connect // to its "changed" event dynamically... - m_picker = new wxColourPickerWidget(this, wxID_ANY, col, wxPoint(40,0), wxSize(30,-1), + m_picker = new wxColourPickerWidget(this, wxID_ANY, col, + wxDefaultPosition, wxDefaultSize, GetPickerStyle(style)); + + // complete sizer creation + wxPickerBase::PostCreation(); + m_picker->Connect(wxEVT_COMMAND_COLOURPICKER_CHANGED, wxColourPickerEventHandler(wxColourPickerCtrl::OnColourChange), NULL, this);