X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77670008aae73f8b6c1c67e07c1887b22c7df70f..08b97268061292f7c3794dae243a6490b23a42f1:/include/wx/generic/datectrl.h diff --git a/include/wx/generic/datectrl.h b/include/wx/generic/datectrl.h index 701fce4ca7..4dac18355a 100644 --- a/include/wx/generic/datectrl.h +++ b/include/wx/generic/datectrl.h @@ -12,29 +12,33 @@ #ifndef _WX_GENERIC_DATECTRL_H_ #define _WX_GENERIC_DATECTRL_H_ -class WXDLLIMPEXP_CORE wxButton; +class WXDLLIMPEXP_ADV wxButton; class WXDLLIMPEXP_ADV wxCalendarDateAttr; class WXDLLIMPEXP_ADV wxCalendarCtrl; class WXDLLIMPEXP_ADV wxCalendarEvent; -class WXDLLIMPEXP_CORE wxPopupWindow; -class WXDLLIMPEXP_CORE wxTextCtrl; +class WXDLLIMPEXP_ADV wxDatePopup; +class WXDLLIMPEXP_ADV wxTextCtrl; + +class WXDLLIMPEXP_ADV wxDatePopupInternal; class WXDLLIMPEXP_ADV wxDatePickerCtrlGeneric : public wxDatePickerCtrlBase { public: // creating the control wxDatePickerCtrlGeneric() { Init(); } + ~wxDatePickerCtrlGeneric() ; wxDatePickerCtrlGeneric(wxWindow *parent, wxWindowID id, const wxDateTime& date = wxDefaultDateTime, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDP_DEFAULT | wxDP_SHOWCENTURY, + const wxValidator& validator = wxDefaultValidator, const wxString& name = wxDatePickerCtrlNameStr) { Init(); - (void)Create(parent, id, date, pos, size, style, name); + (void)Create(parent, id, date, pos, size, style, validator, name); } bool Create(wxWindow *parent, @@ -43,6 +47,7 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDP_DEFAULT | wxDP_SHOWCENTURY, + const wxValidator& validator = wxDefaultValidator, const wxString& name = wxDatePickerCtrlNameStr); // wxDatePickerCtrl methods @@ -66,8 +71,8 @@ public: // overridden base class methods virtual bool Destroy(); - virtual bool Enable(bool enable = TRUE); - virtual bool Show(bool show = TRUE); + virtual bool Enable(bool enable = true); + virtual bool Show(bool show = true); protected: virtual wxSize DoGetBestSize() const; @@ -77,21 +82,23 @@ private: void Init(); void DropDown(bool down = true); - void OnText(wxCommandEvent &ev); + void OnText(wxCommandEvent &event); void OnEditKey(wxKeyEvent & event); void OnCalKey(wxKeyEvent & event); - void OnClick(wxCommandEvent &ev); - void OnSelChange(wxCalendarEvent &ev); - void OnSetFocus(wxFocusEvent &ev); - void OnKillFocus(wxFocusEvent &ev); - void OnChildSetFocus(wxChildFocusEvent &ev); + void OnClick(wxCommandEvent &event); + void OnSelChange(wxCalendarEvent &event); + void OnSetFocus(wxFocusEvent &event); + void OnKillFocus(wxFocusEvent &event); + void OnChildSetFocus(wxChildFocusEvent &event); + void OnSize(wxSizeEvent& event); - wxPopupWindow *m_popup; + wxDatePopupInternal *m_popup; wxTextCtrl *m_txt; wxCalendarCtrl *m_cal; wxButton *m_btn; wxString m_format; + wxDateTime m_currentDate; bool m_dropped, m_ignoreDrop;