Chris@49: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@0: Chris@0: /* Chris@52: Sonic Visualiser Chris@52: An audio file viewer and annotation editor. Chris@52: Centre for Digital Music, Queen Mary, University of London. Chris@52: This file copyright 2006 Chris Cannam. Chris@0: Chris@52: This program is free software; you can redistribute it and/or Chris@52: modify it under the terms of the GNU General Public License as Chris@52: published by the Free Software Foundation; either version 2 of the Chris@52: License, or (at your option) any later version. See the file Chris@52: COPYING included with this distribution for more information. Chris@0: */ Chris@0: Chris@0: #ifndef _TRANSFORM_H_ Chris@0: #define _TRANSFORM_H_ Chris@0: Chris@0: #include Chris@0: Chris@0: #include "base/Model.h" Chris@0: Chris@0: typedef QString TransformName; Chris@0: Chris@0: /** Chris@0: * A Transform turns one data model into another. Chris@0: * Chris@0: * Typically in this application, a Transform might have a Chris@0: * DenseTimeValueModel as its input (e.g. an audio waveform) and a Chris@0: * SparseOneDimensionalModel (e.g. detected beats) as its output. Chris@0: * Chris@0: * The Transform typically runs in the background, as a separate Chris@0: * thread populating the output model. The model is available to the Chris@0: * user of the Transform immediately, but may be initially empty until Chris@0: * the background thread has populated it. Chris@0: */ Chris@0: Chris@0: class Transform : public QThread Chris@0: { Chris@0: public: Chris@0: virtual ~Transform(); Chris@0: Chris@0: Model *getInputModel() { return m_input; } Chris@0: Model *getOutputModel() { return m_output; } Chris@0: Model *detachOutputModel() { m_detached = true; return m_output; } Chris@0: Chris@0: protected: Chris@0: Transform(Model *m); Chris@0: Chris@0: Model *m_input; // I don't own this Chris@0: Model *m_output; // I own this, unless... Chris@0: bool m_detached; // ... this is true. Chris@0: bool m_deleting; Chris@0: }; Chris@0: Chris@0: #endif