Isis Developer Reference
Isis::CubePlotCurve Class Reference

This is a plot curve with information relating it to a particular cube or region of a cube. More...

#include <CubePlotCurve.h>

Inheritance diagram for Isis::CubePlotCurve:
Inheritance graph
Collaboration diagram for Isis::CubePlotCurve:
Collaboration graph

Public Types

enum  Units {
  Unknown , Band , CubeDN , Elevation ,
  Percentage , PixelNumber , Meters , Kilometers ,
  Wavelength
}
 These are all the possible units for the x or y data in a plot curve. More...
 

Public Slots

void updateLegendItemWidget (QWidget *legendItem)
 This creates a legend item and overrides events from it.
 

Signals

void needsRepaint ()
 This is emitted when the curve is modified in such a way that it would paint a viewport differently.
 
void removing ()
 This is emitted just before the cube plot curve is deleted.
 

Public Member Functions

 CubePlotCurve (Units xUnits, Units yUnits)
 This constructs a CubePlotCurve... a subclass of PlotCurve.
 
 CubePlotCurve (const QByteArray &parentAndChildData)
 Construct the plot tool curve given the past results of toByteArray(...).
 
bool eventFilter (QObject *o, QEvent *e)
 This will start the drag & drop operation for these curves.
 
void paint (CubeViewport *vp, QPainter *painter)
 Use information inside of the plot curve to paint onto a cube viewport.
 
QList< QList< QPointF > > sourceVertices () const
 This method returns a list of points which are the vertices of the selected area (by the rubberband) on the cvp.
 
virtual QWidgetlegendItem () const
 This method is necessary for getting the correct (event filter altered) legend item.
 
QStringList sourceCube () const
 This method returns the cube view port associated with the curve.
 
void enableAutoRenaming (bool)
 This enables/disables the plot curve from changing it's title when the source data changes.
 
void copySource (const CubePlotCurve &other)
 This copies the source data from another CubePlotCurve.
 
void setSource (CubeViewport *cvp, QList< QPoint > screenPoints, int band=-1)
 Tell this plot curve from where its data originated.
 
void setSource (QList< CubeViewport * > cvps, QList< QList< QPoint > > screenPoints, QList< int > band)
 
void attachMarkers ()
 After attaching this curve to a plot, due to an inheritance/implementation complication with qwt the markers will remain detached until they are recreated.
 
QColor color () const
 This method returns the color of the curve.
 
QwtSymbol * markerSymbol () const
 This method returns the shape of the markers.
 
Units xUnits () const
 Get the units of the x-axis double data.
 
Units yUnits () const
 Get the units of the y-axis double data.
 
void setColor (const QColor &color)
 Set the color of this curve and it's markers.
 
void setData (QwtSeriesData< QPointF > *data)
 This method sets the data for the curve, then sets the value for the markers associated with the curve.
 
void setPen (const QPen &pen)
 Sets the plot pen to the passed-in pen.
 
void setMarkerSymbol (QwtSymbol::Style style)
 This method sets the shape of the markers.
 
void setMarkerVisible (bool visible)
 This method sets the visibility states of the markers at each value point.
 

Protected Member Functions

QByteArray fromByteArray (const QByteArray &classData)
 Construct the plot curve given the past results of toByteArray(...).
 

Detailed Description

This is a plot curve with information relating it to a particular cube or region of a cube.

This class was created specifically for use with the qview plot tools (AbstractPlotTool). This was formerly known as PlotToolCurve. With this class the programmer can set the cube view port that the curve is associated with along with the vertices on the viewport of which the curve gets it data. With this information, the plot curve can rename itself and paint its origin points onto cube viewports.

Author
????-??-?? Stacy Alley

Member Enumeration Documentation

◆ Units

enum Isis::PlotCurve::Units
inherited

These are all the possible units for the x or y data in a plot curve.

We want these in order to have type checking when moving curves around - it's theoretically possible to even utilize the right y axis automatically when you put mismatched plot curve y data into the same plot. All of this and more requires knowing your data's units.

