///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2019- Equinor ASA // // 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 "RimPlotCurve.h" #include "cafPdmChildField.h" #include "cafPdmPtrField.h" #include #include class RimCase; class RimEclipseResultDefinition; class QwtPlotCurve; //================================================================================================== /// /// //================================================================================================== class RimGridCrossPlotCurve : public RimPlotCurve { CAF_PDM_HEADER_INIT; public: RimGridCrossPlotCurve(); ~RimGridCrossPlotCurve() override = default; void setCategoryInformation(int curveSetIndex, int categoryIndex, int categoryCount); void setUseContrastColors(bool useContrastColors); void setSamples(const std::vector& xValues, const std::vector& yValues); void updateCurveAppearance() override; int categoryIndex() const; protected: void determineColorAndSymbol(); void updateZoomInParentPlot() override; void updateLegendsInPlot() override; QString createCurveAutoName() override; void onLoadDataAndUpdate(bool updateParentPlot) override; void defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering) override; private: int m_curveSetIndex; int m_categoryIndex; int m_categoryCount; bool m_useContrastColors; };