Isis 3.0
Home
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
MatchToolNewPointDialog.h
Go to the documentation of this file.
1
#ifndef MatchToolNewPointDialog_h
2
#define MatchToolNewPointDialog_h
3
4
#include <QDialog>
5
6
class
QLabel;
7
class
QLineEdit;
8
class
QListWidget;
9
class
QPushButton;
10
class
QString;
11
class
QStringList
;
12
13
namespace
Isis {
14
class
ControlNet;
22
class
MatchToolNewPointDialog
:
public
QDialog
{
23
24
Q_OBJECT
25
26
public
:
27
MatchToolNewPointDialog
(
const
ControlNet
&cnet, QString defaultPointId,
QWidget
*parent = 0);
28
29
QLineEdit *
ptIdLineEdit
;
30
QString
pointId
()
const
;
31
32
void
setFiles
(
QStringList
pointFiles);
33
void
highlightFile
(QString file);
34
35
36
signals:
37
void
measuresFinished
();
38
void
newPointCanceled
();
39
40
private
slots:
41
void
enableDoneButton(
const
QString &text);
42
43
private
:
44
QListWidget *m_fileList;
45
46
QPushButton *m_doneButton;
47
48
QStringList
*m_pointFiles;
49
50
51
};
52
};
53
54
#endif
55
56
QStringList
Isis::MatchToolNewPointDialog::pointId
QString pointId() const
Definition:
MatchToolNewPointDialog.cpp:131
Isis::MatchToolNewPointDialog::measuresFinished
void measuresFinished()
Definition:
moc_MatchToolNewPointDialog.cpp:144
Isis::ControlNet
a control network
Definition:
ControlNet.h:207
Isis::MatchToolNewPointDialog::setFiles
void setFiles(QStringList pointFiles)
Definition:
MatchToolNewPointDialog.cpp:111
Isis::MatchToolNewPointDialog::newPointCanceled
void newPointCanceled()
Definition:
moc_MatchToolNewPointDialog.cpp:150
Isis::MatchToolNewPointDialog
Definition:
MatchToolNewPointDialog.h:22
Isis::MatchToolNewPointDialog::ptIdLineEdit
QLineEdit * ptIdLineEdit
Definition:
MatchToolNewPointDialog.h:29
Isis::MatchToolNewPointDialog::MatchToolNewPointDialog
MatchToolNewPointDialog(const ControlNet &cnet, QString defaultPointId, QWidget *parent=0)
MatchToolNewPointDialog constructor.
Definition:
MatchToolNewPointDialog.cpp:40
QDialog
QWidget
Isis::MatchToolNewPointDialog::highlightFile
void highlightFile(QString file)
Definition:
MatchToolNewPointDialog.cpp:119