Isis Developer Reference
JigsawSetupDialog.h
Go to the documentation of this file.
1#ifndef JigsawSetupDialog_h
2#define JigsawSetupDialog_h
3
4#include <QDialog>
5
6#include "BundleSettings.h"
7
8namespace Ui {
10}
11
12class QComboBox;
13class QItemSelection;
14class QTableWidget;
15class QTableWidgetItem;
16
17namespace Isis {
19 class Project;
20 class ProjectItem;
21 class Control;
22
97 class JigsawSetupDialog : public QDialog {
98 Q_OBJECT
99
100 public:
101// explicit JigsawSetupDialog(Project* project, QWidget *parent = 0);
102 explicit JigsawSetupDialog(Project* project,
103 bool useLastSettings = true,
104 bool readOnly = false,
105 QWidget *parent = 0);
107
108 Control *selectedControl(); // TODO: return const references ???
109 QString selectedControlName(); // TODO: return const references ???
110 QString outputControlName(); // TODO: return const references ???
111 BundleSettingsQsp bundleSettings(); // TODO: return const references ???
112
113 void loadSettings(const BundleSettingsQsp settings);
114 void selectControl(const QString &controlName);
115
116 private slots:
117
118 void on_pointRadiusSigmaCheckBox_toggled(bool checked);
119 //void on_projectItemSelectionChanged(const QList<ProjectItem *> selectedItems);
120 //void on_outlierRejectionCheckBox_toggled(bool checked);
121
122 // general tab
123 // void on_positionComboBox_currentIndexChanged(int index);
124 // void on_pointingComboBox_currentIndexChanged(int index);
125 void on_inputControlNetCombo_currentTextChanged(const QString &arg1);
126
127 // general tab - line edit validators
128 void on_pointLatitudeSigmaLineEdit_textChanged(const QString &arg1);
129 void on_pointLongitudeSigmaLineEdit_textChanged(const QString &arg1);
130 void on_pointRadiusSigmaLineEdit_textChanged(const QString &arg1);
131
132 void on_outlierRejectionMultiplierLineEdit_textChanged(const QString &arg1);
133 void on_maximumLikelihoodModel1QuantileLineEdit_textChanged(const QString &arg1);
134 void on_maximumLikelihoodModel2QuantileLineEdit_textChanged(const QString &arg1);
135 void on_maximumLikelihoodModel3QuantileLineEdit_textChanged(const QString &arg1);
136
137 void on_sigma0ThresholdLineEdit_textChanged(const QString &arg1);
138 void on_maximumIterationsLineEdit_textChanged(const QString &arg1);
139
140 // general tab - outlier rejection exclusivity lock/unlocks
141 void on_maximumLikelihoodModel1ComboBox_currentIndexChanged(int index);
142 void on_maximumLikelihoodModel2ComboBox_currentIndexChanged(int index);
143 void on_maximumLikelihoodModel3ComboBox_currentIndexChanged(int index);
144 void on_outlierRejectionCheckBox_stateChanged(int arg1);
145
146 // target body tab
147 void on_poleRaCheckBox_stateChanged(int arg1);
148 void on_poleRaVelocityCheckBox_stateChanged(int arg1);
149 void on_poleDecCheckBox_stateChanged(int arg1);
150 void on_poleDecVelocityCheckBox_stateChanged(int arg1);
151 void on_spinRateCheckBox_stateChanged(int arg1);
152 void on_primeMeridianOffsetCheckBox_stateChanged(int arg1);
153 void on_radiiButtonGroupClicked(int arg1);
154 void on_aRadiusLineEdit_textChanged(const QString &arg1);
155 void on_targetBodyComboBox_currentIndexChanged(int index);
156 void on_spkSolveDegreeSpinBox_valueChanged(int arg1);
157 void on_ckSolveDegreeSpinBox_valueChanged(int arg1);
158 void on_rightAscensionLineEdit_textChanged(const QString &arg1);
159 void on_declinationLineEdit_textChanged(const QString &arg1);
160 void on_rightAscensionVelocityLineEdit_textChanged(const QString &arg1);
161 void on_declinationVelocityLineEdit_textChanged(const QString &arg1);
162 void on_spinRateLineEdit_textChanged(const QString &arg1);
163 void on_primeMeridianOffsetLineEdit_textChanged(const QString &arg1);
164
165 void on_applySettingsPushButton_clicked();
166
167 void on_positionComboBox_currentIndexChanged(const QString &arg1);
168 void on_pointingComboBox_currentIndexChanged(const QString &arg1);
169
170 void updateSolveSettingsSigmaTables(const QComboBox *solveOptionComboBox,
171 QTableWidget *table);
172 void validateSigmaValue(QTableWidgetItem *);
173 void validateSigmaTables();
174
175
176 public slots:
177 void slotTextChanged(const QString &text);
178 void checkIsValid();
179 void treeViewSelectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
180
181
182
183 private:
184 void makeReadOnly();
185 void fillFromSettings(const BundleSettingsQsp settings);
186 void showTargetParametersGroupBox();
187 void hideTargetParametersGroupBox();
188 void updateBundleObservationSolveSettings(BundleObservationSolveSettings &boss);
189
190 void createObservationSolveSettingsTreeView();
191
192 private:
193 Ui::JigsawSetupDialog *m_ui;
194 Project *m_project;
195 BundleSettingsQsp m_bundleSettings;
196 };
197};
198#endif // JigsawSetupDialog_h
This class is used to modify and manage solve settings for 1 to many BundleObservations.
Definition BundleObservationSolveSettings.h:82
This represents an ISIS control net in a project-based GUI interface.
Definition Control.h:66
Definition JigsawSetupDialog.h:97
QString selectedControlName()
Definition JigsawSetupDialog.cpp:735
void checkIsValid()
Definition JigsawSetupDialog.cpp:1121
Control * selectedControl()
Definition JigsawSetupDialog.cpp:725
~JigsawSetupDialog()
Definition JigsawSetupDialog.cpp:310
void slotTextChanged(const QString &text)
Definition JigsawSetupDialog.cpp:1130
void treeViewSelectionChanged(const QItemSelection &selected, const QItemSelection &deselected)
Definition JigsawSetupDialog.cpp:1735
void loadSettings(const BundleSettingsQsp settings)
Loads the passed bundle settings into the setup dialog.
Definition JigsawSetupDialog.cpp:691
QString outputControlName()
Definition JigsawSetupDialog.cpp:891
void selectControl(const QString &controlName)
Selects a control in the control network combo box by trying to find an item with the matching name.
Definition JigsawSetupDialog.cpp:705
BundleSettingsQsp bundleSettings()
Definition JigsawSetupDialog.cpp:514
JigsawSetupDialog(Project *project, bool useLastSettings=true, bool readOnly=false, QWidget *parent=0)
Definition JigsawSetupDialog.cpp:32
The main project for ipce.
Definition Project.h:289
Represents an item of a ProjectItemModel in Qt's model-view framework.
Definition ProjectItem.h:134
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16
Definition JigsawRunWidget.h:15