Enumerator
Unknown 

The data units are not yet known.

Please avoid using this if at all possible.

Band 

The data is a band number.

CubeDN 

The data is a Cube DN value.

Elevation 

The data is an elevation (in meters).

Percentage 

The data is a percentage (0-100).

PixelNumber 

The data is a pixel #.

For example, it's the nth pixel along a line.

Meters 

The data is in meters.

For example, it's the nth meter along a line.

Kilometers 

The data is in kilometers.

For example, it's the nth kilometer along a line.

Wavelength 

The data is a wavelength.

This is usually associated with a band and comes from the band bin group.

Constructor & Destructor Documentation

◆ CubePlotCurve() [1/2]

Isis::CubePlotCurve::CubePlotCurve ( Units xUnits,
Units yUnits )

This constructs a CubePlotCurve... a subclass of PlotCurve.

This class was created specifically for use with the plot tools. With this class the programmer can set the cube view port that the curve is associated with along with the vertices on the cvp of which the curve gets it data.

Parameters
xUnitsThe units that the x-axis data is in
yUnitsThe units that the x-axis data is in

◆ CubePlotCurve() [2/2]

Isis::CubePlotCurve::CubePlotCurve ( const QByteArray & parentAndChildData)

Construct the plot tool curve given the past results of toByteArray(...).

This is used for copy/paste and drag/drop.

Parameters
parentAndChildDataA serialized, binary representation of an instance of this class.

References _FILEINFO_, Isis::PlotCurve::fromByteArray(), and Isis::IException::Programmer.

Member Function Documentation

◆ attachMarkers()

void Isis::PlotCurve::attachMarkers ( )
inherited

After attaching this curve to a plot, due to an inheritance/implementation complication with qwt the markers will remain detached until they are recreated.

This forces the markers to be updated immediately.

Please always call this method after attaching this curve to a plot.

◆ color()

QColor Isis::PlotCurve::color ( ) const
inherited

This method returns the color of the curve.

Returns
QColor

Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), paint(), and Isis::PlotCurve::setColor().

◆ copySource()

void Isis::CubePlotCurve::copySource ( const CubePlotCurve & other)

This copies the source data from another CubePlotCurve.

This curve will now act as if it has the same exact source data as the other curve.

Parameters
otherThe curve with the source (origination) data to copy.

References needsRepaint().

◆ enableAutoRenaming()

void Isis::CubePlotCurve::enableAutoRenaming ( bool allowed)

This enables/disables the plot curve from changing it's title when the source data changes.

This is enabled by default and typically disabled when a user manually renames a curve.

Parameters
allowedTrue for automatic renaming, false to preserve curve title

◆ eventFilter()

bool Isis::CubePlotCurve::eventFilter ( QObject * o,
QEvent * e )

This will start the drag & drop operation for these curves.

Parameters
oThe object that the event relates to. This is usually the legend item, but some children install their own event filters for other objects.
eThe event that occurred on the given object.
Returns
True if we don't want any more processing of the event

◆ fromByteArray()

QByteArray Isis::PlotCurve::fromByteArray ( const QByteArray & classData)
protectedinherited

Construct the plot curve given the past results of toByteArray(...).

This is used for copy/paste and drag/drop.

Returns
The unconsumed part of the byte array.

References _FILEINFO_, Isis::IException::Programmer, Isis::PlotCurve::setColor(), Isis::PlotCurve::setData(), and Isis::PlotCurve::setPen().

Referenced by CubePlotCurve().

◆ legendItem()

QWidget * Isis::CubePlotCurve::legendItem ( ) const
virtual

This method is necessary for getting the correct (event filter altered) legend item.

Without this, drag & drop and context menus do not work.

Returns
The legend item widget associated with this curve

Referenced by updateLegendItemWidget().

◆ markerSymbol()

QwtSymbol * Isis::PlotCurve::markerSymbol ( ) const
inherited

