Mercurial > hg > sonic-visualiser
diff document/Document.cpp @ 30:56e1d4242bb4
* save and restore step/blocksize etc
author | Chris Cannam |
---|---|
date | Wed, 20 Sep 2006 16:02:42 +0000 |
parents | 61259228d029 |
children | 6b6bca31ad53 |
line wrap: on
line diff
--- a/document/Document.cpp Wed Sep 20 15:47:16 2006 +0000 +++ b/document/Document.cpp Wed Sep 20 16:02:42 2006 +0000 @@ -698,10 +698,14 @@ //!!! stream the rest of the execution context in both directions (i.e. not just channel) out << indent; - out << QString(" <derivation source=\"%1\" model=\"%2\" channel=\"%3\" transform=\"%4\"") + out << QString(" <derivation source=\"%1\" model=\"%2\" channel=\"%3\" domain=\"%4\" stepSize=\"%5\" blockSize=\"%6\" windowType=\"%7\" transform=\"%8\"") .arg(XmlExportable::getObjectExportId(rec.source)) .arg(XmlExportable::getObjectExportId(i->first)) .arg(rec.context.channel) + .arg(rec.context.domain) + .arg(rec.context.stepSize) + .arg(rec.context.blockSize) + .arg(int(rec.context.windowType)) .arg(XmlExportable::encodeEntities(rec.transform)); if (rec.configurationXml != "") {