ResInsight/ApplicationCode/UserInterface/RiuResultTextBuilder.h
Jacob Støren 2a3c43bcc3 #5112 Fixed result info text for eclipse
Needs more testing
2019-11-28 14:09:52 +01:00

105 lines
3.6 KiB
C++

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) Statoil ASA
// Copyright (C) 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 <http://www.gnu.org/licenses/gpl.html>
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "cafPdmPointer.h"
#include "cvfStructGrid.h"
class RimEclipseView;
class RimEclipseCellColors;
class Rim2dIntersectionView;
class RigEclipseCaseData;
class RimEclipseResultDefinition;
class RimGridView;
class QString;
namespace cvf
{
class Part;
}
//==================================================================================================
//
//
//==================================================================================================
class RiuResultTextBuilder
{
public:
RiuResultTextBuilder( RimGridView* settingsView,
RimEclipseResultDefinition* eclResDef,
size_t gridIndex,
size_t cellIndex,
size_t timeStepIndex );
RiuResultTextBuilder( RimGridView* settingsView,
RimEclipseResultDefinition* eclResDef,
size_t reservoirCellIndex,
size_t timeStepIndex );
void setFace( cvf::StructGridInterface::FaceType face );
void setNncIndex( size_t nncIndex );
void setIntersectionPointInDisplay( cvf::Vec3d intersectionPointInDisplay );
void set2dIntersectionView( Rim2dIntersectionView* intersectionView );
QString mainResultText();
QString geometrySelectionText( QString itemSeparator );
private:
void appendDetails( QString& text, const QString& details );
QString gridResultDetails();
QString faultResultDetails();
QString formationDetails();
QString cellEdgeResultDetails();
QString nncDetails();
QString gridResultText();
QString faultResultText();
QString nncResultText();
QString wellResultText();
QString cellResultText( RimEclipseResultDefinition* resultColors );
void appendTextFromResultColors( RigEclipseCaseData* eclipseCase,
size_t gridIndex,
size_t cellIndex,
size_t timeStepIndex,
RimEclipseResultDefinition* resultColors,
QString* resultInfoText );
private:
caf::PdmPointer<RimGridView> m_displayCoordView;
caf::PdmPointer<RimEclipseView> m_viewWithFaultsSettings;
caf::PdmPointer<RimEclipseResultDefinition> m_eclResDef;
caf::PdmPointer<Rim2dIntersectionView> m_2dIntersectionView;
size_t m_gridIndex;
size_t m_cellIndex;
size_t m_timeStepIndex;
cvf::StructGridInterface::FaceType m_face;
size_t m_nncIndex;
cvf::Vec3d m_intersectionPointInDisplay;
};