renamed generic version to wxDatePickerCtrlGeneric to allow using it alongside the native one

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31538 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-01-21 13:44:01 +00:00
parent d98766152b
commit 7ae712f566
3 changed files with 100 additions and 70 deletions

View File

@@ -70,6 +70,26 @@ public:
#include "wx/msw/datectrl.h"
#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_