You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
956 B
48 lines
956 B
/* 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
|