From 84da08d7b7fcda12c85caeb5a10b4903770a6f69 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- noatun-plugins/tippercanoe/synaescope.h | 46 +++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 noatun-plugins/tippercanoe/synaescope.h (limited to 'noatun-plugins/tippercanoe/synaescope.h') diff --git a/noatun-plugins/tippercanoe/synaescope.h b/noatun-plugins/tippercanoe/synaescope.h new file mode 100644 index 0000000..da6855b --- /dev/null +++ b/noatun-plugins/tippercanoe/synaescope.h @@ -0,0 +1,46 @@ +/* Synaescope - a pretty noatun visualization (based on P. Harrison's Synaesthesia) + Copyright (C) 1997 Paul Francis Harrison + 2001 Charles Samuels + Copyright (C) 2001 Neil Stevens + + this file is X11 source + */ + +#ifndef SYNAESCOPE_H +#define SYNAESCOPE_H + +#include +#include "syna.h" +#include +#include +#include +#include + +class SynaeScope : public QWidget, public StereoScope, public Plugin +{ +Q_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 -- cgit v1.2.1