Isis 3 Programmer Reference
QnetPointJigsawErrorFilter.h
Go to the documentation of this file.
1 #ifndef QnetPointJigsawErrorFilter_h
2 #define QnetPointJigsawErrorFilter_h
3 
23 #include "QnetFilter.h"
24 
25 class QCheckBox;
26 class QLineEdit;
27 
28 namespace Isis {
53  Q_OBJECT
54 
55  public:
56  QnetPointJigsawErrorFilter(QnetNavTool *navTool, QWidget *parent = 0);
57  virtual void filter();
58 
59  private slots:
60  void clearEdit();
61 
62  private:
63  QCheckBox *m_lessThanCB;
64  QCheckBox *m_greaterThanCB;
65  QLineEdit *m_lessErrorEdit;
66  QLineEdit *m_greaterErrorEdit;
67 
68  };
69 };
70 
71 #endif
Defines the Jigsaw Error filter for the QnetNavTool's Points section.
virtual void filter()
Filters a list of points for points that have less than or greater than the entered bundle adjust err...
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
QnetPointJigsawErrorFilter(QnetNavTool *navTool, QWidget *parent=0)
Contructor for the Point Error filter.