Isis Developer Reference
QnetPointJigsawErrorFilter.h
Go to the documentation of this file.
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
Definition QnetFilter.h:16
Qnet Navigation Tool.
Definition QnetNavTool.h:121
Defines the Jigsaw Error filter for the QnetNavTool's Points section.
Definition QnetPointJigsawErrorFilter.h:41
virtual void filter()
Filters a list of points for points that have less than or greater than the entered bundle adjust err...
Definition QnetPointJigsawErrorFilter.cpp:92
QnetPointJigsawErrorFilter(QnetNavTool *navTool, QWidget *parent=0)
Contructor for the Point Error filter.
Definition QnetPointJigsawErrorFilter.cpp:34
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16