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
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#ifndef FFRS_H
#define FFRS_H
#include <noatun/pref.h>
#include <noatun/plugin.h>
class View : public QWidget
{
Q_OBJECT
public:
View(int width, int height, int block, int unblock, TQColor front, TQColor back, int channel);
~View();
void draw(float intensity);
virtual void mouseMoveEvent(TQMouseEvent *e);
virtual void mousePressEvent(TQMouseEvent *e);
virtual void mouseReleaseEvent(TQMouseEvent *e);
private:
int units;
TQColor fg, bg;
bool moving;
TQPoint mMousePoint;
int mChannel;
};
class FFRSPrefs;
class FFRS : public TQObject, public Plugin, public StereoScope
{
Q_OBJECT
public:
FFRS();
~FFRS();
virtual void scopeEvent(float *left, float *right, int len);
public slots:
void changed();
private:
View *dpyleft, *dpyright;
FFRSPrefs *prefs;
};
class KIntNumInput;
class KColorButton;
class FFRSPrefs : public CModule
{
Q_OBJECT
public:
FFRSPrefs( TQObject *parent );
virtual void save();
int width();
int height();
int fgblock();
int bgblock();
int rate();
TQColor bgcolor();
TQColor fgcolor();
signals:
void changed();
private:
KIntNumInput *mWidth, *mHeight, *mFgblock, *mBgblock, *mRate;
KColorButton *mBgcolor, *mFgcolor;
};
#endif
|