diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-09-05 17:53:43 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-09-05 17:53:43 +0000 |
| commit | 4abfc3230c456053eaf03bd47897612be9066e8e (patch) | |
| tree | a32552ac229c1d61e8b4e9830db2e19e75163eb5 /src/plugins/Output/wasapi/settingsdialog.h | |
| parent | 89162c2e2e6141ac5df7494e576f623b20830ce0 (diff) | |
| download | qmmp-4abfc3230c456053eaf03bd47897612be9066e8e.tar.gz qmmp-4abfc3230c456053eaf03bd47897612be9066e8e.tar.bz2 qmmp-4abfc3230c456053eaf03bd47897612be9066e8e.zip | |
wasapi: added feature to change device
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7450 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Output/wasapi/settingsdialog.h')
| -rw-r--r-- | src/plugins/Output/wasapi/settingsdialog.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/plugins/Output/wasapi/settingsdialog.h b/src/plugins/Output/wasapi/settingsdialog.h new file mode 100644 index 000000000..017dbb343 --- /dev/null +++ b/src/plugins/Output/wasapi/settingsdialog.h @@ -0,0 +1,42 @@ +/***************************************************************************
+ * Copyright (C) 2017 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>
+#include "ui_settingsdialog.h"
+
+class SettingsDialog : public QDialog
+{
+ Q_OBJECT
+public:
+ explicit SettingsDialog(QWidget *parent = 0);
+
+public slots:
+ void accept();
+
+private:
+ void enumDevices();
+ Ui::SettingsDialog m_ui;
+
+};
+
+#endif // SETTINGSDIALOG_H
|
