-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoverlaywidget.h
More file actions
41 lines (28 loc) · 907 Bytes
/
overlaywidget.h
File metadata and controls
41 lines (28 loc) · 907 Bytes
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
35
36
37
38
39
40
41
#ifndef OVERLAYWIDGET_H
#define OVERLAYWIDGET_H
#include <QtWidgets/QWidget>
#include "AudioFunctions.h"
namespace Ui {
class OverlayWidget;
}
class OverlayWidget : public QWidget
{
Q_OBJECT
public:
explicit OverlayWidget(QWidget *parent = 0);
~OverlayWidget();
private slots:
void on_pushButton_quit_clicked();
void on_pushButton_refresh_clicked();
void on_comboBox_output_wearinghmd_currentIndexChanged(int index);
void on_comboBox_output_notwearinghmd_currentIndexChanged(int index);
void on_comboBox_input_wearinghmd_currentIndexChanged(int index);
void on_comboBox_input_notwearinghmd_currentIndexChanged(int index);
void on_pushButton_save_clicked();
void on_pushButton_clear_settings_clicked();
private:
Ui::OverlayWidget *ui;
QList<AudioDeviceInfo> outputDevices;
QList<AudioDeviceInfo> inputDevices;
};
#endif // OVERLAYWIDGET_H