JKQtPlotter/lib/jkqtplotter/jkqtpgraphsspecialline.cpp
jkriege2 a67975e680 - major rework of graph styling (now using mix-in classes)
- some reorganizations into different files
- additional options for graph filling (color gradients, textures, ...) as provided by QBrush
- PREPARATIONS: added a general feature to JKQTPPlotElement which allows to show a graph in a highlighted state (if supported by the derived graph class!)
- JKQTPXYParametrizedScatterGraph: added functors to transform column values into symbol type+size and line-width to give even more control
- JKQTPStepHorizontalGraph has been renamed to JKQTPSpecialLineHorizontalGraph (vertical variants also) and have gained additional features (baseline for filling and drawing of symbols)
- filled curve graphs (e.g. JKQTPSpecialLineHorizontalGraph) are now merely a specializedly initialized JKQTPSpecialLineHorizontalGraph
2019-04-22 13:27:50 +02:00

502 lines
16 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.1 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 "jkqtplotter/jkqtpgraphsspecialline.h"
#include "jkqtplotter/jkqtpbaseplotter.h"
#include <stdlib.h>
#include <QDebug>
#include <iostream>
#include "jkqtplottertools/jkqtptools.h"
#include "jkqtplottertools/jkqtpimagetools.h"
#include "jkqtplotter/jkqtpgraphsimage.h"
#include "jkqtplotter/jkqtpbaseelements.h"
#include "jkqtplotter/jkqtplotter.h"
#define SmallestGreaterZeroCompare_xvsgz() if ((xvsgz>10.0*DBL_MIN)&&((smallestGreaterZero<10.0*DBL_MIN) || (xvsgz<smallestGreaterZero))) smallestGreaterZero=xvsgz;
JKQTPSpecialLineHorizontalGraph::JKQTPSpecialLineHorizontalGraph(JKQTBasePlotter* parent):
JKQTPXYGraph(parent)
{
m_drawLine=true;
m_fillCurve=false;
m_drawSymbols=false;
m_specialLineType=JKQTPStepLeft;
m_baseline=0;
parentPlotStyle=-1;
initLineStyle(parent, parentPlotStyle);
initFillStyle(parent, parentPlotStyle);
initSymbolStyle(parent, parentPlotStyle);
}
JKQTPSpecialLineHorizontalGraph::JKQTPSpecialLineHorizontalGraph(JKQTPlotter* parent):
JKQTPSpecialLineHorizontalGraph(parent->getPlotter())
{
}
void JKQTPSpecialLineHorizontalGraph::drawKeyMarker(JKQTPEnhancedPainter& painter, QRectF& rect) {
painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
QPen p=getLinePen(painter, parent);
QPen np(Qt::NoPen);
QBrush b=getFillBrush(painter, parent);
const double y=rect.top()+rect.height()/2.0;
painter.setPen(np);
if (m_drawLine) painter.setPen(p);
painter.setBrush(b);
if (m_fillCurve) painter.drawRect(rect);
if (!m_fillCurve & m_drawLine) painter.drawLine(QLineF(rect.left(), y, rect.right(), y));
if (m_drawSymbols) {
plotStyledSymbol(parent, painter, rect.center().x(), rect.center().y(), rect.width()*0.5);
}
}
QColor JKQTPSpecialLineHorizontalGraph::getKeyLabelColor() const {
return getLineColor();
}
void JKQTPSpecialLineHorizontalGraph::setDrawLine(bool __value)
{
this->m_drawLine = __value;
}
bool JKQTPSpecialLineHorizontalGraph::getDrawLine() const
{
return this->m_drawLine;
}
void JKQTPSpecialLineHorizontalGraph::setDrawSymbols(bool __value)
{
m_drawSymbols=__value;
}
bool JKQTPSpecialLineHorizontalGraph::getDrawSymbols() const
{
return m_drawSymbols;
}
void JKQTPSpecialLineHorizontalGraph::setFillCurve(bool __value)
{
this->m_fillCurve = __value;
}
bool JKQTPSpecialLineHorizontalGraph::getFillCurve() const
{
return this->m_fillCurve;
}
void JKQTPSpecialLineHorizontalGraph::setSpecialLineType(const JKQTPSpecialLineType &__value)
{
this->m_specialLineType = __value;
}
JKQTPSpecialLineType JKQTPSpecialLineHorizontalGraph::getSpecialLineType() const
{
return this->m_specialLineType;
}
void JKQTPSpecialLineHorizontalGraph::setBaseline(double __value)
{
this->m_baseline = __value;
}
double JKQTPSpecialLineHorizontalGraph::getBaseline() const
{
return this->m_baseline;
}
void JKQTPSpecialLineHorizontalGraph::setColor(QColor c)
{
setLineColor(c);
setSymbolColor(c);
setSymbolFillColor(JKQTPGetDerivedColor(parent->getCurrentPlotterStyle().graphFillColorDerivationMode, c));
setFillColor(JKQTPGetDerivedColor(parent->getCurrentPlotterStyle().graphFillColorDerivationMode, c));
c.setAlphaF(0.5);
setHighlightingLineColor(c);
}
void JKQTPSpecialLineHorizontalGraph::draw(JKQTPEnhancedPainter& painter) {
#ifdef JKQTBP_AUTOTIMER
JKQTPAutoOutputTimer jkaaot("JKQTPSpecialLineHorizontalGraph::draw");
#endif
if (parent==nullptr) return;
JKQTPDatastore* datastore=parent->getDatastore();
if (datastore==nullptr) return;
drawErrorsBefore(painter);
QPen p=getLinePen(painter, parent);
QPen ph=getHighlightingLinePen(painter, parent);
QPen np(Qt::NoPen);
QBrush b=getFillBrush(painter, parent);
int imax=qMin(datastore->getColumn(static_cast<size_t>(xColumn)).getRows(), datastore->getColumn(static_cast<size_t>(yColumn)).getRows());
int imin=0;
if (imax<imin) {
int h=imin;
imin=imax;
imax=h;
}
if (imin<0) imin=0;
if (imax<0) imax=0;
QPainterPath pl, pf;
QVector<QPointF> ps;
double xold=-1;
double yold=-1;
// double xstart=-1;
// double ystart=-1;
//double x0=transformX(0);
//if (parent->getXAxis()->isLogAxis()) x0=transformX(parent->getXAxis()->getMin());
double y0=transformY(m_baseline);
if (parent->getYAxis()->isLogAxis()) {
y0=transformY(parent->getYAxis()->getMin());
if (m_baseline>0 && m_baseline>parent->getYAxis()->getMin()) y0=transformY(m_baseline);
else y0=transformY(parent->getYAxis()->getMin());
}
bool subsequentItem=false;
intSortData();
for (int iii=imin; iii<imax; iii++) {
int i=qBound(imin, getDataIndex(iii), imax);
double xv=datastore->get(static_cast<size_t>(xColumn),static_cast<size_t>(i));
double yv=datastore->get(static_cast<size_t>(yColumn),static_cast<size_t>(i));
//std::cout<<"(xv, yv) = ( "<<xv<<", "<<yv<<" )\n";
if (JKQTPIsOKFloat(xv) && JKQTPIsOKFloat(yv)) {
double x=transformX(xv);
double y=transformY(yv);
if (JKQTPIsOKFloat(x) && JKQTPIsOKFloat(y)) {
ps.append(QPointF(x,y));
if (subsequentItem) {
//double xl1=xold;
//double yl1=yold;
//double xl2=x;
//double yl2=y;
if (m_specialLineType==JKQTPStepCenter) {
// x/y
// |--------*
// |
// *--------|
// xold/yold
const double d=(x-xold);
pf.lineTo(xold+d/2.0, yold);
pf.lineTo(xold+d/2.0, y);
pf.lineTo(x, y);
if (m_drawLine) {
pl.lineTo(xold+d/2.0, yold);
pl.lineTo(xold+d/2.0, y);
pl.lineTo(x, y);
}
} else if (m_specialLineType==JKQTPStepLeft) {
// x/y
// |----------------*
// |
// *
// xold/yold
pf.lineTo(xold, y);
pf.lineTo(x, y);
if (m_drawLine) {
pl.lineTo(xold, y);
pl.lineTo(x, y);
}
} else if (m_specialLineType==JKQTPStepRight) {
// x/y
// *
// |
// *----------------|
// xold/yold
pf.lineTo(x, yold);
pf.lineTo(x, y);
if (m_drawLine) {
pl.lineTo(x, yold);
pl.lineTo(x, y);
}
} else if (m_specialLineType==JKQTPStepAverage) {
// x/y
// *
// |
// |----------------|
// |
// *
// xold/yold
//const double d=(x-xold);
const double h=(y-yold);
pf.lineTo(xold, yold+h/2.0);
pf.lineTo(x, yold+h/2.0);
pf.lineTo(x,y);
if (m_drawLine) {
pl.lineTo(xold, yold+h/2.0);
pl.lineTo(x, yold+h/2.0);
pl.lineTo(x,y);
}
} else if (m_specialLineType==JKQTPDirectLine) {
// x/y
// /----*
// /----/
// *----/
// xold/yold
pf.lineTo(x, y);
if (m_drawLine) {
pl.lineTo(x, y);
}
}
//std::cout<<"line ("<<xl1<<", "<<yl1<<") -- ("<<xl2<<", "<<yl2<<")"<<std::endl;
} else {
if (m_drawLine) pl.moveTo(x,y);
pf.moveTo(x, y0);
pf.lineTo(x, y);
//xstart=x;
//ystart=y0;
}
xold=x;
yold=y;
subsequentItem=true;
}
}
}
if (m_fillCurve) {
pf.lineTo(xold, y0);
pf.closeSubpath();
}
painter.save();
auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
if (m_fillCurve) {
painter.fillPath(pf, b);
}
if (isHighlighted()) {
painter.setBrush(QBrush(Qt::transparent));
painter.setPen(ph);
painter.drawPath(pl);
}
if (m_drawLine) {
painter.setBrush(QBrush(Qt::transparent));
painter.setPen(p);
painter.drawPath(pl);
}
if (m_drawSymbols) {
painter.save();
auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
for (auto& p: ps) {
plotStyledSymbol(parent, painter, p.x(), p.y());
}
}
drawErrorsAfter(painter);
}
JKQTPSpecialLineVerticalGraph::JKQTPSpecialLineVerticalGraph(JKQTBasePlotter *parent):
JKQTPSpecialLineHorizontalGraph(parent)
{
}
JKQTPSpecialLineVerticalGraph::JKQTPSpecialLineVerticalGraph(JKQTPlotter *parent):
JKQTPSpecialLineHorizontalGraph(parent)
{
}
void JKQTPSpecialLineVerticalGraph::draw(JKQTPEnhancedPainter& painter) {
#ifdef JKQTBP_AUTOTIMER
JKQTPAutoOutputTimer jkaaot("JKQTPSpecialLineVerticalGraph::draw");
#endif
if (parent==nullptr) return;
JKQTPDatastore* datastore=parent->getDatastore();
if (datastore==nullptr) return;
drawErrorsBefore(painter);
QPen p=getLinePen(painter, parent);
QPen ph=getHighlightingLinePen(painter, parent);
QPen np(Qt::NoPen);
QBrush b=getFillBrush(painter, parent);
int imax=qMin(datastore->getColumn(static_cast<size_t>(xColumn)).getRows(), datastore->getColumn(static_cast<size_t>(yColumn)).getRows());
int imin=0;
if (imax<imin) {
int h=imin;
imin=imax;
imax=h;
}
if (imin<0) imin=0;
if (imax<0) imax=0;
QPainterPath pl, pf;
QVector<QPointF> ps;
double xold=-1;
double yold=-1;
double x0=transformX(m_baseline);
if (parent->getXAxis()->isLogAxis()) {
if (m_baseline>0 && m_baseline>parent->getXAxis()->getMin()) x0=transformX(m_baseline);
else x0=transformX(parent->getXAxis()->getMin());
}
bool first=false;
intSortData();
for (int iii=imin; iii<imax; iii++) {
int i=qBound(imin, getDataIndex(iii), imax);
double xv=datastore->get(static_cast<size_t>(xColumn),static_cast<size_t>(i));
double yv=datastore->get(static_cast<size_t>(yColumn),static_cast<size_t>(i));
//std::cout<<"(xv, yv) = ( "<<xv<<", "<<yv<<" )\n";
if (JKQTPIsOKFloat(xv) && JKQTPIsOKFloat(yv)) {
double x=transformX(xv);
double y=transformY(yv);
if (JKQTPIsOKFloat(x) && JKQTPIsOKFloat(y)) {
ps.append(QPointF(x,y));
if (first) {
//double xl1=xold;
//double yl1=yold;
//double xl2=x;
//double yl2=y;
if (m_specialLineType==JKQTPStepCenter) {
double d=(y-yold);
pf.lineTo(xold, yold+d/2.0);
pf.lineTo(x, yold+d/2.0);
pf.lineTo(x, y);
if (m_drawLine) {
pl.lineTo(xold, yold+d/2.0);
pl.lineTo(x, yold+d/2.0);
pl.lineTo(x, y);
}
} else if (m_specialLineType==JKQTPStepLeft) {
pf.lineTo(x, yold);
pf.lineTo(x, y);
if (m_drawLine) {
pl.lineTo(x, yold);
pl.lineTo(x, y);
}
} else if (m_specialLineType==JKQTPStepRight) {
pf.lineTo(xold, y);
pf.lineTo(x, y);
if (m_drawLine) {
pl.lineTo(xold, y);
pl.lineTo(x, y);
}
} else if (m_specialLineType==JKQTPStepAverage) {
// x/y
// |-------*
// |
// |
// |
// *--------|
// xold/yold
const double d=(x-xold);
//const double h=(y-yold);
pf.lineTo(xold+d/2.0, yold);
pf.lineTo(xold+d/2.0, y);
pf.lineTo(x,y);
if (m_drawLine) {
pl.lineTo(xold+d/2.0, yold);
pl.lineTo(xold+d/2.0, y);
pl.lineTo(x,y);
}
} else if (m_specialLineType==JKQTPDirectLine) {
// x/y
// /----*
// /----/
// *----/
// xold/yold
pf.lineTo(x, y);
if (m_drawLine) {
pl.lineTo(x, y);
}
}
//std::cout<<"line ("<<xl1<<", "<<yl1<<") -- ("<<xl2<<", "<<yl2<<")"<<std::endl;
} else {
if (m_drawLine) pl.moveTo(x,y);
pf.moveTo(x0, y);
pf.lineTo(x, y);
}
xold=x;
yold=y;
first=true;
}
}
}
pf.lineTo(x0, yold);
pf.closeSubpath();
painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
if (m_fillCurve) {
painter.fillPath(pf, b);
}
if (isHighlighted()) {
painter.setBrush(QBrush(Qt::transparent));
painter.setPen(ph);
painter.drawPath(pl);
}
if (m_drawLine) {
painter.setBrush(QBrush(Qt::transparent));
painter.setPen(p);
painter.drawPath(pl);
}
if (m_drawSymbols) {
painter.save();
auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
for (auto& p: ps) {
plotStyledSymbol(parent, painter, p.x(), p.y());
}
}
drawErrorsAfter(painter);
}