aboutsummaryrefslogtreecommitdiff
path: root/lib/settings/settingsdialog.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-12-11 21:57:25 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-12-11 21:57:25 +0100
commit6cf244277a5ba8434b85d2b9a861ceed1c6dfb88 (patch)
tree4bc3804b36d0d3e85139501bd2fb0bae97a71cc0 /lib/settings/settingsdialog.h
parentSimple filterlist (diff)
downloadsmolbote-6cf244277a5ba8434b85d2b9a861ceed1c6dfb88.tar.xz
Autogenerating settings dialog
Diffstat (limited to 'lib/settings/settingsdialog.h')
-rw-r--r--lib/settings/settingsdialog.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/lib/settings/settingsdialog.h b/lib/settings/settingsdialog.h
new file mode 100644
index 0000000..72b704c
--- /dev/null
+++ b/lib/settings/settingsdialog.h
@@ -0,0 +1,46 @@
+/*******************************************************************************
+ **
+ ** nyamp: yet another media player
+ ** Copyright (C) 2017 Aqua-sama
+ **
+ ** This program is free software: you can redistribute it and/or modify
+ ** it under the terms of the GNU General Public License as published by
+ ** the Free Software Foundation, either version 3 of the License, or
+ ** (at your option) any later version.
+ **
+ ** This program is distributed in the hope that it will be useful,
+ ** but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ** GNU General Public License for more details.
+ **
+ ** You should have received a copy of the GNU General Public License
+ ** along with this program. If not, see <http://www.gnu.org/licenses/>.
+ **
+ ******************************************************************************/
+
+#ifndef SETTINGSDIALOG_H
+#define SETTINGSDIALOG_H
+
+#include <QDialog>
+#include <memory>
+
+namespace Ui {
+class SettingsDialog;
+}
+
+class Configuration;
+class SettingsDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit SettingsDialog(std::shared_ptr<Configuration> &settings, QWidget *parent = nullptr);
+ ~SettingsDialog();
+
+private:
+ Ui::SettingsDialog *ui;
+};
+
+[[nodiscard]] QWidget *widgetForGroup(std::shared_ptr<Configuration> &settings, const std::string &group, QWidget *parent);
+
+#endif // SETTINGSDIALOG_H