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