Isis 3 Developer Reference
|
This is a plot curve with information relating it to a particular cube or region of a cube. More...
#include <CubePlotCurve.h>
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. More... | |
Signals | |
void | needsRepaint () |
This is emitted when the curve is modified in such a way that it would paint a viewport differently. More... | |
void | removing () |
This is emitted just before the cube plot curve is deleted. More... | |
Public Member Functions | |
CubePlotCurve (Units xUnits, Units yUnits) | |
This constructs a CubePlotCurve... More... | |
CubePlotCurve (const QByteArray &parentAndChildData) | |
Construct the plot tool curve given the past results of toByteArray(...). More... | |
bool | eventFilter (QObject *o, QEvent *e) |
This will start the drag & drop operation for these curves. More... | |
void | paint (CubeViewport *vp, QPainter *painter) |
Use information inside of the plot curve to paint onto a cube viewport. More... | |
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. More... | |
virtual QWidget * | legendItem () const |
This method is necessary for getting the correct (event filter altered) legend item. More... | |
QStringList | sourceCube () const |
This method returns the cube view port associated with the curve. More... | |
void | enableAutoRenaming (bool) |
This enables/disables the plot curve from changing it's title when the source data changes. More... | |
void | copySource (const CubePlotCurve &other) |
This copies the source data from another CubePlotCurve. More... | |
void | setSource (CubeViewport *cvp, QList< QPoint > screenPoints, int band=-1) |
Tell this plot curve from where its data originated. More... | |
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. More... | |
QColor | color () const |
This method returns the color of the curve. More... | |
QwtSymbol * | markerSymbol () const |
This method returns the shape of the markers. More... | |
Units | xUnits () const |
Get the units of the x-axis double data. More... | |
Units | yUnits () const |
Get the units of the y-axis double data. More... | |
void | setColor (const QColor &color) |
Set the color of this curve and it's markers. More... | |
void | setData (QwtSeriesData< QPointF > *data) |
This method sets the data for the curve, then sets the value for the markers associated with the curve. More... | |
void | setPen (const QPen &pen) |
Sets the plot pen to the passed-in pen. More... | |
void | setMarkerSymbol (QwtSymbol::Style style) |
This method sets the shape of the markers. More... | |
void | setMarkerVisible (bool visible) |
This method sets the visibility states of the markers at each value point. More... | |
Protected Member Functions | |
QByteArray | fromByteArray (const QByteArray &classData) |
Construct the plot curve given the past results of toByteArray(...). More... | |
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.
|
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. |
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.
xUnits | The units that the x-axis data is in |
yUnits | The units that the x-axis data is in |
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.
parentAndChildData | A serialized, binary representation of an instance of this class. |
References _FILEINFO_, ASSERT, Isis::PlotCurve::fromByteArray(), and Isis::IException::Programmer.
|
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.
Referenced by Isis::PlotWindow::add().
|
inherited |
This method returns the color of the curve.
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), paint(), Isis::PlotWindow::plotCurves(), and Isis::PlotCurve::setColor().
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.
other | The curve with the source (origination) data to copy. |
References needsRepaint().
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine().
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.
allowed | True for automatic renaming, false to preserve curve title |
bool Isis::CubePlotCurve::eventFilter | ( | QObject * | o, |
QEvent * | e | ||
) |
This will start the drag & drop operation for these curves.
o | The object that the event relates to. This is usually the legend item, but some children install their own event filters for other objects. |
e | The event that occurred on the given object. |
|
protectedinherited |
Construct the plot curve given the past results of toByteArray(...).
This is used for copy/paste and drag/drop.
References _FILEINFO_, ASSERT, Isis::IException::Programmer, Isis::ReadWrite, Isis::PlotCurve::setColor(), Isis::PlotCurve::setData(), and Isis::PlotCurve::setPen().
Referenced by CubePlotCurve().
|
virtual |
This method is necessary for getting the correct (event filter altered) legend item.
Without this, drag & drop and context menus do not work.
Referenced by updateLegendItemWidget().
|
inherited |
This method returns the shape of the markers.
|
signal |
This is emitted when the curve is modified in such a way that it would paint a viewport differently.
Referenced by copySource().
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.
vp | The viewport we're going to potentially paint onto |
painter | The painter to use for painting onto the viewport |
References Isis::PlotCurve::color(), Isis::CubeViewport::cube(), Isis::CubeViewport::cubeToViewport(), Isis::Cube::fileName(), and sourceVertices().
Referenced by Isis::PlotWindow::paint().
|
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.
|
inherited |
Set the color of this curve and it's markers.
This color will override the pen's color always.
color | The color of this curve. |
References Isis::PlotCurve::color(), and Isis::PlotCurve::setPen().
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), Isis::AbstractPlotTool::createCurve(), and Isis::PlotCurve::fromByteArray().
|
inherited |
This method sets the data for the curve, then sets the value for the markers associated with the curve.
data |
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), and Isis::PlotCurve::fromByteArray().
|
inherited |
This method sets the shape of the markers.
style |
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine().
|
inherited |
This method sets the visibility states of the markers at each value point.
visible | True to show markers, false to hide |
|
inherited |
Sets the plot pen to the passed-in pen.
pen |
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), Isis::AbstractPlotTool::createCurve(), Isis::PlotCurve::fromByteArray(), and Isis::PlotCurve::setColor().
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.
cvp | The viewport from which this curve's data came from |
screenPoints | The pertinent points on the viewport from which this curve's data came from. |
band | The band of the cube inside of said viewport from which this curve's data came from. |
void Isis::CubePlotCurve::setSource | ( | QList< CubeViewport *> | cvps, |
QList< QList< QPoint > > | screenPoints, | ||
QList< int > | band | ||
) |
QStringList Isis::CubePlotCurve::sourceCube | ( | ) | const |
This method returns the cube view port associated with the curve.
Referenced by Isis::AbstractPlotTool::repaintViewports().
This method returns a list of points which are the vertices of the selected area (by the rubberband) on the cvp.
Referenced by paint().
|
slot |
This creates a legend item and overrides events from it.
References legendItem().
Referenced by Isis::PlotWindow::add().
|
inherited |
Get the units of the x-axis double data.
Referenced by Isis::PlotWindow::canAdd(), Isis::PlotWindowBestFitDialog::createBestFitLine(), and Isis::PlotCurve::PlotCurve().
|
inherited |
Get the units of the y-axis double data.
Referenced by Isis::PlotWindow::canAdd(), Isis::PlotWindowBestFitDialog::createBestFitLine(), and Isis::PlotCurve::PlotCurve().