00001 00006 #ifndef EPSILONCONTROL_H 00007 #define EPSILONCONTROL_H 00008 00009 class EpsilonControl: public wxPanel 00010 { 00011 public: 00012 00013 EpsilonControl(wxWindow* parent, 00014 int id, 00015 DoubleParameter& rEpsilon, 00016 const wxPoint& pos=wxDefaultPosition, 00017 const wxSize& size=wxDefaultSize, 00018 long style=0); 00019 00020 private: 00021 void do_layout(); 00022 00023 protected: 00024 wxStaticText* mpEpsilonLabel; 00025 wxTextCtrl* mpEpsilonTextCtrl; 00026 }; 00027 00028 #endif // EPSILONCONTROL_H