2018-12-02 21:08:43 +08:00
|
|
|
/*
|
2020-08-26 18:58:23 +08:00
|
|
|
Copyright (c) 2008-2020 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
|
2019-02-08 00:24:46 +08:00
|
|
|
the Free Software Foundation, either version 2.1 of the License, or
|
2018-12-02 21:08:43 +08:00
|
|
|
(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-06-20 22:06:31 +08:00
|
|
|
#include "jkqtplotter/graphs/jkqtpfilledcurve.h"
|
2018-12-02 21:08:43 +08:00
|
|
|
#include "jkqtplotter/jkqtpbaseplotter.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <iostream>
|
2019-05-30 04:40:02 +08:00
|
|
|
#include "jkqtplotter/jkqtptools.h"
|
2019-06-20 22:06:31 +08:00
|
|
|
#include "jkqtplotter/graphs/jkqtpimage.h"
|
2018-12-02 21:08:43 +08:00
|
|
|
#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;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPFilledCurveXGraph::JKQTPFilledCurveXGraph(JKQTBasePlotter* parent):
|
2019-04-22 19:27:50 +08:00
|
|
|
JKQTPSpecialLineHorizontalGraph(parent)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-04-22 19:27:50 +08:00
|
|
|
setDrawLine(true);
|
|
|
|
setDrawSymbols(false);
|
|
|
|
setFillCurve(true);
|
|
|
|
setSpecialLineType(JKQTPDirectLine);
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 23:15:10 +08:00
|
|
|
JKQTPFilledCurveXGraph::JKQTPFilledCurveXGraph(JKQTPlotter *parent):
|
2019-02-08 00:24:46 +08:00
|
|
|
JKQTPFilledCurveXGraph(parent->getPlotter())
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPFilledCurveYGraph::JKQTPFilledCurveYGraph(JKQTBasePlotter* parent):
|
2019-04-22 19:27:50 +08:00
|
|
|
JKQTPSpecialLineVerticalGraph(parent)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-04-22 19:27:50 +08:00
|
|
|
setDrawLine(true);
|
|
|
|
setDrawSymbols(false);
|
|
|
|
setFillCurve(true);
|
|
|
|
setSpecialLineType(JKQTPDirectLine);
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 23:15:10 +08:00
|
|
|
JKQTPFilledCurveYGraph::JKQTPFilledCurveYGraph(JKQTPlotter *parent):
|
2019-02-08 00:24:46 +08:00
|
|
|
JKQTPFilledCurveYGraph(parent->getPlotter())
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPFilledCurveXErrorGraph::JKQTPFilledCurveXErrorGraph(JKQTBasePlotter *parent):
|
2019-05-06 01:31:20 +08:00
|
|
|
JKQTPFilledCurveXGraph(parent)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-04-22 19:27:50 +08:00
|
|
|
setErrorColorFromGraphColor(getLineColor());
|
2019-05-06 01:31:20 +08:00
|
|
|
initErrorStyle(parent, parentPlotStyle);
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 23:15:10 +08:00
|
|
|
JKQTPFilledCurveXErrorGraph::JKQTPFilledCurveXErrorGraph(JKQTPlotter *parent):
|
2019-02-08 00:24:46 +08:00
|
|
|
JKQTPFilledCurveXErrorGraph(parent->getPlotter())
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-02-08 00:24:46 +08:00
|
|
|
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
bool JKQTPFilledCurveXErrorGraph::usesColumn(int c) const
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-01-20 17:49:29 +08:00
|
|
|
return JKQTPFilledCurveXGraph::usesColumn(c)|| JKQTPYGraphErrors::errorUsesColumn(c);
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
void JKQTPFilledCurveXErrorGraph::drawErrorsAfter(JKQTPEnhancedPainter &painter)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-02-03 21:04:48 +08:00
|
|
|
if (sortData==JKQTPXYGraph::Unsorted) plotErrorIndicators(painter, parent, this, xColumn, yColumn);
|
|
|
|
else plotErrorIndicators(painter, parent, this, xColumn, yColumn, 0, 0, &sortedIndices);
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPFilledCurveYErrorGraph::JKQTPFilledCurveYErrorGraph(JKQTBasePlotter *parent):
|
2019-05-06 01:31:20 +08:00
|
|
|
JKQTPFilledCurveYGraph(parent)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-04-22 19:27:50 +08:00
|
|
|
setErrorColorFromGraphColor(getLineColor());
|
2019-05-06 01:31:20 +08:00
|
|
|
initErrorStyle(parent, parentPlotStyle);
|
2019-02-08 00:24:46 +08:00
|
|
|
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 23:15:10 +08:00
|
|
|
JKQTPFilledCurveYErrorGraph::JKQTPFilledCurveYErrorGraph(JKQTPlotter *parent):
|
2019-02-08 00:24:46 +08:00
|
|
|
JKQTPFilledCurveYErrorGraph(parent->getPlotter())
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-02-08 00:24:46 +08:00
|
|
|
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
bool JKQTPFilledCurveYErrorGraph::usesColumn(int c) const
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-01-20 17:49:29 +08:00
|
|
|
return JKQTPFilledCurveYGraph::usesColumn(c)|| JKQTPXGraphErrors::errorUsesColumn(c);
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
void JKQTPFilledCurveYErrorGraph::drawErrorsAfter(JKQTPEnhancedPainter &painter)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-02-03 21:04:48 +08:00
|
|
|
if (sortData==JKQTPXYGraph::Unsorted) plotErrorIndicators(painter, parent, this, xColumn, yColumn);
|
|
|
|
else plotErrorIndicators(painter, parent, this, xColumn, yColumn, 0, 0, &sortedIndices);
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPFilledVerticalRangeGraph::JKQTPFilledVerticalRangeGraph(JKQTBasePlotter *parent):
|
|
|
|
JKQTPXYGraph(parent)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
|
|
|
drawLine=true;
|
2019-04-22 19:27:50 +08:00
|
|
|
initFillStyle(parent, parentPlotStyle);
|
|
|
|
initLineStyle(parent, parentPlotStyle);
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 23:15:10 +08:00
|
|
|
JKQTPFilledVerticalRangeGraph::JKQTPFilledVerticalRangeGraph(JKQTPlotter *parent):
|
2019-02-08 00:24:46 +08:00
|
|
|
JKQTPFilledVerticalRangeGraph(parent->getPlotter())
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
bool JKQTPFilledVerticalRangeGraph::getYMinMax(double &miny, double &maxy, double &smallestGreaterZero)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
|
|
|
bool start=true;
|
|
|
|
miny=0;
|
|
|
|
maxy=0;
|
|
|
|
smallestGreaterZero=0;
|
|
|
|
|
|
|
|
if (parent==nullptr) return false;
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPDatastore* datastore=parent->getDatastore();
|
2018-12-02 21:08:43 +08:00
|
|
|
int imin=0;
|
2019-05-13 04:22:48 +08:00
|
|
|
int imax=static_cast<int>(qMin(qMin(datastore->getRows(static_cast<size_t>(xColumn)), datastore->getRows(static_cast<size_t>(yColumn))), datastore->getRows(static_cast<size_t>(yColumn2))));
|
2018-12-02 21:08:43 +08:00
|
|
|
if (imax<imin) {
|
|
|
|
int h=imin;
|
|
|
|
imin=imax;
|
|
|
|
imax=h;
|
|
|
|
}
|
|
|
|
if (imin<0) imin=0;
|
|
|
|
if (imax<0) imax=0;
|
|
|
|
|
|
|
|
for (int i=imin; i<imax; i++) {
|
|
|
|
double yv=datastore->get(static_cast<size_t>(yColumn),static_cast<size_t>(i));
|
|
|
|
double yv2=datastore->get(static_cast<size_t>(yColumn2),static_cast<size_t>(i));
|
|
|
|
if (JKQTPIsOKFloat(yv)) {
|
|
|
|
if (start || yv>maxy) maxy=yv;
|
|
|
|
if (start || yv<miny) miny=yv;
|
|
|
|
double xvsgz;
|
|
|
|
xvsgz=yv; SmallestGreaterZeroCompare_xvsgz();
|
|
|
|
start=false;
|
|
|
|
}
|
|
|
|
if (JKQTPIsOKFloat(yv2)) {
|
|
|
|
if (start || yv2>maxy) maxy=yv2;
|
|
|
|
if (start || yv2<miny) miny=yv2;
|
|
|
|
double xvsgz;
|
|
|
|
xvsgz=yv2; SmallestGreaterZeroCompare_xvsgz();
|
|
|
|
start=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return !start;
|
|
|
|
}
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
bool JKQTPFilledVerticalRangeGraph::usesColumn(int column) const
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-01-20 17:49:29 +08:00
|
|
|
return JKQTPXYGraph::usesColumn(column)||(column==yColumn2);
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
void JKQTPFilledVerticalRangeGraph::draw(JKQTPEnhancedPainter &painter)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
|
|
|
#ifdef JKQTBP_AUTOTIMER
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPAutoOutputTimer jkaaot("JKQTPFilledCurveXGraph::draw");
|
2018-12-02 21:08:43 +08:00
|
|
|
#endif
|
|
|
|
if (parent==nullptr) return;
|
2019-01-20 17:49:29 +08:00
|
|
|
JKQTPDatastore* datastore=parent->getDatastore();
|
2018-12-02 21:08:43 +08:00
|
|
|
if (datastore==nullptr) return;
|
|
|
|
|
|
|
|
drawErrorsBefore(painter);
|
2019-02-08 00:24:46 +08:00
|
|
|
{
|
|
|
|
painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
|
|
|
|
|
2019-04-22 19:27:50 +08:00
|
|
|
QPen p=getLinePen(painter, parent);
|
|
|
|
QPen ps=getHighlightingLinePen(painter, parent);
|
2019-02-08 00:24:46 +08:00
|
|
|
QPen np(Qt::NoPen);
|
|
|
|
|
2019-04-22 19:27:50 +08:00
|
|
|
QBrush b=getFillBrush(painter, parent);
|
2019-02-08 00:24:46 +08:00
|
|
|
|
2019-05-13 04:22:48 +08:00
|
|
|
int imax=static_cast<int>(qMin(qMin(datastore->getRows(static_cast<size_t>(xColumn)), datastore->getRows(static_cast<size_t>(yColumn))), datastore->getRows(static_cast<size_t>(yColumn2))));
|
2019-02-08 00:24:46 +08:00
|
|
|
int imin=0;
|
|
|
|
if (imax<imin) {
|
|
|
|
int h=imin;
|
|
|
|
imin=imax;
|
|
|
|
imax=h;
|
|
|
|
}
|
|
|
|
if (imin<0) imin=0;
|
|
|
|
if (imax<0) imax=0;
|
|
|
|
|
|
|
|
// upper points are added to poly_all, lower points to plow
|
|
|
|
// then plow points are added to poly_all in vewerse order
|
|
|
|
// then the whole thing is drawn
|
|
|
|
QPolygonF poly_all, phigh, plow;
|
|
|
|
|
|
|
|
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));
|
|
|
|
double yv2=datastore->get(static_cast<size_t>(yColumn2),static_cast<size_t>(i));
|
|
|
|
//std::cout<<"(xv, yv) = ( "<<xv<<", "<<yv<<" )\n";
|
|
|
|
if (JKQTPIsOKFloat(xv)) {
|
|
|
|
double x=transformX(xv); bool xok=JKQTPIsOKFloat(x);
|
|
|
|
double y=transformY(yv); bool yok=JKQTPIsOKFloat(y);
|
|
|
|
double y2=transformY(yv2); bool y2ok=JKQTPIsOKFloat(y2);
|
|
|
|
|
|
|
|
if (xok&&yok) phigh.append(QPointF(x,y));
|
|
|
|
if (xok&&yok) poly_all.append(QPointF(x,y));
|
|
|
|
if (xok&&y2ok) plow.append(QPointF(x,y2));
|
|
|
|
}
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-02-08 00:24:46 +08:00
|
|
|
if (plow.size()>0) {
|
|
|
|
for (int i=plow.size()-1; i>=0; i--) {
|
|
|
|
poly_all.append(plow[i]);
|
|
|
|
}
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
2019-02-08 00:24:46 +08:00
|
|
|
painter.setBrush(b);
|
|
|
|
painter.setPen(np);
|
|
|
|
painter.drawPolygon(poly_all);
|
2018-12-02 21:08:43 +08:00
|
|
|
|
|
|
|
|
2019-02-08 00:24:46 +08:00
|
|
|
if (drawLine) {
|
2020-08-26 17:43:44 +08:00
|
|
|
painter.save(); auto __finalpaintline=JKQTPFinally([&painter]() {painter.restore();});
|
2019-02-08 00:24:46 +08:00
|
|
|
|
2019-04-22 19:27:50 +08:00
|
|
|
if (isHighlighted()) {
|
|
|
|
|
|
|
|
painter.setPen(ps);
|
2019-02-08 00:24:46 +08:00
|
|
|
painter.drawPolyline(phigh);
|
|
|
|
painter.drawPolyline(plow);
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
2019-02-08 00:24:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
painter.setPen(p);
|
2018-12-02 21:08:43 +08:00
|
|
|
painter.drawPolyline(phigh);
|
|
|
|
painter.drawPolyline(plow);
|
|
|
|
|
2019-02-08 00:24:46 +08:00
|
|
|
}
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
drawErrorsAfter(painter);
|
|
|
|
}
|
|
|
|
|
2019-01-20 17:49:29 +08:00
|
|
|
void JKQTPFilledVerticalRangeGraph::drawKeyMarker(JKQTPEnhancedPainter &painter, QRectF &rect)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-02-08 00:24:46 +08:00
|
|
|
painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
|
2018-12-02 21:08:43 +08:00
|
|
|
QRectF r=rect;
|
|
|
|
r.setHeight(r.height()/2.0);
|
|
|
|
r.moveTo(r.x(), r.y()+r.height()-1);
|
2019-04-22 19:27:50 +08:00
|
|
|
painter.fillRect(r, getFillBrush(painter, parent));
|
2018-12-02 21:08:43 +08:00
|
|
|
if (drawLine) {
|
2019-04-22 19:27:50 +08:00
|
|
|
painter.setPen(getLinePen(painter, parent));
|
2018-12-02 21:08:43 +08:00
|
|
|
painter.drawLine(QLineF(r.topLeft(), r.topRight()));
|
|
|
|
}
|
2019-02-08 00:24:46 +08:00
|
|
|
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-04-22 19:27:50 +08:00
|
|
|
QColor JKQTPFilledVerticalRangeGraph::getKeyLabelColor() const
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-04-22 19:27:50 +08:00
|
|
|
return getLineColor();
|
|
|
|
}
|
|
|
|
|
|
|
|
void JKQTPFilledVerticalRangeGraph::setYColumn2(int __value)
|
|
|
|
{
|
|
|
|
this->yColumn2 = __value;
|
|
|
|
}
|
|
|
|
|
|
|
|
int JKQTPFilledVerticalRangeGraph::getYColumn2() const
|
|
|
|
{
|
|
|
|
return this->yColumn2;
|
|
|
|
}
|
|
|
|
|
|
|
|
void JKQTPFilledVerticalRangeGraph::setYColumn2(size_t __value) {
|
|
|
|
this->yColumn2 = static_cast<int>(__value);
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-04-22 19:27:50 +08:00
|
|
|
void JKQTPFilledVerticalRangeGraph::setDrawLine(bool __value)
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-04-22 19:27:50 +08:00
|
|
|
drawLine=__value;
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|
|
|
|
|
2019-04-22 19:27:50 +08:00
|
|
|
bool JKQTPFilledVerticalRangeGraph::getDrawLine() const
|
2018-12-02 21:08:43 +08:00
|
|
|
{
|
2019-04-22 19:27:50 +08:00
|
|
|
return drawLine;
|
2018-12-02 21:08:43 +08:00
|
|
|
}
|