Chris@297: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@297: Chris@297: /* Chris@297: Sonic Visualiser Chris@297: An audio file viewer and annotation editor. Chris@297: Centre for Digital Music, Queen Mary, University of London. Chris@297: This file copyright 2007 QMUL. Chris@297: Chris@297: This program is free software; you can redistribute it and/or Chris@297: modify it under the terms of the GNU General Public License as Chris@297: published by the Free Software Foundation; either version 2 of the Chris@297: License, or (at your option) any later version. See the file Chris@297: COPYING included with this distribution for more information. Chris@297: */ Chris@297: Chris@1581: #ifndef SV_ALIGNMENT_MODEL_H Chris@1581: #define SV_ALIGNMENT_MODEL_H Chris@297: Chris@297: #include "Model.h" Chris@407: #include "PathModel.h" Chris@338: #include "base/RealTime.h" Chris@338: Chris@338: #include Chris@338: #include Chris@297: Chris@297: class SparseTimeValueModel; Chris@297: Chris@297: class AlignmentModel : public Model Chris@297: { Chris@297: Q_OBJECT Chris@297: Chris@297: public: Chris@297: AlignmentModel(Model *reference, Chris@297: Model *aligned, Chris@1688: SparseTimeValueModel *path); Chris@297: ~AlignmentModel(); Chris@297: Chris@1580: bool isOK() const override; Chris@1705: Chris@1705: void setError(QString error) { m_error = error; } Chris@1705: QString getError() const { return m_error; } Chris@1705: Chris@1580: sv_frame_t getStartFrame() const override; Chris@1580: sv_frame_t getEndFrame() const override; Chris@1580: sv_samplerate_t getSampleRate() const override; Chris@1580: bool isReady(int *completion = 0) const override; Chris@1671: int getCompletion() const override { Chris@1671: int c = 0; Chris@1671: (void)isReady(&c); Chris@1671: return c; Chris@1671: } Chris@1580: const ZoomConstraint *getZoomConstraint() const override; Chris@297: Chris@1580: QString getTypeName() const override { return tr("Alignment"); } Chris@345: Chris@297: const Model *getReferenceModel() const; Chris@297: const Model *getAlignedModel() const; Chris@297: Chris@1038: sv_frame_t toReference(sv_frame_t frame) const; Chris@1038: sv_frame_t fromReference(sv_frame_t frame) const; Chris@297: Chris@1016: void setPathFrom(SparseTimeValueModel *rawpath); Chris@407: void setPath(PathModel *path); Chris@407: Chris@1580: void toXml(QTextStream &stream, Chris@407: QString indent = "", Chris@1580: QString extraAttributes = "") const override; Chris@407: Chris@1679: QString toDelimitedDataString(QString, DataExportOptions, Chris@1679: sv_frame_t, sv_frame_t) const override { Chris@1679: return ""; Chris@1679: } Chris@1679: Chris@297: signals: Chris@297: void modelChanged(); Chris@1038: void modelChangedWithin(sv_frame_t startFrame, sv_frame_t endFrame); Chris@297: void completionChanged(); Chris@297: Chris@297: protected slots: Chris@297: void pathChanged(); Chris@1038: void pathChangedWithin(sv_frame_t startFrame, sv_frame_t endFrame); Chris@297: void pathCompletionChanged(); Chris@297: Chris@297: protected: Chris@297: Model *m_reference; // I don't own this Chris@297: Model *m_aligned; // I don't own this Chris@297: Chris@338: SparseTimeValueModel *m_rawPath; // I own this Chris@338: mutable PathModel *m_path; // I own this Chris@338: mutable PathModel *m_reversePath; // I own this Chris@323: bool m_pathBegun; Chris@297: bool m_pathComplete; Chris@1705: QString m_error; Chris@297: Chris@338: void constructPath() const; Chris@297: void constructReversePath() const; Chris@297: Chris@1038: sv_frame_t align(PathModel *path, sv_frame_t frame) const; Chris@297: }; Chris@297: Chris@297: #endif