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