mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
105 lines
3.6 KiB
C++
105 lines
3.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017- Statoil 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 "RicCreateSummaryCaseCollectionFeature.h"
|
|
|
|
#include "Summary/RiaSummaryTools.h"
|
|
|
|
#include "RimSummaryCase.h"
|
|
#include "RimSummaryCaseMainCollection.h"
|
|
#include "RimSummaryEnsemble.h"
|
|
|
|
#include "RiuPlotMainWindowTools.h"
|
|
|
|
#include "cafPdmObject.h"
|
|
#include "cafSelectionManager.h"
|
|
|
|
#include <QAction>
|
|
|
|
CAF_CMD_SOURCE_INIT( RicCreateSummaryCaseCollectionFeature, "RicCreateSummaryCaseCollectionFeature" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimSummaryEnsemble*
|
|
RicCreateSummaryCaseCollectionFeature::groupSummaryCases( std::vector<RimSummaryCase*> cases, const QString& groupName, bool isEnsemble )
|
|
{
|
|
RimSummaryCaseMainCollection* summaryCaseMainCollection = RiaSummaryTools::summaryCaseMainCollection();
|
|
if ( !cases.empty() )
|
|
{
|
|
auto newGroup = summaryCaseMainCollection->addEnsemble( cases, groupName, isEnsemble );
|
|
summaryCaseMainCollection->updateConnectedEditors();
|
|
|
|
RiuPlotMainWindowTools::showPlotMainWindow();
|
|
return newGroup;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicCreateSummaryCaseCollectionFeature::isCommandEnabled() const
|
|
{
|
|
std::vector<RimSummaryCase*> selection;
|
|
caf::SelectionManager::instance()->objectsByType( &selection );
|
|
|
|
if ( selection.empty() )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
for ( RimSummaryCase* summaryCase : selection )
|
|
{
|
|
if ( summaryCase->isObservedData() )
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicCreateSummaryCaseCollectionFeature::onActionTriggered( bool isChecked )
|
|
{
|
|
std::vector<RimSummaryCase*> selection;
|
|
caf::SelectionManager::instance()->objectsByType( &selection );
|
|
if ( selection.empty() ) return;
|
|
|
|
std::vector<RimSummaryCase*> duplicates;
|
|
|
|
for ( const auto sumCase : selection )
|
|
{
|
|
auto copy = sumCase->copyObject<RimSummaryCase>();
|
|
duplicates.push_back( copy );
|
|
}
|
|
|
|
groupSummaryCases( duplicates, "" );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicCreateSummaryCaseCollectionFeature::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
actionToSetup->setText( "Create Summary Case Group" );
|
|
actionToSetup->setIcon( QIcon( ":/SummaryGroup16x16.png" ) );
|
|
}
|