USGS

Isis 3.0 Object Programmers' Reference

Home

QnetPointGoodnessFilter.h
1 #ifndef QnetPointGoodnessFilter_h
2 #define QnetPointGoodnessFilter_h
3 
4 #include "QnetFilter.h"
5 
6 class QCheckBox;
7 class QLineEdit;
8 
9 namespace Isis {
36  Q_OBJECT
37 
38  public:
39  QnetPointGoodnessFilter (QnetNavTool *navTool, QWidget *parent = 0);
40  virtual void filter();
41 
42  public slots:
43 
44  private:
45  QCheckBox *m_lessThanCB;
46  QCheckBox *m_greaterThanCB;
47  QLineEdit *m_maxValueEdit;
48  QLineEdit *m_minValueEdit;
49 
50  private slots:
51  void clearEdit();
52  };
53 };
54 
55 #endif