changeset 437:755243c67f59

* Add vertical zoom and pan to time-value layer. Still some defects, particularly in logarithmic mode. Now need to get this in note layer as well! * Some fixes to log colouring in segmentation mode of time-value layer.
author Chris Cannam
date Fri, 24 Oct 2008 14:52:40 +0000
parents 1e0744b2cebe
children 76cd1c89eb06
files layer/TimeValueLayer.cpp layer/TimeValueLayer.h view/Pane.cpp view/Pane.h widgets/Panner.cpp
diffstat 5 files changed, 199 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/layer/TimeValueLayer.cpp	Thu Oct 23 16:30:48 2008 +0000
+++ b/layer/TimeValueLayer.cpp	Fri Oct 24 14:52:40 2008 +0000
@@ -19,6 +19,7 @@
 #include "base/RealTime.h"
 #include "base/Profiler.h"
 #include "base/LogRange.h"
+#include "base/RangeMapper.h"
 #include "ColourDatabase.h"
 #include "view/View.h"
 
@@ -51,7 +52,9 @@
     m_editingCommand(0),
     m_colourMap(0),
     m_plotStyle(PlotConnectedPoints),
-    m_verticalScale(AutoAlignScale)
+    m_verticalScale(AutoAlignScale),
+    m_scaleMinimum(0),
+    m_scaleMaximum(0)
 {
     
 }
@@ -260,11 +263,149 @@
 {
     if (!m_model || shouldAutoAlign()) return false;
 
-    min = m_model->getValueMinimum();
-    max = m_model->getValueMaximum();
+    if (m_scaleMinimum == m_scaleMaximum) {
+        m_scaleMinimum = m_model->getValueMinimum();
+        m_scaleMaximum = m_model->getValueMaximum();
+    }
+
+    min = m_scaleMinimum;
+    max = m_scaleMaximum;
+
+//    std::cerr << "TimeValueLayer::getDisplayExtents: min = " << min << ", max = " << max << std::endl;
+
     return true;
 }
 
