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 3 Programmer Reference
MatchToolNewPointDialog.h
1#ifndef MatchToolNewPointDialog_h
2#define MatchToolNewPointDialog_h
3
4#include <QDialog>
5
6class QLabel;
7class QLineEdit;
8class QListWidget;
9class QPushButton;
10class QString;
11
12namespace Isis {
13 class ControlNet;
22
23 Q_OBJECT
24
25 public:
26 MatchToolNewPointDialog(const ControlNet &cnet, QString defaultPointId, QWidget *parent = 0);
27
28 QLineEdit *ptIdLineEdit;
29 QString pointId() const;
30
31 void setFiles(QStringList pointFiles);
32 void highlightFile(QString file);
33
34
35 signals:
36 void measuresFinished();
37 void newPointCanceled();
38
39 private slots:
40 void enableDoneButton(const QString &text);
41
42 private:
43 QListWidget *m_fileList;
44
45 QPushButton *m_doneButton;
46
47 QStringList *m_pointFiles;
48
49
50 };
51};
52
53#endif
a control network
Definition ControlNet.h:257
void enableDoneButton(const QString &text)
void setFiles(QStringList pointFiles)
MatchToolNewPointDialog(const ControlNet &cnet, QString defaultPointId, QWidget *parent=0)
MatchToolNewPointDialog constructor.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16