Isis 3 Programmer Reference
QnetPointRegistrationErrorFilter.h
1#ifndef QnetPointRegistrationErrorFilter_h
2#define QnetPointRegistrationErrorFilter_h
3
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "QnetFilter.h"
13
14class QCheckBox;
15class QLineEdit;
16
17namespace Isis {
18 class ControlPoint;
19
44 Q_OBJECT
45
46 public:
48 virtual void filter();
49
50 private slots:
51 void clearEdit();
52
53 private:
54 QCheckBox *m_lessThanCB;
55 QCheckBox *m_greaterThanCB;
56 QLineEdit *m_lessErrorEdit;
57 QLineEdit *m_greaterErrorEdit;
58 };
59};
60
61#endif
Qnet Navigation Tool.
Defines the Registration Error filter for the QnetNavTool's Points section.
QnetPointRegistrationErrorFilter(QnetNavTool *navTool, QWidget *parent=0)
Contructor for the Point Registration Error filter.
virtual void filter()
Filters a list of points for points that have less than or greater than the entered registration erro...
void clearEdit()
Clears and disables the corresponding line edit if the "less than" or "greater than" checkBox is "unc...
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16