This method returns the shape of the markers.

Returns
QwtSymbol *

◆ needsRepaint

void Isis::CubePlotCurve::needsRepaint ( )
signal

This is emitted when the curve is modified in such a way that it would paint a viewport differently.

Referenced by copySource().

◆ paint()

void Isis::CubePlotCurve::paint ( CubeViewport * vp,
QPainter * painter )

Use information inside of the plot curve to paint onto a cube viewport.

This paints the originating data points, in the color of the curve, onto the viewport. This will not paint onto unrelated cube viewports.

Parameters
vpThe viewport we're going to potentially paint onto
painterThe painter to use for painting onto the viewport

References Isis::PlotCurve::color(), and sourceVertices().

◆ removing

void Isis::CubePlotCurve::removing ( )
signal

This is emitted just before the cube plot curve is deleted.

This is used to queue the deletes to happen at a safe time.

◆ setColor()

void Isis::PlotCurve::setColor ( const QColor & color)
inherited

Set the color of this curve and it's markers.

This color will override the pen's color always.

Parameters
colorThe color of this curve.

References Isis::PlotCurve::color(), and Isis::PlotCurve::setPen().

Referenced by Isis::PlotCurve::fromByteArray().

◆ setData()

void Isis::PlotCurve::setData ( QwtSeriesData< QPointF > * data)
inherited

This method sets the data for the curve, then sets the value for the markers associated with the curve.

Parameters
data

Referenced by Isis::PlotCurve::fromByteArray().

◆ setMarkerSymbol()

void Isis::PlotCurve::setMarkerSymbol ( QwtSymbol::Style style)
inherited

This method sets the shape of the markers.

Parameters
style

◆ setMarkerVisible()

void Isis::PlotCurve::setMarkerVisible ( bool visible)
inherited

This method sets the visibility states of the markers at each value point.

Parameters
visibleTrue to show markers, false to hide

◆ setPen()

void Isis::PlotCurve::setPen ( const QPen & pen)
inherited

Sets the plot pen to the passed-in pen.

Parameters
pen

Referenced by Isis::PlotCurve::fromByteArray(), and Isis::PlotCurve::setColor().

◆ setSource() [1/2]

void Isis::CubePlotCurve::setSource ( CubeViewport * cvp,
QList< QPoint > screenPoints,
int band = -1 )

Tell this plot curve from where its data originated.

If you set a source, you must keep it up to date. Any time the data in the curve changes, you should be calling this method again.

Parameters
cvpThe viewport from which this curve's data came from
screenPointsThe pertinent points on the viewport from which this curve's data came from.
bandThe band of the cube inside of said viewport from which this curve's data came from.

◆ setSource() [2/2]

void Isis::CubePlotCurve::setSource ( QList< CubeViewport * > cvps,
QList< QList< QPoint > > screenPoints,
QList< int > band )

◆ sourceCube()

QStringList Isis::CubePlotCurve::sourceCube ( ) const

This method returns the cube view port associated with the curve.

Returns
CubeViewport*

◆ sourceVertices()

QList< QList< QPointF > > Isis::CubePlotCurve::sourceVertices ( ) const

This method returns a list of points which are the vertices of the selected area (by the rubberband) on the cvp.

Returns
QList<QPoint>

Referenced by paint().

◆ updateLegendItemWidget

void Isis::CubePlotCurve::updateLegendItemWidget ( QWidget * legendItem)
slot

This creates a legend item and overrides events from it.

References legendItem().

◆ xUnits()

PlotCurve::Units Isis::PlotCurve::xUnits ( ) const
inherited

Get the units of the x-axis double data.

Returns
The units of the x-axis data

Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), and Isis::PlotCurve::PlotCurve().

◆ yUnits()

PlotCurve::Units Isis::PlotCurve::yUnits ( ) const
inherited

Get the units of the y-axis double data.

Returns
The units of the y-axis data

Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), and Isis::PlotCurve::PlotCurve().


The documentation for this class was generated from the following files: