annotate layer/TextLayer.h @ 1127:9fb8dfd7ce4c spectrogram-minor-refactor

Fix threshold in spectrogram -- it wasn't working in the last release. There is a new protocol for this. Formerly the threshold parameter had a range from -50dB to 0 with the default at -50, and -50 treated internally as "no threshold". However, there was a hardcoded, hidden internal threshold for spectrogram colour mapping at -80dB with anything below this being rounded to zero. Now the threshold parameter has range -81 to -1 with the default at -80, -81 is treated internally as "no threshold", and there is no hidden internal threshold. So the default behaviour is the same as before, an effective -80dB threshold, but it is now possible to change this in both directions. Sessions reloaded from prior versions may look slightly different because, if the session says there should be no threshold, there will now actually be no threshold instead of having the hidden internal one. Still need to do something in the UI to make it apparent that the -81dB setting removes the threshold entirely. This is at least no worse than the previous, also obscured, magic -50dB setting.
author Chris Cannam
date Mon, 01 Aug 2016 16:21:01 +0100
parents 4fe7a09be0fe
children a34a2a25907c
rev   line source
Chris@58 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@35 2
Chris@35 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@35 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@35 14 */
Chris@35 15
Chris@35 16 #ifndef _TEXT_LAYER_H_
Chris@35 17 #define _TEXT_LAYER_H_
Chris@35 18
Chris@287 19 #include "SingleColourLayer.h"
Chris@128 20 #include "data/model/TextModel.h"
Chris@35 21
Chris@35 22 #include <QObject>
Chris@35 23 #include <QColor>
Chris@35 24
Chris@35 25 class View;
Chris@35 26 class QPainter;
Chris@35 27
Chris@287 28 class TextLayer : public SingleColourLayer
Chris@35 29 {
Chris@35 30 Q_OBJECT
Chris@35 31
Chris@35 32 public:
Chris@44 33 TextLayer();
Chris@35 34
Chris@916 35 virtual void paint(LayerGeometryProvider *v, QPainter &paint, QRect rect) const;
Chris@35 36
Chris@918 37 virtual QString getFeatureDescription(LayerGeometryProvider *v, QPoint &) const;
Chris@35 38
Chris@918 39 virtual bool snapToFeatureFrame(LayerGeometryProvider *v, sv_frame_t &frame,
Chris@805 40 int &resolution,
Chris@35 41 SnapType snap) const;
Chris@35 42
Chris@918 43 virtual void drawStart(LayerGeometryProvider *v, QMouseEvent *);
Chris@918 44 virtual void drawDrag(LayerGeometryProvider *v, QMouseEvent *);
Chris@918 45 virtual void drawEnd(LayerGeometryProvider *v, QMouseEvent *);
Chris@35 46
Chris@918 47 virtual void eraseStart(LayerGeometryProvider *v, QMouseEvent *);
Chris@918 48 virtual void eraseDrag(LayerGeometryProvider *v, QMouseEvent *);
Chris@918 49 virtual void eraseEnd(LayerGeometryProvider *v, QMouseEvent *);
Chris@335 50
Chris@918 51 virtual void editStart(LayerGeometryProvider *v, QMouseEvent *);
Chris@918 52 virtual void editDrag(LayerGeometryProvider *v, QMouseEvent *);
Chris@918 53 virtual void editEnd(LayerGeometryProvider *v, QMouseEvent *);
Chris@35 54
Chris@905 55 virtual void moveSelection(Selection s, sv_frame_t newStartFrame);
Chris@43 56 virtual void resizeSelection(Selection s, Selection newSize);
Chris@76 57 virtual void deleteSelection(Selection s);
Chris@76 58
Chris@918 59 virtual void copy(LayerGeometryProvider *v, Selection s, Clipboard &to);
Chris@918 60 virtual bool paste(LayerGeometryProvider *v, const Clipboard &from, sv_frame_t frameOffset,
Chris@125 61 bool interactive);
Chris@43 62
Chris@918 63 virtual bool editOpen(LayerGeometryProvider *, QMouseEvent *); // on double-click
Chris@36 64
Chris@35 65 virtual const Model *getModel() const { return m_model; }
Chris@35 66 void setModel(TextModel *model);
Chris@35 67
Chris@35 68 virtual PropertyList getProperties() const;
Chris@87 69 virtual QString getPropertyLabel(const PropertyName &) const;
Chris@35 70 virtual PropertyType getPropertyType(const PropertyName &) const;
Chris@35 71 virtual int getPropertyRangeAndValue(const PropertyName &,
Chris@216 72 int *min, int *max, int *deflt) const;
Chris@35 73 virtual QString getPropertyValueLabel(const PropertyName &,
Chris@35 74 int value) const;
Chris@35 75 virtual void setProperty(const PropertyName &, int value);
Chris@35 76
Chris@918 77 virtual bool isLayerScrollable(const LayerGeometryProvider *v) const;
Chris@35 78
Chris@35 79 virtual bool isLayerEditable() const { return true; }
Chris@35 80
Chris@918 81 virtual int getCompletion(LayerGeometryProvider *) const { return m_model->getCompletion(); }
Chris@35 82
Chris@905 83 virtual bool getValueExtents(double &min, double &max,
Chris@101 84 bool &logarithmic, QString &unit) const;
Chris@79 85
Chris@918 86 virtual int getVerticalScaleWidth(LayerGeometryProvider *, bool, QPainter &) const { return 0; }
Chris@607 87
Chris@316 88 virtual void toXml(QTextStream &stream, QString indent = "",
Chris@316 89 QString extraAttributes = "") const;
Chris@35 90
Chris@35 91 void setProperties(const QXmlAttributes &attributes);
Chris@35 92
Chris@35 93 protected:
Chris@918 94 int getYForHeight(LayerGeometryProvider *v, double height) const;
Chris@918 95 double getHeightForY(LayerGeometryProvider *v, int y) const;
Chris@35 96
Chris@287 97 virtual int getDefaultColourHint(bool dark, bool &impose);
Chris@287 98
Chris@918 99 TextModel::PointList getLocalPoints(LayerGeometryProvider *v, int x, int y) const;
Chris@35 100
Chris@918 101 bool getPointToDrag(LayerGeometryProvider *v, int x, int y, TextModel::Point &) const;
Chris@552 102
Chris@35 103 TextModel *m_model;
Chris@35 104 bool m_editing;
Chris@36 105 QPoint m_editOrigin;
Chris@35 106 TextModel::Point m_originalPoint;
Chris@35 107 TextModel::Point m_editingPoint;
Chris@35 108 TextModel::EditCommand *m_editingCommand;
Chris@376 109
Chris@376 110 void finish(TextModel::EditCommand *command) {
Chris@376 111 Command *c = command->finish();
Chris@376 112 if (c) CommandHistory::getInstance()->addCommand(c, false);
Chris@376 113 }
Chris@35 114 };
Chris@35 115
Chris@35 116 #endif
Chris@35 117