annotate base/Model.cpp @ 6:44bbf5793d84

* Rework handling of layer properties in file I/O -- we now get the individual layers to load and save them rather than doing it via generic property lists in the base class, so as to ensure we read and write meaningful values rather than generic int values requiring conversion.
author Chris Cannam
date Thu, 19 Jan 2006 12:54:38 +0000
parents 149bb02a41ba
children a6ef94ecbe74
rev   line source
Chris@3 1 /* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */
Chris@3 2
Chris@3 3 /*
Chris@3 4 A waveform viewer and audio annotation editor.
Chris@3 5 Chris Cannam, Queen Mary University of London, 2005-2006
Chris@3 6
Chris@3 7 This is experimental software. Not for distribution.
Chris@3 8 */
Chris@0 9
Chris@0 10 #include "Model.h"
Chris@0 11
Chris@0 12 const int Model::COMPLETION_UNKNOWN = -1;
Chris@0 13
Chris@3 14 QString
Chris@3 15 Model::toXmlString(QString indent, QString extraAttributes) const
Chris@3 16 {
Chris@3 17 QString s;
Chris@3 18
Chris@3 19 s += indent;
Chris@3 20
Chris@4 21 s += QString("<model id=\"%1\" name=\"%2\" sampleRate=\"%3\" start=\"%4\" end=\"%5\" %6/>\n")
Chris@4 22 .arg(getObjectExportId(this))
Chris@3 23 .arg(objectName())
Chris@4 24 .arg(getSampleRate())
Chris@4 25 .arg(getStartFrame())
Chris@4 26 .arg(getEndFrame())
Chris@3 27 .arg(extraAttributes);
Chris@3 28
Chris@3 29 return s;
Chris@3 30 }
Chris@3 31
Chris@0 32 #ifdef INCLUDE_MOCFILES
Chris@0 33 #ifdef INCLUDE_MOCFILES
Chris@0 34 #include "Model.moc.cpp"
Chris@0 35 #endif
Chris@0 36 #endif
Chris@0 37