///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2015- Statoil ASA // Copyright (C) 2015- 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RicNewStatisticsCaseFeature.h" #include "RimCaseCollection.h" #include "RimEclipseStatisticsCase.h" #include "RimEclipseStatisticsCaseCollection.h" #include "RimIdenticalGridCaseGroup.h" #include "RimProject.h" #include "Riu3DMainWindowTools.h" #include "cafSelectionManager.h" #include CAF_CMD_SOURCE_INIT( RicNewStatisticsCaseFeature, "RicNewStatisticsCaseFeature" ); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RicNewStatisticsCaseFeature::isCommandEnabled() const { return selectedValidUIItem() != nullptr; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicNewStatisticsCaseFeature::onActionTriggered( bool isChecked ) { caf::PdmUiItem* uiItem = selectedValidUIItem(); if ( uiItem ) { RimEclipseStatisticsCase* newCase = addStatisticalCalculation( uiItem ); if ( newCase ) { Riu3DMainWindowTools::selectAsCurrentItem( newCase ); } } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicNewStatisticsCaseFeature::setupActionLook( QAction* actionToSetup ) { actionToSetup->setText( "New Statistics Case" ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::PdmUiItem* RicNewStatisticsCaseFeature::selectedValidUIItem() { std::vector statisticsCaseCollections; caf::SelectionManager::instance()->objectsByType( &statisticsCaseCollections ); if ( !statisticsCaseCollections.empty() ) { return statisticsCaseCollections[0]; } std::vector caseCollections; caf::SelectionManager::instance()->objectsByType( &caseCollections ); if ( !caseCollections.empty() ) { if ( RimIdenticalGridCaseGroup::isStatisticsCaseCollection( caseCollections[0] ) ) { return caseCollections[0]; } } return nullptr; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimEclipseStatisticsCase* RicNewStatisticsCaseFeature::addStatisticalCalculation( caf::PdmUiItem* uiItem ) { RimIdenticalGridCaseGroup* caseGroup = nullptr; if ( dynamic_cast( uiItem ) ) { RimEclipseStatisticsCase* currentObject = dynamic_cast( uiItem ); caseGroup = currentObject->parentStatisticsCaseCollection()->parentCaseGroup(); } else if ( dynamic_cast( uiItem ) ) { RimCaseCollection* statColl = dynamic_cast( uiItem ); caseGroup = statColl->parentCaseGroup(); } if ( caseGroup ) { RimProject* proj = RimProject::current(); RimEclipseStatisticsCase* createdObject = caseGroup->createAndAppendStatisticsCase(); proj->assignCaseIdToCase( createdObject ); caseGroup->updateConnectedEditors(); return createdObject; } else { return nullptr; } }