annotate base/Model.cpp @ 16:cc98d496d52b

* Add command history class, and basic undo/redo menus. No actual commands to undo/redo yet. Selecting the placeholders sometimes seems to cause a crash, so this looks a little uncertain so far. * Add Rename Layer * Remove models from playback when their layers are removed (and ref counts hit zero) * Don't hang around waiting so much when there's work to be done in the audio buffer fill thread * Put more sensible names on layers generated from transforms * Add basic editing to time-value layer like existing editing in time-instants layer, and make both of them snap to the appropriate resolution during drag
author Chris Cannam
date Mon, 30 Jan 2006 17:51:56 +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