X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2cfbeac8141db28d9a022cdf92c12f82631a3c82..dbc37e688092c6a01aaaf614aa8c6e8aac59bc72:/include/wx/datectrl.h?ds=sidebyside diff --git a/include/wx/datectrl.h b/include/wx/datectrl.h index cffc29e086..d221993aa0 100644 --- a/include/wx/datectrl.h +++ b/include/wx/datectrl.h @@ -68,8 +68,30 @@ public: #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__) #include "wx/msw/datectrl.h" + + #define wxHAS_NATIVE_DATEPICKCTRL #else #include "wx/generic/datectrl.h" + + class WXDLLIMPEXP_ADV wxDatePickerCtrl : public wxDatePickerCtrlGeneric + { + public: + wxDatePickerCtrl() { } + wxDatePickerCtrl(wxWindow *parent, + wxWindowID id, + const wxDateTime& date = wxDefaultDateTime, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = wxDP_DEFAULT | wxDP_SHOWCENTURY, + const wxString& name = wxDatePickerCtrlNameStr) + : wxDatePickerCtrlGeneric(parent, id, date, pos, size, style, name) + { + } + + private: + DECLARE_DYNAMIC_CLASS(wxDatePickerCtrl) + DECLARE_NO_COPY_CLASS(wxDatePickerCtrl) + }; #endif #endif // _WX_DATECTRL_H_