00001
00002
00003
00004 #ifndef _DATE_BTN_H_
00005 #define _DATE_BTN_H_
00006
00007 #include <wx/wx.h>
00008 #include "utils.h"
00009
00010 using namespace Limiro;
00011
00012 class date_btn
00013 {
00014 public:
00015 date_btn();
00016 void initialise(wxWindow* window,int x = 0, int y = 0);
00017 void destroy();
00018 wxBoxSizer* get_sizer(){return sizer;}
00019 std::string get_answer();
00020 protected:
00021 wxBoxSizer* sizer;
00022 wxTextCtrl* entry_btn;
00023 wxChoice* month_btn;
00024 wxChoice* day_btn;
00025 };
00026
00027 #endif //_DATE_BTN_H_