blob: d8ff60e1e44222787873ddeb675d7f03f7cea102 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* Synaescope - a pretty noatun visualization (based on P. Harrison's Synaesthesia)
Copyright (C) 1997 Paul Francis Harrison <[email protected]>
2001 Charles Samuels <[email protected]>
Copyright (C) 2001 Neil Stevens<[email protected]>
this file is X11 source
*/
#ifndef SYNAESCOPE_H
#define SYNAESCOPE_H
#include <noatun/conversion.h>
#include "syna.h"
#include <noatun/plugin.h>
#include <tdeprocess.h>
#include <tqwidget.h>
#include <qxembed.h>
class SynaeScope : public TQWidget, public StereoScope, public Plugin
{
TQ_OBJECT
public:
SynaeScope();
virtual ~SynaeScope();
void init();
private slots:
void processExited(TDEProcess *);
void toggle(void);
void read(TDEProcess *, char *, int);
protected:
virtual void scopeEvent(float *left, float *right, int bands);
private:
char *mBuffer;
static const int bufferSize=512;
TDEProcess process;
int pluginMenuItem;
QXEmbed *embed;
WId id;
};
#endif
|