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
MatchToolNewPointDialog.h
Go to the documentation of this file.
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:
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
QString pointId() const
Definition MatchToolNewPointDialog.cpp:131
void setFiles(QStringList pointFiles)
Definition MatchToolNewPointDialog.cpp:111
QLineEdit * ptIdLineEdit
Definition MatchToolNewPointDialog.h:28
MatchToolNewPointDialog(const ControlNet &cnet, QString defaultPointId, QWidget *parent=0)
MatchToolNewPointDialog constructor.
Definition MatchToolNewPointDialog.cpp:40
void highlightFile(QString file)
Definition MatchToolNewPointDialog.cpp:119
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16