29 lines
545 B
C++
29 lines
545 B
C++
#ifndef RECONSETTINGSDIALOG_H
|
|
#define RECONSETTINGSDIALOG_H
|
|
|
|
|
|
#include "dialogs/GUIFormBaseDialog.h"
|
|
|
|
class DicomSettingsArea;
|
|
class QLabel;
|
|
|
|
class ReconSettingsDialog : public GUIFormBaseDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ReconSettingsDialog(QWidget* aParent = nullptr, Qt::WindowFlags aFlag = Qt::WindowFlags());
|
|
~ReconSettingsDialog() override;
|
|
|
|
protected:
|
|
bool updateReferenceData() override;
|
|
|
|
private:
|
|
void initConfig();
|
|
|
|
private:
|
|
DicomSettingsArea* mSettingsArea;
|
|
QLabel* mErrorText;
|
|
};
|
|
|
|
#endif // RECONSETTINGSDIALOG_H
|