Mercurial > hg > svgui
diff layer/SpectrogramLayer.cpp @ 79:19bf27e4fb29
* Replace crash with warning when a transform could not be automatically
re-run
* More sensible default paths for Vamp plugin lookup (at least on Linux and
OS/X)
* A start to making the y coords for time value layers etc align
* Set sensible y coords for text labels in time instant and value layers
author | Chris Cannam |
---|---|
date | Thu, 13 Apr 2006 18:29:10 +0000 |
parents | fd348f36c0d3 |
children | d99d67a5b93a |
line wrap: on
line diff
--- a/layer/SpectrogramLayer.cpp Wed Apr 12 09:59:40 2006 +0000 +++ b/layer/SpectrogramLayer.cpp Thu Apr 13 18:29:10 2006 +0000 @@ -2092,6 +2092,15 @@ } bool +SpectrogramLayer::getValueExtents(float &min, float &max, QString &unit) const +{ + min = getEffectiveMinFrequency(); + max = getEffectiveMaxFrequency(); + unit = "Hz"; + return true; +} + +bool SpectrogramLayer::snapToFeatureFrame(View *v, int &frame, size_t &resolution, SnapType snap) const