Isis Developer Reference
GuiDoubleParameter.h
Go to the documentation of this file.
1#ifndef Isis_GuiDoubleParameter_h
2#define Isis_GuiDoubleParameter_h
8/* SPDX-License-Identifier: CC0-1.0 */
9
10#include <QLineEdit>
11
12#include "GuiParameter.h"
13
14
15namespace Isis {
16
17// class QTextEdit;
24
25 Q_OBJECT
26
27 public:
28
29 GuiDoubleParameter(QGridLayout *grid, UserInterface &ui,
30 int group, int param);
32
33 QString Value();
34
35 void Set(QString newValue);
36
37 private:
38 QLineEdit *p_lineEdit;
39
40 };
41};
42
43
44
45#endif
46
Definition GuiDoubleParameter.h:23
GuiDoubleParameter(QGridLayout *grid, UserInterface &ui, int group, int param)
Definition GuiDoubleParameter.cpp:16
~GuiDoubleParameter()
Definition GuiDoubleParameter.cpp:35
void Set(QString newValue)
Definition GuiDoubleParameter.cpp:38
QString Value()
Definition GuiDoubleParameter.cpp:43
Definition GuiParameter.h:34
Command Line and Xml loader, validation, and access.
Definition UserInterface.h:139
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16