From 40de7d18bb5e91c049947344b8c632c40989ad10 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Mon, 5 Mar 2018 15:35:32 +0100 Subject: Added poi-config - view default configuration --- config/settingsdialog.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 config/settingsdialog.h (limited to 'config/settingsdialog.h') diff --git a/config/settingsdialog.h b/config/settingsdialog.h new file mode 100644 index 0000000..82cd1be --- /dev/null +++ b/config/settingsdialog.h @@ -0,0 +1,31 @@ +/* + * This file is part of smolbote. It's copyrighted by the contributors recorded + * in the version control history of the file, available from its original + * location: https://neueland.iserlohn-fortress.net/smolbote.hg + * + * SPDX-License-Identifier: GPL-3.0 + */ + +#ifndef SETTINGSDIALOG_H +#define SETTINGSDIALOG_H + +#include "../src/configuration.h" +#include +#include +#include + +class SettingsDialog : public QMainWindow +{ + Q_OBJECT + +public: + explicit SettingsDialog(QWidget *parent = nullptr); + ~SettingsDialog() override; + +private: + QMenu settingsMenu; + QTreeWidget treeWidget; + Configuration config; +}; + +#endif // SETTINGSDIALOG_H -- cgit v1.2.1