Refactor system page in GUI Alpha.
This commit is contained in:
27
src/dialogs/MppsSettingsDialog.h
Normal file
27
src/dialogs/MppsSettingsDialog.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user