Mercurial > hg > svcore
annotate base/Model.cpp @ 4:149bb02a41ba
* Session file save, and the skeleton of session file load.
author | Chris Cannam |
---|---|
date | Fri, 13 Jan 2006 18:05:07 +0000 |
parents | 581f67f370f3 |
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 |