Isis 3 Programmer Reference
GuiDoubleParameter.h
1 #ifndef Isis_GuiDoubleParameter_h
2 #define Isis_GuiDoubleParameter_h
3 
4 #include <QLineEdit>
5 
6 #include "GuiParameter.h"
7 
8 
9 namespace Isis {
10 
11 // class QTextEdit;
18 
19  Q_OBJECT
20 
21  public:
22 
23  GuiDoubleParameter(QGridLayout *grid, UserInterface &ui,
24  int group, int param);
26 
27  QString Value();
28 
29  void Set(QString newValue);
30 
31  private:
32  QLineEdit *p_lineEdit;
33 
34  };
35 };
36 
37 
38 
39 #endif
40 
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Command Line and Xml loader, validation, and access.