///////////////////////////////////////////////////////////////////////////////// // // 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 "RimEclipseStatisticsCase.h" #include "RimEclipseStatisticsCaseCollection.h" #include "RimIdenticalGridCaseGroup.h" #include "RimCaseCollection.h" #include "RimProject.h" #include "RiaApplication.h" #include "RiuMainWindow.h" #include "cafSelectionManager.h" #include "cafUiTreeModelPdm.h" #include "cafPdmUiTreeView.h" #include CAF_CMD_SOURCE_INIT(RicNewStatisticsCaseFeature, "RicNewStatisticsCaseFeature"); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RicNewStatisticsCaseFeature::isCommandEnabled() { return selectedValidUIItem() != NULL; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicNewStatisticsCaseFeature::onActionTriggered(bool isChecked) { caf::PdmUiItem* uiItem = selectedValidUIItem(); if (uiItem) { RimEclipseStatisticsCase* newCase = addStatisticalCalculation(uiItem); if (newCase) { RiuMainWindow::instance()->projectTreeView()->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.size() > 0) { return statisticsCaseCollections[0]; } std::vector caseCollections; caf::SelectionManager::instance()->objectsByType(&caseCollections); if (caseCollections.size() > 0) { if (RimIdenticalGridCaseGroup::isStatisticsCaseCollection(caseCollections[0])) { return caseCollections[0]; } } return NULL; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimEclipseStatisticsCase* RicNewStatisticsCaseFeature::addStatisticalCalculation(caf::PdmUiItem* uiItem) { RimIdenticalGridCaseGroup* caseGroup = NULL; 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 = RiaApplication::instance()->project(); RimEclipseStatisticsCase* createdObject = caseGroup->createAndAppendStatisticsCase(); proj->assignCaseIdToCase(createdObject); caseGroup->updateConnectedEditors(); return createdObject; } else { return NULL; } }