annotate transform/RealTimePluginTransform.h @ 76:af2725b5d6fe

* Implement harmonic cursor in spectrogram * Implement layer export. This doesn't quite do the right thing for the SV XML layer export yet -- it doesn't include layer display information, so when imported, it only creates an invisible model. Could also do with fixing CSV file import so as to work correctly for note and text layers.
author Chris Cannam
date Mon, 10 Apr 2006 17:22:59 +0000
parents 4d59dc469b0f
children
rev   line source
Chris@60 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@60 2
Chris@60 3 /*
Chris@60 4 Sonic Visualiser
Chris@60 5 An audio file viewer and annotation editor.
Chris@60 6 Centre for Digital Music, Queen Mary, University of London.
Chris@60 7 This file copyright 2006 Chris Cannam.
Chris@60 8
Chris@60 9 This program is free software; you can redistribute it and/or
Chris@60 10 modify it under the terms of the GNU General Public License as
Chris@60 11 published by the Free Software Foundation; either version 2 of the
Chris@60 12 License, or (at your option) any later version. See the file
Chris@60 13 COPYING included with this distribution for more information.
Chris@60 14 */
Chris@60 15
Chris@60 16 #ifndef _REAL_TIME_PLUGIN_TRANSFORM_H_
Chris@60 17 #define _REAL_TIME_PLUGIN_TRANSFORM_H_
Chris@60 18
Chris@60 19 #include "Transform.h"
Chris@60 20 #include "RealTimePluginInstance.h"
Chris@60 21
Chris@60 22 class DenseTimeValueModel;
Chris@60 23
Chris@60 24 class RealTimePluginTransform : public Transform
Chris@60 25 {
Chris@60 26 public:
Chris@60 27 RealTimePluginTransform(Model *inputModel,
Chris@60 28 QString plugin,
Chris@64 29 int channel,
Chris@60 30 QString configurationXml = "",
Chris@63 31 QString units = "",
Chris@60 32 int output = 0);
Chris@60 33 virtual ~RealTimePluginTransform();
Chris@60 34
Chris@60 35 protected:
Chris@60 36 virtual void run();
Chris@60 37
Chris@60 38 RealTimePluginInstance *m_plugin;
Chris@64 39 int m_channel;
Chris@60 40 int m_outputNo;
Chris@60 41
Chris@60 42 // just casts
Chris@60 43 DenseTimeValueModel *getInput();
Chris@60 44 };
Chris@60 45
Chris@60 46 #endif
Chris@60 47