Isis 3 Programmer Reference
QnetPointRegistrationErrorFilter.h
Go to the documentation of this file.
1 #ifndef QnetPointRegistrationErrorFilter_h
2 #define QnetPointRegistrationErrorFilter_h
3 
23 #include "QnetFilter.h"
24 
25 class QCheckBox;
26 class QLineEdit;
27 
28 namespace Isis {
29  class ControlPoint;
30 
55  Q_OBJECT
56 
57  public:
59  virtual void filter();
60 
61  private slots:
62  void clearEdit();
63 
64  private:
65  QCheckBox *m_lessThanCB;
66  QCheckBox *m_greaterThanCB;
67  QLineEdit *m_lessErrorEdit;
68  QLineEdit *m_greaterErrorEdit;
69  };
70 };
71 
72 #endif
void clearEdit()
Clears and disables the corresponding line edit if the "less than" or "greater than" checkBox is "unc...
Qnet Navigation Tool.
Definition: QnetNavTool.h:132
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
virtual void filter()
Filters a list of points for points that have less than or greater than the entered registration erro...
Defines the Registration Error filter for the QnetNavTool's Points section.
QnetPointRegistrationErrorFilter(QnetNavTool *navTool, QWidget *parent=0)
Contructor for the Point Registration Error filter.