Vespucci  1.0.0
classicalleastsquaresdialog.h
Go to the documentation of this file.
1 #ifndef CLASSICALLEASTSQUARESDIALOG_H
2 #define CLASSICALLEASTSQUARESDIALOG_H
3 
4 #include <QDialog>
7 
8 namespace Ui {
10 }
11 
12 class ClassicalLeastSquaresDialog : public QDialog
13 {
14  Q_OBJECT
15 
16 public:
17  explicit ClassicalLeastSquaresDialog(QWidget *parent, QSharedPointer<VespucciWorkspace> ws, QSharedPointer<AbstractDataAnalyzer> analyzer);
19 
20 public slots:
21  void MatrixSelected(QStringList keys);
22 private slots:
23  void on_buttonBox_accepted();
24 
25  void on_selectPushButton_clicked();
26 
27 private:
28  Ui::ClassicalLeastSquaresDialog *ui;
29  MatrixSelectionDialog *matrix_selection_dialog_;
30  QSharedPointer<VespucciWorkspace> workspace_;
31  QSharedPointer<AbstractDataAnalyzer> analyzer_;
32  QStringList matrix_keys_;
33 };
34 
35 #endif // CLASSICALLEASTSQUARESDIALOG_H
Definition: ahcadialog.h:26