svgui
1.9
|
#include <SliceLayer.h>
Public Types | |
enum | EnergyScale { LinearScale, MeterScale, dBScale, AbsoluteScale } |
enum | SamplingMode { NearestSample, SampleMean, SamplePeak } |
enum | PlotStyle { PlotLines, PlotSteps, PlotBlocks, PlotFilledBlocks } |
enum | BinScale { LinearBins, LogBins, InvertedLogBins } |
enum | VerticalPosition { PositionTop, PositionMiddle, PositionBottom } |
enum | SnapType { SnapLeft, SnapRight, SnapNearest, SnapNeighbouring } |
enum | ColourSignificance { ColourAbsent, ColourIrrelevant, ColourDistinguishes, ColourAndBackgroundSignificant, ColourHasMeaningfulValue } |
Public Slots | |
void | sliceableModelReplaced (const Model *, const Model *) |
void | modelAboutToBeDeleted (Model *) |
void | showLayer (View *, bool show) |
Signals | |
void | modelChanged () |
void | modelCompletionChanged () |
void | modelAlignmentCompletionChanged () |
void | modelChangedWithin (int startFrame, int endFrame) |
void | modelReplaced () |
void | layerParametersChanged () |
void | layerParameterRangesChanged () |
void | layerMeasurementRectsChanged () |
void | layerNameChanged () |
void | verticalZoomChanged () |
Public Member Functions | |
SliceLayer () | |
~SliceLayer () | |
virtual const Model * | getModel () const |
void | setSliceableModel (const Model *model) |
virtual void | paint (View *v, QPainter &paint, QRect rect) const |
Paint the given rectangle of this layer onto the given view using the given painter, superimposing it on top of any existing material in that view. | |
virtual QString | getFeatureDescription (View *v, QPoint &) const |
virtual int | getVerticalScaleWidth (View *v, bool, QPainter &) const |
virtual void | paintVerticalScale (View *v, bool, QPainter &paint, QRect rect) const |
virtual ColourSignificance | getLayerColourSignificance () const |
Implements Layer::getLayerColourSignificance() | |
virtual PropertyList | getProperties () const |
virtual QString | getPropertyLabel (const PropertyName &) const |
virtual QString | getPropertyIconName (const PropertyName &) const |
virtual PropertyType | getPropertyType (const PropertyName &) const |
virtual QString | getPropertyGroupName (const PropertyName &) const |
virtual int | getPropertyRangeAndValue (const PropertyName &, int *min, int *max, int *deflt) const |
virtual QString | getPropertyValueLabel (const PropertyName &, int value) const |
virtual RangeMapper * | getNewPropertyRangeMapper (const PropertyName &) const |
virtual void | setProperty (const PropertyName &, int value) |
virtual void | setProperties (const QXmlAttributes &) |
Set the particular properties of a layer (those specific to the subclass) from a set of XML attributes. | |
virtual bool | getValueExtents (float &min, float &max, bool &logarithmic, QString &unit) const |
Return the minimum and maximum values for the y axis of the model in this layer, as well as whether the layer is configured to use a logarithmic y axis display. | |
virtual bool | hasTimeXAxis () const |
virtual bool | isLayerScrollable (const View *) const |
This should return true if the layer can safely be scrolled automatically by a given view (simply copying the existing data and then refreshing the exposed area) without altering its meaning. | |
void | setFillColourMap (int) |
int | getFillColourMap () const |
void | setEnergyScale (EnergyScale) |
EnergyScale | getEnergyScale () const |
void | setSamplingMode (SamplingMode) |
SamplingMode | getSamplingMode () const |
void | setPlotStyle (PlotStyle style) |
PlotStyle | getPlotStyle () const |
void | setBinScale (BinScale scale) |
BinScale | getBinScale () const |
void | setThreshold (float) |
int | getThreshold () const |
void | setGain (float gain) |
float | getGain () const |
void | setNormalize (bool n) |
bool | getNormalize () const |
virtual void | toXml (QTextStream &stream, QString indent="", QString extraAttributes="") const |
Convert the layer's data (though not those of the model it refers to) into XML for file output. | |
virtual void | setBaseColour (int) |
Set the colour used to draw primary items in the layer. | |
virtual int | getBaseColour () const |
Retrieve the current primary drawing colour, as a ColourDatabase index value. | |
virtual bool | hasLightBackground () const |
Return true if the layer currently has a dark colour on a light background, false if it has a light colour on a dark background. | |
virtual QPixmap | getLayerPresentationPixmap (QSize size) const |
virtual void | setDefaultColourFor (View *v) |
Model * | getModel () |
virtual const ZoomConstraint * | getZoomConstraint () const |
Return a zoom constraint object defining the supported zoom levels for this layer. | |
virtual bool | supportsOtherZoomLevels () const |
Return true if this layer can handle zoom levels other than those supported by its zoom constraint (presumably less efficiently or accurately than the officially supported zoom levels). | |
virtual void | setSynchronousPainting (bool) |
Enable or disable synchronous painting. | |
virtual VerticalPosition | getPreferredTimeRulerPosition () const |
virtual VerticalPosition | getPreferredFrameCountPosition () const |
virtual QString | getPropertyContainerIconName () const |
virtual QString | getPropertyContainerName () const |
virtual void | setPresentationName (QString name) |
virtual QString | getLayerPresentationName () const |
virtual bool | getCrosshairExtents (View *, QPainter &, QPoint, std::vector< QRect > &) const |
virtual void | paintCrosshairs (View *, QPainter &, QPoint) const |
virtual void | paintMeasurementRects (View *, QPainter &, bool showFocus, QPoint focusPoint) const |
virtual bool | nearestMeasurementRectChanged (View *, QPoint prev, QPoint now) const |
virtual QString | getLabelPreceding (int) const |
virtual bool | snapToFeatureFrame (View *, int &, int &resolution, SnapType) const |
Adjust the given frame to snap to the nearest feature, if possible. | |
virtual bool | snapToSimilarFeature (View *, int &, int &resolution, SnapType) const |
Adjust the given frame to snap to the next feature that has "effectively" the same value as the feature prior to the given frame, if possible. | |
virtual void | drawStart (View *, QMouseEvent *) |
virtual void | drawDrag (View *, QMouseEvent *) |
virtual void | drawEnd (View *, QMouseEvent *) |
virtual void | eraseStart (View *, QMouseEvent *) |
virtual void | eraseDrag (View *, QMouseEvent *) |
virtual void | eraseEnd (View *, QMouseEvent *) |
virtual void | editStart (View *, QMouseEvent *) |
virtual void | editDrag (View *, QMouseEvent *) |
virtual void | editEnd (View *, QMouseEvent *) |
virtual void | splitStart (View *, QMouseEvent *) |
virtual void | splitEnd (View *, QMouseEvent *) |
virtual void | addNote (View *, QMouseEvent *) |
virtual void | measureStart (View *, QMouseEvent *) |
virtual void | measureDrag (View *, QMouseEvent *) |
virtual void | measureEnd (View *, QMouseEvent *) |
virtual void | measureDoubleClick (View *, QMouseEvent *) |
virtual bool | haveCurrentMeasureRect () const |
virtual void | deleteCurrentMeasureRect () |
virtual bool | editOpen (View *, QMouseEvent *) |
Open an editor on the item under the mouse (e.g. | |
virtual void | moveSelection (Selection, int) |
virtual void | resizeSelection (Selection, Selection) |
virtual void | deleteSelection (Selection) |
virtual void | copy (View *, Selection, Clipboard &) |
virtual bool | paste (View *, const Clipboard &, int, bool) |
Paste from the given clipboard onto the layer at the given frame offset. | |
virtual bool | isLayerOpaque () const |
This should return true if the layer completely obscures any underlying layers. | |
virtual bool | isLayerEditable () const |
This should return true if the layer can be edited by the user. | |
virtual int | getCompletion (View *) const |
Return the proportion of background work complete in drawing this view, as a percentage -- in most cases this will be the value returned by pointer from a call to the underlying model's isReady(int *) call. | |
virtual QString | getError (View *) const |
Return an error string if any errors have occurred while loading or processing data for the given view. | |
virtual void | setObjectName (const QString &name) |
virtual void | toBriefXml (QTextStream &stream, QString indent="", QString extraAttributes="") const |
Produce XML containing the layer's ID and type. | |
virtual void | addMeasurementRect (const QXmlAttributes &) |
Add a measurement rectangle from the given XML attributes (presumably taken from a measurement element). | |
virtual void | setLayerDormant (const View *v, bool dormant) |
Indicate that a layer is not currently visible in the given view and is not expected to become visible in the near future (for example because the user has explicitly removed or hidden it). | |
virtual bool | isLayerDormant (const View *v) const |
Return whether the layer is dormant (i.e. | |
virtual PlayParameters * | getPlayParameters () |
virtual bool | needsTextLabelHeight () const |
virtual bool | getDisplayExtents (float &, float &) const |
Return the minimum and maximum values within the displayed range for the y axis, if only a subset of the whole range of the model (returned by getValueExtents) is being displayed. | |
virtual bool | setDisplayExtents (float, float) |
Set the displayed minimum and maximum values for the y axis to the given range, if supported. | |
virtual bool | getXScaleValue (const View *v, int x, float &value, QString &unit) const |
Return the value and unit at the given x coordinate in the given view. | |
virtual bool | getYScaleValue (const View *, int, float &, QString &) const |
Return the value and unit at the given y coordinate in the given view. | |
virtual bool | getYScaleDifference (const View *v, int y0, int y1, float &diff, QString &unit) const |
Return the difference between the values at the given y coordinates in the given view, and the unit of the difference. | |
virtual int | getVerticalZoomSteps (int &) const |
Get the number of vertical zoom steps available for this layer. | |
virtual int | getCurrentVerticalZoomStep () const |
Get the current vertical zoom step. | |
virtual void | setVerticalZoomStep (int) |
Set the vertical zoom step. | |
virtual RangeMapper * | getNewVerticalZoomRangeMapper () const |
Create and return a range mapper for vertical zoom step values. | |
Protected Types | |
typedef std::vector< float > | BiasCurve |
typedef std::map< int, int > | ColourRefCount |
typedef std::set< MeasureRect > | MeasureRectSet |
Protected Member Functions | |
virtual float | getXForBin (int bin, int totalBins, float w) const |
virtual int | getBinForX (float x, int totalBins, float w) const |
virtual float | getYForValue (float value, const View *v, float &norm) const |
virtual float | getValueForY (float y, const View *v) const |
virtual QString | getFeatureDescriptionAux (View *v, QPoint &, bool includeBinDescription, int &minbin, int &maxbin, int &range) const |
virtual void | getBiasCurve (BiasCurve &) const |
virtual float | getThresholdDb () const |
virtual int | getDefaultColourHint (bool dark, bool &impose) |
virtual QColor | getBaseQColor () const |
virtual QColor | getBackgroundQColor (View *v) const |
virtual QColor | getForegroundQColor (View *v) const |
std::vector< QColor > | getPartialShades (View *v) const |
virtual void | flagBaseColourChanged () |
void | connectSignals (const Model *) |
virtual int | alignToReference (View *v, int frame) const |
virtual int | alignFromReference (View *v, int frame) const |
bool | clipboardHasDifferentAlignment (View *v, const Clipboard &clip) const |
void | addMeasureRectToSet (const MeasureRect &r) |
void | deleteMeasureRectFromSet (const MeasureRect &r) |
void | updateMeasurePixrects (View *v) const |
virtual void | updateMeasureRectYCoords (View *v, const MeasureRect &r) const |
virtual void | setMeasureRectYCoord (View *v, MeasureRect &r, bool start, int y) const |
virtual void | setMeasureRectFromPixrect (View *v, MeasureRect &r, QRect pixrect) const |
MeasureRectSet::const_iterator | findFocusedMeasureRect (QPoint) const |
void | paintMeasurementRect (View *v, QPainter &paint, const MeasureRect &r, bool focus) const |
Protected Attributes | |
const DenseThreeDimensionalModel * | m_sliceableModel |
int | m_colourMap |
EnergyScale | m_energyScale |
SamplingMode | m_samplingMode |
PlotStyle | m_plotStyle |
BinScale | m_binScale |
bool | m_normalize |
float | m_threshold |
float | m_initialThreshold |
float | m_gain |
std::vector< int > | m_scalePoints |
std::map< const View *, int > | m_xorigins |
std::map< const View *, int > | m_yorigins |
std::map< const View *, int > | m_heights |
int | m_currentf0 |
int | m_currentf1 |
std::vector< float > | m_values |
int | m_colour |
bool | m_colourExplicitlySet |
bool | m_defaultColourSet |
MeasureRectSet | m_measureRects |
MeasureRect | m_draggingRect |
bool | m_haveDraggingRect |
bool | m_haveCurrentMeasureRect |
QPoint | m_currentMeasureRectPoint |
QString | m_presentationName |
Static Protected Attributes | |
static ColourRefCount | m_colourRefCount |
Definition at line 27 of file SliceLayer.h.
typedef std::vector<float> SliceLayer::BiasCurve [protected] |
Definition at line 126 of file SliceLayer.h.
typedef std::map<int, int> SingleColourLayer::ColourRefCount [protected, inherited] |
Definition at line 89 of file SingleColourLayer.h.
typedef std::set<MeasureRect> Layer::MeasureRectSet [protected, inherited] |
Definition at line 72 of file SliceLayer.h.
Definition at line 74 of file SliceLayer.h.
Definition at line 76 of file SliceLayer.h.
enum SliceLayer::BinScale |
Definition at line 78 of file SliceLayer.h.
enum Layer::VerticalPosition [inherited] |
enum Layer::SnapType [inherited] |
enum Layer::ColourSignificance [inherited] |
Definition at line 32 of file SliceLayer.cpp.
Definition at line 48 of file SliceLayer.cpp.
virtual const Model* SliceLayer::getModel | ( | ) | const [inline, virtual] |
void SliceLayer::setSliceableModel | ( | const Model * | model | ) |
Definition at line 54 of file SliceLayer.cpp.
References Layer::connectSignals(), m_sliceableModel, and Layer::modelReplaced().
Referenced by modelAboutToBeDeleted(), SpectrumLayer::setModel(), SpectrumLayer::setupFFT(), and sliceableModelReplaced().
void SliceLayer::paint | ( | View * | , |
QPainter & | , | ||
QRect | |||
) | const [virtual] |
Paint the given rectangle of this layer onto the given view using the given painter, superimposing it on top of any existing material in that view.
The view is provided here because it is possible for one layer to exist in more than one view, so the dimensions of the view may vary from one paint call to another (without any view having been resized).
!! and dark background?
Implements Layer.
Reimplemented in SpectrumLayer.
Definition at line 316 of file SliceLayer.cpp.
References SingleColourLayer::getBaseQColor(), getBiasCurve(), View::getCentreFrame(), View::getFrameForX(), getVerticalScaleWidth(), View::getViewManager(), getXForBin(), View::getXForFrame(), getYForValue(), m_colourMap, m_currentf0, m_currentf1, m_heights, m_normalize, m_plotStyle, m_samplingMode, m_scalePoints, m_sliceableModel, m_values, m_xorigins, m_yorigins, ColourMapper::map(), NearestSample, PlotBlocks, PlotFilledBlocks, PlotLines, PlotSteps, SampleMean, SamplePeak, and ViewManager::shouldShowScaleGuides().
QString SliceLayer::getFeatureDescription | ( | View * | v, |
QPoint & | p | ||
) | const [virtual] |
Reimplemented from Layer.
Reimplemented in SpectrumLayer.
Definition at line 95 of file SliceLayer.cpp.
References getFeatureDescriptionAux().
int SliceLayer::getVerticalScaleWidth | ( | View * | v, |
bool | , | ||
QPainter & | paint | ||
) | const [virtual] |
Implements Layer.
Reimplemented in SpectrumLayer.
Definition at line 504 of file SliceLayer.cpp.
References AbsoluteScale, LinearScale, and m_energyScale.
Referenced by paint().
void SliceLayer::paintVerticalScale | ( | View * | v, |
bool | , | ||
QPainter & | paint, | ||
QRect | rect | ||
) | const [virtual] |
Reimplemented from Layer.
Definition at line 516 of file SliceLayer.cpp.
References AbsoluteScale, getThresholdDb(), LinearScale, m_energyScale, m_gain, m_scalePoints, m_threshold, and PaintAssistant::paintVerticalLevelScale().
virtual ColourSignificance SliceLayer::getLayerColourSignificance | ( | ) | const [inline, virtual] |
Implements Layer::getLayerColourSignificance()
Reimplemented from SingleColourLayer.
Definition at line 48 of file SliceLayer.h.
References Layer::ColourAndBackgroundSignificant.
Layer::PropertyList SliceLayer::getProperties | ( | ) | const [virtual] |
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 551 of file SliceLayer.cpp.
QString SliceLayer::getPropertyLabel | ( | const PropertyName & | name | ) | const [virtual] |
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 565 of file SliceLayer.cpp.
QString SliceLayer::getPropertyIconName | ( | const PropertyName & | name | ) | const [virtual] |
Reimplemented in SpectrumLayer.
Definition at line 578 of file SliceLayer.cpp.
Layer::PropertyType SliceLayer::getPropertyType | ( | const PropertyName & | name | ) | const [virtual] |
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 585 of file SliceLayer.cpp.
References m_plotStyle, and PlotFilledBlocks.
QString SliceLayer::getPropertyGroupName | ( | const PropertyName & | name | ) | const [virtual] |
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 599 of file SliceLayer.cpp.
int SliceLayer::getPropertyRangeAndValue | ( | const PropertyName & | name, |
int * | min, | ||
int * | max, | ||
int * | deflt | ||
) | const [virtual] |
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 612 of file SliceLayer.cpp.
References dBScale, ColourMapper::getColourMapCount(), LinearBins, m_binScale, m_colourMap, m_energyScale, m_gain, m_initialThreshold, m_normalize, m_plotStyle, m_samplingMode, m_threshold, PlotFilledBlocks, PlotSteps, and SampleMean.
QString SliceLayer::getPropertyValueLabel | ( | const PropertyName & | name, |
int | value | ||
) | const [virtual] |
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 701 of file SliceLayer.cpp.
References ColourMapper::getColourMapName(), m_plotStyle, and PlotFilledBlocks.
RangeMapper * SliceLayer::getNewPropertyRangeMapper | ( | const PropertyName & | name | ) | const [virtual] |
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 745 of file SliceLayer.cpp.
void SliceLayer::setProperty | ( | const PropertyName & | name, |
int | value | ||
) | [virtual] |
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 757 of file SliceLayer.cpp.
References AbsoluteScale, dBScale, InvertedLogBins, LinearBins, LinearScale, LogBins, m_plotStyle, MeterScale, NearestSample, PlotFilledBlocks, SampleMean, SamplePeak, setBinScale(), setEnergyScale(), setFillColourMap(), setGain(), setNormalize(), setPlotStyle(), setSamplingMode(), and setThreshold().
void SliceLayer::setProperties | ( | const QXmlAttributes & | ) | [virtual] |
Set the particular properties of a layer (those specific to the subclass) from a set of XML attributes.
This is the effective inverse of the toXml method.
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 909 of file SliceLayer.cpp.
References setBinScale(), setEnergyScale(), setFillColourMap(), setGain(), setNormalize(), setPlotStyle(), setSamplingMode(), and setThreshold().
bool SliceLayer::getValueExtents | ( | float & | min, |
float & | max, | ||
bool & | logarithmic, | ||
QString & | unit | ||
) | const [virtual] |
Return the minimum and maximum values for the y axis of the model in this layer, as well as whether the layer is configured to use a logarithmic y axis display.
Also return the unit for these values if known.
This function returns the "normal" extents for the layer, not necessarily the extents actually in use in the display.
Implements Layer.
Reimplemented in SpectrumLayer.
Definition at line 945 of file SliceLayer.cpp.
virtual bool SliceLayer::hasTimeXAxis | ( | ) | const [inline, virtual] |
Reimplemented from Layer.
Definition at line 68 of file SliceLayer.h.
virtual bool SliceLayer::isLayerScrollable | ( | const View * | ) | const [inline, virtual] |
This should return true if the layer can safely be scrolled automatically by a given view (simply copying the existing data and then refreshing the exposed area) without altering its meaning.
For the view widget as a whole this is usually not possible because of invariant (non-scrolling) material displayed over the top, but the widget may be able to optimise scrolling better if it is known that individual views can be scrolled safely in this way.
Reimplemented from Layer.
Reimplemented in SpectrumLayer.
Definition at line 70 of file SliceLayer.h.
void SliceLayer::setFillColourMap | ( | int | map | ) |
Definition at line 798 of file SliceLayer.cpp.
References Layer::layerParametersChanged(), and m_colourMap.
Referenced by setProperties(), and setProperty().
int SliceLayer::getFillColourMap | ( | ) | const [inline] |
Definition at line 81 of file SliceLayer.h.
References m_colourMap.
void SliceLayer::setEnergyScale | ( | EnergyScale | scale | ) |
Definition at line 806 of file SliceLayer.cpp.
References Layer::layerParametersChanged(), and m_energyScale.
Referenced by setProperties(), and setProperty().
EnergyScale SliceLayer::getEnergyScale | ( | ) | const [inline] |
Definition at line 84 of file SliceLayer.h.
References m_energyScale.
void SliceLayer::setSamplingMode | ( | SamplingMode | mode | ) |
Definition at line 814 of file SliceLayer.cpp.
References Layer::layerParametersChanged(), and m_samplingMode.
Referenced by setProperties(), and setProperty().
SamplingMode SliceLayer::getSamplingMode | ( | ) | const [inline] |
Definition at line 87 of file SliceLayer.h.
References m_samplingMode.
void SliceLayer::setPlotStyle | ( | PlotStyle | style | ) |
Definition at line 822 of file SliceLayer.cpp.
References Layer::layerParameterRangesChanged(), Layer::layerParametersChanged(), m_plotStyle, and PlotFilledBlocks.
Referenced by setProperties(), and setProperty().
PlotStyle SliceLayer::getPlotStyle | ( | ) | const [inline] |
Definition at line 90 of file SliceLayer.h.
References m_plotStyle.
void SliceLayer::setBinScale | ( | BinScale | scale | ) |
Definition at line 835 of file SliceLayer.cpp.
References Layer::layerParametersChanged(), and m_binScale.
Referenced by setProperties(), setProperty(), and SpectrumLayer::SpectrumLayer().
BinScale SliceLayer::getBinScale | ( | ) | const [inline] |
Definition at line 93 of file SliceLayer.h.
References m_binScale.
void SliceLayer::setThreshold | ( | float | thresh | ) |
Definition at line 851 of file SliceLayer.cpp.
References Layer::layerParametersChanged(), and m_threshold.
Referenced by setProperties(), and setProperty().
int SliceLayer::getThreshold | ( | ) | const [inline] |
Definition at line 96 of file SliceLayer.h.
References m_threshold.
void SliceLayer::setGain | ( | float | gain | ) |
Definition at line 859 of file SliceLayer.cpp.
References Layer::layerParametersChanged(), and m_gain.
Referenced by setProperties(), and setProperty().
float SliceLayer::getGain | ( | ) | const |
void SliceLayer::setNormalize | ( | bool | n | ) |
Definition at line 843 of file SliceLayer.cpp.
References Layer::layerParametersChanged(), and m_normalize.
Referenced by setProperties(), and setProperty().
bool SliceLayer::getNormalize | ( | ) | const |
void SliceLayer::toXml | ( | QTextStream & | stream, |
QString | indent = "" , |
||
QString | extraAttributes = "" |
||
) | const [virtual] |
Convert the layer's data (though not those of the model it refers to) into XML for file output.
This class implements the basic name/type/model-id output; subclasses will typically call this superclass implementation with extra attributes describing their particular properties.
Reimplemented from SingleColourLayer.
Reimplemented in SpectrumLayer.
Definition at line 883 of file SliceLayer.cpp.
References m_binScale, m_colourMap, m_energyScale, m_gain, m_normalize, m_plotStyle, m_samplingMode, and m_threshold.
void SliceLayer::sliceableModelReplaced | ( | const Model * | orig, |
const Model * | replacement | ||
) | [slot] |
Definition at line 74 of file SliceLayer.cpp.
References m_sliceableModel, and setSliceableModel().
void SliceLayer::modelAboutToBeDeleted | ( | Model * | m | ) | [slot] |
Definition at line 85 of file SliceLayer.cpp.
References m_sliceableModel, and setSliceableModel().
float SliceLayer::getXForBin | ( | int | bin, |
int | totalBins, | ||
float | w | ||
) | const [protected, virtual] |
Reimplemented in SpectrumLayer.
Definition at line 183 of file SliceLayer.cpp.
References InvertedLogBins, LinearBins, LogBins, and m_binScale.
Referenced by paint().
int SliceLayer::getBinForX | ( | float | x, |
int | totalBins, | ||
float | w | ||
) | const [protected, virtual] |
Reimplemented in SpectrumLayer.
Definition at line 206 of file SliceLayer.cpp.
References InvertedLogBins, LinearBins, LogBins, and m_binScale.
Referenced by getFeatureDescriptionAux().
float SliceLayer::getYForValue | ( | float | value, |
const View * | v, | ||
float & | norm | ||
) | const [protected, virtual] |
Definition at line 229 of file SliceLayer.cpp.
References AbsoluteScale, dBScale, getThresholdDb(), LinearScale, m_energyScale, m_gain, m_heights, m_threshold, m_yorigins, and MeterScale.
Referenced by paint(), and SpectrumLayer::paint().
float SliceLayer::getValueForY | ( | float | y, |
const View * | v | ||
) | const [protected, virtual] |
Definition at line 279 of file SliceLayer.cpp.
References AbsoluteScale, dBScale, getThresholdDb(), LinearScale, m_energyScale, m_gain, m_heights, m_threshold, m_yorigins, and MeterScale.
Referenced by SpectrumLayer::getYScaleValue(), and SpectrumLayer::paintCrosshairs().
QString SliceLayer::getFeatureDescriptionAux | ( | View * | v, |
QPoint & | p, | ||
bool | includeBinDescription, | ||
int & | minbin, | ||
int & | maxbin, | ||
int & | range | ||
) | const [protected, virtual] |
Definition at line 102 of file SliceLayer.cpp.
References getBinForX(), m_currentf0, m_currentf1, m_samplingMode, m_sliceableModel, m_values, m_xorigins, NearestSample, and SampleMean.
Referenced by getFeatureDescription(), and SpectrumLayer::getFeatureDescription().
virtual void SliceLayer::getBiasCurve | ( | BiasCurve & | ) | const [inline, protected, virtual] |
float SliceLayer::getThresholdDb | ( | ) | const [protected, virtual] |
Definition at line 867 of file SliceLayer.cpp.
References m_threshold.
Referenced by getValueForY(), getYForValue(), and paintVerticalScale().
int SliceLayer::getDefaultColourHint | ( | bool | dark, |
bool & | impose | ||
) | [protected, virtual] |
Reimplemented from SingleColourLayer.
Definition at line 875 of file SliceLayer.cpp.
References ColourDatabase::getColourIndex(), and ColourDatabase::getInstance().
void SingleColourLayer::setBaseColour | ( | int | colour | ) | [virtual, inherited] |
Set the colour used to draw primary items in the layer.
The colour value is a colour database index as returned by ColourDatabase::getColourIndex().
Definition at line 220 of file SingleColourLayer.cpp.
References SingleColourLayer::flagBaseColourChanged(), Layer::layerParametersChanged(), SingleColourLayer::m_colour, SingleColourLayer::m_colourExplicitlySet, SingleColourLayer::refColor(), and SingleColourLayer::unrefColor().
Referenced by SingleColourLayer::setDefaultColourFor(), and SingleColourLayer::setProperty().
int SingleColourLayer::getBaseColour | ( | ) | const [virtual, inherited] |
Retrieve the current primary drawing colour, as a ColourDatabase index value.
Definition at line 235 of file SingleColourLayer.cpp.
References SingleColourLayer::m_colour.
bool SingleColourLayer::hasLightBackground | ( | ) | const [virtual, inherited] |
Return true if the layer currently has a dark colour on a light background, false if it has a light colour on a dark background.
Reimplemented from Layer.
Definition at line 53 of file SingleColourLayer.cpp.
References ColourDatabase::getInstance(), SingleColourLayer::m_colour, and ColourDatabase::useDarkBackground().
QPixmap SingleColourLayer::getLayerPresentationPixmap | ( | QSize | size | ) | const [virtual, inherited] |
Reimplemented from Layer.
Definition at line 47 of file SingleColourLayer.cpp.
References ColourDatabase::getExamplePixmap(), ColourDatabase::getInstance(), and SingleColourLayer::m_colour.
void SingleColourLayer::setDefaultColourFor | ( | View * | v | ) | [virtual, inherited] |
Definition at line 140 of file SingleColourLayer.cpp.
References ColourDatabase::getColourCount(), SingleColourLayer::getDefaultColourHint(), ColourDatabase::getInstance(), View::hasLightBackground(), SingleColourLayer::m_colour, SingleColourLayer::m_colourExplicitlySet, SingleColourLayer::m_colourRefCount, SingleColourLayer::m_defaultColourSet, SingleColourLayer::refColor(), SingleColourLayer::setBaseColour(), SingleColourLayer::unrefColor(), and ColourDatabase::useDarkBackground().
Referenced by View::addLayer(), and SingleColourLayer::SingleColourLayer().
QColor SingleColourLayer::getBaseQColor | ( | ) | const [protected, virtual, inherited] |
Definition at line 241 of file SingleColourLayer.cpp.
References ColourDatabase::getColour(), ColourDatabase::getInstance(), and SingleColourLayer::m_colour.
Referenced by SingleColourLayer::getPartialShades(), TimeRulerLayer::paint(), TextLayer::paint(), TimeInstantLayer::paint(), NoteLayer::paint(), TimeValueLayer::paint(), paint(), WaveformLayer::paint(), FlexiNoteLayer::paint(), and RegionLayer::paint().
QColor SingleColourLayer::getBackgroundQColor | ( | View * | v | ) | const [protected, virtual, inherited] |
Definition at line 247 of file SingleColourLayer.cpp.
References View::getBackground().
Referenced by SingleColourLayer::getPartialShades(), and WaveformLayer::paint().
QColor SingleColourLayer::getForegroundQColor | ( | View * | v | ) | const [protected, virtual, inherited] |
Definition at line 253 of file SingleColourLayer.cpp.
References View::getForeground().
Referenced by TimeInstantLayer::paint(), TimeValueLayer::paint(), WaveformLayer::paint(), and RegionLayer::paint().
std::vector< QColor > SingleColourLayer::getPartialShades | ( | View * | v | ) | const [protected, inherited] |
Definition at line 259 of file SingleColourLayer.cpp.
References SingleColourLayer::getBackgroundQColor(), and SingleColourLayer::getBaseQColor().
Referenced by TimeRulerLayer::paint(), TimeValueLayer::paint(), and WaveformLayer::paint().
virtual void SingleColourLayer::flagBaseColourChanged | ( | ) | [inline, protected, virtual, inherited] |
Reimplemented in WaveformLayer.
Definition at line 85 of file SingleColourLayer.h.
Referenced by SingleColourLayer::setBaseColour(), and SingleColourLayer::setProperties().
Model* Layer::getModel | ( | ) | [inline, inherited] |
Definition at line 62 of file Layer.h.
References Layer::getModel().
virtual const ZoomConstraint* Layer::getZoomConstraint | ( | ) | const [inline, virtual, inherited] |
Return a zoom constraint object defining the supported zoom levels for this layer.
If this returns zero, the layer will support any integer zoom level.
Reimplemented in SpectrogramLayer, Colour3DPlotLayer, and WaveformLayer.
virtual bool Layer::supportsOtherZoomLevels | ( | ) | const [inline, virtual, inherited] |
Return true if this layer can handle zoom levels other than those supported by its zoom constraint (presumably less efficiently or accurately than the officially supported zoom levels).
If true, the layer will unenthusistically accept any integer zoom level from 1 to the maximum returned by its zoom constraint.
virtual void Layer::setSynchronousPainting | ( | bool | ) | [inline, virtual, inherited] |
Enable or disable synchronous painting.
If synchronous painting is enabled, a call to paint() must complete painting the entire rectangle before it returns. If synchronous painting is disabled (which should be the default), the paint() call may defer painting some regions if data is not yet available, by calling back on its view to schedule another update. Synchronous painting is necessary when rendering to an image. Simple layer types will always paint synchronously, and so may ignore this.
Reimplemented in SpectrogramLayer.
virtual VerticalPosition Layer::getPreferredTimeRulerPosition | ( | ) | const [inline, virtual, inherited] |
Definition at line 109 of file Layer.h.
References Layer::PositionMiddle.
virtual VerticalPosition Layer::getPreferredFrameCountPosition | ( | ) | const [inline, virtual, inherited] |
Reimplemented in SpectrogramLayer, and SpectrumLayer.
Definition at line 112 of file Layer.h.
References Layer::PositionBottom.
QString Layer::getPropertyContainerIconName | ( | ) | const [virtual, inherited] |
Definition at line 65 of file Layer.cpp.
References LayerFactory::getInstance(), and LayerFactory::getLayerIconName().
Referenced by LayerTreeModel::data().
virtual QString Layer::getPropertyContainerName | ( | ) | const [inline, virtual, inherited] |
Definition at line 121 of file Layer.h.
References Layer::m_presentationName.
void Layer::setPresentationName | ( | QString | name | ) | [virtual, inherited] |
Definition at line 72 of file Layer.cpp.
References Layer::m_presentationName.
QString Layer::getLayerPresentationName | ( | ) | const [virtual, inherited] |
Reimplemented in TimeRulerLayer.
Definition at line 78 of file Layer.cpp.
References LayerFactory::getInstance(), LayerFactory::getLayerPresentationName(), LayerFactory::getLayerType(), Layer::getModel(), and Layer::m_presentationName.
Referenced by FlexiNoteLayer::getAssociatedPitchModel(), and PropertyStack::repopulate().
virtual bool Layer::getCrosshairExtents | ( | View * | , |
QPainter & | , | ||
QPoint | , | ||
std::vector< QRect > & | |||
) | const [inline, virtual, inherited] |
Reimplemented in SpectrogramLayer, and SpectrumLayer.
virtual void Layer::paintCrosshairs | ( | View * | , |
QPainter & | , | ||
QPoint | |||
) | const [inline, virtual, inherited] |
Reimplemented in SpectrogramLayer, and SpectrumLayer.
void Layer::paintMeasurementRects | ( | View * | v, |
QPainter & | paint, | ||
bool | showFocus, | ||
QPoint | focusPoint | ||
) | const [virtual, inherited] |
Definition at line 428 of file Layer.cpp.
References Layer::findFocusedMeasureRect(), Layer::m_currentMeasureRectPoint, Layer::m_draggingRect, Layer::m_haveCurrentMeasureRect, Layer::m_haveDraggingRect, Layer::m_measureRects, Layer::paintMeasurementRect(), and Layer::updateMeasurePixrects().
Referenced by Pane::paintEvent().
bool Layer::nearestMeasurementRectChanged | ( | View * | v, |
QPoint | prev, | ||
QPoint | now | ||
) | const [virtual, inherited] |
Definition at line 460 of file Layer.cpp.
References Layer::findFocusedMeasureRect(), and Layer::updateMeasurePixrects().
Referenced by Pane::mouseMoveEvent().
virtual QString Layer::getLabelPreceding | ( | int | ) | const [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, and TimeInstantLayer.
virtual bool Layer::snapToFeatureFrame | ( | View * | , |
int & | , | ||
int & | resolution, | ||
SnapType | |||
) | const [inline, virtual, inherited] |
Adjust the given frame to snap to the nearest feature, if possible.
If snap is SnapLeft or SnapRight, adjust the frame to match that of the nearest feature in the given direction regardless of how far away it is. If snap is SnapNearest, adjust the frame to that of the nearest feature in either direction. If snap is SnapNeighbouring, adjust the frame to that of the nearest feature if it is close, and leave it alone (returning false) otherwise. SnapNeighbouring should always choose the same feature that would be used in an editing operation through calls to editStart etc.
Return true if a suitable feature was found and frame adjusted accordingly. Return false if no suitable feature was available (and leave frame unmodified). If returning true, also return the resolution of the model in this layer in sample frames.
Reimplemented in SpectrogramLayer, Colour3DPlotLayer, RegionLayer, FlexiNoteLayer, TimeValueLayer, ImageLayer, NoteLayer, TimeRulerLayer, TimeInstantLayer, and TextLayer.
Definition at line 183 of file Layer.h.
Referenced by Pane::dragExtendSelection(), and Pane::mousePressEvent().
virtual bool Layer::snapToSimilarFeature | ( | View * | , |
int & | , | ||
int & | resolution, | ||
SnapType | |||
) | const [inline, virtual, inherited] |
Adjust the given frame to snap to the next feature that has "effectively" the same value as the feature prior to the given frame, if possible.
The snap type must be SnapLeft (snap to the time of the next feature prior to the one preceding the given frame that has a similar value to it) or SnapRight (snap to the time of the next feature following the given frame that has a similar value to the feature preceding it). Other values are not permitted.
Return true if a suitable feature was found and frame adjusted accordingly. Return false if no suitable feature was available (and leave frame unmodified). If returning true, also return the resolution of the model in this layer in sample frames.
Reimplemented in RegionLayer, and TimeValueLayer.
virtual void Layer::drawStart | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, FlexiNoteLayer, ImageLayer, NoteLayer, TimeInstantLayer, and TextLayer.
Definition at line 220 of file Layer.h.
Referenced by Pane::mousePressEvent().
virtual void Layer::drawDrag | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, FlexiNoteLayer, ImageLayer, NoteLayer, TimeInstantLayer, and TextLayer.
Definition at line 221 of file Layer.h.
Referenced by Pane::mouseMoveEvent().
virtual void Layer::drawEnd | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, FlexiNoteLayer, ImageLayer, NoteLayer, TimeInstantLayer, and TextLayer.
Definition at line 222 of file Layer.h.
Referenced by Pane::mouseReleaseEvent().
virtual void Layer::eraseStart | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, FlexiNoteLayer, NoteLayer, TimeInstantLayer, and TextLayer.
Definition at line 224 of file Layer.h.
Referenced by Pane::mousePressEvent().
virtual void Layer::eraseDrag | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, FlexiNoteLayer, NoteLayer, TimeInstantLayer, and TextLayer.
Definition at line 225 of file Layer.h.
Referenced by Pane::mouseMoveEvent().
virtual void Layer::eraseEnd | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, FlexiNoteLayer, NoteLayer, TimeInstantLayer, and TextLayer.
Definition at line 226 of file Layer.h.
Referenced by Pane::mouseReleaseEvent().
virtual void Layer::editStart | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, FlexiNoteLayer, NoteLayer, ImageLayer, TimeInstantLayer, and TextLayer.
Definition at line 228 of file Layer.h.
Referenced by Pane::mouseMoveEvent().
virtual void Layer::editDrag | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, FlexiNoteLayer, NoteLayer, ImageLayer, TimeInstantLayer, and TextLayer.
Definition at line 229 of file Layer.h.
Referenced by Pane::mouseMoveEvent().
virtual void Layer::editEnd | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in RegionLayer, TimeValueLayer, FlexiNoteLayer, NoteLayer, ImageLayer, TimeInstantLayer, and TextLayer.
Definition at line 230 of file Layer.h.
Referenced by Pane::mouseReleaseEvent().
virtual void Layer::splitStart | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in FlexiNoteLayer.
Definition at line 232 of file Layer.h.
Referenced by Pane::mousePressEvent().
virtual void Layer::splitEnd | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in FlexiNoteLayer.
Definition at line 233 of file Layer.h.
Referenced by Pane::mouseReleaseEvent().
virtual void Layer::addNote | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Reimplemented in FlexiNoteLayer.
Definition at line 234 of file Layer.h.
Referenced by Pane::mouseDoubleClickEvent().
void Layer::measureStart | ( | View * | v, |
QMouseEvent * | e | ||
) | [virtual, inherited] |
Definition at line 374 of file Layer.cpp.
References Layer::m_draggingRect, Layer::m_haveDraggingRect, and Layer::setMeasureRectFromPixrect().
Referenced by Pane::mousePressEvent().
void Layer::measureDrag | ( | View * | v, |
QMouseEvent * | e | ||
) | [virtual, inherited] |
Definition at line 382 of file Layer.cpp.
References Layer::m_draggingRect, Layer::m_haveDraggingRect, Layer::MeasureRect::pixrect, and Layer::setMeasureRectFromPixrect().
Referenced by Layer::measureEnd(), and Pane::mouseMoveEvent().
void Layer::measureEnd | ( | View * | v, |
QMouseEvent * | e | ||
) | [virtual, inherited] |
Definition at line 394 of file Layer.cpp.
References CommandHistory::addCommand(), CommandHistory::getInstance(), Layer::m_draggingRect, Layer::m_haveDraggingRect, Layer::measureDrag(), and Layer::MeasureRect::pixrect.
Referenced by Pane::mouseReleaseEvent().
void Layer::measureDoubleClick | ( | View * | , |
QMouseEvent * | |||
) | [virtual, inherited] |
Reimplemented in SpectrogramLayer.
Definition at line 408 of file Layer.cpp.
Referenced by Pane::mouseDoubleClickEvent().
virtual bool Layer::haveCurrentMeasureRect | ( | ) | const [inline, virtual, inherited] |
Definition at line 245 of file Layer.h.
References Layer::m_haveCurrentMeasureRect.
void Layer::deleteCurrentMeasureRect | ( | ) | [virtual, inherited] |
Definition at line 414 of file Layer.cpp.
References CommandHistory::addCommand(), Layer::findFocusedMeasureRect(), CommandHistory::getInstance(), Layer::m_currentMeasureRectPoint, Layer::m_haveCurrentMeasureRect, and Layer::m_measureRects.
virtual bool Layer::editOpen | ( | View * | , |
QMouseEvent * | |||
) | [inline, virtual, inherited] |
Open an editor on the item under the mouse (e.g.
on double-click). If there is no item or editing is not supported, return false.
Reimplemented in FlexiNoteLayer, RegionLayer, TimeValueLayer, ImageLayer, TextLayer, NoteLayer, and TimeInstantLayer.
Definition at line 255 of file Layer.h.
Referenced by Pane::mouseDoubleClickEvent().
virtual void Layer::moveSelection | ( | Selection | , |
int | |||
) | [inline, virtual, inherited] |
Reimplemented in FlexiNoteLayer, RegionLayer, TimeValueLayer, NoteLayer, TimeInstantLayer, ImageLayer, and TextLayer.
Definition at line 257 of file Layer.h.
Referenced by Pane::editSelectionEnd().
virtual void Layer::resizeSelection | ( | Selection | , |
Selection | |||
) | [inline, virtual, inherited] |
Reimplemented in FlexiNoteLayer, RegionLayer, TimeValueLayer, NoteLayer, TimeInstantLayer, ImageLayer, and TextLayer.
Definition at line 258 of file Layer.h.
Referenced by Pane::editSelectionEnd().
virtual void Layer::deleteSelection | ( | Selection | ) | [inline, virtual, inherited] |
Reimplemented in FlexiNoteLayer, RegionLayer, TimeValueLayer, NoteLayer, TimeInstantLayer, ImageLayer, and TextLayer.
virtual void Layer::copy | ( | View * | , |
Selection | , | ||
Clipboard & | |||
) | [inline, virtual, inherited] |
Reimplemented in FlexiNoteLayer, RegionLayer, TimeValueLayer, NoteLayer, TimeInstantLayer, ImageLayer, and TextLayer.
Definition at line 261 of file Layer.h.
Referenced by SpectrogramLayer::paint(), and Colour3DPlotLayer::paintDense().
virtual bool Layer::paste | ( | View * | , |
const Clipboard & | , | ||
int | , | ||
bool | |||
) | [inline, virtual, inherited] |
Paste from the given clipboard onto the layer at the given frame offset.
If interactive is true, the layer may ask the user about paste options through a dialog if desired, and may return false if the user cancelled the paste operation. This function should return true if a paste actually occurred.
Reimplemented in FlexiNoteLayer, RegionLayer, TimeValueLayer, NoteLayer, TimeInstantLayer, ImageLayer, and TextLayer.
virtual bool Layer::isLayerOpaque | ( | ) | const [inline, virtual, inherited] |
This should return true if the layer completely obscures any underlying layers.
It's used to determine whether the view can safely draw any selection rectangles under the layer instead of over it, in the case where the layer is not scrollable and therefore needs to be redrawn each time (so that the selection rectangle can be cached).
Reimplemented in SpectrogramLayer.
Definition at line 302 of file Layer.h.
Referenced by View::getAligningModel().
virtual bool Layer::isLayerEditable | ( | ) | const [inline, virtual, inherited] |
This should return true if the layer can be edited by the user.
If this is the case, the appropriate edit tools may be made available by the application and the layer's drawStart/Drag/End and editStart/Drag/End methods should be implemented.
Reimplemented in TimeValueLayer, FlexiNoteLayer, RegionLayer, NoteLayer, TimeInstantLayer, ImageLayer, and TextLayer.
Definition at line 338 of file Layer.h.
Referenced by Pane::mouseDoubleClickEvent(), Pane::mouseMoveEvent(), Pane::mousePressEvent(), Pane::mouseReleaseEvent(), Pane::shouldIlluminateLocalSelection(), and Pane::updateContextHelp().
virtual int Layer::getCompletion | ( | View * | ) | const [inline, virtual, inherited] |
Return the proportion of background work complete in drawing this view, as a percentage -- in most cases this will be the value returned by pointer from a call to the underlying model's isReady(int *) call.
The view may choose to show a progress meter if it finds that this returns < 100 at any given moment.
Reimplemented in SpectrogramLayer, WaveformLayer, TimeValueLayer, FlexiNoteLayer, RegionLayer, NoteLayer, TimeInstantLayer, ImageLayer, TextLayer, and Colour3DPlotLayer.
virtual QString Layer::getError | ( | View * | ) | const [inline, virtual, inherited] |
Return an error string if any errors have occurred while loading or processing data for the given view.
Return the empty string if no error has occurred.
Reimplemented in SpectrogramLayer.
void Layer::setObjectName | ( | const QString & | name | ) | [virtual, inherited] |
Definition at line 100 of file Layer.cpp.
References Layer::layerNameChanged().
Referenced by LayerFactory::createLayer().
void Layer::toBriefXml | ( | QTextStream & | stream, |
QString | indent = "" , |
||
QString | extraAttributes = "" |
||
) | const [virtual, inherited] |
Produce XML containing the layer's ID and type.
This is used to refer to the layer in the display section of the SV session file, for a layer that has already been described in the data section.
Definition at line 626 of file Layer.cpp.
References LayerFactory::getInstance(), Layer::getModel(), and Layer::m_presentationName.
void Layer::addMeasurementRect | ( | const QXmlAttributes & | attributes | ) | [virtual, inherited] |
Add a measurement rectangle from the given XML attributes (presumably taken from a measurement element).
Does not use a command.
Definition at line 317 of file Layer.cpp.
References Layer::addMeasureRectToSet(), Layer::MeasureRect::endFrame, Layer::MeasureRect::endY, Layer::MeasureRect::haveFrames, Layer::MeasureRect::pixrect, Layer::MeasureRect::startFrame, and Layer::MeasureRect::startY.
void Layer::setLayerDormant | ( | const View * | v, |
bool | dormant | ||
) | [virtual, inherited] |
Indicate that a layer is not currently visible in the given view and is not expected to become visible in the near future (for example because the user has explicitly removed or hidden it).
The layer may respond by (for example) freeing any cache memory it is using, until next time its paint method is called, when it should set itself un-dormant again.
A layer class that overrides this function must also call this class's implementation.
Reimplemented in SpectrogramLayer, ImageLayer, and Colour3DPlotLayer.
Definition at line 118 of file Layer.cpp.
References Layer::m_dormancy, and Layer::m_dormancyMutex.
Referenced by SpectrogramLayer::paint(), and Layer::showLayer().
bool Layer::isLayerDormant | ( | const View * | v | ) | const [virtual, inherited] |
Return whether the layer is dormant (i.e.
hidden) in the given view.
Definition at line 126 of file Layer.cpp.
References Layer::m_dormancy, and Layer::m_dormancyMutex.
Referenced by LayerTreeModel::data(), View::getInteractionLayer(), SpectrogramLayer::paint(), PropertyStack::propertyContainerPropertyChanged(), PropertyStack::repopulate(), Colour3DPlotLayer::setLayerDormant(), and SpectrogramLayer::setLayerDormant().
PlayParameters * Layer::getPlayParameters | ( | ) | [virtual, inherited] |
Definition at line 107 of file Layer.cpp.
References Layer::getModel().
Referenced by LayerTreeModel::data(), LayerTreeModel::LayerTreeModel(), LayerTreeModel::playParametersAudibilityChanged(), and LayerTreeModel::setData().
virtual bool Layer::needsTextLabelHeight | ( | ) | const [inline, virtual, inherited] |
Reimplemented in TimeValueLayer, and TimeInstantLayer.
virtual bool Layer::getDisplayExtents | ( | float & | , |
float & | |||
) | const [inline, virtual, inherited] |
Return the minimum and maximum values within the displayed range for the y axis, if only a subset of the whole range of the model (returned by getValueExtents) is being displayed.
Return false if the layer is not imposing a particular display extent (using the normal layer extents or deferring to whatever is in use for the same units elsewhere in the view).
Reimplemented in SpectrogramLayer, Colour3DPlotLayer, TimeValueLayer, FlexiNoteLayer, RegionLayer, and NoteLayer.
Definition at line 437 of file Layer.h.
Referenced by Pane::drawVerticalScale(), and Pane::getTopLayerDisplayExtents().
virtual bool Layer::setDisplayExtents | ( | float | , |
float | |||
) | [inline, virtual, inherited] |
Set the displayed minimum and maximum values for the y axis to the given range, if supported.
Return false if not supported on this layer (and set nothing). In most cases, layers that return false for getDisplayExtents should also return false for this function.
Reimplemented in SpectrogramLayer, Colour3DPlotLayer, TimeValueLayer, FlexiNoteLayer, and NoteLayer.
Definition at line 449 of file Layer.h.
Referenced by Pane::setTopLayerDisplayExtents(), FlexiNoteLayer::setVerticalRangeToNoteRange(), and Pane::zoomToRegion().
bool Layer::getXScaleValue | ( | const View * | v, |
int | x, | ||
float & | value, | ||
QString & | unit | ||
) | const [virtual, inherited] |
Return the value and unit at the given x coordinate in the given view.
This is for descriptive purposes using the measurement tool. The default implementation works correctly if the layer hasTimeXAxis().
Reimplemented in SpectrumLayer.
Definition at line 142 of file Layer.cpp.
References View::getFrameForX(), Layer::getModel(), and Layer::hasTimeXAxis().
Referenced by View::drawMeasurementRect().
virtual bool Layer::getYScaleValue | ( | const View * | , |
int | , | ||
float & | , | ||
QString & | |||
) | const [inline, virtual, inherited] |
Return the value and unit at the given y coordinate in the given view.
Reimplemented in SpectrogramLayer, WaveformLayer, Colour3DPlotLayer, and SpectrumLayer.
Definition at line 467 of file Layer.h.
Referenced by View::drawMeasurementRect(), and Layer::getYScaleDifference().
bool Layer::getYScaleDifference | ( | const View * | v, |
int | y0, | ||
int | y1, | ||
float & | diff, | ||
QString & | unit | ||
) | const [virtual, inherited] |
Return the difference between the values at the given y coordinates in the given view, and the unit of the difference.
The default implementation just calls getYScaleValue twice and returns the difference, with the same unit.
Reimplemented in WaveformLayer, and SpectrumLayer.
Definition at line 155 of file Layer.cpp.
References Layer::getYScaleValue().
Referenced by View::drawMeasurementRect().
virtual int Layer::getVerticalZoomSteps | ( | int & | ) | const [inline, virtual, inherited] |
Get the number of vertical zoom steps available for this layer.
If vertical zooming is not available, return 0. The meaning of "zooming" is entirely up to the layer -- changing the zoom level may cause the layer to reset its display extents or change another property such as display gain. However, layers are advised for consistency to treat smaller zoom steps as "more distant" or "zoomed out" and larger ones as "closer" or "zoomed in".
Layers that provide this facility should also emit the verticalZoomChanged signal if their vertical zoom changes due to factors other than setVerticalZoomStep being called.
Reimplemented in SpectrogramLayer, WaveformLayer, Colour3DPlotLayer, TimeValueLayer, FlexiNoteLayer, and NoteLayer.
Definition at line 495 of file Layer.h.
Referenced by Pane::updateHeadsUpDisplay(), Pane::updateVerticalPanner(), and Pane::verticalThumbwheelMoved().
virtual int Layer::getCurrentVerticalZoomStep | ( | ) | const [inline, virtual, inherited] |
Get the current vertical zoom step.
A layer may support finer control over ranges etc than is available through the integer zoom step mechanism; if this one does, it should just return the nearest of the available zoom steps to the current settings.
Reimplemented in SpectrogramLayer, WaveformLayer, Colour3DPlotLayer, TimeValueLayer, FlexiNoteLayer, and NoteLayer.
Definition at line 503 of file Layer.h.
Referenced by Pane::updateHeadsUpDisplay(), and Pane::verticalZoomChanged().
virtual void Layer::setVerticalZoomStep | ( | int | ) | [inline, virtual, inherited] |
Set the vertical zoom step.
The meaning of "zooming" is entirely up to the layer -- changing the zoom level may cause the layer to reset its display extents or change another property such as display gain.
Reimplemented in SpectrogramLayer, WaveformLayer, Colour3DPlotLayer, TimeValueLayer, FlexiNoteLayer, and NoteLayer.
Definition at line 511 of file Layer.h.
Referenced by Pane::verticalThumbwheelMoved().
virtual RangeMapper* Layer::getNewVerticalZoomRangeMapper | ( | ) | const [inline, virtual, inherited] |
Create and return a range mapper for vertical zoom step values.
See the RangeMapper documentation for more details. The returned value is allocated on the heap and will be deleted by the caller.
Reimplemented in SpectrogramLayer, Colour3DPlotLayer, TimeValueLayer, FlexiNoteLayer, and NoteLayer.
Definition at line 519 of file Layer.h.
Referenced by Pane::propertyContainerSelected(), and Pane::updateHeadsUpDisplay().
void Layer::showLayer | ( | View * | view, |
bool | show | ||
) | [slot, inherited] |
Definition at line 135 of file Layer.cpp.
References Layer::layerParametersChanged(), and Layer::setLayerDormant().
Referenced by ShowLayerCommand::execute(), LayerTreeModel::setData(), and ShowLayerCommand::unexecute().
void Layer::modelChanged | ( | ) | [signal, inherited] |
Reimplemented in Colour3DPlotLayer.
Referenced by Layer::connectSignals(), ImageLayer::fileSourceReady(), SpectrogramLayer::fillTimerTimedOut(), RegionLayer::setModel(), SpectrogramLayer::setModel(), NoteLayer::setProperty(), TimeValueLayer::setProperty(), RegionLayer::setProperty(), and FlexiNoteLayer::setProperty().
void Layer::modelCompletionChanged | ( | ) | [signal, inherited] |
Referenced by Layer::connectSignals().
void Layer::modelAlignmentCompletionChanged | ( | ) | [signal, inherited] |
Referenced by Layer::connectSignals().
void Layer::modelChangedWithin | ( | int | startFrame, |
int | endFrame | ||
) | [signal, inherited] |
Reimplemented in Colour3DPlotLayer.
Referenced by Layer::connectSignals(), SpectrogramLayer::fillTimerTimedOut(), and SpectrogramLayer::setModel().
void Layer::modelReplaced | ( | ) | [signal, inherited] |
Referenced by TimeRulerLayer::setModel(), WaveformLayer::setModel(), TextLayer::setModel(), TimeInstantLayer::setModel(), ImageLayer::setModel(), Colour3DPlotLayer::setModel(), NoteLayer::setModel(), TimeValueLayer::setModel(), RegionLayer::setModel(), SpectrogramLayer::setModel(), FlexiNoteLayer::setModel(), and setSliceableModel().
void Layer::layerParametersChanged | ( | ) | [signal, inherited] |
Referenced by SpectrogramLayer::preferenceChanged(), WaveformLayer::setAggressiveCacheing(), WaveformLayer::setAutoNormalize(), SingleColourLayer::setBaseColour(), SpectrogramLayer::setBinDisplay(), setBinScale(), Colour3DPlotLayer::setBinScale(), SpectrumLayer::setChannel(), SpectrogramLayer::setChannel(), WaveformLayer::setChannel(), WaveformLayer::setChannelMode(), Colour3DPlotLayer::setColourMap(), SpectrogramLayer::setColourMap(), SpectrogramLayer::setColourRotation(), Colour3DPlotLayer::setColourScale(), SpectrogramLayer::setColourScale(), NoteLayer::setDisplayExtents(), FlexiNoteLayer::setDisplayExtents(), TimeValueLayer::setDisplayExtents(), Colour3DPlotLayer::setDisplayExtents(), SpectrogramLayer::setDisplayExtents(), TimeValueLayer::setDrawSegmentDivisions(), setEnergyScale(), setFillColourMap(), TimeValueLayer::setFillColourMap(), RegionLayer::setFillColourMap(), SpectrogramLayer::setFrequencyScale(), WaveformLayer::setGain(), setGain(), Colour3DPlotLayer::setGain(), SpectrogramLayer::setGain(), Colour3DPlotLayer::setInvertVertical(), SpectrogramLayer::setMaxFrequency(), WaveformLayer::setMiddleLineHeight(), SpectrogramLayer::setMinFrequency(), SpectrumLayer::setModel(), WaveformLayer::setModel(), setNormalize(), Colour3DPlotLayer::setNormalizeColumns(), SpectrogramLayer::setNormalizeColumns(), Colour3DPlotLayer::setNormalizeHybrid(), SpectrogramLayer::setNormalizeHybrid(), Colour3DPlotLayer::setNormalizeVisibleArea(), SpectrogramLayer::setNormalizeVisibleArea(), Colour3DPlotLayer::setOpaque(), TimeInstantLayer::setPlotStyle(), setPlotStyle(), TimeValueLayer::setPlotStyle(), RegionLayer::setPlotStyle(), setSamplingMode(), WaveformLayer::setScale(), TimeValueLayer::setShowDerivative(), WaveformLayer::setShowMeans(), SpectrumLayer::setShowPeaks(), Colour3DPlotLayer::setSmooth(), setThreshold(), SpectrogramLayer::setThreshold(), WaveformLayer::setUseGreyscale(), NoteLayer::setVerticalScale(), RegionLayer::setVerticalScale(), TimeValueLayer::setVerticalScale(), FlexiNoteLayer::setVerticalScale(), Colour3DPlotLayer::setVerticalZoomStep(), SpectrumLayer::setWindowHopLevel(), SpectrogramLayer::setWindowHopLevel(), SpectrumLayer::setWindowSize(), SpectrogramLayer::setWindowSize(), SpectrumLayer::setWindowType(), SpectrogramLayer::setWindowType(), SpectrogramLayer::setZeroPadLevel(), and Layer::showLayer().
void Layer::layerParameterRangesChanged | ( | ) | [signal, inherited] |
Referenced by setPlotStyle(), TimeValueLayer::setPlotStyle(), and RegionLayer::setPlotStyle().
void Layer::layerMeasurementRectsChanged | ( | ) | [signal, inherited] |
Referenced by Layer::addMeasureRectToSet(), and Layer::deleteMeasureRectFromSet().
void Layer::layerNameChanged | ( | ) | [signal, inherited] |
Referenced by Layer::setObjectName().
void Layer::verticalZoomChanged | ( | ) | [signal, inherited] |
Referenced by SpectrogramLayer::setDisplayExtents(), WaveformLayer::setGain(), and SpectrogramLayer::setProperty().
void Layer::connectSignals | ( | const Model * | model | ) | [protected, inherited] |
Definition at line 49 of file Layer.cpp.
References Layer::modelAlignmentCompletionChanged(), Layer::modelChanged(), Layer::modelChangedWithin(), and Layer::modelCompletionChanged().
Referenced by WaveformLayer::setModel(), TextLayer::setModel(), TimeInstantLayer::setModel(), ImageLayer::setModel(), Colour3DPlotLayer::setModel(), NoteLayer::setModel(), TimeValueLayer::setModel(), RegionLayer::setModel(), SpectrogramLayer::setModel(), FlexiNoteLayer::setModel(), and setSliceableModel().
int Layer::alignToReference | ( | View * | v, |
int | frame | ||
) | const [protected, virtual, inherited] |
Definition at line 169 of file Layer.cpp.
References View::alignToReference(), and Layer::getModel().
Referenced by Layer::clipboardHasDifferentAlignment(), TextLayer::copy(), ImageLayer::copy(), TimeInstantLayer::copy(), NoteLayer::copy(), TimeValueLayer::copy(), RegionLayer::copy(), and FlexiNoteLayer::copy().
int Layer::alignFromReference | ( | View * | v, |
int | frame | ||
) | const [protected, virtual, inherited] |
Definition at line 181 of file Layer.cpp.
References View::alignFromReference(), and Layer::getModel().
Referenced by TextLayer::paste(), ImageLayer::paste(), TimeInstantLayer::paste(), NoteLayer::paste(), TimeValueLayer::paste(), RegionLayer::paste(), and FlexiNoteLayer::paste().
bool Layer::clipboardHasDifferentAlignment | ( | View * | v, |
const Clipboard & | clip | ||
) | const [protected, inherited] |
Definition at line 193 of file Layer.cpp.
References Layer::alignToReference().
Referenced by TextLayer::paste(), ImageLayer::paste(), TimeInstantLayer::paste(), NoteLayer::paste(), TimeValueLayer::paste(), RegionLayer::paste(), and FlexiNoteLayer::paste().
void Layer::addMeasureRectToSet | ( | const MeasureRect & | r | ) | [inline, protected, inherited] |
Definition at line 588 of file Layer.h.
References Layer::layerMeasurementRectsChanged(), and Layer::m_measureRects.
Referenced by Layer::addMeasurementRect().
void Layer::deleteMeasureRectFromSet | ( | const MeasureRect & | r | ) | [inline, protected, inherited] |
Definition at line 593 of file Layer.h.
References Layer::layerMeasurementRectsChanged(), and Layer::m_measureRects.
void Layer::updateMeasurePixrects | ( | View * | v | ) | const [protected, inherited] |
Definition at line 471 of file Layer.cpp.
References View::getEndFrame(), View::getStartFrame(), View::getXForFrame(), Layer::m_measureRects, and Layer::updateMeasureRectYCoords().
Referenced by Layer::nearestMeasurementRectChanged(), and Layer::paintMeasurementRects().
void Layer::updateMeasureRectYCoords | ( | View * | v, |
const MeasureRect & | r | ||
) | const [protected, virtual, inherited] |
Reimplemented in SpectrogramLayer.
Definition at line 510 of file Layer.cpp.
References Layer::MeasureRect::endY, Layer::MeasureRect::pixrect, and Layer::MeasureRect::startY.
Referenced by Layer::updateMeasurePixrects().
void Layer::setMeasureRectYCoord | ( | View * | v, |
MeasureRect & | r, | ||
bool | start, | ||
int | y | ||
) | const [protected, virtual, inherited] |
Reimplemented in SpectrogramLayer.
Definition at line 518 of file Layer.cpp.
References Layer::MeasureRect::endY, and Layer::MeasureRect::startY.
Referenced by Layer::setMeasureRectFromPixrect().
void Layer::setMeasureRectFromPixrect | ( | View * | v, |
MeasureRect & | r, | ||
QRect | pixrect | ||
) | const [protected, virtual, inherited] |
Definition at line 529 of file Layer.cpp.
References Layer::MeasureRect::endFrame, View::getFrameForX(), Layer::hasTimeXAxis(), Layer::MeasureRect::haveFrames, Layer::MeasureRect::pixrect, Layer::setMeasureRectYCoord(), and Layer::MeasureRect::startFrame.
Referenced by SpectrogramLayer::measureDoubleClick(), Layer::measureDrag(), and Layer::measureStart().
Layer::MeasureRectSet::const_iterator Layer::findFocusedMeasureRect | ( | QPoint | focusPoint | ) | const [protected, inherited] |
Definition at line 542 of file Layer.cpp.
References Layer::m_measureRects.
Referenced by Layer::deleteCurrentMeasureRect(), Layer::nearestMeasurementRectChanged(), and Layer::paintMeasurementRects().
void Layer::paintMeasurementRect | ( | View * | v, |
QPainter & | paint, | ||
const MeasureRect & | r, | ||
bool | focus | ||
) | const [protected, inherited] |
Definition at line 569 of file Layer.cpp.
References View::drawMeasurementRect(), Layer::MeasureRect::endFrame, View::getEndFrame(), View::getStartFrame(), View::getXForFrame(), Layer::MeasureRect::haveFrames, Layer::MeasureRect::pixrect, and Layer::MeasureRect::startFrame.
Referenced by Layer::paintMeasurementRects().
const DenseThreeDimensionalModel* SliceLayer::m_sliceableModel [protected] |
Definition at line 133 of file SliceLayer.h.
Referenced by SpectrumLayer::getBinForX(), SpectrumLayer::getFeatureDescription(), getFeatureDescriptionAux(), SpectrumLayer::getFrequencyForX(), SpectrumLayer::getXForBin(), SpectrumLayer::getXForFrequency(), modelAboutToBeDeleted(), paint(), SpectrumLayer::paint(), SpectrumLayer::paintCrosshairs(), SpectrumLayer::setModel(), setSliceableModel(), SpectrumLayer::setupFFT(), sliceableModelReplaced(), and SpectrumLayer::~SpectrumLayer().
int SliceLayer::m_colourMap [protected] |
Definition at line 134 of file SliceLayer.h.
Referenced by getFillColourMap(), getPropertyRangeAndValue(), paint(), SpectrumLayer::paintCrosshairs(), setFillColourMap(), and toXml().
EnergyScale SliceLayer::m_energyScale [protected] |
Definition at line 135 of file SliceLayer.h.
Referenced by getEnergyScale(), getPropertyRangeAndValue(), getValueForY(), getVerticalScaleWidth(), getYForValue(), SpectrumLayer::getYScaleValue(), paintVerticalScale(), setEnergyScale(), and toXml().
SamplingMode SliceLayer::m_samplingMode [protected] |
Definition at line 136 of file SliceLayer.h.
Referenced by SpectrumLayer::getFeatureDescription(), getFeatureDescriptionAux(), getPropertyRangeAndValue(), getSamplingMode(), paint(), setSamplingMode(), and toXml().
PlotStyle SliceLayer::m_plotStyle [protected] |
Definition at line 137 of file SliceLayer.h.
Referenced by getPlotStyle(), getPropertyRangeAndValue(), getPropertyType(), getPropertyValueLabel(), paint(), setPlotStyle(), setProperty(), and toXml().
BinScale SliceLayer::m_binScale [protected] |
Definition at line 138 of file SliceLayer.h.
Referenced by getBinForX(), getBinScale(), SpectrumLayer::getCrosshairExtents(), SpectrumLayer::getFrequencyForX(), getPropertyRangeAndValue(), getXForBin(), SpectrumLayer::getXForFrequency(), SpectrumLayer::paintCrosshairs(), setBinScale(), and toXml().
bool SliceLayer::m_normalize [protected] |
Definition at line 139 of file SliceLayer.h.
Referenced by getPropertyRangeAndValue(), paint(), setNormalize(), and toXml().
float SliceLayer::m_threshold [protected] |
Definition at line 140 of file SliceLayer.h.
Referenced by getPropertyRangeAndValue(), getThreshold(), getThresholdDb(), getValueForY(), getYForValue(), SpectrumLayer::getYScaleValue(), SpectrumLayer::paintCrosshairs(), paintVerticalScale(), setThreshold(), and toXml().
float SliceLayer::m_initialThreshold [protected] |
Definition at line 141 of file SliceLayer.h.
Referenced by getPropertyRangeAndValue().
float SliceLayer::m_gain [protected] |
Definition at line 142 of file SliceLayer.h.
Referenced by getPropertyRangeAndValue(), getValueForY(), getYForValue(), SpectrumLayer::paint(), paintVerticalScale(), setGain(), and toXml().
std::vector<int> SliceLayer::m_scalePoints [mutable, protected] |
Definition at line 143 of file SliceLayer.h.
Referenced by paint(), and paintVerticalScale().
std::map<const View *, int> SliceLayer::m_xorigins [mutable, protected] |
Definition at line 144 of file SliceLayer.h.
Referenced by getFeatureDescriptionAux(), SpectrumLayer::getXScaleValue(), paint(), and SpectrumLayer::paintCrosshairs().
std::map<const View *, int> SliceLayer::m_yorigins [mutable, protected] |
Definition at line 145 of file SliceLayer.h.
Referenced by getValueForY(), getYForValue(), and paint().
std::map<const View *, int> SliceLayer::m_heights [mutable, protected] |
Definition at line 146 of file SliceLayer.h.
Referenced by getValueForY(), getYForValue(), and paint().
int SliceLayer::m_currentf0 [mutable, protected] |
Definition at line 147 of file SliceLayer.h.
Referenced by getFeatureDescriptionAux(), and paint().
int SliceLayer::m_currentf1 [mutable, protected] |
Definition at line 148 of file SliceLayer.h.
Referenced by getFeatureDescriptionAux(), and paint().
std::vector<float> SliceLayer::m_values [mutable, protected] |
Definition at line 149 of file SliceLayer.h.
Referenced by SpectrumLayer::getFeatureDescription(), getFeatureDescriptionAux(), and paint().
SingleColourLayer::ColourRefCount SingleColourLayer::m_colourRefCount [static, protected, inherited] |
Definition at line 90 of file SingleColourLayer.h.
Referenced by SingleColourLayer::refColor(), SingleColourLayer::setDefaultColourFor(), and SingleColourLayer::unrefColor().
int SingleColourLayer::m_colour [protected, inherited] |
Definition at line 92 of file SingleColourLayer.h.
Referenced by SingleColourLayer::getBaseColour(), SingleColourLayer::getBaseQColor(), SingleColourLayer::getLayerPresentationPixmap(), SingleColourLayer::getPropertyRangeAndValue(), SingleColourLayer::hasLightBackground(), SingleColourLayer::refColor(), SingleColourLayer::setBaseColour(), SingleColourLayer::setDefaultColourFor(), SingleColourLayer::setProperties(), SingleColourLayer::toXml(), WaveformLayer::toXml(), and SingleColourLayer::unrefColor().
bool SingleColourLayer::m_colourExplicitlySet [protected, inherited] |
Definition at line 93 of file SingleColourLayer.h.
Referenced by SingleColourLayer::setBaseColour(), SingleColourLayer::setDefaultColourFor(), and SingleColourLayer::setProperties().
bool SingleColourLayer::m_defaultColourSet [protected, inherited] |
Definition at line 94 of file SingleColourLayer.h.
Referenced by SingleColourLayer::setDefaultColourFor().
MeasureRectSet Layer::m_measureRects [protected, inherited] |
Definition at line 599 of file Layer.h.
Referenced by Layer::addMeasureRectToSet(), Layer::deleteCurrentMeasureRect(), Layer::deleteMeasureRectFromSet(), Layer::findFocusedMeasureRect(), Layer::paintMeasurementRects(), Layer::toXml(), and Layer::updateMeasurePixrects().
MeasureRect Layer::m_draggingRect [protected, inherited] |
Definition at line 600 of file Layer.h.
Referenced by Layer::measureDrag(), Layer::measureEnd(), Layer::measureStart(), and Layer::paintMeasurementRects().
bool Layer::m_haveDraggingRect [protected, inherited] |
Definition at line 601 of file Layer.h.
Referenced by Layer::measureDrag(), Layer::measureEnd(), Layer::measureStart(), and Layer::paintMeasurementRects().
bool Layer::m_haveCurrentMeasureRect [mutable, protected, inherited] |
Definition at line 602 of file Layer.h.
Referenced by Layer::deleteCurrentMeasureRect(), Layer::haveCurrentMeasureRect(), and Layer::paintMeasurementRects().
QPoint Layer::m_currentMeasureRectPoint [mutable, protected, inherited] |
Definition at line 603 of file Layer.h.
Referenced by Layer::deleteCurrentMeasureRect(), and Layer::paintMeasurementRects().
QString Layer::m_presentationName [protected, inherited] |
Definition at line 620 of file Layer.h.
Referenced by Layer::getLayerPresentationName(), Layer::getPropertyContainerName(), Layer::setPresentationName(), Layer::toBriefXml(), and Layer::toXml().