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