mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
2172199999
* Show seismic, surfaces, annotations and wellpaths in new view not requiring a grid loaded first.
120 lines
4.3 KiB
C++
120 lines
4.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron 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 "RigHistogramData.h"
|
|
|
|
#include "RimHistogramCalculator.h"
|
|
|
|
#include "cafAppEnum.h"
|
|
#include "cafPdmField.h"
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmPointer.h"
|
|
|
|
#include "cvfAssert.h"
|
|
#include "cvfObject.h"
|
|
|
|
#include "cvfVector2.h"
|
|
|
|
#include <cmath>
|
|
#include <memory>
|
|
|
|
class RimGeoMechContourMapView;
|
|
class RimEclipseContourMapView;
|
|
class RimEclipseView;
|
|
class RimGeoMechView;
|
|
class Rim3dView;
|
|
class RicGridStatisticsDialog;
|
|
class RimSeismicView;
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class Rim3dOverlayInfoConfig : public caf::PdmObject
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
Rim3dOverlayInfoConfig();
|
|
~Rim3dOverlayInfoConfig() override;
|
|
|
|
void update3DInfo();
|
|
|
|
void setReservoirView( Rim3dView* ownerView );
|
|
|
|
void setPosition( cvf::Vec2ui position );
|
|
|
|
RigHistogramData histogramData();
|
|
QString timeStepText();
|
|
QString caseInfoText();
|
|
QString resultInfoText( const RigHistogramData& histData );
|
|
|
|
RicGridStatisticsDialog* getOrCreateGridStatisticsDialog();
|
|
void showStatisticsInfoDialog( bool raise = true );
|
|
QImage statisticsDialogScreenShotImage();
|
|
|
|
bool showAnimProgress() const;
|
|
bool showCaseInfo() const;
|
|
bool showResultInfo() const;
|
|
bool isActive() const;
|
|
|
|
bool showVersionInfo() const;
|
|
|
|
private:
|
|
void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override;
|
|
caf::PdmFieldHandle* objectToggleField() override;
|
|
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
|
|
void updateEclipse3DInfo( RimEclipseView* reservoirView );
|
|
void updateGeoMech3DInfo( RimGeoMechView* geoMechView );
|
|
void updateSeismicInfo( RimSeismicView* seisView );
|
|
void update3DInfoIn2dViews() const;
|
|
QString timeStepText( RimEclipseView* eclipseView );
|
|
QString timeStepText( RimGeoMechView* geoMechView );
|
|
QString caseInfoText( RimEclipseView* eclipseView );
|
|
QString caseInfoText( RimGeoMechView* geoMechView );
|
|
QString caseInfoText( RimSeismicView* seisView );
|
|
QString resultInfoText( const RigHistogramData& histData, RimEclipseView* eclipseView, bool showVolumeWeightedMean );
|
|
QString resultInfoText( const RigHistogramData& histData, RimGeoMechView* geoMechView );
|
|
|
|
QString sampleCountText( const std::vector<size_t>& histogram );
|
|
|
|
void displayPropertyFilteredStatisticsMessage( bool showSwitchToCurrentTimestep );
|
|
bool hasInvalidStatisticsCombination();
|
|
|
|
private:
|
|
caf::PdmField<bool> m_active;
|
|
caf::PdmField<bool> m_showAnimProgress;
|
|
caf::PdmField<bool> m_showCaseInfo;
|
|
caf::PdmField<bool> m_showResultInfo;
|
|
caf::PdmField<bool> m_showVolumeWeightedMean;
|
|
caf::PdmField<bool> m_showHistogram;
|
|
caf::PdmField<bool> m_showVersionInfo;
|
|
|
|
caf::PdmField<caf::AppEnum<RimHistogramCalculator::StatisticsTimeRangeType>> m_statisticsTimeRange;
|
|
caf::PdmField<caf::AppEnum<RimHistogramCalculator::StatisticsCellRangeType>> m_statisticsCellRange;
|
|
|
|
caf::PdmPointer<Rim3dView> m_viewDef;
|
|
cvf::Vec2ui m_position;
|
|
|
|
std::unique_ptr<RimHistogramCalculator> m_histogramCalculator;
|
|
|
|
std::unique_ptr<RicGridStatisticsDialog> m_gridStatisticsDialog;
|
|
};
|