Isis 3 Programmer Reference
NewGroundSourceLocationDialog.h
1 #ifndef NewGroundSourceLocationDialog_h
2 #define NewGroundSourceLocationDialog_h
3 
23 #include <QCheckBox>
24 #include <QDir>
25 #include <QFileDialog>
26 #include <QPointer>
27 #include <QString>
28 #include <QWidget>
29 
30 namespace Isis {
31 
45  Q_OBJECT
46  public:
47  NewGroundSourceLocationDialog(QString title, QString &directory, QWidget *parent = 0);
48 
49 // QDir newGroundSourceLocation();
51  bool changeControlNet();
52 
53  private:
54  QPointer<QCheckBox> m_changeAllGround;
55  QPointer<QCheckBox> m_changeControlNet;
56  };
57 };
58 
59 #endif
60 
bool changeAllGroundSourceLocation()
Indicates whether all subsequent ground source files should be found in new source directory...
QPointer< QCheckBox > m_changeAllGround
Change location of all subsequent ground control points.
NewGroundSourceLocationDialog(QString title, QString &directory, QWidget *parent=0)
Dialog to determine new ground source location.
bool changeControlNet()
Indicates whether the control network should be changed to reflect new ground source location...
QPointer< QCheckBox > m_changeControlNet
Change location of ground source in the control network.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Dialog used by ControlPointEditWidget to select a new location for ground source files.