blob: 4479c650e451a79a9c23dfc3e57d44895ac7cc9d (
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 <pfh@yoyo.cc.monash.edu.au>
2001 Charles Samuels <charles@kde.org>
Copyright (C) 2001 Neil Stevens<multivac@fcmail.com>
this file is X11 source
*/
#ifndef SYNAESCOPE_H
#define SYNAESCOPE_H
#include <noatun/conversion.h>
#include "syna.h"
#include <noatun/plugin.h>
#include <kprocess.h>
#include <tqwidget.h>
#include <qxembed.h>
class SynaeScope : public TQWidget, public StereoScope, public Plugin
{
Q_OBJECT
TQ_OBJECT
public:
SynaeScope();
virtual ~SynaeScope();
void init();
private slots:
void processExited(KProcess *);
void toggle(void);
void read(KProcess *, char *, int);
protected:
virtual void scopeEvent(float *left, float *right, int bands);
private:
char *mBuffer;
static const int bufferSize=512;
KProcess process;
int pluginMenuItem;
QXEmbed *embed;
WId id;
};
#endif
|