X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4a40cd9bae5e4e76fadb6188b399905028a02bc7..ca77701441e39245dcbfce903049e76f166979e5:/include/wx/generic/datectrl.h?ds=sidebyside diff --git a/include/wx/generic/datectrl.h b/include/wx/generic/datectrl.h index e1b5ad3563..37734a803e 100644 --- a/include/wx/generic/datectrl.h +++ b/include/wx/generic/datectrl.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: generic/datectrl.h +// Name: wx/generic/datectrl.h // Purpose: generic wxDatePickerCtrl implementation // Author: Andreas Pflug // Modified by: @@ -12,12 +12,15 @@ #ifndef _WX_GENERIC_DATECTRL_H_ #define _WX_GENERIC_DATECTRL_H_ +#include "wx/compositewin.h" + class WXDLLIMPEXP_FWD_CORE wxComboCtrl; class WXDLLIMPEXP_FWD_ADV wxCalendarCtrl; class WXDLLIMPEXP_FWD_ADV wxCalendarComboPopup; -class WXDLLIMPEXP_ADV wxDatePickerCtrlGeneric : public wxDatePickerCtrlBase +class WXDLLIMPEXP_ADV wxDatePickerCtrlGeneric + : public wxCompositeWindow { public: // creating the control @@ -72,10 +75,17 @@ protected: private: void Init(); + // return the list of the windows composing this one + virtual wxWindowList GetCompositeWindowParts() const; + void OnText(wxCommandEvent &event); void OnSize(wxSizeEvent& event); void OnFocus(wxFocusEvent& event); +#ifdef __WXOSX_COCOA__ + virtual void OSXGenerateEvent(const wxDateTime& WXUNUSED(dt)) { } +#endif + wxComboCtrl* m_combo; wxCalendarComboPopup* m_popup;