comparison document/Document.h @ 116:99d65ba33c88

* More useful status bar text -- show the current play time and the extents of the visible area * Add update-i18n.sh to update the i18n/ts and qm files -- I can't get qmake to do the right thing now that the project file has been split up into several project files * Fix missing Q_OBJECTs, etc, reported by lupdate * Update Russian translation from AlexandrE
author Chris Cannam
date Wed, 07 Mar 2007 17:07:02 +0000
parents dd11619b73ba
children fbd09fcda469
comparison
equal deleted inserted replaced
115:c9930ec7a3f9 116:99d65ba33c88
127 /** 127 /**
128 * Get the main model (the source for playback sample rate, etc). 128 * Get the main model (the source for playback sample rate, etc).
129 */ 129 */
130 WaveFileModel *getMainModel() { return m_mainModel; } 130 WaveFileModel *getMainModel() { return m_mainModel; }
131 131
132 /**
133 * Get the main model (the source for playback sample rate, etc).
134 */
135 const WaveFileModel *getMainModel() const { return m_mainModel; }
136
132 std::vector<Model *> getTransformInputModels(); 137 std::vector<Model *> getTransformInputModels();
133 138
134 /** 139 /**
135 * Add a derived model associated with the given transform, 140 * Add a derived model associated with the given transform,
136 * running the transform and returning the resulting model. 141 * running the transform and returning the resulting model.