/* 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/jkqtpimpulses.h" #include "jkqtplotter/jkqtpbaseplotter.h" #include #include #include #include "jkqtplotter/jkqtptools.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 JKQTPImpulsesHorizontalGraph::draw(JKQTPEnhancedPainter& painter) { #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot("JKQTPImpulsesHorizontalGraph::draw"); #endif if (parent==nullptr) return; JKQTPDatastore* datastore=parent->getDatastore(); if (datastore==nullptr) return; drawErrorsBefore(painter); { painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();}); QPen p=getLinePen(painter, parent); p.setCapStyle(Qt::FlatCap); int imax=static_cast(qMin(datastore->getRows(static_cast(xColumn)), datastore->getRows(static_cast(yColumn)))); int imin=0; if (imaxgetXAxis()->isLogAxis()) { if (baseline>0 && baseline>parent->getXAxis()->getMin()) x0=transformX(baseline); else x0=transformX(parent->getXAxis()->getMin()); } // double y0=transformY(baseline); // if (parent->getYAxis()->isLogAxis()) { // y0=transformY(parent->getYAxis()->getMin()); // if (baseline>0 && baseline>parent->getYAxis()->getMin()) y0=transformY(baseline); // else y0=transformY(parent->getYAxis()->getMin()); // } //bool first=false; QVector lines; QVector points; intSortData(); for (int iii=imin; iiiget(static_cast(xColumn),static_cast(i)); double yv=datastore->get(static_cast(yColumn),static_cast(i)); if (JKQTPIsOKFloat(xv) && JKQTPIsOKFloat(yv)) { double x=transformX(xv); double y=transformY(yv); lines.append(QLineF(x0, y, x, y)); points.append(QPointF(x,y)); // xold=x; // yold=y; //first=true; } } painter.setPen(p); if (lines.size()>0) painter.drawLines(lines); if (drawSymbols && points.size()>0) { painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();}); for (auto& p: points) { plotStyledSymbol(parent, painter, p.x(), p.y()); } } } drawErrorsAfter(painter); } void JKQTPImpulsesHorizontalGraph::drawKeyMarker(JKQTPEnhancedPainter& painter, QRectF& rect) { painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();}); QPen p=getLinePen(painter, parent); p.setCapStyle(Qt::FlatCap); painter.setPen(p); int y=rect.top()+rect.height()/2.0; painter.drawLine(rect.left(), y, rect.right(), y); } QColor JKQTPImpulsesHorizontalGraph::getKeyLabelColor() const { return getLineColor(); } void JKQTPImpulsesHorizontalGraph::setColor(QColor c) { setLineColor(c); setSymbolColor(c); setSymbolFillColor(JKQTPGetDerivedColor(parent->getCurrentPlotterStyle().graphFillColorDerivationMode, c)); c.setAlphaF(0.5); setHighlightingLineColor(c); } void JKQTPImpulsesHorizontalGraph::setBaseline(double __value) { this->baseline = __value; } double JKQTPImpulsesHorizontalGraph::getBaseline() const { return this->baseline; } void JKQTPImpulsesHorizontalGraph::setDrawSymbols(bool __value) { drawSymbols=__value; } bool JKQTPImpulsesHorizontalGraph::getDrawSymbols() const { return drawSymbols; } JKQTPImpulsesVerticalGraph::JKQTPImpulsesVerticalGraph(JKQTBasePlotter* parent): JKQTPImpulsesHorizontalGraph(parent) { } JKQTPImpulsesVerticalGraph::JKQTPImpulsesVerticalGraph(JKQTPlotter *parent): JKQTPImpulsesHorizontalGraph(parent) { } void JKQTPImpulsesVerticalGraph::draw(JKQTPEnhancedPainter& painter) { #ifdef JKQTBP_AUTOTIMER JKQTPAutoOutputTimer jkaaot("JKQTPImpulsesVerticalGraph::draw"); #endif if (parent==nullptr) return; JKQTPDatastore* datastore=parent->getDatastore(); if (datastore==nullptr) return; drawErrorsBefore(painter); { painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();}); QPen p=getLinePen(painter, parent); p.setCapStyle(Qt::FlatCap); int imax=static_cast(qMin(datastore->getRows(static_cast(xColumn)), datastore->getRows(static_cast(yColumn)))); int imin=0; if (imaxgetXAxis()->isLogAxis()) { // if (baseline>0 && baseline>parent->getXAxis()->getMin()) x0=transformX(baseline); // else x0=transformX(parent->getXAxis()->getMin()); // } double y0=transformY(baseline); if (parent->getYAxis()->isLogAxis()) { y0=transformY(parent->getYAxis()->getMin()); if (baseline>0 && baseline>parent->getYAxis()->getMin()) y0=transformY(baseline); else y0=transformY(parent->getYAxis()->getMin()); } QVector lines; QVector points; intSortData(); for (int iii=imin; iiiget(static_cast(xColumn),static_cast(i)); double yv=datastore->get(static_cast(yColumn),static_cast(i)); if (JKQTPIsOKFloat(xv) && JKQTPIsOKFloat(yv) ) { double x=transformX(xv); double y=transformY(yv); lines.append(QLineF(x, y0, x, y)); points.append(QPointF(x,y)); //xold=x; //yold=y; //first=true; } } painter.setPen(p); if (lines.size()>0) painter.drawLines(lines); if (drawSymbols && points.size()>0) { painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();}); for (auto& p: points) { plotStyledSymbol(parent, painter, p.x(), p.y()); } } } drawErrorsAfter(painter); } JKQTPImpulsesHorizontalErrorGraph::JKQTPImpulsesHorizontalErrorGraph(JKQTBasePlotter *parent): JKQTPImpulsesHorizontalGraph(parent) { setErrorColorFromGraphColor(getLineColor()); initErrorStyle(parent, parentPlotStyle); } JKQTPImpulsesHorizontalErrorGraph::JKQTPImpulsesHorizontalErrorGraph(JKQTPlotter *parent): JKQTPImpulsesHorizontalErrorGraph(parent->getPlotter()) { } bool JKQTPImpulsesHorizontalErrorGraph::usesColumn(int c) const { return JKQTPImpulsesHorizontalGraph::usesColumn(c)|| JKQTPXGraphErrors::errorUsesColumn(c); } void JKQTPImpulsesHorizontalErrorGraph::drawErrorsAfter(JKQTPEnhancedPainter &painter) { if (sortData==JKQTPXYGraph::Unsorted) plotErrorIndicators(painter, parent, this, xColumn, yColumn); else plotErrorIndicators(painter, parent, this, xColumn, yColumn, 0, 0, &sortedIndices); } JKQTPImpulsesVerticalErrorGraph::JKQTPImpulsesVerticalErrorGraph(JKQTBasePlotter *parent): JKQTPImpulsesVerticalGraph(parent) { setErrorColorFromGraphColor(getLineColor()); initErrorStyle(parent, parentPlotStyle); } JKQTPImpulsesVerticalErrorGraph::JKQTPImpulsesVerticalErrorGraph(JKQTPlotter *parent): JKQTPImpulsesVerticalErrorGraph(parent->getPlotter()) { } bool JKQTPImpulsesVerticalErrorGraph::usesColumn(int c) const { return JKQTPImpulsesVerticalGraph::usesColumn(c)|| JKQTPYGraphErrors::errorUsesColumn(c); } void JKQTPImpulsesVerticalErrorGraph::drawErrorsAfter(JKQTPEnhancedPainter &painter) { if (sortData==JKQTPXYGraph::Unsorted) plotErrorIndicators(painter, parent, this, xColumn, yColumn); else plotErrorIndicators(painter, parent, this, xColumn, yColumn, 0, 0, &sortedIndices); }