svgui
1.9
|
#include <RegionLayer.h>
Public Types | |
enum | VerticalScale { AutoAlignScale, EqualSpaced, LinearScale, LogScale } |
enum | PlotStyle { PlotLines, PlotSegmentation } |
enum | VerticalPosition { PositionTop, PositionMiddle, PositionBottom } |
enum | SnapType { SnapLeft, SnapRight, SnapNearest, SnapNeighbouring } |
enum | ColourSignificance { ColourAbsent, ColourIrrelevant, ColourDistinguishes, ColourAndBackgroundSignificant, ColourHasMeaningfulValue } |
Public Slots | |
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 | |
RegionLayer () | |
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. More... | |
virtual int | getVerticalScaleWidth (View *v, bool, QPainter &) const |
virtual void | paintVerticalScale (View *v, bool, QPainter &paint, QRect rect) const |
virtual QString | getFeatureDescription (View *v, QPoint &) const |
virtual QString | getLabelPreceding (int) const |
virtual bool | snapToFeatureFrame (View *v, int &frame, int &resolution, SnapType snap) const |
Adjust the given frame to snap to the nearest feature, if possible. More... | |
virtual bool | snapToSimilarFeature (View *v, int &frame, int &resolution, SnapType snap) 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. More... | |
virtual void | drawStart (View *v, QMouseEvent *) |
virtual void | drawDrag (View *v, QMouseEvent *) |
virtual void | drawEnd (View *v, QMouseEvent *) |
virtual void | eraseStart (View *v, QMouseEvent *) |
virtual void | eraseDrag (View *v, QMouseEvent *) |
virtual void | eraseEnd (View *v, QMouseEvent *) |
virtual void | editStart (View *v, QMouseEvent *) |
virtual void | editDrag (View *v, QMouseEvent *) |
virtual void | editEnd (View *v, QMouseEvent *) |
virtual bool | editOpen (View *v, QMouseEvent *) |
Open an editor on the item under the mouse (e.g. More... | |
virtual void | moveSelection (Selection s, int newStartFrame) |
virtual void | resizeSelection (Selection s, Selection newSize) |
virtual void | deleteSelection (Selection s) |
virtual void | copy (View *v, Selection s, Clipboard &to) |
virtual bool | paste (View *v, const Clipboard &from, int frameOffset, bool interactive) |
Paste from the given clipboard onto the layer at the given frame offset. More... | |
virtual const Model * | getModel () const |
void | setModel (RegionModel *model) |
virtual PropertyList | getProperties () const |
virtual QString | getPropertyLabel (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 void | setProperty (const PropertyName &, int value) |
void | setFillColourMap (int) |
int | getFillColourMap () const |
void | setVerticalScale (VerticalScale scale) |
VerticalScale | getVerticalScale () const |
void | setPlotStyle (PlotStyle style) |
PlotStyle | getPlotStyle () const |
virtual bool | isLayerScrollable (const View *v) 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. More... | |
virtual bool | isLayerEditable () const |
This should return true if the layer can be edited by the user. More... | |
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. More... | |
virtual bool | getValueExtents (float &min, float &max, bool &log, 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. More... | |
virtual bool | getDisplayExtents (float &min, float &max) 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. More... | |
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. More... | |
void | setProperties (const QXmlAttributes &attributes) |
Set the particular properties of a layer (those specific to the subclass) from a set of XML attributes. More... | |
int | getYForValue (View *v, float value) const |
VerticalScaleLayer and ColourScaleLayer methods. More... | |
float | getValueForY (View *v, int y) const |
virtual QString | getScaleUnits () const |
QColor | getColourForValue (View *v, float value) const |
virtual void | setBaseColour (int) |
Set the colour used to draw primary items in the layer. More... | |
virtual int | getBaseColour () const |
Retrieve the current primary drawing colour, as a ColourDatabase index value. More... | |
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. More... | |
virtual ColourSignificance | getLayerColourSignificance () const |
Implements Layer::getLayerColourSignificance() More... | |
virtual QPixmap | getLayerPresentationPixmap (QSize size) const |
virtual RangeMapper * | getNewPropertyRangeMapper (const PropertyName &) 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. More... | |
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). More... | |
virtual void | setSynchronousPainting (bool) |
Enable or disable synchronous painting. More... | |
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 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 | isLayerOpaque () const |
This should return true if the layer completely obscures any underlying layers. More... | |
virtual QString | getError (View *) const |
Return an error string if any errors have occurred while loading or processing data for the given view. More... | |
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. More... | |
virtual void | addMeasurementRect (const QXmlAttributes &) |
Add a measurement rectangle from the given XML attributes (presumably taken from a measurement element). More... | |
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). More... | |
virtual bool | isLayerDormant (const View *v) const |
Return whether the layer is dormant (i.e. More... | |
virtual PlayParameters * | getPlayParameters () |
virtual bool | needsTextLabelHeight () const |
virtual bool | hasTimeXAxis () const |
virtual bool | setDisplayExtents (float, float) |
Set the displayed minimum and maximum values for the y axis to the given range, if supported. More... | |
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. More... | |
virtual bool | getYScaleValue (const View *, int, float &, QString &) const |
Return the value and unit at the given y coordinate in the given view. More... | |
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. More... | |
virtual int | getVerticalZoomSteps (int &) const |
Get the number of vertical zoom steps available for this layer. More... | |
virtual int | getCurrentVerticalZoomStep () const |
Get the current vertical zoom step. More... | |
virtual void | setVerticalZoomStep (int) |
Set the vertical zoom step. More... | |
virtual RangeMapper * | getNewVerticalZoomRangeMapper () const |
Create and return a range mapper for vertical zoom step values. More... | |
Protected Types | |
typedef std::map< float, int > | SpacingMap |
typedef std::map< int, int > | ColourRefCount |
typedef std::set< MeasureRect > | MeasureRectSet |
Protected Slots | |
void | recalcSpacing () |
Protected Member Functions | |
float | getValueForY (View *v, int y, int avoid) const |
void | getScaleExtents (View *, float &min, float &max, bool &log) const |
virtual int | getDefaultColourHint (bool dark, bool &impose) |
RegionModel::PointList | getLocalPoints (View *v, int x) const |
bool | getPointToDrag (View *v, int x, int y, RegionModel::Point &) const |
int | spacingIndexToY (View *v, int i) const |
float | yToSpacingIndex (View *v, int y) const |
void | finish (RegionModel::EditCommand *command) |
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 | |
RegionModel * | m_model |
bool | m_editing |
int | m_dragPointX |
int | m_dragPointY |
int | m_dragStartX |
int | m_dragStartY |
RegionModel::Point | m_originalPoint |
RegionModel::Point | m_editingPoint |
RegionModel::EditCommand * | m_editingCommand |
VerticalScale | m_verticalScale |
int | m_colourMap |
PlotStyle | m_plotStyle |
SpacingMap | m_spacingMap |
SpacingMap | m_distributionMap |
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 33 of file RegionLayer.h.
|
protected |
Definition at line 161 of file RegionLayer.h.
|
protectedinherited |
Definition at line 89 of file SingleColourLayer.h.
|
protectedinherited |
Enumerator | |
---|---|
AutoAlignScale | |
EqualSpaced | |
LinearScale | |
LogScale |
Definition at line 95 of file RegionLayer.h.
Enumerator | |
---|---|
PlotLines | |
PlotSegmentation |
Definition at line 105 of file RegionLayer.h.
|
inherited |
|
inherited |
|
inherited |
RegionLayer::RegionLayer | ( | ) |
Definition at line 46 of file RegionLayer.cpp.
|
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).
!! point y coords if model does not haveDistinctValues() should !! be assigned to avoid overlaps
!! if it does have distinct values, we should still ensure y !! coord is never completely flat on the top or bottom
Implements Layer.
Definition at line 869 of file RegionLayer.cpp.
References View::drawVisibleText(), SingleColourLayer::getBaseQColor(), getColourForValue(), View::getForeground(), SingleColourLayer::getForegroundQColor(), View::getFrameForX(), getPointToDrag(), getScaleUnits(), View::getTextLabelHeight(), View::getXForFrame(), getYForValue(), m_model, m_plotStyle, View::OutlinedText, PlotSegmentation, and View::shouldIlluminateLocalFeatures().
Referenced by getVerticalScaleWidth(), and paintVerticalScale().
|
virtual |
Implements Layer.
Definition at line 1059 of file RegionLayer.cpp.
References AutoAlignScale, EqualSpaced, LogNumericalScale::getWidth(), LogColourScale::getWidth(), LinearColourScale::getWidth(), LinearNumericalScale::getWidth(), LogScale, m_model, m_plotStyle, m_verticalScale, paint(), and PlotSegmentation.
Referenced by paintVerticalScale().
|
virtual |
Reimplemented from Layer.
Definition at line 1081 of file RegionLayer.cpp.
References TextAbbrev::abbreviate(), getScaleExtents(), getScaleUnits(), getValueExtents(), getVerticalScaleWidth(), m_model, m_plotStyle, paint(), LinearColourScale::paintVertical(), LogNumericalScale::paintVertical(), LinearNumericalScale::paintVertical(), LogColourScale::paintVertical(), and PlotSegmentation.
|
virtual |
!! harmonise with whatever decision is made about point y !! coords in paint method
Reimplemented from Layer.
Definition at line 386 of file RegionLayer.cpp.
References getLocalPoints(), getScaleUnits(), View::getXForFrame(), getYForValue(), and m_model.
|
virtual |
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 from Layer.
Definition at line 456 of file RegionLayer.cpp.
References getLocalPoints(), View::getXForFrame(), m_model, Layer::SnapLeft, Layer::SnapNeighbouring, Layer::SnapRight, and Layer::snapToFeatureFrame().
|
virtual |
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 from Layer.
Definition at line 539 of file RegionLayer.cpp.
References m_model, Layer::SnapLeft, Layer::SnapRight, and Layer::snapToSimilarFeature().
|
virtual |
Reimplemented from Layer.
Definition at line 1124 of file RegionLayer.cpp.
References finish(), View::getFrameForX(), getValueForY(), m_editing, m_editingCommand, m_editingPoint, m_model, m_originalPoint, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1148 of file RegionLayer.cpp.
References EqualSpaced, View::getFrameForX(), getValueForY(), m_editing, m_editingCommand, m_editingPoint, m_model, m_verticalScale, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1178 of file RegionLayer.cpp.
References finish(), m_editing, m_editingCommand, m_model, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1189 of file RegionLayer.cpp.
References finish(), getPointToDrag(), m_editing, m_editingCommand, m_editingPoint, m_model, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1205 of file RegionLayer.cpp.
|
virtual |
Reimplemented from Layer.
Definition at line 1210 of file RegionLayer.cpp.
References finish(), getPointToDrag(), m_editing, m_editingCommand, m_editingPoint, m_model, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1232 of file RegionLayer.cpp.
References finish(), getPointToDrag(), View::getXForFrame(), getYForValue(), m_dragPointX, m_dragPointY, m_dragStartX, m_dragStartY, m_editing, m_editingCommand, m_editingPoint, m_model, m_originalPoint, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1257 of file RegionLayer.cpp.
References View::getFrameForX(), getValueForY(), m_distributionMap, m_dragPointX, m_dragPointY, m_dragStartX, m_dragStartY, m_editing, m_editingCommand, m_editingPoint, m_model, m_spacingMap, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1292 of file RegionLayer.cpp.
References finish(), m_editing, m_editingCommand, m_editingPoint, m_model, m_originalPoint, and recalcSpacing().
|
virtual |
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 from Layer.
Definition at line 1320 of file RegionLayer.cpp.
References finish(), ItemEditDialog::getFrameDuration(), ItemEditDialog::getFrameTime(), getPointToDrag(), getScaleUnits(), ItemEditDialog::getText(), ItemEditDialog::getValue(), m_model, recalcSpacing(), ItemEditDialog::setFrameDuration(), ItemEditDialog::setFrameTime(), ItemEditDialog::setText(), ItemEditDialog::setValue(), ItemEditDialog::ShowDuration, ItemEditDialog::ShowText, ItemEditDialog::ShowTime, and ItemEditDialog::ShowValue.
|
virtual |
Reimplemented from Layer.
Definition at line 1361 of file RegionLayer.cpp.
References finish(), m_model, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1387 of file RegionLayer.cpp.
References finish(), m_model, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1427 of file RegionLayer.cpp.
References finish(), m_model, and recalcSpacing().
|
virtual |
Reimplemented from Layer.
Definition at line 1450 of file RegionLayer.cpp.
References Layer::alignToReference(), and m_model.
|
virtual |
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 from Layer.
Definition at line 1468 of file RegionLayer.cpp.
References Layer::alignFromReference(), Layer::clipboardHasDifferentAlignment(), finish(), m_model, and recalcSpacing().
|
inlinevirtual |
void RegionLayer::setModel | ( | RegionModel * | model | ) |
Definition at line 65 of file RegionLayer.cpp.
References Layer::connectSignals(), m_model, Layer::modelChanged(), Layer::modelReplaced(), PlotSegmentation, recalcSpacing(), and setPlotStyle().
|
virtual |
Reimplemented from SingleColourLayer.
Definition at line 88 of file RegionLayer.cpp.
References SingleColourLayer::getProperties().
|
virtual |
Reimplemented from SingleColourLayer.
Definition at line 98 of file RegionLayer.cpp.
References SingleColourLayer::getPropertyLabel().
|
virtual |
Reimplemented from SingleColourLayer.
Definition at line 107 of file RegionLayer.cpp.
References SingleColourLayer::getPropertyType(), m_plotStyle, and PlotSegmentation.
|
virtual |
Reimplemented from SingleColourLayer.
Definition at line 117 of file RegionLayer.cpp.
References SingleColourLayer::getPropertyGroupName().
|
virtual |
Reimplemented from SingleColourLayer.
Definition at line 126 of file RegionLayer.cpp.
References EqualSpaced, ColourMapper::getColourMapCount(), SingleColourLayer::getPropertyRangeAndValue(), getScaleUnits(), m_colourMap, m_model, m_plotStyle, m_verticalScale, and PlotSegmentation.
|
virtual |
Reimplemented from SingleColourLayer.
Definition at line 172 of file RegionLayer.cpp.
References ColourMapper::getColourMapName(), SingleColourLayer::getPropertyValueLabel(), m_plotStyle, and PlotSegmentation.
|
virtual |
Reimplemented from SingleColourLayer.
Definition at line 198 of file RegionLayer.cpp.
References m_model, m_plotStyle, Layer::modelChanged(), PlotSegmentation, setFillColourMap(), setPlotStyle(), SingleColourLayer::setProperty(), and setVerticalScale().
void RegionLayer::setFillColourMap | ( | int | map | ) |
Definition at line 218 of file RegionLayer.cpp.
References Layer::layerParametersChanged(), and m_colourMap.
Referenced by setProperty().
|
inline |
Definition at line 93 of file RegionLayer.h.
References m_colourMap.
void RegionLayer::setVerticalScale | ( | VerticalScale | scale | ) |
Definition at line 239 of file RegionLayer.cpp.
References Layer::layerParametersChanged(), and m_verticalScale.
Referenced by setProperties(), and setProperty().
|
inline |
Definition at line 103 of file RegionLayer.h.
References m_verticalScale.
void RegionLayer::setPlotStyle | ( | PlotStyle | style | ) |
Definition at line 226 of file RegionLayer.cpp.
References Layer::layerParameterRangesChanged(), Layer::layerParametersChanged(), m_plotStyle, and PlotSegmentation.
Referenced by setModel(), setProperties(), and setProperty().
|
inline |
Definition at line 111 of file RegionLayer.h.
References m_plotStyle.
|
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.
Definition at line 247 of file RegionLayer.cpp.
References View::shouldIlluminateLocalFeatures().
|
inlinevirtual |
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 from Layer.
Definition at line 115 of file RegionLayer.h.
|
inlinevirtual |
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 from Layer.
Definition at line 117 of file RegionLayer.h.
References m_model.
|
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.
Definition at line 278 of file RegionLayer.cpp.
References getScaleUnits(), LogScale, m_model, and m_verticalScale.
Referenced by paintVerticalScale().
|
virtual |
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 from Layer.
Definition at line 292 of file RegionLayer.cpp.
References AutoAlignScale, EqualSpaced, m_model, and m_verticalScale.
|
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.
Definition at line 1549 of file RegionLayer.cpp.
References m_plotStyle, m_verticalScale, and SingleColourLayer::toXml().
|
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.
Definition at line 1559 of file RegionLayer.cpp.
References setPlotStyle(), SingleColourLayer::setProperties(), and setVerticalScale().
|
virtual |
VerticalScaleLayer and ColourScaleLayer methods.
!! what now, if i->first != v?
Implements VerticalScaleLayer.
Definition at line 701 of file RegionLayer.cpp.
References EqualSpaced, getScaleExtents(), m_spacingMap, m_verticalScale, and spacingIndexToY().
Referenced by editStart(), getFeatureDescription(), getPointToDrag(), and paint().
|
virtual |
Implements VerticalScaleLayer.
Definition at line 736 of file RegionLayer.cpp.
Referenced by drawDrag(), drawStart(), and editDrag().
|
virtual |
Implements ColourScaleLayer.
Definition at line 620 of file RegionLayer.cpp.
References m_model.
Referenced by editOpen(), getFeatureDescription(), getPropertyRangeAndValue(), getScaleExtents(), getValueExtents(), paint(), and paintVerticalScale().
|
virtual |
Implements ColourScaleLayer.
Definition at line 839 of file RegionLayer.cpp.
References getScaleExtents(), m_colourMap, and ColourMapper::map().
Referenced by paint().
|
protectedslot |
Definition at line 254 of file RegionLayer.cpp.
References m_distributionMap, m_model, and m_spacingMap.
Referenced by deleteSelection(), drawDrag(), drawEnd(), drawStart(), editDrag(), editEnd(), editOpen(), editStart(), eraseEnd(), eraseStart(), moveSelection(), paste(), resizeSelection(), and setModel().
|
protected |
Definition at line 742 of file RegionLayer.cpp.
References EqualSpaced, getScaleExtents(), m_spacingMap, m_verticalScale, spacingIndexToY(), and yToSpacingIndex().
|
protected |
Definition at line 627 of file RegionLayer.cpp.
References AutoAlignScale, EqualSpaced, getScaleUnits(), View::getValueExtents(), LogScale, m_model, m_spacingMap, and m_verticalScale.
Referenced by getColourForValue(), getValueForY(), getYForValue(), and paintVerticalScale().
|
protectedvirtual |
Reimplemented from SingleColourLayer.
Definition at line 861 of file RegionLayer.cpp.
References ColourDatabase::getColourIndex(), and ColourDatabase::getInstance().
|
protected |
Definition at line 305 of file RegionLayer.cpp.
References View::getEndFrame(), View::getFrameForX(), View::getStartFrame(), View::getXForFrame(), and m_model.
Referenced by getFeatureDescription(), and snapToFeatureFrame().
|
protected |
Definition at line 348 of file RegionLayer.cpp.
References View::getFrameForX(), getYForValue(), and m_model.
Referenced by editOpen(), editStart(), eraseEnd(), eraseStart(), and paint().
|
protected |
Definition at line 679 of file RegionLayer.cpp.
References m_spacingMap.
Referenced by getValueForY(), and getYForValue().
|
protected |
Definition at line 690 of file RegionLayer.cpp.
References m_spacingMap.
Referenced by getValueForY().
|
inlineprotected |
Definition at line 172 of file RegionLayer.h.
References CommandHistory::addCommand(), and CommandHistory::getInstance().
Referenced by deleteSelection(), drawEnd(), drawStart(), editEnd(), editOpen(), editStart(), eraseEnd(), eraseStart(), moveSelection(), paste(), and resizeSelection().
|
virtualinherited |
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().
|
virtualinherited |
Retrieve the current primary drawing colour, as a ColourDatabase index value.
Definition at line 235 of file SingleColourLayer.cpp.
References SingleColourLayer::m_colour.
|
virtualinherited |
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().
|
inlinevirtualinherited |
Implements Layer::getLayerColourSignificance()
Implements Layer.
Reimplemented in TimeValueLayer, TimeInstantLayer, SliceLayer, TimeRulerLayer, and WaveformLayer.
Definition at line 52 of file SingleColourLayer.h.
References Layer::ColourDistinguishes.
|
virtualinherited |
Reimplemented from Layer.
Definition at line 47 of file SingleColourLayer.cpp.
References ColourDatabase::getExamplePixmap(), ColourDatabase::getInstance(), and SingleColourLayer::m_colour.
|
virtualinherited |
Reimplemented in SpectrumLayer, WaveformLayer, and SliceLayer.
Definition at line 126 of file SingleColourLayer.cpp.
Referenced by SliceLayer::getNewPropertyRangeMapper().
|
virtualinherited |
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().
|
protectedvirtualinherited |
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(), SliceLayer::paint(), WaveformLayer::paint(), FlexiNoteLayer::paint(), and paint().
|
protectedvirtualinherited |
Definition at line 247 of file SingleColourLayer.cpp.
References View::getBackground().
Referenced by SingleColourLayer::getPartialShades(), and WaveformLayer::paint().
|
protectedvirtualinherited |
Definition at line 253 of file SingleColourLayer.cpp.
References View::getForeground().
Referenced by TimeInstantLayer::paint(), TimeValueLayer::paint(), WaveformLayer::paint(), and paint().
|
protectedinherited |
Definition at line 259 of file SingleColourLayer.cpp.
References SingleColourLayer::getBackgroundQColor(), and SingleColourLayer::getBaseQColor().
Referenced by TimeRulerLayer::paint(), TimeValueLayer::paint(), and WaveformLayer::paint().
|
inlineprotectedvirtualinherited |
Reimplemented in WaveformLayer.
Definition at line 85 of file SingleColourLayer.h.
Referenced by SingleColourLayer::setBaseColour(), and SingleColourLayer::setProperties().
|
inlineinherited |
Definition at line 62 of file Layer.h.
References Layer::getModel().
|
inlinevirtualinherited |
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.
|
inlinevirtualinherited |
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.
|
inlinevirtualinherited |
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.
|
inlinevirtualinherited |
Definition at line 109 of file Layer.h.
References Layer::PositionMiddle.
|
inlinevirtualinherited |
Reimplemented in SpectrogramLayer, and SpectrumLayer.
Definition at line 112 of file Layer.h.
References Layer::PositionBottom.
|
virtualinherited |
Definition at line 65 of file Layer.cpp.
References LayerFactory::getInstance(), and LayerFactory::getLayerIconName().
Referenced by LayerTreeModel::data().
|
inlinevirtualinherited |
Definition at line 121 of file Layer.h.
References Layer::m_presentationName.
|
virtualinherited |
Definition at line 72 of file Layer.cpp.
References Layer::m_presentationName.
|
virtualinherited |
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().
|
inlinevirtualinherited |
Reimplemented in SpectrogramLayer, and SpectrumLayer.
|
inlinevirtualinherited |
Reimplemented in SpectrogramLayer, and SpectrumLayer.
|
virtualinherited |
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::paint(), Layer::paintMeasurementRect(), and Layer::updateMeasurePixrects().
Referenced by Pane::paintEvent().
|
virtualinherited |
Definition at line 460 of file Layer.cpp.
References Layer::findFocusedMeasureRect(), and Layer::updateMeasurePixrects().
Referenced by Pane::mouseMoveEvent().
|
inlinevirtualinherited |
Reimplemented in FlexiNoteLayer.
Definition at line 232 of file Layer.h.
Referenced by Pane::mousePressEvent().
|
inlinevirtualinherited |
Reimplemented in FlexiNoteLayer.
Definition at line 233 of file Layer.h.
Referenced by Pane::mouseReleaseEvent().
|
inlinevirtualinherited |
Reimplemented in FlexiNoteLayer.
Definition at line 234 of file Layer.h.
Referenced by Pane::mouseDoubleClickEvent().
|
virtualinherited |
Definition at line 374 of file Layer.cpp.
References Layer::m_draggingRect, Layer::m_haveDraggingRect, and Layer::setMeasureRectFromPixrect().
Referenced by Pane::mousePressEvent().
|
virtualinherited |
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().
|
virtualinherited |
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().
|
virtualinherited |
Reimplemented in SpectrogramLayer.
Definition at line 408 of file Layer.cpp.
Referenced by Pane::mouseDoubleClickEvent().
|
inlinevirtualinherited |
Definition at line 245 of file Layer.h.
References Layer::m_haveCurrentMeasureRect.
|
virtualinherited |
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.
|
inlinevirtualinherited |
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().
|
inlinevirtualinherited |
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.
|
virtualinherited |
Definition at line 100 of file Layer.cpp.
References Layer::layerNameChanged().
Referenced by LayerFactory::createLayer().
|
virtualinherited |
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.
|
virtualinherited |
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.
|
virtualinherited |
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 Colour3DPlotLayer::setLayerDormant(), SpectrogramLayer::setLayerDormant(), and Layer::showLayer().
|
virtualinherited |
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().
|
virtualinherited |
Definition at line 107 of file Layer.cpp.
References Layer::getModel().
Referenced by LayerTreeModel::data(), LayerTreeModel::LayerTreeModel(), LayerTreeModel::playParametersAudibilityChanged(), and LayerTreeModel::setData().
|
inlinevirtualinherited |
Reimplemented in TimeValueLayer, and TimeInstantLayer.
|
inlinevirtualinherited |
Reimplemented in SliceLayer.
Definition at line 415 of file Layer.h.
Referenced by Layer::getXScaleValue(), Pane::mouseMoveEvent(), and Layer::setMeasureRectFromPixrect().
|
inlinevirtualinherited |
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().
|
virtualinherited |
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().
|
inlinevirtualinherited |
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().
|
virtualinherited |
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(), and SpectrumLayer::getYScaleDifference().
|
inlinevirtualinherited |
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().
|
inlinevirtualinherited |
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().
|
inlinevirtualinherited |
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().
|
inlinevirtualinherited |
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().
|
slotinherited |
Definition at line 135 of file Layer.cpp.
References Layer::layerParametersChanged(), and Layer::setLayerDormant().
Referenced by ShowLayerCommand::execute(), LayerTreeModel::setData(), and ShowLayerCommand::unexecute().
|
signalinherited |
|
signalinherited |
Referenced by Layer::connectSignals().
|
signalinherited |
Referenced by Layer::connectSignals().
|
signalinherited |
Referenced by Layer::connectSignals(), SpectrogramLayer::fillTimerTimedOut(), and SpectrogramLayer::setModel().
|
signalinherited |
Referenced by TimeRulerLayer::setModel(), WaveformLayer::setModel(), TextLayer::setModel(), TimeInstantLayer::setModel(), ImageLayer::setModel(), Colour3DPlotLayer::setModel(), NoteLayer::setModel(), TimeValueLayer::setModel(), SpectrogramLayer::setModel(), setModel(), FlexiNoteLayer::setModel(), and SliceLayer::setSliceableModel().
|
signalinherited |
Referenced by SpectrogramLayer::preferenceChanged(), WaveformLayer::setAggressiveCacheing(), WaveformLayer::setAutoNormalize(), SingleColourLayer::setBaseColour(), SpectrogramLayer::setBinDisplay(), SliceLayer::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(), SliceLayer::setEnergyScale(), SliceLayer::setFillColourMap(), TimeValueLayer::setFillColourMap(), setFillColourMap(), SpectrogramLayer::setFrequencyScale(), WaveformLayer::setGain(), SliceLayer::setGain(), Colour3DPlotLayer::setGain(), SpectrogramLayer::setGain(), Colour3DPlotLayer::setInvertVertical(), SpectrogramLayer::setMaxFrequency(), WaveformLayer::setMiddleLineHeight(), SpectrogramLayer::setMinFrequency(), SpectrumLayer::setModel(), WaveformLayer::setModel(), SliceLayer::setNormalize(), Colour3DPlotLayer::setNormalizeColumns(), SpectrogramLayer::setNormalizeColumns(), Colour3DPlotLayer::setNormalizeHybrid(), SpectrogramLayer::setNormalizeHybrid(), Colour3DPlotLayer::setNormalizeVisibleArea(), SpectrogramLayer::setNormalizeVisibleArea(), Colour3DPlotLayer::setOpaque(), TimeInstantLayer::setPlotStyle(), SliceLayer::setPlotStyle(), TimeValueLayer::setPlotStyle(), setPlotStyle(), SliceLayer::setSamplingMode(), WaveformLayer::setScale(), TimeValueLayer::setShowDerivative(), WaveformLayer::setShowMeans(), SpectrumLayer::setShowPeaks(), Colour3DPlotLayer::setSmooth(), SliceLayer::setThreshold(), SpectrogramLayer::setThreshold(), WaveformLayer::setUseGreyscale(), NoteLayer::setVerticalScale(), setVerticalScale(), TimeValueLayer::setVerticalScale(), FlexiNoteLayer::setVerticalScale(), Colour3DPlotLayer::setVerticalZoomStep(), SpectrumLayer::setWindowHopLevel(), SpectrogramLayer::setWindowHopLevel(), SpectrumLayer::setWindowSize(), SpectrogramLayer::setWindowSize(), SpectrumLayer::setWindowType(), SpectrogramLayer::setWindowType(), SpectrogramLayer::setZeroPadLevel(), and Layer::showLayer().
|
signalinherited |
Referenced by SliceLayer::setPlotStyle(), TimeValueLayer::setPlotStyle(), and setPlotStyle().
|
signalinherited |
Referenced by Layer::addMeasureRectToSet(), and Layer::deleteMeasureRectFromSet().
|
signalinherited |
Referenced by Layer::setObjectName().
|
signalinherited |
Referenced by SpectrogramLayer::setDisplayExtents(), WaveformLayer::setGain(), and SpectrogramLayer::setProperty().
|
protectedinherited |
Definition at line 49 of file Layer.cpp.
References Layer::modelAlignmentCompletionChanged(), Layer::modelChanged(), Layer::modelChangedWithin(), and Layer::modelCompletionChanged().
Referenced by WaveformLayer::setModel(), TextLayer::setModel(), ImageLayer::setModel(), TimeInstantLayer::setModel(), Colour3DPlotLayer::setModel(), NoteLayer::setModel(), TimeValueLayer::setModel(), setModel(), SpectrogramLayer::setModel(), FlexiNoteLayer::setModel(), and SliceLayer::setSliceableModel().
|
protectedvirtualinherited |
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(), copy(), and FlexiNoteLayer::copy().
|
protectedvirtualinherited |
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(), paste(), and FlexiNoteLayer::paste().
|
protectedinherited |
Definition at line 193 of file Layer.cpp.
References Layer::alignToReference().
Referenced by TextLayer::paste(), ImageLayer::paste(), TimeInstantLayer::paste(), NoteLayer::paste(), TimeValueLayer::paste(), paste(), and FlexiNoteLayer::paste().
|
inlineprotectedinherited |
Definition at line 588 of file Layer.h.
References Layer::layerMeasurementRectsChanged(), and Layer::m_measureRects.
Referenced by Layer::addMeasurementRect().
|
inlineprotectedinherited |
Definition at line 593 of file Layer.h.
References Layer::layerMeasurementRectsChanged(), and Layer::m_measureRects.
|
protectedinherited |
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().
|
protectedvirtualinherited |
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().
|
protectedvirtualinherited |
Reimplemented in SpectrogramLayer.
Definition at line 518 of file Layer.cpp.
References Layer::MeasureRect::endY, and Layer::MeasureRect::startY.
Referenced by Layer::setMeasureRectFromPixrect().
|
protectedvirtualinherited |
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().
|
protectedinherited |
Definition at line 542 of file Layer.cpp.
References Layer::m_measureRects.
Referenced by Layer::deleteCurrentMeasureRect(), Layer::nearestMeasurementRectChanged(), and Layer::paintMeasurementRects().
|
protectedinherited |
Definition at line 569 of file Layer.cpp.
References View::drawMeasurementRect(), Layer::MeasureRect::endFrame, View::getEndFrame(), View::getStartFrame(), View::getXForFrame(), Layer::MeasureRect::haveFrames, Layer::paint(), Layer::MeasureRect::pixrect, and Layer::MeasureRect::startFrame.
Referenced by Layer::paintMeasurementRects().
|
protected |
Definition at line 148 of file RegionLayer.h.
Referenced by copy(), deleteSelection(), drawDrag(), drawEnd(), drawStart(), editDrag(), editEnd(), editOpen(), editStart(), eraseEnd(), eraseStart(), getCompletion(), getDisplayExtents(), getFeatureDescription(), getLabelPreceding(), getLocalPoints(), getModel(), getPointToDrag(), getPropertyRangeAndValue(), getScaleExtents(), getScaleUnits(), getValueExtents(), getVerticalScaleWidth(), moveSelection(), paint(), paintVerticalScale(), paste(), recalcSpacing(), resizeSelection(), setModel(), setProperty(), snapToFeatureFrame(), and snapToSimilarFeature().
|
protected |
Definition at line 149 of file RegionLayer.h.
Referenced by drawDrag(), drawEnd(), drawStart(), editDrag(), editEnd(), editStart(), eraseEnd(), and eraseStart().
|
protected |
Definition at line 150 of file RegionLayer.h.
Referenced by editDrag(), and editStart().
|
protected |
Definition at line 151 of file RegionLayer.h.
Referenced by editDrag(), and editStart().
|
protected |
Definition at line 152 of file RegionLayer.h.
Referenced by editDrag(), and editStart().
|
protected |
Definition at line 153 of file RegionLayer.h.
Referenced by editDrag(), and editStart().
|
protected |
Definition at line 154 of file RegionLayer.h.
Referenced by drawStart(), editEnd(), and editStart().
|
protected |
Definition at line 155 of file RegionLayer.h.
Referenced by drawDrag(), drawStart(), editDrag(), editEnd(), editStart(), eraseEnd(), and eraseStart().
|
protected |
Definition at line 156 of file RegionLayer.h.
Referenced by drawDrag(), drawEnd(), drawStart(), editDrag(), editEnd(), editStart(), eraseEnd(), and eraseStart().
|
protected |
Definition at line 157 of file RegionLayer.h.
Referenced by drawDrag(), getDisplayExtents(), getPropertyRangeAndValue(), getScaleExtents(), getValueExtents(), getValueForY(), getVerticalScale(), getVerticalScaleWidth(), getYForValue(), setVerticalScale(), and toXml().
|
protected |
Definition at line 158 of file RegionLayer.h.
Referenced by getColourForValue(), getFillColourMap(), getPropertyRangeAndValue(), and setFillColourMap().
|
protected |
Definition at line 159 of file RegionLayer.h.
Referenced by getPlotStyle(), getPropertyRangeAndValue(), getPropertyType(), getPropertyValueLabel(), getVerticalScaleWidth(), paint(), paintVerticalScale(), setPlotStyle(), setProperty(), and toXml().
|
protected |
Definition at line 164 of file RegionLayer.h.
Referenced by editDrag(), getScaleExtents(), getValueForY(), getYForValue(), recalcSpacing(), spacingIndexToY(), and yToSpacingIndex().
|
protected |
Definition at line 167 of file RegionLayer.h.
Referenced by editDrag(), and recalcSpacing().
|
staticprotectedinherited |
Definition at line 90 of file SingleColourLayer.h.
Referenced by SingleColourLayer::refColor(), SingleColourLayer::setDefaultColourFor(), and SingleColourLayer::unrefColor().
|
protectedinherited |
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().
|
protectedinherited |
Definition at line 93 of file SingleColourLayer.h.
Referenced by SingleColourLayer::setBaseColour(), SingleColourLayer::setDefaultColourFor(), and SingleColourLayer::setProperties().
|
protectedinherited |
Definition at line 94 of file SingleColourLayer.h.
Referenced by SingleColourLayer::setDefaultColourFor().
|
protectedinherited |
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().
|
protectedinherited |
Definition at line 600 of file Layer.h.
Referenced by Layer::measureDrag(), Layer::measureEnd(), Layer::measureStart(), and Layer::paintMeasurementRects().
|
protectedinherited |
Definition at line 601 of file Layer.h.
Referenced by Layer::measureDrag(), Layer::measureEnd(), Layer::measureStart(), and Layer::paintMeasurementRects().
|
mutableprotectedinherited |
Definition at line 602 of file Layer.h.
Referenced by Layer::deleteCurrentMeasureRect(), Layer::haveCurrentMeasureRect(), and Layer::paintMeasurementRects().
|
mutableprotectedinherited |
Definition at line 603 of file Layer.h.
Referenced by Layer::deleteCurrentMeasureRect(), and Layer::paintMeasurementRects().
|
protectedinherited |
Definition at line 620 of file Layer.h.
Referenced by Layer::getLayerPresentationName(), Layer::getPropertyContainerName(), Layer::setPresentationName(), Layer::toBriefXml(), and Layer::toXml().