00001
00002
00003 #ifndef INITIALSECTIONCONTROL_H
00004 #define INITIALSECTIONCONTROL_H
00005
00006
00007
00008
00009 #include "../DoubleParameter.h"
00010
00011 class InitialSectionControl: public wxPanel {
00012 public:
00013
00014
00015
00016 InitialSectionControl(wxWindow* parent,
00017 int id,
00018 DoubleParameter& rStartValue,
00019 DoubleParameter& rEndValue,
00020 const wxPoint& pos=wxDefaultPosition,
00021 const wxSize& size=wxDefaultSize,
00022 long style=0);
00023
00024 private:
00025
00026 void set_properties();
00027 void do_layout();
00028
00029
00030 protected:
00031
00032 wxStaticBox* sizer_15_staticbox;
00033 wxStaticText* mpStartLabel;
00034 wxTextCtrl* mpStartCtrl;
00035 wxStaticText* mpEndLabel;
00036 wxTextCtrl* mpEndCtrl;
00037
00038 };
00039
00040
00041 #endif // INITIALSECTIONCONTROL_H