Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

Isis Developer Reference
QnetFixedPointDialog.h
Go to the documentation of this file.
1#ifndef QnetFixedPointDialog_h
2#define QnetFixedPointDialog_h
3
4#include <QDialog>
5
6class QLabel;
7class QLineEdit;
8class QListWidget;
9class QRadioButton;
10class QPushButton;
11class QString;
12
13namespace Isis {
14 class ControlPoint;
15 class QnetTool;
16
31 Q_OBJECT
32
33 public:
35 QString defaultPointId, QWidget *parent = 0);
37
38 bool isFixed() const;
39 bool isConstrained() const;
40 QString pointId() const;
42 void setFiles (QStringList pointFiles);
43
44
45 private slots:
46 void enableOkButton(const QString &text);
47
48 private:
49 QLineEdit *m_ptIdValue;
50 QRadioButton *m_fixed;
51 QRadioButton *m_constrained;
52 QListWidget *m_fileList;
53
54 QRadioButton *m_avg;
55 QRadioButton *m_select;
56
57 QLabel *m_ptIdLabel;
58 QPushButton *m_okButton;
59
60 QStringList *m_pointFiles;
61
62 QnetTool *m_qnetTool;
63 };
64};
65
66#endif
67
A single control point.
Definition ControlPoint.h:354
~QnetFixedPointDialog()
Definition QnetFixedPointDialog.cpp:103
QString pointId() const
Definition QnetFixedPointDialog.cpp:119
void setFiles(QStringList pointFiles)
Set files found containing selected point.
Definition QnetFixedPointDialog.cpp:144
QStringList selectedFiles() const
Definition QnetFixedPointDialog.cpp:124
bool isFixed() const
Definition QnetFixedPointDialog.cpp:109
bool isConstrained() const
Definition QnetFixedPointDialog.cpp:114
QnetFixedPointDialog(QnetTool *qnetTool, QString defaultPointId, QWidget *parent=0)
QnetNewPointDialog constructor.
Definition QnetFixedPointDialog.cpp:36
Qnet tool operations.
Definition QnetTool.h:259
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16