annotate base/Model.cpp @ 5:31c4ed2d5da6

* Hook up SV file i/o. You can now save and load sessions. Some problems -- gain is not reloaded correctly for waveforms, reloaded panes are not properly reconnected to the panner, and no doubt plenty of others.
author Chris Cannam
date Tue, 17 Jan 2006 17:45:55 +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