#include "wx/valtext.h"
#endif
+#include "wx/calctrl.h"
+#include "wx/combo.h"
+
#include "wx/datectrl.h"
#include "wx/generic/datectrl.h"
-
// ----------------------------------------------------------------------------
// constants
// ----------------------------------------------------------------------------
return m_combo->GetBestSize();
}
+wxWindowList wxDatePickerCtrlGeneric::GetCompositeWindowParts() const
+{
+ wxWindowList parts;
+ parts.push_back(m_combo);
+ parts.push_back(m_popup);
+ return parts;
+}
+
// ----------------------------------------------------------------------------
// wxDatePickerCtrlGeneric API
// ----------------------------------------------------------------------------