mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-05 21:53:27 -06:00
41 lines
1.7 KiB
C++
41 lines
1.7 KiB
C++
#include "RimEclipseContourMapViewCollection.h"
|
|
|
|
#include "RimCase.h"
|
|
#include "RimEclipseContourMapView.h"
|
|
|
|
CAF_PDM_SOURCE_INIT( RimEclipseContourMapViewCollection, "Eclipse2dViewCollection" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimEclipseContourMapViewCollection::RimEclipseContourMapViewCollection()
|
|
{
|
|
CAF_PDM_InitObject( "Contour Maps", ":/2DMaps16x16.png", "", "" );
|
|
|
|
CAF_PDM_InitFieldNoDefault( &m_contourMapViews, "EclipseViews", "Contour Maps", ":/CrossSection16x16.png", "", "" );
|
|
m_contourMapViews.uiCapability()->setUiTreeHidden( true );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimEclipseContourMapViewCollection::~RimEclipseContourMapViewCollection()
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::vector<RimEclipseContourMapView*> RimEclipseContourMapViewCollection::views()
|
|
{
|
|
return m_contourMapViews.childObjects();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimEclipseContourMapViewCollection::push_back( RimEclipseContourMapView* contourMap )
|
|
{
|
|
m_contourMapViews.push_back( contourMap );
|
|
}
|