Mercurial > hg > svcore
diff base/View.h @ 74:47fd14e29813
* Fix long-standing off-by-1 bug in WaveFileModel that was getting us the wrong
values for almost all audio data when merging channels (channel == -1)
* Implement cut, copy and paste
* Make draw mode work properly in time value layer
* Minor fixes to CSV import
author | Chris Cannam |
---|---|
date | Fri, 07 Apr 2006 17:50:33 +0000 |
parents | e1aad27029e3 |
children | c983dda79f72 |
line wrap: on
line diff
--- a/base/View.h Thu Apr 06 17:24:13 2006 +0000 +++ b/base/View.h Fri Apr 07 17:50:33 2006 +0000 @@ -223,6 +223,9 @@ virtual QString toXmlString(QString indent = "", QString extraAttributes = "") const; + size_t getModelsStartFrame() const; + size_t getModelsEndFrame() const; + signals: void propertyContainerAdded(PropertyContainer *pc); void propertyContainerRemoved(PropertyContainer *pc); @@ -258,8 +261,6 @@ typedef std::vector<Layer *> LayerList; - size_t getModelsStartFrame() const; - size_t getModelsEndFrame() const; int getModelsSampleRate() const; bool areLayersScrollable() const; LayerList getScrollableBackLayers(bool testChanged, bool &changed) const;