settings implemented
This commit is contained in:
parent
06c99052df
commit
9e85e2892d
9 changed files with 284 additions and 2 deletions
21
src/gui/settingsdialog.h
Normal file
21
src/gui/settingsdialog.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef SETTINGS_DIALOG_H
|
||||
#define SETTINGS_DIALOG_H
|
||||
|
||||
#include "ui_settingsdialog.h"
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
class SettingsDialog : public QDialog
|
||||
{
|
||||
public:
|
||||
SettingsDialog(QWidget* parent = nullptr,
|
||||
Qt::WindowFlags f = Qt::WindowTitleHint | Qt::WindowSystemMenuHint);
|
||||
|
||||
public slots:
|
||||
void accept() override;
|
||||
|
||||
private:
|
||||
Ui::SettingsDialog ui_;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue