summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/tippercanoe/synaescope.h
blob: 5270f9bf1f3f591bf7bcf8c7cc74d4edb444b40f (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
  

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