/* Copyright (c) 2008-2024 Jan W. Krieger () 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 . */ #include "jkqtplotter/graphs/jkqtpspecialline.h" #include "jkqtplotter/jkqtpbaseplotter.h" #include #include #include #include "jkqtplotter/jkqtptools.h" #include "jkqtplotter/jkqtpimagetools.h" #include "jkqtplotter/graphs/jkqtpimage.h" #include "jkqtplotter/jkqtpbaseelements.h" #include "jkqtplotter/jkqtplotter.h" #define SmallestGreaterZeroCompare_xvsgz() if ((xvsgz>10.0*DBL_MIN)&&((smallestGreaterZero<10.0*DBL_MIN) || (xvsgzm_specialLineType = __value; } JKQTPSpecialLineType JKQTPSpecialLineGraphBase::getSpecialLineType() const { return this->m_specialLineType; } void JKQTPSpecialLineGraphBase::setColor(QColor c) { setLineColor(c); setSymbolColor(c); setSymbolFillColor(JKQTPGetDerivedColor(parent->getCurrentPlotterStyle().graphsStyle.defaultGraphStyle.symbolFillColorDerivationMode, c)); setFillColor(JKQTPGetDerivedColor(parent->getCurrentPlotterStyle().graphsStyle.defaultGraphStyle.fillColorDerivationMode, c)); c.setAlphaF(0.5); setHighlightingLineColor(c); } JKQTPSpecialLineHorizontalGraph::JKQTPSpecialLineHorizontalGraph(JKQTBasePlotter* parent): JKQTPSpecialLineGraphBase(parent) { } JKQTPSpecialLineHorizontalGraph::JKQTPSpecialLineHorizontalGraph(JKQTPlotter* parent): JKQTPSpecialLineHorizontalGraph(parent->getPlotter()) { } 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); const double xmin=transformX(getXAxis()->getMin()); const double xmax=transformX(getXAxis()->getMax()); const double ymin=transformY(getYAxis()->getMin()); const double ymax=transformY(getYAxis()->getMax()); const auto symType=getSymbolType(); const double symbolSize=parent->pt2px(painter, getSymbolSize()); const QMarginsF clipMargins=(symType==JKQTPNoSymbol)?QMarginsF(0,0,0,0):QMarginsF(symbolSize,symbolSize,symbolSize,symbolSize); const QRectF cliprect=QRectF(qMin(xmin,xmax),qMin(ymin,ymax),fabs(xmax-xmin),fabs(ymax-ymin))+clipMargins; int imax=0; int imin=0; if (getIndexRange(imin, imax)) { QPolygonF pl, pf; QPolygonF ps; double xold=-1; double yold=-1; double y0=transformY(getBaseline()); if (getYAxis()->isLogAxis()) { if (getBaseline()>0 && getBaseline()>getYAxis()->getMin()) y0=transformY(getBaseline()); else y0=transformY(getYAxis()->getMin()); } bool firstPoint=true; intSortData(); for (int iii=imin; iiiget(static_cast(xColumn),static_cast(i)); const double yv=datastore->get(static_cast(yColumn),static_cast(i)); //std::cout<<"(xv, yv) = ( "< pl_fordrawing; if (isHighlighted() || getDrawLine()) { if (getUseNonvisibleLineCompression()) pl_fordrawing=JKQTPClipPolyLine(JKQTPSimplifyPolyLines(pl, getNonvisibleLineCompressionAgressiveness()), cliprect); else pl_fordrawing=JKQTPClipPolyLine(pl, cliprect); } if (isHighlighted()) { painter.setBrush(Qt::NoBrush); painter.setPen(ph); for (const QPolygonF& lines : pl_fordrawing) { painter.drawPolylineFast(lines); } } if (getDrawLine()) { painter.setBrush(Qt::NoBrush); painter.setPen(p); for (const QPolygonF& lines : pl_fordrawing) { painter.drawPolylineFast(lines); } } if (m_drawSymbols) { painter.save(); auto __finalpaintsym=JKQTPFinally([&painter]() {painter.restore();}); for (auto& ppoint: ps) { if (cliprect.contains(ppoint)) plotStyledSymbol(parent, painter, ppoint.x(), ppoint.y()); } } } drawErrorsAfter(painter); } JKQTPSpecialLineVerticalGraph::JKQTPSpecialLineVerticalGraph(JKQTBasePlotter *parent): JKQTPSpecialLineGraphBase(parent) { } JKQTPSpecialLineVerticalGraph::JKQTPSpecialLineVerticalGraph(JKQTPlotter *parent): JKQTPSpecialLineVerticalGraph(parent->getPlotter()) { } 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); const double xmin=transformX(getXAxis()->getMin()); const double xmax=transformX(getXAxis()->getMax()); const double ymin=transformY(getYAxis()->getMin()); const double ymax=transformY(getYAxis()->getMax()); const auto symType=getSymbolType(); const double symbolSize=parent->pt2px(painter, getSymbolSize()); const QMarginsF clipMargins=(symType==JKQTPNoSymbol)?QMarginsF(0,0,0,0):QMarginsF(symbolSize,symbolSize,symbolSize,symbolSize); const QRectF cliprect=QRectF(qMin(xmin,xmax),qMin(ymin,ymax),fabs(xmax-xmin),fabs(ymax-ymin))+clipMargins; int imax=0; int imin=0; if (getIndexRange(imin, imax)) { QPolygonF pl, pf; QPolygonF ps; double xold=-1; double yold=-1; double x0=transformX(getBaseline()); if (getXAxis()->isLogAxis()) { if (getBaseline()>0 && getBaseline()>getXAxis()->getMin()) x0=transformX(getBaseline()); else x0=transformX(getXAxis()->getMin()); } bool first=false; intSortData(); for (int iii=imin; iiiget(static_cast(xColumn),static_cast(i)); const double yv=datastore->get(static_cast(yColumn),static_cast(i)); //std::cout<<"(xv, yv) = ( "< pl_fordrawing; if (isHighlighted() || getDrawLine()) { if (getUseNonvisibleLineCompression()) pl_fordrawing=JKQTPClipPolyLine(JKQTPSimplifyPolyLines(pl, getNonvisibleLineCompressionAgressiveness()), cliprect); else pl_fordrawing=JKQTPClipPolyLine(pl, cliprect); } if (isHighlighted()) { painter.setBrush(Qt::NoBrush); painter.setPen(ph); for (const QPolygonF& lines : pl_fordrawing) { painter.drawPolylineFast(lines); } } if (getDrawLine()) { painter.setBrush(Qt::NoBrush); painter.setPen(p); for (const QPolygonF& lines : pl_fordrawing) { painter.drawPolylineFast(lines); } } if (m_drawSymbols) { painter.save(); auto __finalpaintsym=JKQTPFinally([&painter]() {painter.restore();}); for (auto& ppoint: ps) { if (cliprect.contains(ppoint)) plotStyledSymbol(parent, painter, ppoint.x(), ppoint.y()); } } } drawErrorsAfter(painter); } int JKQTPSpecialLineVerticalGraph::getKeyColumn() const { return getYColumn(); } int JKQTPSpecialLineVerticalGraph::getValueColumn() const { return getXColumn(); } void JKQTPSpecialLineVerticalGraph::setKeyColumn(int __value) { setYColumn(__value); } void JKQTPSpecialLineVerticalGraph::setValueColumn(int __value) { setXColumn(__value); }