USGS

Isis 3.0 Developer's Reference (API)

Home

GuiIntegerParameter.h

Go to the documentation of this file.
00001 
00002 #ifndef Isis_GuiIntegerParameter_h
00003 #define Isis_GuiIntegerParameter_h
00004 
00005 #include <QLineEdit>
00006 
00007 #include "GuiParameter.h"
00008 
00009 
00010 namespace Isis {
00011 
00012 //  class QTextEdit;
00018   class GuiIntegerParameter : public GuiParameter {
00019 
00020       Q_OBJECT
00021 
00022     public:
00023 
00024       GuiIntegerParameter(QGridLayout *grid, UserInterface &ui,
00025                           int group, int param);
00026       ~GuiIntegerParameter();
00027 
00028       iString Value();
00029 
00030       void Set(iString newValue);
00031 
00032     private:
00033       QLineEdit *p_lineEdit;
00034 
00035   };
00036 };
00037 
00038 
00039 
00040 #endif
00041