2018-12-02 21:08:43 +08:00
|
|
|
/*
|
2019-01-12 23:01:55 +08:00
|
|
|
Copyright (c) 2008-2019 Jan W. Krieger (<jan@jkrieger.de>)
|
2018-12-02 21:08:43 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "jkqtplottertools/jkqtp_imexport.h"
|
2018-12-19 00:13:18 +08:00
|
|
|
#include "jkqtplotter/jkqtpgraphsbase.h"
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
|
2018-12-19 00:13:18 +08:00
|
|
|
#ifndef jkqtpgraphsimpulses_H
|
|
|
|
#define jkqtpgraphsimpulses_H
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-12-12 06:00:43 +08:00
|
|
|
/*! \brief This implements an impulse plot with impulses in direction of the X axis (i.e. from y=0 to y=f(x) )
|
2019-01-13 01:53:16 +08:00
|
|
|
\ingroup jkqtplotter_barssticks
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
\image html plot_impulsesxplots.png
|
|
|
|
*/
|
2019-01-20 17:49:29 +08:00
|
|
|
class LIB_EXPORT JKQTPImpulsesHorizontalGraph: public JKQTPXYGraph {
|
2018-12-02 21:08:43 +08:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/** \brief class constructor */
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPImpulsesHorizontalGraph(JKQTBasePlotter* parent=nullptr);
|
2018-12-02 21:08:43 +08:00
|
|
|
/** \brief class constructor */
|
2019-01-20 23:15:10 +08:00
|
|
|
JKQTPImpulsesHorizontalGraph(JKQTPlotter* parent);
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
/** \brief plots the graph to the plotter object specified as parent */
|
2018-12-28 05:52:00 +08:00
|
|
|
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
2018-12-02 21:08:43 +08:00
|
|
|
/** \brief plots a key marker inside the specified rectangle \a rect */
|
2018-12-28 05:52:00 +08:00
|
|
|
virtual void drawKeyMarker(JKQTPEnhancedPainter& painter, QRectF& rect) override;
|
2018-12-02 21:08:43 +08:00
|
|
|
/** \brief returns the color to be used for the key label */
|
2018-12-28 05:52:00 +08:00
|
|
|
virtual QColor getKeyLabelColor() override;
|
2018-12-02 21:08:43 +08:00
|
|
|
|
2019-01-26 20:00:40 +08:00
|
|
|
/*! \brief sets the property color ( \copybrief color ) to the specified \a __value.
|
2019-01-25 05:49:10 +08:00
|
|
|
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
2019-01-10 04:23:24 +08:00
|
|
|
\see color for more information */
|
2019-01-26 20:00:40 +08:00
|
|
|
inline virtual void setColor(const QColor & __value)
|
2019-01-10 04:23:24 +08:00
|
|
|
{
|
|
|
|
this->color = __value;
|
|
|
|
}
|
2019-01-26 20:00:40 +08:00
|
|
|
/*! \brief returns the property color ( \copybrief color ).
|
2019-01-25 05:49:10 +08:00
|
|
|
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
2019-01-10 04:23:24 +08:00
|
|
|
\see color for more information */
|
2019-01-26 20:00:40 +08:00
|
|
|
inline virtual QColor getColor() const
|
2019-01-10 04:23:24 +08:00
|
|
|
{
|
|
|
|
return this->color;
|
|
|
|
}
|
2019-01-26 20:00:40 +08:00
|
|
|
/*! \brief sets the property lineWidth ( \copybrief lineWidth ) to the specified \a __value.
|
2019-01-25 05:49:10 +08:00
|
|
|
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
2019-01-10 04:23:24 +08:00
|
|
|
\see lineWidth for more information */
|
2019-01-26 03:16:04 +08:00
|
|
|
inline virtual void setLineWidth(double __value)
|
2019-01-10 04:23:24 +08:00
|
|
|
{
|
|
|
|
this->lineWidth = __value;
|
|
|
|
}
|
2019-01-26 20:00:40 +08:00
|
|
|
/*! \brief returns the property lineWidth ( \copybrief lineWidth ).
|
2019-01-25 05:49:10 +08:00
|
|
|
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
2019-01-10 04:23:24 +08:00
|
|
|
\see lineWidth for more information */
|
2019-01-26 03:16:04 +08:00
|
|
|
inline virtual double getLineWidth() const
|
2019-01-10 04:23:24 +08:00
|
|
|
{
|
|
|
|
return this->lineWidth;
|
|
|
|
}
|
2019-01-26 20:00:40 +08:00
|
|
|
/*! \brief sets the property baseline ( \copybrief baseline ) to the specified \a __value.
|
2019-01-25 05:49:10 +08:00
|
|
|
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
2019-01-10 04:23:24 +08:00
|
|
|
\see baseline for more information */
|
2019-01-26 20:00:40 +08:00
|
|
|
inline virtual void setBaseline(double __value)
|
2019-01-10 04:23:24 +08:00
|
|
|
{
|
|
|
|
this->baseline = __value;
|
|
|
|
}
|
2019-01-26 20:00:40 +08:00
|
|
|
/*! \brief returns the property baseline ( \copybrief baseline ).
|
2019-01-25 05:49:10 +08:00
|
|
|
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
2019-01-10 04:23:24 +08:00
|
|
|
\see baseline for more information */
|
2019-01-26 20:00:40 +08:00
|
|
|
inline virtual double getBaseline() const
|
2019-01-10 04:23:24 +08:00
|
|
|
{
|
|
|
|
return this->baseline;
|
|
|
|
}
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
/** \brief color of the graph */
|
|
|
|
QColor color;
|
|
|
|
/** \brief width (pixels) of the lines */
|
|
|
|
double lineWidth;
|
|
|
|
|
|
|
|
protected:
|
2019-01-26 03:16:04 +08:00
|
|
|
/** \brief which plot style to use from the parent plotter (via JKQTBasePlotter::getPlotStyle() and JKQTBasePlotter::getNextStyle() ) */
|
2018-12-02 21:08:43 +08:00
|
|
|
int parentPlotStyle;
|
|
|
|
|
|
|
|
/** \brief baseline of the plot (NOTE: 0 is interpreted as until plot border in log-mode!!!)
|
|
|
|
*/
|
|
|
|
double baseline;
|
|
|
|
QPen getPen(JKQTPEnhancedPainter &painter) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*! \brief This implements an impulse plot with impulses in direction of the X axis (i.e. from x=0 to x=f(y) )
|
2019-01-13 01:53:16 +08:00
|
|
|
\ingroup jkqtplotter_barssticks
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
\image html plot_impulsesxerrorsplots.png
|
|
|
|
*/
|
2019-01-20 17:49:29 +08:00
|
|
|
class LIB_EXPORT JKQTPImpulsesHorizontalErrorGraph: public JKQTPImpulsesHorizontalGraph, public JKQTPXGraphErrors {
|
2018-12-02 21:08:43 +08:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/** \brief class constructor */
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPImpulsesHorizontalErrorGraph(JKQTBasePlotter* parent=nullptr);
|
2019-01-20 23:15:10 +08:00
|
|
|
JKQTPImpulsesHorizontalErrorGraph(JKQTPlotter* parent);
|
2019-01-20 17:49:29 +08:00
|
|
|
/** \copydoc JKQTPGraph::usesColumn() */
|
2018-12-28 05:52:00 +08:00
|
|
|
virtual bool usesColumn(int c) const override;
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/** \brief this function is used to plot error inidcators before plotting the graphs. */
|
2018-12-28 05:52:00 +08:00
|
|
|
virtual void drawErrorsAfter(JKQTPEnhancedPainter& painter) override ;
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*! \brief This implements an impulse plot with impulses in direction of the Y axis (i.e. from y=0 to y=f(x) )
|
2019-01-13 01:53:16 +08:00
|
|
|
\ingroup jkqtplotter_barssticks
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
\image html plot_impulsesyplots.png
|
|
|
|
*/
|
2019-01-20 17:49:29 +08:00
|
|
|
class LIB_EXPORT JKQTPImpulsesVerticalGraph: public JKQTPImpulsesHorizontalGraph {
|
2018-12-02 21:08:43 +08:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/** \brief class constructor */
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPImpulsesVerticalGraph(JKQTBasePlotter* parent=nullptr);
|
2018-12-02 21:08:43 +08:00
|
|
|
/** \brief class constructor */
|
2019-01-20 23:15:10 +08:00
|
|
|
JKQTPImpulsesVerticalGraph(JKQTPlotter* parent);
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
/** \brief plots the graph to the plotter object specified as parent */
|
2018-12-28 05:52:00 +08:00
|
|
|
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
2018-12-02 21:08:43 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*! \brief This implements an impulse plot with impulses in direction of the X axis (i.e. from x=0 to x=f(y) )
|
2019-01-13 01:53:16 +08:00
|
|
|
\ingroup jkqtplotter_barssticks
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
\image html plot_impulsesyerrorsplots.png
|
|
|
|
*/
|
2019-01-20 17:49:29 +08:00
|
|
|
class LIB_EXPORT JKQTPImpulsesVerticalErrorGraph: public JKQTPImpulsesVerticalGraph, public JKQTPYGraphErrors {
|
2018-12-02 21:08:43 +08:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/** \brief class constructor */
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPImpulsesVerticalErrorGraph(JKQTBasePlotter* parent=nullptr);
|
2018-12-02 21:08:43 +08:00
|
|
|
/** \brief class constructor */
|
2019-01-20 23:15:10 +08:00
|
|
|
JKQTPImpulsesVerticalErrorGraph(JKQTPlotter* parent);
|
2019-01-20 17:49:29 +08:00
|
|
|
/** \copydoc JKQTPGraph::usesColumn() */
|
2018-12-28 05:52:00 +08:00
|
|
|
virtual bool usesColumn(int c) const override;
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/** \brief this function is used to plot error inidcators before plotting the graphs. */
|
2018-12-28 05:52:00 +08:00
|
|
|
virtual void drawErrorsAfter(JKQTPEnhancedPainter& painter) override ;
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-12-19 00:13:18 +08:00
|
|
|
#endif // jkqtpgraphsimpulses_H
|