29 lines
453 B
C++
29 lines
453 B
C++
#ifndef CONFIGURATIONDIALOG_H
|
|
#define CONFIGURATIONDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "configurationmanager.h"
|
|
|
|
namespace Ui {
|
|
class ConfigurationDialog;
|
|
}
|
|
|
|
class ConfigurationDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigurationDialog(QWidget *parent = nullptr);
|
|
~ConfigurationDialog();
|
|
|
|
private:
|
|
Ui::ConfigurationDialog *ui;
|
|
ConfigurationManager mng;
|
|
|
|
void RefreshField();
|
|
|
|
};
|
|
|
|
#endif // CONFIGURATIONDIALOG_H
|