aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/gme/settingsdialog.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-06-16 19:10:42 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-06-16 19:10:42 +0000
commit5fe7e5d6ec417c44d39431d5839dd50a6d270bd6 (patch)
treea69d3f50e88a8fcf209d0d835c1be1be376a5153 /src/plugins/Input/gme/settingsdialog.h
parentf5ddb47dd05f020bf91582b5654d51f6f8ec5098 (diff)
downloadqmmp-5fe7e5d6ec417c44d39431d5839dd50a6d270bd6.tar.gz
qmmp-5fe7e5d6ec417c44d39431d5839dd50a6d270bd6.tar.bz2
qmmp-5fe7e5d6ec417c44d39431d5839dd50a6d270bd6.zip
gme: added settings form
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5165 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/gme/settingsdialog.h')
-rw-r--r--src/plugins/Input/gme/settingsdialog.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/plugins/Input/gme/settingsdialog.h b/src/plugins/Input/gme/settingsdialog.h
new file mode 100644
index 000000000..6e49bc6cb
--- /dev/null
+++ b/src/plugins/Input/gme/settingsdialog.h
@@ -0,0 +1,42 @@
+/***************************************************************************
+ * Copyright (C) 2015 by Ilya Kotov *
+ * forkotov02@hotmail.ru *
+ * *
+ * 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 2 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, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#ifndef SETTINGSDIALOG_H
+#define SETTINGSDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+class SettingsDialog;
+}
+
+class SettingsDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit SettingsDialog(QWidget *parent = 0);
+ ~SettingsDialog();
+
+private:
+ Ui::SettingsDialog *m_ui;
+};
+
+#endif // SETTINGSDIALOG_H