00001
00002
00003
00004 #include <wx/wx.h>
00005
00006 #include "global.h"
00007
00008 #ifndef _CONTROL_STATISTICS_H_
00009 #define _CONTROL_STATISTICS_H_
00010
00011 class control_statistics : public wxDialog
00012 {
00013 public:
00014 control_statistics(wxWindow* parent,wxString *texts,int size,int width,int height);
00015 ~control_statistics();
00016 void destroy(wxCommandEvent& event);
00017 int show_modal();
00018 protected:
00019 wxWindow* parent;
00020 wxBoxSizer* sizer;
00021 wxScrolledWindow* window;
00022
00023 wxStaticText** static_text;
00024 int count;
00025 wxButton* ok_btn;
00026
00027 DECLARE_EVENT_TABLE();
00028 };
00029
00030 #endif //_CONTROL_STATISTICS_H_