ResInsight/ApplicationLibCode/UserInterface/RiuWellPathComponentPlotItem.h
Magne Sjaastad b8391e6f92 Remove pure virtual from RimPlotCurve
Make it possible to use RimPlotCurve directly. Remove depnendencies on special implementation in derived classes.
2024-05-13 15:45:55 +02:00

128 lines
5.2 KiB
C++

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2018- 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 "RiaDefines.h"
#include "RiuQwtPlotItemGroup.h"
#include "RimWellLogPlot.h"
#include "RimWellPathComponentInterface.h"
#include "RiuPlotCurveSymbol.h"
#include "cvfColor4.h"
#include <QString>
class RigWellLogCurveData;
class RimWellPath;
class QwtPlotItem;
//==================================================================================================
///
///
//==================================================================================================
class RiuWellPathComponentPlotItem
{
public:
RiuWellPathComponentPlotItem( const RimWellPath* wellPath );
RiuWellPathComponentPlotItem( const RimWellPath* wellPath, const RimWellPathComponentInterface* completion );
~RiuWellPathComponentPlotItem();
QString label() const;
QString legendTitle() const;
void loadDataAndUpdate( bool updateParentPlot );
RiaDefines::WellPathComponentType componentType() const;
bool propertyValueRange( double* minimumValue, double* maximumValue ) const;
bool depthValueRange( double* minimumValue, double* maximumValue ) const;
void setShowLabel( bool showLabel );
void setDepthType( RimWellLogPlot::DepthTypeEnum depthType );
void setDepthOrientation( RiaDefines::Orientation depthOrientation );
void setContributeToLegend( bool contributeToLegend );
void setParentPlotNoReplot( QwtPlot* plot );
void attachToQwt();
void detachFromQwt();
void reattachToQwt();
private:
void setParentQwtPlotAndReplot( QwtPlot* plot );
void calculateColumnOffsets( const RimWellPathComponentInterface* component );
void onLoadDataAndUpdate( bool updateParentPlot );
std::pair<double, double> depthsOfDepthType() const;
void addMarker( double position,
double depth,
int size,
RiuPlotCurveSymbol::PointSymbolEnum symbolType,
cvf::Color4f baseColor,
const QString& label = QString( "" ),
Qt::Alignment labelAlignment = Qt::AlignVCenter | Qt::AlignRight,
Qt::Orientation labelOrientation = Qt::Horizontal,
bool drawLine = false,
bool contrastTextColor = false );
QwtPlotItem* createMarker( double position,
double depth,
int size,
RiuPlotCurveSymbol::PointSymbolEnum symbolType,
cvf::Color4f baseColor,
const QString& label = QString( "" ),
Qt::Alignment labelAlignment = Qt::AlignVCenter | Qt::AlignRight,
Qt::Orientation labelOrientation = Qt::Horizontal,
bool drawLine = false,
bool contrastTextColor = false );
void addColumnFeature( double startPosition,
double endPosition,
double startDepth,
double endDepth,
cvf::Color4f baseColor,
Qt::BrushStyle brushStyle = Qt::SolidPattern );
cvf::Color4f componentColor( float alpha = 1.0 ) const;
private:
const RimWellPath* m_wellPath;
RiaDefines::WellPathComponentType m_componentType;
double m_startMD;
double m_endMD;
std::vector<double> m_subMDs;
QString m_label;
QString m_legendTitle;
double m_columnOffset;
double m_maxColumnOffset;
RimWellLogPlot::DepthTypeEnum m_depthType;
RiaDefines::Orientation m_depthOrientation;
QPointer<QwtPlot> m_parentQwtPlot;
RiuQwtPlotItemGroup m_combinedComponentGroup;
bool m_showLabel;
};