2018-11-25 21:53:26 +08:00
/*
2019-01-12 23:01:55 +08:00
Copyright ( c ) 2008 - 2019 Jan W . Krieger ( < jan @ jkrieger . de > )
2018-11-25 21:53:26 +08:00
This software is free software : you can redistribute it and / or modify
it under the terms of the GNU Lesser General Public License ( LGPL ) as published by
the Free Software Foundation , either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU Lesser General Public License ( LGPL ) for more details .
You should have received a copy of the GNU Lesser General Public License ( LGPL )
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
2019-01-12 23:01:55 +08:00
/** \file jkqtpgraphsbase.h
2019-01-13 01:53:16 +08:00
* \ ingroup jkqtplotter_basegraphs
2018-11-25 21:53:26 +08:00
*/
# include <QString>
# include <QPainter>
# include <QPair>
2018-12-28 05:52:00 +08:00
# include "jkqtplotter/jkqtpbaseelements.h"
# include "jkqtplotter/jkqtpbaseplotter.h"
2018-11-26 03:25:44 +08:00
# include "jkqtplottertools/jkqtptools.h"
# include "jkqtplottertools/jkqtp_imexport.h"
2018-12-19 00:13:18 +08:00
# include "jkqtplottertools/jkqtpimagetools.h"
2018-11-25 21:53:26 +08:00
2018-12-19 00:13:18 +08:00
# ifndef jkqtpgraphsbase_H
# define jkqtpgraphsbase_H
2018-11-25 21:53:26 +08:00
// forward declarations
class JKQtPlotter ;
class JKQTPdatastore ;
2018-12-28 05:52:00 +08:00
/** \brief this virtual base class of every element, which is part of a JKQtPlotter plot and may appear in its key
* ( basically any type of graph , except overlay elements ! )
2019-01-13 01:53:16 +08:00
* \ ingroup jkqtplotter_basegraphs
2018-11-25 21:53:26 +08:00
*
2018-12-28 05:52:00 +08:00
* Each possible graph is represented by a child of this class . So additional plots may be created by
2018-11-25 21:53:26 +08:00
* deriving new JKQTPgraph classes . To do so implement / overwrite these functions :
* - void draw ( JKQTPEnhancedPainter & painter ) ;
* - void drawKeyMarker ( JKQTPEnhancedPainter & painter , QRectF & rect ) ;
* - bool getXMinMax ( double & minx , double & maxx , double & smallestGreaterZero ) ;
* - void getGraphsYMinMax ( double & miny , double & maxy ) ;
* - QColor getKeyLabelColor ( ) = 0 ;
2018-12-28 05:52:00 +08:00
* - bool usesColumn ( int column ) const ;
* .
*
* Optionally you may also overwrite these functions to draw elements outside the actual plot area ( like e . g . colorbars ) :
* - void getOutsideSize ( JKQTPEnhancedPainter & painter , int & leftSpace , int & rightSpace , int & topSpace , int & bottomSpace ) ;
* - void drawOutside ( JKQTPEnhancedPainter & painter , QRect leftSpace , QRect rightSpace , QRect topSpace , QRect bottomSpace ) ;
2018-11-25 21:53:26 +08:00
* .
*
*/
2018-12-28 05:52:00 +08:00
class LIB_EXPORT JKQTPplotElement : public QObject {
2018-11-25 21:53:26 +08:00
Q_OBJECT
public :
/** \brief class constructor */
2018-12-28 05:52:00 +08:00
explicit JKQTPplotElement ( JKQtBasePlotter * parent = nullptr ) ;
2018-11-25 21:53:26 +08:00
/** \brief class constructor */
2018-12-28 05:52:00 +08:00
explicit JKQTPplotElement ( JKQtPlotter * parent ) ;
2018-11-25 21:53:26 +08:00
/** \brief default wirtual destructor */
2018-12-28 05:52:00 +08:00
virtual ~ JKQTPplotElement ( ) ;
2018-11-25 21:53:26 +08:00
/** \brief plots the graph to the plotter object specified as parent */
virtual void draw ( JKQTPEnhancedPainter & painter ) = 0 ;
2018-12-28 05:52:00 +08:00
2018-11-25 21:53:26 +08:00
/** \brief plots a key marker inside the specified rectangle \a rect */
virtual void drawKeyMarker ( JKQTPEnhancedPainter & painter , QRectF & rect ) = 0 ;
2018-12-28 05:52:00 +08:00
2018-11-25 21:53:26 +08:00
/** \brief returns an image with a key marker inside */
QImage generateKeyMarker ( QSize size = QSize ( 16 , 16 ) ) ;
/** \brief get the maximum and minimum x-value of the graph
*
* The result is given in the two parameters which are call - by - reference parameters !
*/
virtual bool getXMinMax ( double & minx , double & maxx , double & smallestGreaterZero ) = 0 ;
/** \brief get the maximum and minimum y-value of the graph
*
* The result is given in the two parameters which are call - by - reference parameters !
*/
virtual bool getYMinMax ( double & miny , double & maxy , double & smallestGreaterZero ) = 0 ;
/** \brief returns the color to be used for the key label */
virtual QColor getKeyLabelColor ( ) = 0 ;
2019-01-10 04:23:24 +08:00
/*! \brief sets the property title to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter title is : < BLOCKQUOTE > \ copybrief title < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see title for more information */
inline virtual void set_title ( const QString & __value )
{
this - > title = __value ;
}
/*! \brief returns the property title.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter title is : < BLOCKQUOTE > \ copybrief title < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see title for more information */
inline virtual QString get_title ( ) const
{
return this - > title ;
}
/*! \brief sets the property visible to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter visible is : < BLOCKQUOTE > \ copybrief visible < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see visible for more information */
inline virtual void set_visible ( bool __value )
{
this - > visible = __value ;
}
/*! \brief returns the property visible.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter visible is : < BLOCKQUOTE > \ copybrief visible < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see visible for more information */
inline virtual bool get_visible ( ) const
{
return this - > visible ;
}
2018-11-25 21:53:26 +08:00
/** \brief returns the parent painter class */
inline JKQtBasePlotter * getParent ( ) { return parent ; }
/** \brief sets the parent painter class */
virtual void setParent ( JKQtBasePlotter * parent ) ;
/** \brief sets the parent painter class */
virtual void setParent ( JKQtPlotter * parent ) ;
/*! \brief if the graph plots outside the actual plot field of view (e.g. color bars, scale bars, ...)
\ note If you want to draw outside , then you ' ll also have to implement drawOutside ( )
*/
virtual void getOutsideSize ( JKQTPEnhancedPainter & painter , int & leftSpace , int & rightSpace , int & topSpace , int & bottomSpace ) ;
/*! \brief plots outside the actual plot field of view (e.g. color bars, scale bars, ...)
\ note If you want to draw outside , then you ' ll also have to implement getOutsideSize ( ) , so enough space is reserved
The four value supplied tell the method where to draw ( inside one of the rectangles ) .
*/
virtual void drawOutside ( JKQTPEnhancedPainter & painter , QRect leftSpace , QRect rightSpace , QRect topSpace , QRect bottomSpace ) ;
protected :
/** \brief the plotter object this object belongs to */
JKQtBasePlotter * parent ;
2018-12-28 05:52:00 +08:00
/** \brief title of the plot (for display in key!). If no title is supplied, no key entry is drawn. */
QString title ;
/** \brief indicates whether the graph is visible in the plot */
bool visible ;
2018-11-25 21:53:26 +08:00
2018-12-28 05:52:00 +08:00
/** \brief tool routine that transforms an x-coordinate for this plot element */
virtual double transformX ( double x ) const ;
/** \brief tool routine that transforms a y-coordinate for this plot element */
virtual double transformY ( double y ) const ;
/** \brief tool routine that backtransforms an x-coordinate for this plot element */
virtual double backtransformX ( double x ) const ;
/** \brief tool routine that backtransforms a y-coordinate for this plot element */
virtual double backtransformY ( double y ) const ;
2018-11-25 21:53:26 +08:00
/** \brief tool routine that transforms a QPointF according to the parent's transformation rules */
2018-12-28 05:52:00 +08:00
inline QPointF transform ( const QPointF & x ) {
return QPointF ( transformX ( x . x ( ) ) , transformY ( x . y ( ) ) ) ;
}
2018-11-25 21:53:26 +08:00
/** \brief tool routine that back-transforms a QPointF according to the parent's transformation rules */
2018-12-28 05:52:00 +08:00
inline QPointF backTransform ( const QPointF & x ) {
return QPointF ( backtransformX ( x . x ( ) ) , backtransformY ( x . y ( ) ) ) ;
}
2018-11-25 21:53:26 +08:00
/** \brief tool routine that transforms a QPointF according to the parent's transformation rules */
inline QPointF transform ( double x , double y ) {
return transform ( QPointF ( x , y ) ) ;
}
/** \brief tool routine that back-transforms a QPointF according to the parent's transformation rules */
inline QPointF backTransform ( double x , double y ) {
return backTransform ( QPointF ( x , y ) ) ;
}
/** \brief tool routine that transforms a QVector<QPointF> according to the parent's transformation rules */
QVector < QPointF > transform ( const QVector < QPointF > & x ) ;
/** \brief tool routine that transforms a QVector<QPointF> according to the parent's transformation rules
* and returns a ( non - closed ) path consisting of lines */
QPainterPath transformToLinePath ( const QVector < QPointF > & x ) ;
/** \brief tool routine that transforms a QVector<QPointF> according to the parent's transformation rules
* and returns a polygon */
inline QPolygonF transformToPolygon ( const QVector < QPointF > & x ) {
return QPolygonF ( transform ( x ) ) ;
}
2018-12-28 05:52:00 +08:00
} ;
/** \brief this virtual base class of the (data-column based) graphs,
* which are part of a JKQtPlotter plot and which use the coordinate system
* of the JKQtPlotter ( i . e . the two coordinate axes get_xAxis ( ) and get_yAxis ( ) )
* as basis for the graphs
2019-01-13 01:53:16 +08:00
* \ ingroup jkqtplotter_basegraphs
2018-12-28 05:52:00 +08:00
*
* This class adds several features to work with data columns . In addition this class adds protected
* functions that do coordinate transforms based on the current coordinate system , of the paren
* JKQtPlotter ( i . e . using the axes JKQtPlott : xAxis and JKQtPlotter : : yAxis as basis for the plotting ) .
*
* There are two properties datarange_start and datarange_end . By default they are - 1 and therefore ignored .
* if they are ! = - 1 the plotter only displays the datapoints with the indexes [ datarange_start . . datarange_end ]
* although there might be more data points available ( range [ 0 . . maxDataPoints ] ) . The datarange is cut at the
* full range , i . e . if datarange_end > maxDataPoints the plotter displays [ datarange_start . . maxDataPoints ] .
*/
class LIB_EXPORT JKQTPgraph : public JKQTPplotElement {
Q_OBJECT
public :
/** \brief class constructor */
explicit JKQTPgraph ( JKQtBasePlotter * parent = nullptr ) ;
/** \brief class constructor */
explicit JKQTPgraph ( JKQtPlotter * parent ) ;
/** \brief default wirtual destructor */
virtual ~ JKQTPgraph ( ) ;
2019-01-10 04:23:24 +08:00
/*! \brief sets the property datarange_start to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter datarange_start is : < BLOCKQUOTE > \ copybrief datarange_start < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see datarange_start for more information */
inline virtual void set_datarange_start ( int __value )
{
this - > datarange_start = __value ;
}
/*! \brief returns the property datarange_start.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter datarange_start is : < BLOCKQUOTE > \ copybrief datarange_start < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see datarange_start for more information */
inline virtual int get_datarange_start ( ) const
{
return this - > datarange_start ;
}
/*! \brief sets the property datarange_end to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter datarange_end is : < BLOCKQUOTE > \ copybrief datarange_end < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see datarange_end for more information */
inline virtual void set_datarange_end ( int __value )
{
this - > datarange_end = __value ;
}
/*! \brief returns the property datarange_end.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter datarange_end is : < BLOCKQUOTE > \ copybrief datarange_end < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see datarange_end for more information */
inline virtual int get_datarange_end ( ) const
{
return this - > datarange_end ;
}
2018-12-28 05:52:00 +08:00
/** \brief returns \c true if the given column is used by the graph */
virtual bool usesColumn ( int column ) const ;
protected :
/** \brief this function is used to plot error inidcators before plotting the graphs.
*
* By default this function does nothing . But children of this class may overwrite it to implement
* drawing error indicators .
*/
virtual void drawErrorsBefore ( JKQTPEnhancedPainter & /*painter*/ ) ;
/** \brief this function is used to plot error inidcators after plotting the graphs.
*
* By default this function does nothing . But children of this class may overwrite it to implement
* drawing error indicators .
*/
virtual void drawErrorsAfter ( JKQTPEnhancedPainter & /*painter*/ ) ;
2018-11-25 21:53:26 +08:00
/** \brief start of the range of plot data. -1 switches the lower data range border off. */
2018-12-16 21:59:39 +08:00
int datarange_start ;
2018-11-25 21:53:26 +08:00
/** \brief end of the range of plot data. -1 switches the upper data range border off. */
2018-12-16 21:59:39 +08:00
int datarange_end ;
2018-11-25 21:53:26 +08:00
/** \brief get the maximum and minimum value of the given column
*
* The result is given in the two parameters which are call - by - reference parameters !
*/
bool getDataMinMax ( int column , double & minx , double & maxx , double & smallestGreaterZero ) ;
2018-12-28 05:52:00 +08:00
friend class JKQTPgraphErrors ;
2018-11-25 21:53:26 +08:00
} ;
2018-12-28 05:52:00 +08:00
/** \brief this is the virtual base class of all JKQTPplotElement's in a JKQtPlotter plot that
* represent geometric forms or annotations . They have extended coordinate transform capabilities , because
* in addition to using the plot coordinates , you can also choose to use different other
* coordinate systems
2019-01-13 01:53:16 +08:00
* \ ingroup jkqtplotter_basegraphs
2018-12-28 05:52:00 +08:00
*
*/
class LIB_EXPORT JKQTPplotObject : public JKQTPplotElement {
Q_OBJECT
public :
/** \brief class constructor */
explicit JKQTPplotObject ( JKQtBasePlotter * parent = nullptr ) ;
/** \brief class constructor */
explicit JKQTPplotObject ( JKQtPlotter * parent ) ;
/** \brief default wirtual destructor */
virtual ~ JKQTPplotObject ( ) ;
protected :
} ;
2018-11-25 21:53:26 +08:00
/*! \brief This virtual JKQTPgraph descendent may be used as base for all graphs that use at least two columns
that specify x and y coordinates for the single plot points .
2019-01-13 01:53:16 +08:00
\ ingroup jkqtplotter_basegraphs
2018-11-25 21:53:26 +08:00
This class implements basic management facilities for the data columns and implements the function
- bool getXMinMax ( double & minx , double & maxx , double & smallestGreaterZero ) ;
- bool getYMinMax ( double & miny , double & maxy , double & smallestGreaterZero ) ;
.
*/
class LIB_EXPORT JKQTPxyGraph : public JKQTPgraph {
Q_OBJECT
public :
enum DataSortOrder {
Unsorted = 0 ,
SortedX = 1 ,
SortedY = 2
} ;
/** \brief class constructor */
JKQTPxyGraph ( JKQtBasePlotter * parent = nullptr ) ;
/** \brief class constructor */
JKQTPxyGraph ( JKQtPlotter * parent ) ;
/** \brief get the maximum and minimum x-value of the graph
*
* The result is given in the two parameters which are call - by - reference parameters !
*/
2018-12-28 05:52:00 +08:00
virtual bool getXMinMax ( double & minx , double & maxx , double & smallestGreaterZero ) override ;
2018-11-25 21:53:26 +08:00
/** \brief get the maximum and minimum y-value of the graph
*
* The result is given in the two parameters which are call - by - reference parameters !
*/
2018-12-28 05:52:00 +08:00
virtual bool getYMinMax ( double & miny , double & maxy , double & smallestGreaterZero ) override ;
2018-11-25 21:53:26 +08:00
/** \copydoc JKQTPgraph::usesColumn() */
2018-12-28 05:52:00 +08:00
virtual bool usesColumn ( int column ) const override ;
2018-11-25 21:53:26 +08:00
2019-01-10 04:23:24 +08:00
/*! \brief sets the property xColumn to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xColumn is : < BLOCKQUOTE > \ copybrief xColumn < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xColumn for more information */
inline virtual void set_xColumn ( int __value )
{
this - > xColumn = __value ;
}
/*! \brief returns the property xColumn.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xColumn is : < BLOCKQUOTE > \ copybrief xColumn < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xColumn for more information */
inline virtual int get_xColumn ( ) const
{
return this - > xColumn ;
}
/*! \brief sets the property xColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xColumn is : < BLOCKQUOTE > \ copybrief xColumn < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xColumn for more information */
inline virtual void set_xColumn ( size_t __value ) { this - > xColumn = static_cast < int > ( __value ) ; }
/*! \brief sets the property yColumn to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yColumn is : < BLOCKQUOTE > \ copybrief yColumn < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yColumn for more information */
inline virtual void set_yColumn ( int __value )
{
this - > yColumn = __value ;
}
/*! \brief returns the property yColumn.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yColumn is : < BLOCKQUOTE > \ copybrief yColumn < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yColumn for more information */
inline virtual int get_yColumn ( ) const
{
return this - > yColumn ;
}
/*! \brief sets the property yColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yColumn is : < BLOCKQUOTE > \ copybrief yColumn < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yColumn for more information */
inline virtual void set_yColumn ( size_t __value ) { this - > yColumn = static_cast < int > ( __value ) ; }
/*! \brief sets the property sortData to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter sortData is : < BLOCKQUOTE > \ copybrief sortData < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see sortData for more information */
inline virtual void set_sortData ( const DataSortOrder & __value )
{
this - > sortData = __value ;
}
/*! \brief returns the property sortData.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter sortData is : < BLOCKQUOTE > \ copybrief sortData < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see sortData for more information */
inline virtual DataSortOrder get_sortData ( ) const
{
return this - > sortData ;
}
2019-01-12 23:01:55 +08:00
/*! \brief sets the property sortData to the specified \a __value. \details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE> \see sortData for more information */
2018-12-28 05:52:00 +08:00
void set_sortData ( int __value ) ;
2018-11-25 21:53:26 +08:00
protected :
/** \brief the column that contains the x-component of the datapoints */
int xColumn ;
/** \brief the column that contains the y-component of the datapoints */
int yColumn ;
/** \brief if \c !=Unsorted, the data is sorted before plotting */
DataSortOrder sortData ;
/** \brief this array contains the order of indices, in which to access the data in the data columns */
QVector < int > sortedIndices ;
virtual void intSortData ( ) ;
2018-12-28 05:52:00 +08:00
/** \brief returns the index of the i-th datapoint (where i is an index into the SORTED datapoints)
*
* This function can beu used to get the correct datapoint after sorting the datapoints ,
* As sorting is done by sorting an index and not reordering the data in the columns themselves .
* */
2018-11-25 21:53:26 +08:00
inline int getDataIndex ( int i ) {
if ( sortData = = Unsorted ) return i ;
return sortedIndices . value ( i , i ) ;
}
} ;
/*! \brief This virtual JKQTPgraph descendent may be used as base for all graphs that use at least one column
of data
2019-01-13 01:53:16 +08:00
\ ingroup jkqtplotter_basegraphs
2018-11-25 21:53:26 +08:00
*/
class LIB_EXPORT JKQTPsingleColumnGraph : public JKQTPgraph {
Q_OBJECT
public :
enum DataSortOrder {
Unsorted = 0 ,
Sorted = 1
} ;
/** \brief class constructor */
JKQTPsingleColumnGraph ( JKQtBasePlotter * parent = nullptr ) ;
JKQTPsingleColumnGraph ( int dataColumn , JKQtBasePlotter * parent = nullptr ) ;
JKQTPsingleColumnGraph ( int dataColumn , QColor color , Qt : : PenStyle style = Qt : : SolidLine , double lineWidth = 2.0 , JKQtBasePlotter * parent = nullptr ) ;
JKQTPsingleColumnGraph ( JKQtPlotter * parent ) ;
JKQTPsingleColumnGraph ( int dataColumn , JKQtPlotter * parent ) ;
JKQTPsingleColumnGraph ( int dataColumn , QColor color , Qt : : PenStyle style , double lineWidth , JKQtPlotter * parent ) ;
JKQTPsingleColumnGraph ( int dataColumn , QColor color , Qt : : PenStyle style , JKQtPlotter * parent ) ;
JKQTPsingleColumnGraph ( int dataColumn , QColor color , JKQtPlotter * parent ) ;
/** \brief returns the color to be used for the key label */
virtual QColor getKeyLabelColor ( ) ;
2019-01-10 04:23:24 +08:00
/*! \brief sets the property dataColumn to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter dataColumn is : < BLOCKQUOTE > \ copybrief dataColumn < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see dataColumn for more information */
inline virtual void set_dataColumn ( int __value )
{
this - > dataColumn = __value ;
}
/*! \brief returns the property dataColumn.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter dataColumn is : < BLOCKQUOTE > \ copybrief dataColumn < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see dataColumn for more information */
inline virtual int get_dataColumn ( ) const
{
return this - > dataColumn ;
}
/*! \brief sets the property dataColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter dataColumn is : < BLOCKQUOTE > \ copybrief dataColumn < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see dataColumn for more information */
inline virtual void set_dataColumn ( size_t __value ) { this - > dataColumn = static_cast < int > ( __value ) ; }
/*! \brief sets the property color to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter color is : < BLOCKQUOTE > \ copybrief color < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see color for more information */
inline virtual void set_color ( const QColor & __value )
{
this - > color = __value ;
}
/*! \brief returns the property color.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter color is : < BLOCKQUOTE > \ copybrief color < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see color for more information */
inline virtual QColor get_color ( ) const
{
return this - > color ;
}
/*! \brief sets the property style to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter style is : < BLOCKQUOTE > \ copybrief style < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see style for more information */
inline virtual void set_style ( const Qt : : PenStyle & __value )
{
this - > style = __value ;
}
/*! \brief returns the property style.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter style is : < BLOCKQUOTE > \ copybrief style < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see style for more information */
inline virtual Qt : : PenStyle get_style ( ) const
{
return this - > style ;
}
/*! \brief sets the property lineWidth to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter lineWidth is : < BLOCKQUOTE > \ copybrief lineWidth < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see lineWidth for more information */
inline virtual void set_lineWidth ( double __value )
{
this - > lineWidth = __value ;
}
/*! \brief returns the property lineWidth.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter lineWidth is : < BLOCKQUOTE > \ copybrief lineWidth < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see lineWidth for more information */
inline virtual double get_lineWidth ( ) const
{
return this - > lineWidth ;
}
/*! \brief sets the property sortData to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter sortData is : < BLOCKQUOTE > \ copybrief sortData < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see sortData for more information */
inline virtual void set_sortData ( const DataSortOrder & __value )
{
this - > sortData = __value ;
}
/*! \brief returns the property sortData.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter sortData is : < BLOCKQUOTE > \ copybrief sortData < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see sortData for more information */
inline virtual DataSortOrder get_sortData ( ) const
{
return this - > sortData ;
}
2019-01-12 23:01:55 +08:00
/*! \brief sets the property sortData to the specified \a __value. \details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE> \see sortData for more information */
2018-12-28 05:52:00 +08:00
void set_sortData ( int __value ) ;
2018-11-25 21:53:26 +08:00
/** \copydoc JKQTPgraph::usesColumn() */
2018-12-28 05:52:00 +08:00
virtual bool usesColumn ( int c ) const override ;
2018-11-25 21:53:26 +08:00
protected :
/** \brief the column that contains the datapoints */
int dataColumn ;
/** \brief which plot style to use from the parent plotter (via JKQtPlotterBase::getPlotStyle() and JKQtPlotterBase::getNextStyle() ) */
int parentPlotStyle ;
/** \brief color of the graph */
QColor color ;
/** \brief linestyle of the graph lines */
Qt : : PenStyle style ;
/** \brief width (pixels) of the graph */
double lineWidth ;
QPen getLinePen ( JKQTPEnhancedPainter & painter ) const ;
/** \brief if \c !=Unsorted, the data is sorted before plotting */
DataSortOrder sortData ;
/** \brief this array contains the order of indices, in which to access the data in the data columns */
QVector < int > sortedIndices ;
virtual void intSortData ( ) ;
2018-12-28 05:52:00 +08:00
/** \brief returns the index of the i-th datapoint (where i is an index into the SORTED datapoints)
*
* This function can beu used to get the correct datapoint after sorting the datapoints ,
* As sorting is done by sorting an index and not reordering the data in the columns themselves .
* */
2018-11-25 21:53:26 +08:00
inline int getDataIndex ( int i ) {
if ( sortData = = Unsorted ) return i ;
return sortedIndices . value ( i , i ) ;
}
2018-12-28 05:52:00 +08:00
2018-11-25 21:53:26 +08:00
} ;
/*! \brief Descendents of this class add data fields for error indicators and methods to plot them to a class.
2019-01-13 01:53:16 +08:00
\ ingroup jkqtplotter_basegraphserrors
2018-11-25 21:53:26 +08:00
This class is meant to be used with multiple inheritance . I . e . if you implemented some kind of plot
you may derive an error plot class in which you will have to overwrite the JKQTPgraph : : drawErrorsBefor ( )
or drawErrorsAfter ( ) so it calls the plotErrorIndicators ( ) method from this class . In addition this class
will add some public datamemebers and methods to your class that allow to specify the properties of the
error indicators ( plot properties : color , width , . . . and columns for the data ) .
*/
class LIB_EXPORT JKQTPgraphErrors {
public :
/** \brief class contructor */
JKQTPgraphErrors ( QColor graphColor = QColor ( " black " ) ) ;
2018-12-28 05:52:00 +08:00
virtual ~ JKQTPgraphErrors ( ) ;
2018-11-25 21:53:26 +08:00
2019-01-10 04:23:24 +08:00
/*! \brief sets the property errorColor to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorColor is : < BLOCKQUOTE > \ copybrief errorColor < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorColor for more information */
inline virtual void set_errorColor ( const QColor & __value )
{
this - > errorColor = __value ;
}
/*! \brief returns the property errorColor.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorColor is : < BLOCKQUOTE > \ copybrief errorColor < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorColor for more information */
inline virtual QColor get_errorColor ( ) const
{
return this - > errorColor ;
}
/*! \brief sets the property errorStyle to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorStyle is : < BLOCKQUOTE > \ copybrief errorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorStyle for more information */
inline virtual void set_errorStyle ( const Qt : : PenStyle & __value )
{
this - > errorStyle = __value ;
}
/*! \brief returns the property errorStyle.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorStyle is : < BLOCKQUOTE > \ copybrief errorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorStyle for more information */
inline virtual Qt : : PenStyle get_errorStyle ( ) const
{
return this - > errorStyle ;
}
/*! \brief sets the property errorWidth to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorWidth is : < BLOCKQUOTE > \ copybrief errorWidth < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorWidth for more information */
inline virtual void set_errorWidth ( double __value )
{
this - > errorWidth = __value ;
}
/*! \brief returns the property errorWidth.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorWidth is : < BLOCKQUOTE > \ copybrief errorWidth < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorWidth for more information */
inline virtual double get_errorWidth ( ) const
{
return this - > errorWidth ;
}
/*! \brief sets the property errorFillColor to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorFillColor is : < BLOCKQUOTE > \ copybrief errorFillColor < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorFillColor for more information */
inline virtual void set_errorFillColor ( const QColor & __value )
{
this - > errorFillColor = __value ;
}
/*! \brief returns the property errorFillColor.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorFillColor is : < BLOCKQUOTE > \ copybrief errorFillColor < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorFillColor for more information */
inline virtual QColor get_errorFillColor ( ) const
{
return this - > errorFillColor ;
}
/*! \brief sets the property errorFillStyle to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorFillStyle is : < BLOCKQUOTE > \ copybrief errorFillStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorFillStyle for more information */
inline virtual void set_errorFillStyle ( const Qt : : BrushStyle & __value )
{
this - > errorFillStyle = __value ;
}
/*! \brief returns the property errorFillStyle.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorFillStyle is : < BLOCKQUOTE > \ copybrief errorFillStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorFillStyle for more information */
inline virtual Qt : : BrushStyle get_errorFillStyle ( ) const
{
return this - > errorFillStyle ;
}
/*! \brief sets the property errorbarSize to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorbarSize is : < BLOCKQUOTE > \ copybrief errorbarSize < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorbarSize for more information */
inline virtual void set_errorbarSize ( double __value )
{
this - > errorbarSize = __value ;
}
/*! \brief returns the property errorbarSize.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter errorbarSize is : < BLOCKQUOTE > \ copybrief errorbarSize < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see errorbarSize for more information */
inline virtual double get_errorbarSize ( ) const
{
return this - > errorbarSize ;
}
2018-11-25 21:53:26 +08:00
/** \brief returns true, if the error plots use the given column */
2018-12-28 05:52:00 +08:00
virtual bool errorUsesColumn ( int c ) const ;
2018-11-25 21:53:26 +08:00
void setErrorColorFromGraphColor ( QColor graphColor ) ;
protected :
/** \brief color of the error lines/bars */
QColor errorColor ;
/** \brief linestyle of the error lines/bars */
Qt : : PenStyle errorStyle ;
/** \brief width (pixels) of the error lines/bars */
double errorWidth ;
/** \brief fill color for error polygons */
QColor errorFillColor ;
/** \brief fill style for error polygons */
Qt : : BrushStyle errorFillStyle ;
/** \brief size of the error bar end markers [pixels] */
double errorbarSize ;
/** \brief draw error indicators with the parameters defined in this class. The position of the datapoints is
* given by the \ a xColumn and \ a yColumn . It is also possible to specify a datarange . This method is called by
* the JKQTPgraph descendents */
2018-12-28 05:52:00 +08:00
virtual void plotErrorIndicators ( JKQTPEnhancedPainter & painter , JKQtBasePlotter * parent , JKQTPgraph * parentGraph , int xColumn , int yColumn , int datarange_start = - 1 , int datarange_end = - 1 , double xrelshift = 0 , double yrelshift = 0.0 , const QVector < int > * dataorder = nullptr ) = 0 ;
2018-11-25 21:53:26 +08:00
/** \brief draw error indicators with the parameters defined in this class. The position of the datapoints is
* given by the \ a xColumn and \ a yColumn . It is also possible to specify a datarange . */
2018-12-28 05:52:00 +08:00
void intPlotXYErrorIndicators ( JKQTPEnhancedPainter & painter , JKQtBasePlotter * parent , JKQTPgraph * parentGraph , int xColumn , int yColumn , int xErrorColumn , int yErrorColumn , JKQTPerrorPlotstyle xErrorStyle , JKQTPerrorPlotstyle yErrorStyle , int datarange_start = - 1 , int datarange_end = - 1 , int xErrorColumnLower = - 1 , int yErrorColumnLower = - 1 , bool xErrorSymmetric = true , bool yErrorSymmetric = true , double xrelshift = 0 , double yrelshift = 0.0 , const QVector < int > * dataorder = nullptr ) ;
2018-11-25 21:53:26 +08:00
/** \brief this function can be used to set the color of the error indicators automatically
*
* return \ c true and the colors to use , if applicable , the default implementation returns false */
2018-12-28 05:52:00 +08:00
virtual bool intPlotXYErrorIndicatorsGetColor ( JKQTPEnhancedPainter & painter , JKQtBasePlotter * parent , JKQTPgraph * parentGraph , int xColumn , int yColumn , int xErrorColumn , int yErrorColumn , JKQTPerrorPlotstyle xErrorStyle , JKQTPerrorPlotstyle yErrorStyle , int index , QColor & errorColor , QColor & errorFillColor ) ;
2018-11-25 21:53:26 +08:00
virtual double getXErrorU ( int i , JKQTPdatastore * ds ) const ;
virtual double getXErrorL ( int i , JKQTPdatastore * ds ) const ;
virtual double getYErrorU ( int i , JKQTPdatastore * ds ) const ;
virtual double getYErrorL ( int i , JKQTPdatastore * ds ) const ;
//** \brief plot a single error indicator */
//void intPlotXYErrorIndicator(JKQTPEnhancedPainter& painter, double x, double xperror, double xmerror, double y, double yperror, double ymerror, JKQTPerrorPlotstyle xErrorStyle=JKQTPnoError, JKQTPerrorPlotstyle yErrorStyle=JKQTPnoError, double lastx=0, double lastxperror=0, double lastxmerror=0, double lasty=0, double lastyperror=0, double lastymerror=0);
} ;
/*! \brief This class adds data fields for error indicators in x direction to a JKQTPgraph descendent.
2019-01-13 01:53:16 +08:00
\ ingroup jkqtplotter_basegraphserrors
2018-11-25 21:53:26 +08:00
\ see JKQTPgraphErrors
*/
class LIB_EXPORT JKQTPxGraphErrors : public JKQTPgraphErrors {
public :
/** \brief class contructor */
JKQTPxGraphErrors ( QColor graphColor = QColor ( " black " ) ) ;
2019-01-10 04:23:24 +08:00
/*! \brief sets the property xErrorSymmetric to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xErrorSymmetric is : < BLOCKQUOTE > \ copybrief xErrorSymmetric < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xErrorSymmetric for more information */
inline virtual void set_xErrorSymmetric ( bool __value )
{
this - > xErrorSymmetric = __value ;
}
/*! \brief returns the property xErrorSymmetric.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xErrorSymmetric is : < BLOCKQUOTE > \ copybrief xErrorSymmetric < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xErrorSymmetric for more information */
inline virtual bool get_xErrorSymmetric ( ) const
{
return this - > xErrorSymmetric ;
}
2019-01-12 23:01:55 +08:00
/*! \brief returns the property xErrorColumnLower. \details Description of the parameter xErrorColumnLower is: <BLOCKQUOTE>\copybrief xErrorColumnLower </BLOCKQUOTE>. \see xErrorColumnLower for more information */
2019-01-09 04:00:25 +08:00
inline int get_xErrorColumnLower ( ) const { return this - > xErrorColumnLower ; }
2019-01-12 23:01:55 +08:00
/*! \brief returns the property xErrorColumn. \details Description of the parameter xErrorColumn is: <BLOCKQUOTE>\copybrief xErrorColumn </BLOCKQUOTE>. \see xErrorColumn for more information */
2019-01-09 04:00:25 +08:00
inline int get_xErrorColumn ( ) const { return this - > xErrorColumn ; }
2019-01-10 04:23:24 +08:00
/*! \brief sets the property xErrorStyle to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xErrorStyle is : < BLOCKQUOTE > \ copybrief xErrorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xErrorStyle for more information */
inline virtual void set_xErrorStyle ( const JKQTPerrorPlotstyle & __value )
{
this - > xErrorStyle = __value ;
}
/*! \brief returns the property xErrorStyle.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xErrorStyle is : < BLOCKQUOTE > \ copybrief xErrorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xErrorStyle for more information */
inline virtual JKQTPerrorPlotstyle get_xErrorStyle ( ) const
{
return this - > xErrorStyle ;
}
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for x-error indicators */
void set_xErrorColumn ( int __value ) ;
/** \brief set the column from which to read the error values for lower x-error indicators (if not set [=-1], the xErrorColumn-values will be used for upper and lower error indicators) */
void set_xErrorColumnLower ( int __value ) ;
2018-11-25 21:53:26 +08:00
/** \brief returns true, if the error plots use the given column */
2018-12-28 05:52:00 +08:00
virtual bool errorUsesColumn ( int c ) const override ;
2018-11-25 21:53:26 +08:00
protected :
/** \brief the column that contains the error of the x-component of the datapoints */
int xErrorColumn ;
/** \brief the column that contains the error of the x-component of the datapoints. This is used as the lower error length, if xErrorSymmetric \c ==false. */
int xErrorColumnLower ;
/** \brief indicates whether the x-errors are symmetric (from one column only) */
bool xErrorSymmetric ;
/** \brief how to draw the errors (if available) of the x-value */
JKQTPerrorPlotstyle xErrorStyle ;
/** \brief draw error indicators with the parameters defined in this class. The position of the datapoints is
* given by the \ a xColumn and \ a yColumn . It is also possible to specify a datarange . */
2018-12-28 05:52:00 +08:00
virtual void plotErrorIndicators ( JKQTPEnhancedPainter & painter , JKQtBasePlotter * parent , JKQTPgraph * parentGraph , int xColumn , int yColumn , int datarange_start = - 1 , int datarange_end = - 1 , double xrelshift = 0 , double yrelshift = 0.0 , const QVector < int > * dataorder = nullptr ) override ;
2018-11-25 21:53:26 +08:00
2018-12-28 05:52:00 +08:00
virtual double getXErrorU ( int i , JKQTPdatastore * ds ) const override ;
virtual double getXErrorL ( int i , JKQTPdatastore * ds ) const override ;
2018-11-25 21:53:26 +08:00
} ;
/*! \brief This class adds data fields for error indicators in y direction to a class.
2019-01-13 01:53:16 +08:00
\ ingroup jkqtplotter_basegraphserrors
2018-11-25 21:53:26 +08:00
\ see JKQTPgraphErrors
*/
class LIB_EXPORT JKQTPyGraphErrors : public JKQTPgraphErrors {
public :
/** \brief class contructor */
JKQTPyGraphErrors ( QColor graphColor = QColor ( " black " ) ) ;
2019-01-10 04:23:24 +08:00
/*! \brief sets the property yErrorSymmetric to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yErrorSymmetric is : < BLOCKQUOTE > \ copybrief yErrorSymmetric < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yErrorSymmetric for more information */
inline virtual void set_yErrorSymmetric ( bool __value )
{
this - > yErrorSymmetric = __value ;
}
/*! \brief returns the property yErrorSymmetric.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yErrorSymmetric is : < BLOCKQUOTE > \ copybrief yErrorSymmetric < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yErrorSymmetric for more information */
inline virtual bool get_yErrorSymmetric ( ) const
{
return this - > yErrorSymmetric ;
}
2019-01-12 23:01:55 +08:00
/*! \brief returns the property yErrorColumnLower. \details Description of the parameter yErrorColumnLower is: <BLOCKQUOTE>\copybrief yErrorColumnLower </BLOCKQUOTE>. \see yErrorColumnLower for more information */
2019-01-09 04:00:25 +08:00
inline int get_yErrorColumnLower ( ) const { return this - > yErrorColumnLower ; }
2019-01-12 23:01:55 +08:00
/*! \brief returns the property yErrorColumn. \details Description of the parameter yErrorColumn is: <BLOCKQUOTE>\copybrief yErrorColumn </BLOCKQUOTE>. \see yErrorColumn for more information */
2019-01-09 04:00:25 +08:00
inline int get_yErrorColumn ( ) const { return this - > yErrorColumn ; }
2019-01-10 04:23:24 +08:00
/*! \brief sets the property yErrorStyle to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yErrorStyle is : < BLOCKQUOTE > \ copybrief yErrorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yErrorStyle for more information */
inline virtual void set_yErrorStyle ( const JKQTPerrorPlotstyle & __value )
{
this - > yErrorStyle = __value ;
}
/*! \brief returns the property yErrorStyle.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yErrorStyle is : < BLOCKQUOTE > \ copybrief yErrorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yErrorStyle for more information */
inline virtual JKQTPerrorPlotstyle get_yErrorStyle ( ) const
{
return this - > yErrorStyle ;
}
2018-11-25 21:53:26 +08:00
/** \copydoc JKQTPgraphErrors::errorUsesColumn() */
2018-12-28 05:52:00 +08:00
virtual bool errorUsesColumn ( int c ) const override ;
2018-11-25 21:53:26 +08:00
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for y-error indicators */
void set_yErrorColumn ( int __value ) ;
/** \brief set the column from which to read the error values for lower y-error indicators (if not set [=-1], the xErrorColumn-values will be used for upper and lower error indicators) */
void set_yErrorColumnLower ( int __value ) ;
2018-11-25 21:53:26 +08:00
protected :
/** \brief the column that contains the error of the x-component of the datapoints */
int yErrorColumn ;
/** \brief how to draw the errors (if available) of the x-value */
JKQTPerrorPlotstyle yErrorStyle ;
/** \brief indicates whether the y-errors are symmetric (from one column only) */
bool yErrorSymmetric ;
/** \brief the column that contains the error of the y-component of the datapoints. This is used as the lower error length, if yErrorSymmetric \c ==false. */
int yErrorColumnLower ;
/** \brief draw error indicators with the parameters defined in this class. The position of the datapoints is
* given by the \ a xColumn and \ a yColumn . It is also possible to specify a datarange . */
2018-12-28 05:52:00 +08:00
virtual void plotErrorIndicators ( JKQTPEnhancedPainter & painter , JKQtBasePlotter * parent , JKQTPgraph * parentGraph , int xColumn , int yColumn , int datarange_start = - 1 , int datarange_end = - 1 , double xrelshift = 0 , double yrelshift = 0.0 , const QVector < int > * dataorder = nullptr ) override ;
2018-11-25 21:53:26 +08:00
2018-12-28 05:52:00 +08:00
virtual double getYErrorU ( int i , JKQTPdatastore * ds ) const override ;
virtual double getYErrorL ( int i , JKQTPdatastore * ds ) const override ;
2018-11-25 21:53:26 +08:00
} ;
/*! \brief This class adds data fields for error indicators in x and y direction to a class.
2019-01-13 01:53:16 +08:00
\ ingroup jkqtplotter_basegraphserrors
2018-11-25 21:53:26 +08:00
\ see JKQTPgraphErrors
*/
class LIB_EXPORT JKQTPxyGraphErrors : public JKQTPgraphErrors {
public :
/** \brief class contructor */
JKQTPxyGraphErrors ( QColor graphColor = QColor ( " black " ) ) ;
2019-01-10 04:23:24 +08:00
/*! \brief sets the property xErrorSymmetric to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xErrorSymmetric is : < BLOCKQUOTE > \ copybrief xErrorSymmetric < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xErrorSymmetric for more information */
inline virtual void set_xErrorSymmetric ( bool __value )
{
this - > xErrorSymmetric = __value ;
}
/*! \brief returns the property xErrorSymmetric.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xErrorSymmetric is : < BLOCKQUOTE > \ copybrief xErrorSymmetric < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xErrorSymmetric for more information */
inline virtual bool get_xErrorSymmetric ( ) const
{
return this - > xErrorSymmetric ;
}
/*! \brief sets the property yErrorSymmetric to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yErrorSymmetric is : < BLOCKQUOTE > \ copybrief yErrorSymmetric < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yErrorSymmetric for more information */
inline virtual void set_yErrorSymmetric ( bool __value )
{
this - > yErrorSymmetric = __value ;
}
/*! \brief returns the property yErrorSymmetric.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yErrorSymmetric is : < BLOCKQUOTE > \ copybrief yErrorSymmetric < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yErrorSymmetric for more information */
inline virtual bool get_yErrorSymmetric ( ) const
{
return this - > yErrorSymmetric ;
}
2019-01-12 23:01:55 +08:00
/*! \brief returns the property xErrorColumnLower. \details Description of the parameter xErrorColumnLower is: <BLOCKQUOTE>\copybrief xErrorColumnLower </BLOCKQUOTE>. \see xErrorColumnLower for more information */
2019-01-09 04:00:25 +08:00
inline int get_xErrorColumnLower ( ) const { return this - > xErrorColumnLower ; }
2019-01-12 23:01:55 +08:00
/*! \brief returns the property xErrorColumn. \details Description of the parameter xErrorColumn is: <BLOCKQUOTE>\copybrief xErrorColumn </BLOCKQUOTE>. \see xErrorColumn for more information */
2019-01-09 04:00:25 +08:00
inline int get_xErrorColumn ( ) const { return this - > xErrorColumn ; }
2019-01-12 23:01:55 +08:00
/*! \brief returns the property yErrorColumnLower. \details Description of the parameter yErrorColumnLower is: <BLOCKQUOTE>\copybrief yErrorColumnLower </BLOCKQUOTE>. \see yErrorColumnLower for more information */
2019-01-09 04:00:25 +08:00
inline int get_yErrorColumnLower ( ) const { return this - > yErrorColumnLower ; }
2019-01-12 23:01:55 +08:00
/*! \brief returns the property yErrorColumn. \details Description of the parameter yErrorColumn is: <BLOCKQUOTE>\copybrief yErrorColumn </BLOCKQUOTE>. \see yErrorColumn for more information */
2019-01-09 04:00:25 +08:00
inline int get_yErrorColumn ( ) const { return this - > yErrorColumn ; }
2019-01-10 04:23:24 +08:00
/*! \brief sets the property yErrorStyle to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yErrorStyle is : < BLOCKQUOTE > \ copybrief yErrorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yErrorStyle for more information */
inline virtual void set_yErrorStyle ( const JKQTPerrorPlotstyle & __value )
{
this - > yErrorStyle = __value ;
}
/*! \brief returns the property yErrorStyle.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter yErrorStyle is : < BLOCKQUOTE > \ copybrief yErrorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see yErrorStyle for more information */
inline virtual JKQTPerrorPlotstyle get_yErrorStyle ( ) const
{
return this - > yErrorStyle ;
}
/*! \brief sets the property xErrorStyle to the specified \a __value.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xErrorStyle is : < BLOCKQUOTE > \ copybrief xErrorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xErrorStyle for more information */
inline virtual void set_xErrorStyle ( const JKQTPerrorPlotstyle & __value )
{
this - > xErrorStyle = __value ;
}
/*! \brief returns the property xErrorStyle.
2019-01-12 23:01:55 +08:00
\ details Description of the parameter xErrorStyle is : < BLOCKQUOTE > \ copybrief xErrorStyle < / BLOCKQUOTE >
2019-01-10 04:23:24 +08:00
\ see xErrorStyle for more information */
inline virtual JKQTPerrorPlotstyle get_xErrorStyle ( ) const
{
return this - > xErrorStyle ;
}
2018-11-25 21:53:26 +08:00
/** \copydoc JKQTPgraphErrors::errorUsesColumn() */
2018-12-28 05:52:00 +08:00
virtual bool errorUsesColumn ( int c ) const override ;
2018-11-25 21:53:26 +08:00
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for x-error indicators */
2018-11-26 03:36:26 +08:00
void set_xErrorColumn ( int __value ) ;
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for lower x-error indicators (if not set [=-1], the xErrorColumn-values will be used for upper and lower error indicators) */
2018-11-26 03:36:26 +08:00
void set_xErrorColumnLower ( int __value ) ;
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for x-error indicators */
2018-11-26 03:36:26 +08:00
void set_yErrorColumn ( int __value ) ;
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for lower x-error indicators (if not set [=-1], the xErrorColumn-values will be used for upper and lower error indicators) */
2018-11-26 03:36:26 +08:00
void set_yErrorColumnLower ( int __value ) ;
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for y-error indicators */
2018-11-26 03:36:26 +08:00
void set_xErrorColumn ( size_t __value ) ;
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for lower y-error indicators (if not set [=-1], the xErrorColumn-values will be used for upper and lower error indicators) */
2018-11-26 03:36:26 +08:00
void set_xErrorColumnLower ( size_t __value ) ;
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for y-error indicators */
2018-11-26 03:36:26 +08:00
void set_yErrorColumn ( size_t __value ) ;
2018-12-28 05:52:00 +08:00
/** \brief set the column from which to read the error values for lower y-error indicators (if not set [=-1], the xErrorColumn-values will be used for upper and lower error indicators) */
2018-11-26 03:36:26 +08:00
void set_yErrorColumnLower ( size_t __value ) ;
2018-11-25 21:53:26 +08:00
protected :
/** \brief the column that contains the error of the x-component of the datapoints */
int yErrorColumn ;
/** \brief how to draw the errors (if available) of the x-value */
JKQTPerrorPlotstyle yErrorStyle ;
/** \brief the column that contains the error of the x-component of the datapoints */
int xErrorColumn ;
/** \brief how to draw the errors (if available) of the x-value */
JKQTPerrorPlotstyle xErrorStyle ;
/** \brief indicates whether the x-errors are symmetric (from one column only) */
bool xErrorSymmetric ;
/** \brief indicates whether the y-errors are symmetric (from one column only) */
bool yErrorSymmetric ;
/** \brief the column that contains the error of the x-component of the datapoints. This is used as the lower error length, if xErrorSymmetric \c ==false. */
int xErrorColumnLower ;
/** \brief the column that contains the error of the y-component of the datapoints. This is used as the lower error length, if yErrorSymmetric \c ==false. */
int yErrorColumnLower ;
/** \brief draw error indicators with the parameters defined in this class. The position of the datapoints is
* given by the \ a xColumn and \ a yColumn . It is also possible to specify a datarange . */
2018-12-28 05:52:00 +08:00
virtual void plotErrorIndicators ( JKQTPEnhancedPainter & painter , JKQtBasePlotter * parent , JKQTPgraph * parentGraph , int xColumn , int yColumn , int datarange_start = - 1 , int datarange_end = - 1 , double xrelshift = 0 , double yrelshift = 0.0 , const QVector < int > * dataorder = nullptr ) override ;
2018-11-25 21:53:26 +08:00
2018-12-28 05:52:00 +08:00
virtual double getXErrorU ( int i , JKQTPdatastore * ds ) const override ;
virtual double getXErrorL ( int i , JKQTPdatastore * ds ) const override ;
virtual double getYErrorU ( int i , JKQTPdatastore * ds ) const override ;
virtual double getYErrorL ( int i , JKQTPdatastore * ds ) const override ;
2018-11-25 21:53:26 +08:00
} ;
2018-12-28 05:52:00 +08:00
2018-12-19 00:13:18 +08:00
# endif // jkqtpgraphsbase_H