+bool
+TimeValueLayer::setDisplayExtents(float min, float max)
+{
+    if (!m_model) return false;
+
+    if (min == max) {
+        if (min == 0.f) {
+            max = 1.f;
+        } else {
+            max = min * 1.0001;
+        }
+    }
+
+    m_scaleMinimum = min;
+    m_scaleMaximum = max;
+
+    std::cerr << "TimeValueLayer::setDisplayExtents: min = " << min << ", max = " << max << std::endl;
+    
+    emit layerParametersChanged();
+    return true;
+}
+
+int
+TimeValueLayer::getVerticalZoomSteps(int &defaultStep) const
+{
+    if (shouldAutoAlign()) return 0;
+    if (!m_model) return 0;
+
+    defaultStep = 100;
+    return 100;
+}
+
+int
+TimeValueLayer::getCurrentVerticalZoomStep() const
+{
+    if (shouldAutoAlign()) return 0;
+    if (!m_model) return 0;
+
+    RangeMapper *mapper = getNewVerticalZoomRangeMapper();
+    if (!mapper) return 0;
+
+    float dmin, dmax;
+    getDisplayExtents(dmin, dmax);
+
+    int nr = mapper->getPositionForValue(dmax - dmin);
+/*
+    int n0 = mapper->getPositionForValue(dmax);
+    int n1 = mapper->getPositionForValue(dmin);
+    int nr = n1 - n0;
+    if (nr < 0) nr = -nr;
+
+    std::cerr << "TimeValueLayer::getCurrentVerticalZoomStep: dmin = " << dmin << ", dmax = " << dmax << ", n0 = " << n0 << ", n1 = " << n1 << ", nr = " << nr << std::endl;
+*/
+    delete mapper;
+
+    return 100 - nr;
+}
+
+void
+TimeValueLayer::setVerticalZoomStep(int step)
+{
+    if (shouldAutoAlign()) return;
+    if (!m_model) return;
+
+    RangeMapper *mapper = getNewVerticalZoomRangeMapper();
+    if (!mapper) return;
+    
+    float min, max;
+    bool logarithmic;
+    QString unit;
+    getValueExtents(min, max, logarithmic, unit);
+    
+    float dmin, dmax;
+    getDisplayExtents(dmin, dmax);
+
+    float newdist = mapper->getValueForPosition(100 - step);
+
+    float newmin, newmax;
+
+    if (logarithmic) {
+
+        // see SpectrogramLayer::setVerticalZoomStep
+
+        newmax = (newdist + sqrtf(newdist*newdist + 4*dmin*dmax)) / 2;
+        newmin = newmax - newdist;
+
+//        std::cerr << "newmin = " << newmin << ", newmax = " << newmax << std::endl;
+
+    } else {
+        float dmid = (dmax + dmin) / 2;
+        newmin = dmid - newdist / 2;
+        newmax = dmid + newdist / 2;
+    }
+
+    if (newmin < min) {
+        newmax += (min - newmin);
+        newmin = min;
+    }
+    if (newmax > max) {
+        newmax = max;
+    }
+    
+    std::cerr << "TimeValueLayer::setVerticalZoomStep: " << step << ": " << newmin << " -> " << newmax << " (range " << newdist << ")" << std::endl;
+
+    setDisplayExtents(newmin, newmax);
+}
+
+RangeMapper *
+TimeValueLayer::getNewVerticalZoomRangeMapper() const
+{
+    if (!m_model) return 0;
+    
+    RangeMapper *mapper;
+
+    float min, max;
+    bool logarithmic;
+    QString unit;
+    getValueExtents(min, max, logarithmic, unit);
+
+    if (min == max) return 0;
+    
+    if (logarithmic) {
+        mapper = new LogRangeMapper(0, 100, min, max, unit);
+    } else {
+        mapper = new LinearRangeMapper(0, 100, min, max, unit);
+    }
+
+    return mapper;
+}
+
 SparseTimeValueModel::PointList
 TimeValueLayer::getLocalPoints(View *v, int x) const
 {
@@ -446,8 +587,7 @@
 
     } else {
 
-        min = m_model->getValueMinimum();
-        max = m_model->getValueMaximum();
+        getDisplayExtents(min, max);
 
         if (m_verticalScale == LogScale) {
             LogRange::mapRange(min, max);
@@ -489,7 +629,7 @@
     float val = min + (float(h - y) * float(max - min)) / h;
 
     if (logarithmic) {
-        val = powf(10.f, val);
+        val = LogRange::map(val);
     }
 
     return val;
@@ -514,7 +654,6 @@
     if (max == min) max = min + 1;
 
     if (log) {
-        LogRange::mapRange(min, max);
         val = LogRange::map(val);
     }
 
@@ -781,8 +920,18 @@
 
     int n = 10;
 
-    float max = m_model->getValueMaximum();
-    float min = m_model->getValueMinimum();
+    float min, max;
+    bool logarithmic;
+    getScaleExtents(v, min, max, logarithmic);
+
+    if (m_plotStyle == PlotSegmentation) {
+        QString unit;
+        getValueExtents(min, max, logarithmic, unit);
+        if (logarithmic) {
+            LogRange::mapRange(min, max);
+        }
+    }
+
     float val = min;
     float inc = (max - val) / n;
 
@@ -807,7 +956,11 @@
         paint.save();
         for (int y = 0; y < boxh; ++y) {
             float val = ((boxh - y) * (max - min)) / boxh + min;
-            paint.setPen(getColourForValue(v, val));
+            if (logarithmic) {
+                paint.setPen(getColourForValue(v, LogRange::unmap(val)));
+            } else {
+                paint.setPen(getColourForValue(v, val));
+            }
             paint.drawLine(boxx + 1, y + boxy + 1, boxx + boxw, y + boxy + 1);
         }
         paint.restore();
@@ -836,12 +989,17 @@
             y = boxy + int(boxh - ((val - min) * boxh) / (max - min));
             ty = y;
         } else {
-            if (i == n-1) {
+            if (i == n-1 &&
+                v->height() < paint.fontMetrics().height() * (n*2)) {
                 if (m_model->getScaleUnits() != "") drawText = false;
             }
             dispval = lrintf(val / round) * round;
 //            std::cerr << "val = " << val << ", dispval = " << dispval << std::endl;
-            y = getYForValue(v, dispval);
+            if (logarithmic) {
+                y = getYForValue(v, LogRange::unmap(dispval));
+            } else {
+                y = getYForValue(v, dispval);
+            }                
             ty = y - paint.fontMetrics().height() +
                      paint.fontMetrics().ascent() + 2;
 
@@ -851,7 +1009,11 @@
             }
         }
 
-	sprintf(buffer, "%.*f", dp, dispval);
+        if (logarithmic) {
+            sprintf(buffer, "%.*g", dp < 2 ? 2 : dp, LogRange::unmap(dispval));
+        } else {
+            sprintf(buffer, "%.*f", dp, dispval);
+        }            
 	QString label = QString(buffer);
 
         if (m_plotStyle != PlotSegmentation) {
--- a/layer/TimeValueLayer.h	Thu Oct 23 16:30:48 2008 +0000
+++ b/layer/TimeValueLayer.h	Fri Oct 24 14:52:40 2008 +0000
@@ -117,6 +117,12 @@
                                  bool &logarithmic, QString &unit) const;
 
     virtual bool getDisplayExtents(float &min, float &max) const;
+    virtual bool setDisplayExtents(float min, float max);
+
+    virtual int getVerticalZoomSteps(int &defaultStep) const;
+    virtual int getCurrentVerticalZoomStep() const;
+    virtual void setVerticalZoomStep(int);
+    virtual RangeMapper *getNewVerticalZoomRangeMapper() const;
 
     virtual void toXml(QTextStream &stream, QString indent = "",
                        QString extraAttributes = "") const;
@@ -143,6 +149,9 @@
     PlotStyle m_plotStyle;
     VerticalScale m_verticalScale;
 
+    mutable float m_scaleMinimum;
+    mutable float m_scaleMaximum;
+
     void finish(SparseTimeValueModel::EditCommand *command) {
         Command *c = command->finish();
         if (c) CommandHistory::getInstance()->addCommand(c, false);
--- a/view/Pane.cpp	Thu Oct 23 16:30:48 2008 +0000
+++ b/view/Pane.cpp	Fri Oct 24 14:52:40 2008 +0000
@@ -2168,6 +2168,13 @@
 }
 
 void
+Pane::layerParametersChanged()
+{
+    View::layerParametersChanged();
+    updateHeadsUpDisplay();
+}
+
+void
 Pane::dragEnterEvent(QDragEnterEvent *e)
 {
     QStringList formats(e->mimeData()->formats());
--- a/view/Pane.h	Thu Oct 23 16:30:48 2008 +0000
+++ b/view/Pane.h	Fri Oct 24 14:52:40 2008 +0000
@@ -1,4 +1,3 @@
-
 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
 
 /*
@@ -81,6 +80,8 @@
     virtual void verticalPannerMoved(float x, float y, float w, float h);
     virtual void editVerticalPannerExtents();
 
+    virtual void layerParametersChanged();
+
     virtual void propertyContainerSelected(View *, PropertyContainer *pc);
 
     void mouseEnteredWidget();
--- a/widgets/Panner.cpp	Thu Oct 23 16:30:48 2008 +0000
+++ b/widgets/Panner.cpp	Fri Oct 24 14:52:40 2008 +0000
@@ -163,10 +163,14 @@
 
     paint.setBrush(hl);
 
+    int rw = lrintf(width() * m_rectWidth);
+    int rh = lrintf(height() * m_rectHeight);
+    if (rw < 2) rw = 2;
+    if (rh < 2) rh = 2;
+
     paint.drawRect(lrintf(width() * m_rectX),
                    lrintf(height() * m_rectY),
-                   lrintf(width() * m_rectWidth),
-                   lrintf(height() * m_rectHeight));
+                   rw, rh);
 }
 
 void