annotate layer/Colour3DPlotLayer.h @ 101:0f36cdf407a6 sv1-v0.9rc1

* Make vertical scale alignment modes work in note layer as well as time-value layer, and several significant fixes to it * Make it possible to draw notes properly on the note layer * Show units (and frequencies etc in note layer's case) in the time-value and note layer description boxes * Minor fix to item edit dialog layout * Some minor menu rearrangement * Comment out a lot of debug output * Add SV website and reference URLs to Help menu, and add code to (attempt to) open them in the user's preferred browser
author Chris Cannam
date Fri, 12 May 2006 14:40:43 +0000
parents 2be85befe873
children 47cb32bb35ab
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@101 67 virtual bool getValueExtents(float &, float &, bool &, QString &) const { return false; }
Chris@0 68
Chris@87 69 virtual QString getPropertyLabel(const PropertyName &) const { return ""; }
Chris@0 70 /*
Chris@0 71 virtual PropertyList getProperties() const;
Chris@0 72 virtual PropertyType getPropertyType(const PropertyName &) const;
Chris@0 73 virtual int getPropertyRangeAndValue(const PropertyName &,
Chris@0 74 int *min, int *max) const;
Chris@0 75 virtual QString getPropertyValueLabel(const PropertyName &,
Chris@0 76 int value) const;
Chris@0 77 virtual void setProperty(const PropertyName &, int value);
Chris@0 78 */
Chris@0 79
Chris@11 80 void setProperties(const QXmlAttributes &attributes) { }
Chris@11 81
Chris@0 82 protected slots:
Chris@0 83 void cacheInvalid();
Chris@0 84 void cacheInvalid(size_t startFrame, size_t endFrame);
Chris@0 85
Chris@0 86 protected:
Chris@0 87 const DenseThreeDimensionalModel *m_model; // I do not own this
Chris@0 88
Chris@0 89 mutable QImage *m_cache;
Chris@98 90
Chris@98 91 virtual void paintDense(View *v, QPainter &paint, QRect rect) const;
Chris@0 92 };
Chris@0 93
Chris@0 94 #endif