/* 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 */ #include #include #include #include #include #include #include #include #include #include #include "syna.h" #include "synaescope.h" extern "C" { KDE_EXPORT 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"