ResInsight/ApplicationCode/ProjectDataModel/CorrelationPlots/RimCorrelationPlotCollection.cpp

105 lines
4.1 KiB
C++
Raw Normal View History

2020-04-17 02:31:42 -05:00
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2020- 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.
//
/////////////////////////////////////////////////////////////////////////////////
#include "RimCorrelationPlotCollection.h"
2020-04-21 01:56:27 -05:00
#include "RimCorrelationMatrixPlot.h"
2020-04-17 02:31:42 -05:00
#include "RimCorrelationPlot.h"
2020-04-17 12:24:12 -05:00
#include "RimParameterResultCrossPlot.h"
2020-04-17 02:31:42 -05:00
CAF_PDM_SOURCE_INIT( RimCorrelationPlotCollection, "CorrelationPlotCollection" );
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RimCorrelationPlotCollection::RimCorrelationPlotCollection()
{
CAF_PDM_InitObject( "Correlation Plots", ":/AnalysisPlots16x16.png", "", "" );
CAF_PDM_InitFieldNoDefault( &m_correlationPlots, "CorrelationPlots", "Correlation Plots", "", "", "" );
m_correlationPlots.uiCapability()->setUiHidden( true );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RimCorrelationPlotCollection::~RimCorrelationPlotCollection()
{
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RimCorrelationPlot* RimCorrelationPlotCollection::createCorrelationPlot()
{
RimCorrelationPlot* plot = new RimCorrelationPlot();
plot->setAsPlotMdiWindow();
2020-04-21 01:56:27 -05:00
m_correlationPlots.push_back( plot );
return plot;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RimCorrelationMatrixPlot* RimCorrelationPlotCollection::createCorrelationMatrixPlot()
{
RimCorrelationMatrixPlot* plot = new RimCorrelationMatrixPlot();
plot->setAsPlotMdiWindow();
2020-04-17 02:31:42 -05:00
m_correlationPlots.push_back( plot );
return plot;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
2020-04-17 12:24:12 -05:00
RimParameterResultCrossPlot* RimCorrelationPlotCollection::createParameterResultCrossPlot()
2020-04-17 02:31:42 -05:00
{
2020-04-17 12:24:12 -05:00
RimParameterResultCrossPlot* plot = new RimParameterResultCrossPlot;
plot->setAsPlotMdiWindow();
m_correlationPlots.push_back( plot );
return plot;
2020-04-17 02:31:42 -05:00
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
2020-04-17 12:24:12 -05:00
void RimCorrelationPlotCollection::removePlot( RimAbstractCorrelationPlot* correlationPlot )
2020-04-17 02:31:42 -05:00
{
2020-04-17 12:24:12 -05:00
m_correlationPlots.removeChildObject( correlationPlot );
2020-04-17 02:31:42 -05:00
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
2020-04-17 12:24:12 -05:00
std::vector<RimAbstractCorrelationPlot*> RimCorrelationPlotCollection::plots()
2020-04-17 02:31:42 -05:00
{
return m_correlationPlots.childObjects();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimCorrelationPlotCollection::deleteAllChildObjects()
{
m_correlationPlots.deleteAllChildObjects();
}