Isis Developer Reference
QnetPointMeasureFilter.h
Go to the documentation of this file.
1#ifndef QnetPointMeasureFilter_h
2#define QnetPointMeasureFilter_h
3
4#include "QnetFilter.h"
5
6class QCheckBox;
7class QGroupBox;
8class QRadioButton;
9
10namespace Isis {
48 Q_OBJECT
49
50 public:
51 QnetPointMeasureFilter(QnetNavTool *navTool, QWidget *parent = 0);
52 virtual void filter();
53
54 private:
55 bool MeasureTypeMatched(int cmType);
56
57 QGroupBox *m_measureType;
58 QCheckBox *m_candidate;
59 QCheckBox *m_manual;
60 QCheckBox *m_registeredPixel;
61 QCheckBox *m_registeredSubPixel;
62
63 QGroupBox *m_ignoreStatus;
64 QRadioButton *m_ignored;
65 QRadioButton *m_notIgnored;
66
67 QGroupBox *m_editLockStatus;
68 QRadioButton *m_editLocked;
69 QRadioButton *m_notEditLocked;
70 };
71};
72
73#endif
Definition QnetFilter.h:16
Qnet Navigation Tool.
Definition QnetNavTool.h:121
Defines the Measure Properties filter for the QnetNavTool's Points section.
Definition QnetPointMeasureFilter.h:47
virtual void filter()
Filters a list of points for points that have at least one measure of the selected type(s).
Definition QnetPointMeasureFilter.cpp:114
QnetPointMeasureFilter(QnetNavTool *navTool, QWidget *parent=0)
Contructor for the Point Measure filter.
Definition QnetPointMeasureFilter.cpp:31
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16