mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-08 23:23:01 -06:00
cca852ef1f
* #10285 Grid Cross Plot: Fix group highlighting * #9329 Make Show plot data more robust * Do not show the curve color tag for grid cross plot curves * #10310 Add tab to show plot data for well log curves
54 lines
2.0 KiB
C++
54 lines
2.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
#pragma once
|
|
|
|
#include "RimPlotCurve.h"
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class RimGridCrossPlotCurve : public RimPlotCurve
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
RimGridCrossPlotCurve();
|
|
~RimGridCrossPlotCurve() override = default;
|
|
void setGroupingInformation( int dataSetIndex, int groupIndex );
|
|
void setSamples( const std::vector<double>& xValues, const std::vector<double>& yValues );
|
|
|
|
void setCurveAutoAppearance();
|
|
int groupIndex() const;
|
|
size_t sampleCount() const;
|
|
void determineLegendIcon();
|
|
void setBlackAndWhiteLegendIcons( bool blackAndWhite );
|
|
|
|
protected:
|
|
void determineSymbol();
|
|
void updateZoomInParentPlot() override;
|
|
QString createCurveAutoName() override;
|
|
void onLoadDataAndUpdate( bool updateParentPlot ) override;
|
|
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
|
|
void defineObjectEditorAttribute( QString uiConfigName, caf::PdmUiEditorAttribute* attribute ) override;
|
|
|
|
private:
|
|
int m_dataSetIndex;
|
|
int m_groupIndex;
|
|
};
|