Mercurial > hg > svapp
diff framework/Document.h @ 520:c3648c667a0b 3.0-integration
Merge from branch "alignment-simple"
author | Chris Cannam |
---|---|
date | Thu, 21 Apr 2016 15:06:43 +0100 |
parents | b23db4cef02f |
children | d122d3595a32 |
line wrap: on
line diff
--- a/framework/Document.h Fri Mar 18 14:25:05 2016 +0000 +++ b/framework/Document.h Thu Apr 21 15:06:43 2016 +0100 @@ -32,6 +32,8 @@ class AdditionalModelConverter; +class Align; + /** * A Sonic Visualiser document consists of a set of data models, and * also the visualisation layers used to display them. Changes to the @@ -301,7 +303,9 @@ QString message); void modelRegenerationWarning(QString layerName, QString transformName, QString message); - void alignmentFailed(QString transformName, QString message); + + void alignmentComplete(AlignmentModel *); + void alignmentFailed(QString message); void activity(QString); @@ -407,8 +411,6 @@ void writeBackwardCompatibleDerivation(QTextStream &, QString, Model *, const ModelRecord &) const; - static TransformId getAlignmentTransformName(); - void toXml(QTextStream &, QString, QString, bool asTemplate) const; void writePlaceholderMainModel(QTextStream &, QString) const; @@ -423,6 +425,7 @@ LayerSet m_layers; bool m_autoAlignment; + Align *m_align; }; #endif