2013-03-03 22:24:41 +01:00
|
|
|
// AnalysisParamsDialog class definition
|
|
|
|
//
|
|
|
|
// The analysis parameters dialog
|
|
|
|
//
|
|
|
|
// QATSH Copyright 2009 Jean-Philippe MEURET <jpmeuret@free.fr>
|
|
|
|
|
|
|
|
#ifndef AnalysisParamsDialog_h
|
|
|
|
#define AnalysisParamsDialog_h
|
|
|
|
|
2013-04-20 18:33:09 +02:00
|
|
|
#include <QDialog>
|
2013-03-03 22:24:41 +01:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class AnalysisParamsDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class IATSAnalysis;
|
|
|
|
|
|
|
|
class AnalysisParamsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_DISABLE_COPY(AnalysisParamsDialog)
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
explicit AnalysisParamsDialog(QWidget *parent = 0);
|
|
|
|
virtual ~AnalysisParamsDialog();
|
|
|
|
|
|
|
|
IATSAnalysis* analysisParams();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual void changeEvent(QEvent *pqEvent);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
virtual void accept();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Ui::AnalysisParamsDialog *_pui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // AnalysisParamsDialog_h
|