comparison layer/WaveformLayer.h @ 1045:f535f6e5dbb0 alignment-simple

Merge in from SV 3.0-integration branches
author Chris Cannam
date Wed, 02 Mar 2016 17:25:27 +0000
parents e3c7da3d896e
children a34a2a25907c
comparison
equal deleted inserted replaced
976:f2c63ec85901 1045:f535f6e5dbb0
36 36
37 virtual const ZoomConstraint *getZoomConstraint() const { 37 virtual const ZoomConstraint *getZoomConstraint() const {
38 return m_model ? m_model->getZoomConstraint() : 0; 38 return m_model ? m_model->getZoomConstraint() : 0;
39 } 39 }
40 virtual const Model *getModel() const { return m_model; } 40 virtual const Model *getModel() const { return m_model; }
41 virtual void paint(View *v, QPainter &paint, QRect rect) const; 41 virtual void paint(LayerGeometryProvider *v, QPainter &paint, QRect rect) const;
42 42
43 virtual QString getFeatureDescription(View *v, QPoint &) const; 43 virtual QString getFeatureDescription(LayerGeometryProvider *v, QPoint &) const;
44 44
45 virtual ColourSignificance getLayerColourSignificance() const { 45 virtual ColourSignificance getLayerColourSignificance() const {
46 return ColourAndBackgroundSignificant; 46 return ColourAndBackgroundSignificant;
47 } 47 }
48 48
49 virtual int getVerticalScaleWidth(View *v, bool detailed, QPainter &) const; 49 virtual int getVerticalScaleWidth(LayerGeometryProvider *v, bool detailed, QPainter &) const;
50 virtual void paintVerticalScale(View *v, bool detailed, QPainter &paint, QRect rect) const; 50 virtual void paintVerticalScale(LayerGeometryProvider *v, bool detailed, QPainter &paint, QRect rect) const;
51 51
52 void setModel(const RangeSummarisableTimeValueModel *model); 52 void setModel(const RangeSummarisableTimeValueModel *model);
53 53
54 virtual PropertyList getProperties() const; 54 virtual PropertyList getProperties() const;
55 virtual QString getPropertyLabel(const PropertyName &) const; 55 virtual QString getPropertyLabel(const PropertyName &) const;
178 * The default is not to use aggressive cacheing. 178 * The default is not to use aggressive cacheing.
179 */ 179 */
180 void setAggressiveCacheing(bool); 180 void setAggressiveCacheing(bool);
181 bool getAggressiveCacheing() const { return m_aggressive; } 181 bool getAggressiveCacheing() const { return m_aggressive; }
182 182
183 virtual bool isLayerScrollable(const View *) const; 183 virtual bool isLayerScrollable(const LayerGeometryProvider *) const;
184 184
185 virtual int getCompletion(View *) const; 185 virtual int getCompletion(LayerGeometryProvider *) const;
186 186
187 virtual bool getValueExtents(double &min, double &max, 187 virtual bool getValueExtents(double &min, double &max,
188 bool &log, QString &unit) const; 188 bool &log, QString &unit) const;
189 189
190 virtual bool getYScaleValue(const View *v, int y, 190 virtual bool getYScaleValue(const LayerGeometryProvider *v, int y,
191 double &value, QString &unit) const; 191 double &value, QString &unit) const;
192 192
193 virtual bool getYScaleDifference(const View *v, int y0, int y1, 193 virtual bool getYScaleDifference(const LayerGeometryProvider *v, int y0, int y1,
194 double &diff, QString &unit) const; 194 double &diff, QString &unit) const;
195 195
196 virtual void toXml(QTextStream &stream, QString indent = "", 196 virtual void toXml(QTextStream &stream, QString indent = "",
197 QString extraAttributes = "") const; 197 QString extraAttributes = "") const;
198 198
211 211
212 /// Return value is number of channels displayed 212 /// Return value is number of channels displayed
213 int getChannelArrangement(int &min, int &max, 213 int getChannelArrangement(int &min, int &max,
214 bool &merging, bool &mixing) const; 214 bool &merging, bool &mixing) const;
215 215
216 int getYForValue(const View *v, double value, int channel) const; 216 int getYForValue(const LayerGeometryProvider *v, double value, int channel) const;
217 217
218 double getValueForY(const View *v, int y, int &channel) const; 218 double getValueForY(const LayerGeometryProvider *v, int y, int &channel) const;
219 219
220 bool getSourceFramesForX(View *v, int x, int modelZoomLevel, 220 bool getSourceFramesForX(LayerGeometryProvider *v, int x, int modelZoomLevel,
221 sv_frame_t &f0, sv_frame_t &f1) const; 221 sv_frame_t &f0, sv_frame_t &f1) const;
222 222
223 float getNormalizeGain(View *v, int channel) const; 223 float getNormalizeGain(LayerGeometryProvider *v, int channel) const;
224 224
225 virtual void flagBaseColourChanged() { m_cacheValid = false; } 225 virtual void flagBaseColourChanged() { m_cacheValid = false; }
226 226
227 float m_gain; 227 float m_gain;
228 bool m_autoNormalize; 228 bool m_autoNormalize;