annotate layer/Colour3DPlotLayer.h @ 77:fd348f36c0d3

* Implement harmonic cursor in spectrogram * Implement layer export. This doesn't quite do the right thing for the SV XML layer export yet -- it doesn't include layer display information, so when imported, it only creates an invisible model. Could also do with fixing CSV file import so as to work correctly for note and text layers.
author Chris Cannam
date Mon, 10 Apr 2006 17:22:59 +0000
parents 705f05ab42e3
children 19bf27e4fb29
rev   line source
Chris@58 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@0 2
Chris@0 3 /*
Chris@59 4 Sonic Visualiser
Chris@59 5 An audio file viewer and annotation editor.
Chris@59 6 Centre for Digital Music, Queen Mary, University of London.
Chris@59 7 This file copyright 2006 Chris Cannam.
Chris@0 8
Chris@59 9 This program is free software; you can redistribute it and/or
Chris@59 10 modify it under the terms of the GNU General Public License as
Chris@59 11 published by the Free Software Foundation; either version 2 of the
Chris@59 12 License, or (at your option) any later version. See the file
Chris@59 13 COPYING included with this distribution for more information.
Chris@0 14 */
Chris@0 15
Chris@0 16 #ifndef _COLOUR_3D_PLOT_H_
Chris@0 17 #define _COLOUR_3D_PLOT_H_
Chris@0 18
Chris@0 19 #include "base/Layer.h"
Chris@0 20
Chris@0 21 #include "model/DenseThreeDimensionalModel.h"
Chris@0 22
Chris@0 23 class View;
Chris@0 24 class QPainter;
Chris@0 25 class QImage;
Chris@0 26
Chris@0 27 /**
Chris@0 28 * This is a view that displays dense 3-D data (time, some sort of
Chris@0 29 * binned y-axis range, value) as a colour plot with value mapped to
Chris@0 30 * colour range. Its source is a DenseThreeDimensionalModel.
Chris@0 31 *
Chris@0 32 * This was the original implementation for the spectrogram view, but
Chris@0 33 * it was replaced with a more efficient implementation that derived
Chris@0 34 * the spectrogram itself from a DenseTimeValueModel instead of using
Chris@0 35 * a three-dimensional model. This class is retained in case it
Chris@0 36 * becomes useful, but it will probably need some cleaning up if it's
Chris@0 37 * ever actually used.
Chris@0 38 */
Chris@0 39
Chris@0 40 class Colour3DPlotLayer : public Layer
Chris@0 41 {
Chris@0 42 Q_OBJECT
Chris@0 43
Chris@0 44 public:
Chris@44 45 Colour3DPlotLayer();
Chris@0 46 ~Colour3DPlotLayer();
Chris@0 47
Chris@0 48 virtual const ZoomConstraint *getZoomConstraint() const { return m_model; }
Chris@0 49 virtual const Model *getModel() const { return m_model; }
Chris@44 50 virtual void paint(View *v, QPainter &paint, QRect rect) const;
Chris@0 51
Chris@44 52 virtual int getVerticalScaleWidth(View *v, QPainter &) const;
Chris@44 53 virtual void paintVerticalScale(View *v, QPainter &paint, QRect rect) const;
Chris@25 54
Chris@44 55 virtual QString getFeatureDescription(View *v, QPoint &) const;
Chris@25 56
Chris@44 57 virtual bool snapToFeatureFrame(View *v, int &frame,
Chris@28 58 size_t &resolution,
Chris@28 59 SnapType snap) const;
Chris@24 60
Chris@44 61 virtual bool isLayerScrollable(const View *v) const;
Chris@25 62
Chris@0 63 void setModel(const DenseThreeDimensionalModel *model);
Chris@0 64
Chris@24 65 virtual int getCompletion() const { return m_model->getCompletion(); }
Chris@24 66
Chris@0 67
Chris@0 68 /*
Chris@0 69 virtual PropertyList getProperties() const;
Chris@0 70 virtual PropertyType getPropertyType(const PropertyName &) const;
Chris@0 71 virtual int getPropertyRangeAndValue(const PropertyName &,
Chris@0 72 int *min, int *max) const;
Chris@0 73 virtual QString getPropertyValueLabel(const PropertyName &,
Chris@0 74 int value) const;
Chris@0 75 virtual void setProperty(const PropertyName &, int value);
Chris@0 76 */
Chris@0 77
Chris@11 78 void setProperties(const QXmlAttributes &attributes) { }
Chris@11 79
Chris@0 80 protected slots:
Chris@0 81 void cacheInvalid();
Chris@0 82 void cacheInvalid(size_t startFrame, size_t endFrame);
Chris@0 83
Chris@0 84 protected:
Chris@0 85 const DenseThreeDimensionalModel *m_model; // I do not own this
Chris@0 86
Chris@0 87 mutable QImage *m_cache;
Chris@0 88 };
Chris@0 89
Chris@0 90 #endif