///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2015- Statoil ASA // Copyright (C) 2015- Ceetron Solutions AS // // ResInsight is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // ResInsight 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 General Public License at // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "RiuPlotCurve.h" #include "RiuQwtPlotCurveDefines.h" #include "qwt_plot_curve.h" class QwtPlotIntervalCurve; class RiuQwtPlotWidget; //================================================================================================== // //================================================================================================== class RiuQwtPlotCurve : public RiuPlotCurve, public QwtPlotCurve { public: explicit RiuQwtPlotCurve( RimPlotCurve* ownerRimCurve = nullptr, const QString& title = QString() ); ~RiuQwtPlotCurve() override; void setTitle( const QString& title ) override; void setAppearance( RiuQwtPlotCurveDefines::LineStyleEnum lineStyle, RiuQwtPlotCurveDefines::CurveInterpolationEnum interpolationType, int curveThickness, const QColor& curveColor, const QBrush& fillBrush = QBrush( Qt::NoBrush ) ) override; void setBrush( const QBrush& brush ) override; void setColor( const QColor& color ) override; void setLegendIconSize( const QSize& iconSize ) override; QSize legendIconSize() const override; QPixmap legendIcon( const QSizeF& size ) const override; QwtGraphic legendIcon( int index, const QSizeF& size ) const override; void setVisibleInLegend( bool isVisibleInLegend ) override; void attachToPlot( RiuPlotWidget* plotWidget ) override; void detach() override; void showInPlot() override; void setZ( int z ) override; void updateErrorBarsAppearance( bool showErrorBars, const QColor& curveColor ) override; void clearErrorBars() override; int numSamples() const override; std::pair sample( int index ) const override; std::pair xDataRange() const override; std::pair yDataRange() const override; void setSamplesFromXYErrorValues( const std::vector& xValues, const std::vector& yValues, const std::vector& errorValues, bool useLogarithmicScale, RiaCurveDataTools::ErrorAxis errorAxis = RiaCurveDataTools::ErrorAxis::ERROR_ALONG_Y_AXIS ) override; void setXAxis( RiuPlotAxis axis ) override; void setYAxis( RiuPlotAxis axis ) override; void setSymbol( RiuPlotCurveSymbol* symbol ) override; RiuPlotCurveSymbol* createSymbol( RiuPlotCurveSymbol::PointSymbolEnum symbol ) const override; void setCurveFittingTolerance( double tolerance ) override; protected: void drawCurve( QPainter* p, int style, const QwtScaleMap& xMap, const QwtScaleMap& yMap, const QRectF& canvasRect, int from, int to ) const override; void drawSymbols( QPainter* p, const QwtSymbol& symbol, const QwtScaleMap& xMap, const QwtScaleMap& yMap, const QRectF& canvasRect, int from, int to ) const override; void setSamplesInPlot( const std::vector&, const std::vector& ) override; QwtPlotIntervalCurve* m_qwtCurveErrorBars; bool m_showErrorBars; QPointer m_plotWidget; };