-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfxwidget.h
More file actions
46 lines (34 loc) · 804 Bytes
/
fxwidget.h
File metadata and controls
46 lines (34 loc) · 804 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
42
43
44
45
46
#ifndef FXWIDGET_H
#define FXWIDGET_H
#include <QWidget>
#include <QString>
#include <QVector>
class FxWidget : public QWidget
{
Q_OBJECT
public:
FxWidget(QWidget *parent = nullptr);
~FxWidget();
QVector<QString> fxList();
QPair<int, QVector<QString>> fxKindList();
int updateInterval();
bool isRunning();
bool isCreated();
protected:
void paintEvent(QPaintEvent *event);
void keyPressEvent(QKeyEvent *event);
private:
class Priv;
Priv *d;
signals:
void statusUpdated();
void paramsUpdated();
public slots:
void onTimerUpdate();
void onEffectSelected(int fx);
void onPlayPausePressed();
void onIncreaseIntervalPressed();
void onDecreaseIntervalPressed();
void onFxKindSelected(int kind);
};
#endif // FXWIDGET_H