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.
104 lines
2.6 KiB
104 lines
2.6 KiB
/* 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
|
|
*/
|
|
|
|
#include <noatun/conversion.h>
|
|
#include <kdebug.h>
|
|
#include <kiconloader.h>
|
|
#include <tdelocale.h>
|
|
#include <tdemessagebox.h>
|
|
#include <kprocess.h>
|
|
#include <kstandarddirs.h>
|
|
#include <tqframe.h>
|
|
#include <tqregexp.h>
|
|
#include <noatun/app.h>
|
|
#include "syna.h"
|
|
#include "synaescope.h"
|
|
|
|
extern "C" Plugin *create_plugin()
|
|
{
|
|
TDEGlobal::locale()->insertCatalogue("tippecanoe");
|
|
return new SynaeScope();
|
|
}
|
|
|
|
SynaeScope::SynaeScope()
|
|
: TQWidget(0, 0, WType_TopLevel | WStyle_DialogBorder | WRepaintNoErase | WMouseNoMask)
|
|
, StereoScope(50)
|
|
, Plugin()
|
|
{
|
|
setSamples(bufferSize);
|
|
mBuffer = new char[bufferSize * 16 * 2];
|
|
setFixedSize(320, 240);
|
|
setCaption(i18n("Tippecanoe - Noatun"));
|
|
setIcon(SmallIcon("noatun"));
|
|
show();
|
|
embed = new QXEmbed(this);
|
|
embed->move(0,0);
|
|
embed->resize(320, 240);
|
|
embed->show();
|
|
embed->setFocus();
|
|
}
|
|
|
|
SynaeScope::~SynaeScope()
|
|
{
|
|
connect(&process, TQT_SIGNAL(processExited(TDEProcess *)), this, TQT_SLOT(processExited(TDEProcess *)));
|
|
napp->pluginMenuRemove(pluginMenuItem);
|
|
}
|
|
|
|
void SynaeScope::init()
|
|
{
|
|
connect(&process, TQT_SIGNAL(receivedStdout(TDEProcess *, char *, int)), this, TQT_SLOT(read(TDEProcess *, char *, int)));
|
|
pluginMenuItem = napp->pluginMenuAdd(i18n("Toggle Tippecanoe"), TQT_TQOBJECT(this), TQT_SLOT(toggle(void)));
|
|
|
|
process << TDEStandardDirs::findExe("noatuntippecanoe.bin");
|
|
|
|
// Note that process.start() will fail if findExe fails, so there's no real need
|
|
// for two separate checks.
|
|
if(!process.start(TDEProcess::NotifyOnExit, (TDEProcess::Communication)(TDEProcess::Stdin | TDEProcess::Stdout)))
|
|
{
|
|
KMessageBox::error(0, i18n("Unable to start noatuntippecanoe.bin. Check your installation."));
|
|
unload();
|
|
}
|
|
else
|
|
start();
|
|
|
|
}
|
|
|
|
void SynaeScope::scopeEvent(float *left, float *right, int size)
|
|
{
|
|
if(!isHidden() && process.isRunning())
|
|
{
|
|
Conversion::convertStereo2FloatToI16le((unsigned long)size, left,
|
|
right, (unsigned char*)mBuffer);
|
|
|
|
process.writeStdin((char *)mBuffer, bufferSize*2);
|
|
}
|
|
}
|
|
|
|
void SynaeScope::read(TDEProcess *, char *buf, int)
|
|
{
|
|
TQString num = TQString::fromLatin1(buf);
|
|
num = num.left(num.find(TQRegExp("\\s")));
|
|
id = num.toInt();
|
|
embed->embed(id);
|
|
}
|
|
|
|
void SynaeScope::processExited(TDEProcess *)
|
|
{
|
|
unload();
|
|
}
|
|
|
|
void SynaeScope::toggle(void)
|
|
{
|
|
if(isHidden())
|
|
show();
|
|
else
|
|
hide();
|
|
}
|
|
|
|
#include "synaescope.moc"
|