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