00001
00002
00003
00004 #include <wx/wx.h>
00005 #include <wx/datectrl.h>
00006 #include "time.h"
00007
00008 #ifndef _MYDATE_H_
00009 #define _MYDATE_H_
00010
00011 class MyDate : public wxDialog
00012 {
00013 public:
00014 MyDate(wxWindow* parent,const wxString& title,const wxPoint& pos,const wxSize& size,time_t* start_time);
00015 void OnNext(wxCommandEvent& event);
00016 void OnHelp(wxCommandEvent& event);
00017 private:
00018 wxBoxSizer* sizer;
00019 wxButton* next;
00020 wxButton* help;
00021 wxStaticText* label;
00022 wxDatePickerCtrl* date_picker;
00023 time_t* time;
00024
00025 DECLARE_EVENT_TABLE();
00026 };
00027
00028 #endif // _MYDATE_H_
00029