mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
0e2237e92f
- fixed JKQTPColumnMathImage with modifiers - improved documentation - make use of link_prl/create_prl in QMake projects (see http://doc.qt.io/qt-5/qmake-advanced-usage.html)
150 lines
6.6 KiB
C++
150 lines
6.6 KiB
C++
/*
|
|
Copyright (c) 2008-2019 Jan W. Krieger (<jan@jkrieger.de>)
|
|
|
|
|
|
|
|
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/>.
|
|
*/
|
|
|
|
|
|
/** \file jkqtpgraphspeakstream.h
|
|
* \ingroup jkqtplotter_diverse
|
|
*/
|
|
|
|
#include <QString>
|
|
#include <QPainter>
|
|
#include <QPair>
|
|
#include "jkqtplotter/jkqtpgraphsbase.h"
|
|
|
|
#ifndef jkqtpgraphspeakstream_H_INCLUDED
|
|
#define jkqtpgraphspeakstream_H_INCLUDED
|
|
|
|
// forward declarations
|
|
class JKQTBasePlotter;
|
|
class JKQTPlotter;
|
|
class JKQTPCoordinateAxis;
|
|
class JKQTPDatastore;
|
|
|
|
|
|
/*! \brief interprets data as a stream of x- or y-positions \f$ p_i \f$ (depending in \a yPeaks ) ans plots a line on the height
|
|
\a baseline and upright lines from baseline to baseline+peakHeight at each position \f$ p_i \f$. This can be used to
|
|
display a stream of photons with given arrivaltimes \f$ p_i \f$.
|
|
\ingroup jkqtplotter_diverse
|
|
|
|
\image html JKQTPPeakStreamGraphY.png "yPeaks=true"
|
|
\image html JKQTPPeakStreamGraphX.png "yPeaks=false"
|
|
*/
|
|
class LIB_EXPORT JKQTPPeakStreamGraph: public JKQTPSingleColumnGraph {
|
|
Q_OBJECT
|
|
public:
|
|
/** \brief class constructor */
|
|
JKQTPPeakStreamGraph(JKQTBasePlotter* parent=nullptr);
|
|
JKQTPPeakStreamGraph(int dataColumn, double baseline, double peakHeight, QColor color, JKQTBasePlotter* parent=nullptr);
|
|
JKQTPPeakStreamGraph(int dataColumn, double baseline, double peakHeight, JKQTBasePlotter* parent=nullptr);
|
|
JKQTPPeakStreamGraph(JKQTPlotter* parent);
|
|
JKQTPPeakStreamGraph(int dataColumn, double baseline, double peakHeight, QColor color, JKQTPlotter* parent);
|
|
JKQTPPeakStreamGraph(int dataColumn, double baseline, double peakHeight, 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!
|
|
*/
|
|
virtual bool getXMinMax(double& minx, double& maxx, double& smallestGreaterZero) override;
|
|
/** \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) override;
|
|
|
|
|
|
/** \brief plots the graph to the plotter object specified as parent */
|
|
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
|
/** \brief plots a key marker inside the specified rectangle \a rect */
|
|
virtual void drawKeyMarker(JKQTPEnhancedPainter& painter, QRectF& rect) override;
|
|
|
|
/*! \brief sets the property baseline ( \copybrief baseline ) to the specified \a __value.
|
|
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
|
\see baseline for more information */
|
|
inline virtual void setBaseline(double __value)
|
|
{
|
|
this->baseline = __value;
|
|
}
|
|
/*! \brief returns the property baseline ( \copybrief baseline ).
|
|
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
|
\see baseline for more information */
|
|
inline virtual double getBaseline() const
|
|
{
|
|
return this->baseline;
|
|
}
|
|
/*! \brief sets the property peakHeight ( \copybrief peakHeight ) to the specified \a __value.
|
|
\details Description of the parameter peakHeight is: <BLOCKQUOTE>\copydoc peakHeight </BLOCKQUOTE>
|
|
\see peakHeight for more information */
|
|
inline virtual void setPeakHeight(double __value)
|
|
{
|
|
this->peakHeight = __value;
|
|
}
|
|
/*! \brief returns the property peakHeight ( \copybrief peakHeight ).
|
|
\details Description of the parameter peakHeight is: <BLOCKQUOTE>\copydoc peakHeight </BLOCKQUOTE>
|
|
\see peakHeight for more information */
|
|
inline virtual double getPeakHeight() const
|
|
{
|
|
return this->peakHeight;
|
|
}
|
|
/*! \brief sets the property yPeaks ( \copybrief yPeaks ) to the specified \a __value.
|
|
\details Description of the parameter yPeaks is: <BLOCKQUOTE>\copydoc yPeaks </BLOCKQUOTE>
|
|
\see yPeaks for more information */
|
|
inline virtual void setYPeaks(bool __value)
|
|
{
|
|
this->yPeaks = __value;
|
|
}
|
|
/*! \brief returns the property yPeaks ( \copybrief yPeaks ).
|
|
\details Description of the parameter yPeaks is: <BLOCKQUOTE>\copydoc yPeaks </BLOCKQUOTE>
|
|
\see yPeaks for more information */
|
|
inline virtual bool getYPeaks() const
|
|
{
|
|
return this->yPeaks;
|
|
}
|
|
/*! \brief sets the property drawBaseline ( \copybrief drawBaseline ) to the specified \a __value.
|
|
\details Description of the parameter drawBaseline is: <BLOCKQUOTE>\copydoc drawBaseline </BLOCKQUOTE>
|
|
\see drawBaseline for more information */
|
|
inline virtual void setDrawBaseline(bool __value)
|
|
{
|
|
this->drawBaseline = __value;
|
|
}
|
|
/*! \brief returns the property drawBaseline ( \copybrief drawBaseline ).
|
|
\details Description of the parameter drawBaseline is: <BLOCKQUOTE>\copydoc drawBaseline </BLOCKQUOTE>
|
|
\see drawBaseline for more information */
|
|
inline virtual bool getDrawBaseline() const
|
|
{
|
|
return this->drawBaseline;
|
|
}
|
|
|
|
protected:
|
|
|
|
/** \brief position of the baseline */
|
|
double baseline;
|
|
/** \brief height of each peak */
|
|
double peakHeight;
|
|
/** \brief if set \c true the peaks are in Y direction (default: true)*/
|
|
bool yPeaks;
|
|
/** \brief indicates whether to draw the basleine (default: \c true ) */
|
|
bool drawBaseline;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // jkqtpgraphspeakstream_H_INCLUDED
|