00001
00002
00003 #include <wx/wx.h>
00004 #include <wx/image.h>
00005
00006 #include "MethodPanelInfo.h"
00007
00008 #ifndef SIMPLEXPANEL_H
00009 #define SIMPLEXPANEL_H
00010
00011
00012
00013
00014
00015 class SimplexPanel: public wxPanel {
00016 public:
00017
00018
00019
00020 SimplexPanel(wxWindow* parent, int id, const wxPoint& pos=wxDefaultPosition, const wxSize& size=wxDefaultSize, long style=0);
00021
00022 static wxPanel* CreatePanel(MethodPanelInfo panelInfo);
00023
00024 private:
00025
00026 void set_properties();
00027 void do_layout();
00028
00029
00030 protected:
00031
00032 wxStaticText* p_label;
00033
00034
00035 static const void* mpRegistrationDummy;
00036 };
00037
00038
00039 #endif // SIMPLEXPANEL_H