-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathControl.h
executable file
·67 lines (42 loc) · 1.11 KB
/
Control.h
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#ifndef CONTROL_H
#define CONTROL_H
#include <QObject>
#include "LsPaConnection.h"
#include "SaveThread.h"
#include <QAction>
#include <QList>
#include <QMenu>
#include <QSignalMapper>
#include <QSystemTrayIcon>
class Control : public QObject
{
Q_OBJECT
signals:
void sendDeviceList(QStringList deviceList);
void signalRecordingStarted();
public:
Control();
~Control();
void setPortAudioRec(LsPaConnection* rec) { this->rec = rec; this->createMenu(); }
SaveThread* getSaveThread() { return this->save; }
public slots:
void closeApplication();
void deviceListWanted();
void startRecording(QString deviceName, QString fileName);
private slots:
void openStreamSelectFile(QString name);
private:
void createMenu();
void openStream(QString name, QString fileName);
void trayIconClicked(QSystemTrayIcon::ActivationReason reason);
private:
QSystemTrayIcon sysIcon;
QSignalMapper signalMapper;
QMenu trayMenu;
QMenu menuList;
QList<QAction*> actionsList;
QAction end;
LsPaConnection* rec;
SaveThread* save;
};
#endif // CONTROL_H