USGS

Isis 3.0 Object Programmers' Reference

Home

GuiIntegerParameter.h
1 
2 #ifndef Isis_GuiIntegerParameter_h
3 #define Isis_GuiIntegerParameter_h
4 
5 #include <QLineEdit>
6 
7 #include "GuiParameter.h"
8 
9 
10 namespace Isis {
11 
12 // class QTextEdit;
19 
20  Q_OBJECT
21 
22  public:
23 
24  GuiIntegerParameter(QGridLayout *grid, UserInterface &ui,
25  int group, int param);
27 
28  QString Value();
29 
30  void Set(QString newValue);
31 
32  private:
33  QLineEdit *p_lineEdit;
34 
35  };
36 };
37 
38 
39 
40 #endif
41