28 lines
538 B
C
28 lines
538 B
C
|
|
#ifndef MPPSSETTINGSDIALOG_H
|
||
|
|
#define MPPSSETTINGSDIALOG_H
|
||
|
|
|
||
|
|
#include "dialogs/GUIFormBaseDialog.h"
|
||
|
|
|
||
|
|
class DicomSettingsArea;
|
||
|
|
class QLabel;
|
||
|
|
|
||
|
|
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;
|
||
|
|
QLabel* mErrorText;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // MPPSSETTINGSDIALOG_H
|