/* Copyright (c) 2008-2019 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) || (xvsgzgetPlotter()) { } 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=static_cast(qMin(datastore->getRows(static_cast(xColumn)), datastore->getRows(static_cast(yColumn)))); int imin=0; if (imax 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; iiiget(static_cast(xColumn),static_cast(i)); double yv=datastore->get(static_cast(yColumn),static_cast(i)); //std::cout<<"(xv, yv) = ( "<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=static_cast(qMin(datastore->getRows(static_cast(xColumn)), datastore->getRows(static_cast(yColumn)))); int imin=0; if (imax 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; iiiget(static_cast(xColumn),static_cast(i)); double yv=datastore->get(static_cast(yColumn),static_cast(i)); //std::cout<<"(xv, yv) = ( "<