summaryrefslogtreecommitdiffstats
path: root/include-gpl/gui/preferencesdialog.h
blob: 86247f325e74a9bc058e3440b1216b7e2d0e2ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef INCLUDE_PREFERENCESDIALOG_H
#define INCLUDE_PREFERENCESDIALOG_H

#include <QDialog>

class AudioDeviceInfo;

namespace Ui {
	class PreferencesDialog;
}

class PreferencesDialog : public QDialog {
	Q_OBJECT

public:
	explicit PreferencesDialog(AudioDeviceInfo* audioDeviceInfo, QWidget* parent = NULL);
	~PreferencesDialog();

private:
	enum Audio {
		ATDefault,
		ATInterface,
		ATDevice
	};

	Ui::PreferencesDialog* ui;

	AudioDeviceInfo* m_audioDeviceInfo;

private slots:
	void accept();
};

#endif // INCLUDE_PREFERENCESDIALOG_H