ResInsight/ApplicationLibCode/UserInterface/RiuFemResultTextBuilder.h
jonjenssen 85f1b004cb
Geomech frames support (#9678)
Support for showing frames in geomech data.
2023-01-18 14:42:33 +01:00

94 lines
3.3 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"
#include <QString>
#include <array>
class RigGeoMechCaseData;
class RimEclipseCellColors;
class RimGeoMechResultDefinition;
class RimGeoMechView;
class Rim2dIntersectionView;
class RimGridView;
namespace cvf
{
class Part;
}
//==================================================================================================
//
//
//==================================================================================================
class RiuFemResultTextBuilder
{
public:
RiuFemResultTextBuilder( RimGridView* displayCoordView,
RimGeoMechResultDefinition* geomResDef,
int gridIndex,
int cellIndex,
int timeStepIndex,
int frameIndex );
void setFace( int face );
void setIntersectionPointInDisplay( cvf::Vec3d intersectionPointInDisplay );
void setIntersectionTriangle( const std::array<cvf::Vec3f, 3>& triangle );
void set2dIntersectionView( Rim2dIntersectionView* intersectionView );
QString mainResultText();
QString geometrySelectionText( QString itemSeparator );
private:
void appendDetails( QString& text, const QString& details );
QString gridResultDetails();
QString formationDetails();
QString closestNodeResultText( RimGeoMechResultDefinition* resultDefinition );
void appendTextFromResultColors( RigGeoMechCaseData* eclipseCase,
int gridIndex,
int cellIndex,
int timeStepIndex,
int frameIndex,
RimGeoMechResultDefinition* resultDefinition,
QString* resultInfoText );
private:
caf::PdmPointer<RimGridView> m_displayCoordView;
caf::PdmPointer<RimGeoMechResultDefinition> m_geomResDef;
caf::PdmPointer<Rim2dIntersectionView> m_2dIntersectionView;
int m_gridIndex;
int m_cellIndex;
int m_timeStepIndex;
int m_frameIndex;
int m_face;
bool m_isIntersectionTriangleSet;
std::array<cvf::Vec3f, 3> m_intersectionTriangle;
cvf::Vec3d m_intersectionPointInDisplay;
};