annotate data/model/AlignmentModel.h @ 1697:c077a97d055f single-point

Windows build fixes
author Chris Cannam
date Wed, 01 May 2019 21:39:37 +0100
parents d08b560102a1
children 28f9ff7864c6
rev   line source
Chris@297 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@297 2
Chris@297 3 /*
Chris@297 4 Sonic Visualiser
Chris@297 5 An audio file viewer and annotation editor.
Chris@297 6 Centre for Digital Music, Queen Mary, University of London.
Chris@297 7 This file copyright 2007 QMUL.
Chris@297 8
Chris@297 9 This program is free software; you can redistribute it and/or
Chris@297 10 modify it under the terms of the GNU General Public License as
Chris@297 11 published by the Free Software Foundation; either version 2 of the
Chris@297 12 License, or (at your option) any later version. See the file
Chris@297 13 COPYING included with this distribution for more information.
Chris@297 14 */
Chris@297 15
Chris@1581 16 #ifndef SV_ALIGNMENT_MODEL_H
Chris@1581 17 #define SV_ALIGNMENT_MODEL_H
Chris@297 18
Chris@297 19 #include "Model.h"
Chris@407 20 #include "PathModel.h"
Chris@338 21 #include "base/RealTime.h"
Chris@338 22
Chris@338 23 #include <QString>
Chris@338 24 #include <QStringList>
Chris@297 25
Chris@297 26 class SparseTimeValueModel;
Chris@297 27
Chris@297 28 class AlignmentModel : public Model
Chris@297 29 {
Chris@297 30 Q_OBJECT
Chris@297 31
Chris@297 32 public:
Chris@297 33 AlignmentModel(Model *reference,
Chris@297 34 Model *aligned,
Chris@1688 35 SparseTimeValueModel *path);
Chris@297 36 ~AlignmentModel();
Chris@297 37
Chris@1580 38 bool isOK() const override;
Chris@1580 39 sv_frame_t getStartFrame() const override;
Chris@1580 40 sv_frame_t getEndFrame() const override;
Chris@1580 41 sv_samplerate_t getSampleRate() const override;
Chris@1580 42 bool isReady(int *completion = 0) const override;
Chris@1671 43 int getCompletion() const override {
Chris@1671 44 int c = 0;
Chris@1671 45 (void)isReady(&c);
Chris@1671 46 return c;
Chris@1671 47 }
Chris@1580 48 const ZoomConstraint *getZoomConstraint() const override;
Chris@297 49
Chris@1580 50 QString getTypeName() const override { return tr("Alignment"); }
Chris@345 51
Chris@297 52 const Model *getReferenceModel() const;
Chris@297 53 const Model *getAlignedModel() const;
Chris@297 54
Chris@1038 55 sv_frame_t toReference(sv_frame_t frame) const;
Chris@1038 56 sv_frame_t fromReference(sv_frame_t frame) const;
Chris@297 57
Chris@1016 58 void setPathFrom(SparseTimeValueModel *rawpath);
Chris@407 59 void setPath(PathModel *path);
Chris@407 60
Chris@1580 61 void toXml(QTextStream &stream,
Chris@407 62 QString indent = "",
Chris@1580 63 QString extraAttributes = "") const override;
Chris@407 64
Chris@1679 65 QString toDelimitedDataString(QString, DataExportOptions,
Chris@1679 66 sv_frame_t, sv_frame_t) const override {
Chris@1679 67 return "";
Chris@1679 68 }
Chris@1679 69
Chris@297 70 signals:
Chris@297 71 void modelChanged();
Chris@1038 72 void modelChangedWithin(sv_frame_t startFrame, sv_frame_t endFrame);
Chris@297 73 void completionChanged();
Chris@297 74
Chris@297 75 protected slots:
Chris@297 76 void pathChanged();
Chris@1038 77 void pathChangedWithin(sv_frame_t startFrame, sv_frame_t endFrame);
Chris@297 78 void pathCompletionChanged();
Chris@297 79
Chris@297 80 protected:
Chris@297 81 Model *m_reference; // I don't own this
Chris@297 82 Model *m_aligned; // I don't own this
Chris@297 83
Chris@338 84 SparseTimeValueModel *m_rawPath; // I own this
Chris@338 85 mutable PathModel *m_path; // I own this
Chris@338 86 mutable PathModel *m_reversePath; // I own this
Chris@323 87 bool m_pathBegun;
Chris@297 88 bool m_pathComplete;
Chris@297 89
Chris@338 90 void constructPath() const;
Chris@297 91 void constructReversePath() const;
Chris@297 92
Chris@1038 93 sv_frame_t align(PathModel *path, sv_frame_t frame) const;
Chris@297 94 };
Chris@297 95
Chris@297 96 #endif