aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/gme/settingsdialog.cpp
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.cpp
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.cpp')
-rw-r--r--src/plugins/Input/gme/settingsdialog.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/plugins/Input/gme/settingsdialog.cpp b/src/plugins/Input/gme/settingsdialog.cpp
new file mode 100644
index 000000000..27f448ed1
--- /dev/null
+++ b/src/plugins/Input/gme/settingsdialog.cpp
@@ -0,0 +1,34 @@
+/***************************************************************************
+ * 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. *
+ ***************************************************************************/
+
+#include "settingsdialog.h"
+#include "ui_settingsdialog.h"
+
+SettingsDialog::SettingsDialog(QWidget *parent) :
+ QDialog(parent),
+ m_ui(new Ui::SettingsDialog)
+{
+ m_ui->setupUi(this);
+}
+
+SettingsDialog::~SettingsDialog()
+{
+ delete m_ui;
+}