Isis 3 Developer Reference
|
#include <PlotCurve.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 Member Functions | |
PlotCurve (Units xUnits, Units yUnits) | |
Constructs and instance of a PlotCurve with some default properties. More... | |
~PlotCurve () | |
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... | |
QByteArray | toByteArray () const |
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. |
Isis::PlotCurve::~PlotCurve | ( | ) |
void Isis::PlotCurve::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.
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().
QColor Isis::PlotCurve::color | ( | ) | const |
This method returns the color of the curve.
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), Isis::CubePlotCurve::paint(), Isis::PlotWindow::plotCurves(), and setColor().
|
protected |
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, setColor(), setData(), and setPen().
Referenced by Isis::CubePlotCurve::CubePlotCurve().
QwtSymbol * Isis::PlotCurve::markerSymbol | ( | ) | const |
This method returns the shape of the markers.
void Isis::PlotCurve::setColor | ( | const QColor & | color | ) |
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 color(), and setPen().
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), Isis::AbstractPlotTool::createCurve(), and fromByteArray().
void Isis::PlotCurve::setData | ( | QwtSeriesData< QPointF > * | data | ) |
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 fromByteArray().
void Isis::PlotCurve::setMarkerSymbol | ( | QwtSymbol::Style | style | ) |
This method sets the shape of the markers.
style |
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine().
void Isis::PlotCurve::setMarkerVisible | ( | bool | visible | ) |
This method sets the visibility states of the markers at each value point.
visible | True to show markers, false to hide |
void Isis::PlotCurve::setPen | ( | const QPen & | pen | ) |
Sets the plot pen to the passed-in pen.
pen |
Referenced by Isis::PlotWindowBestFitDialog::createBestFitLine(), Isis::AbstractPlotTool::createCurve(), fromByteArray(), and setColor().
|
protected |
References Isis::ReadWrite.
PlotCurve::Units Isis::PlotCurve::xUnits | ( | ) | const |
Get the units of the x-axis double data.
Referenced by Isis::PlotWindow::canAdd(), Isis::PlotWindowBestFitDialog::createBestFitLine(), and PlotCurve().
PlotCurve::Units Isis::PlotCurve::yUnits | ( | ) | const |
Get the units of the y-axis double data.
Referenced by Isis::PlotWindow::canAdd(), Isis::PlotWindowBestFitDialog::createBestFitLine(), and PlotCurve().