///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RicNewCustomObjectiveFunctionWeightFeature.h" #include "RimCustomObjectiveFunction.h" #include "RimCustomObjectiveFunctionWeight.h" #include "RimEnsembleCurveSet.h" #include "RiuPlotMainWindowTools.h" #include "cafSelectionManagerTools.h" #include CAF_CMD_SOURCE_INIT( RicNewCustomObjectiveFunctionWeightFeature, "RicNewCustomObjectiveFunctionWeightFeature" ); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RicNewCustomObjectiveFunctionWeightFeature::isCommandEnabled() { return true; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicNewCustomObjectiveFunctionWeightFeature::onActionTriggered( bool isChecked ) { caf::PdmObject* selObj = dynamic_cast( caf::SelectionManager::instance()->selectedItem() ); if ( !selObj ) return; std::vector func; selObj->descendantsIncludingThisOfType( func ); if ( func.size() == 1 ) { RimCustomObjectiveFunctionWeight* newWeight = func[0]->addWeight(); if ( func[0]->weights().size() > 1 ) { newWeight->setSummaryAddress( func[0]->weights()[0]->summaryAddresses().front() ); } else { newWeight->setSummaryAddress( newWeight->parentCurveSet()->summaryAddress() ); } func[0]->updateConnectedEditors(); RiuPlotMainWindowTools::selectAsCurrentItem( newWeight ); RiuPlotMainWindowTools::setExpanded( func.front() ); } selObj->updateConnectedEditors(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicNewCustomObjectiveFunctionWeightFeature::setupActionLook( QAction* actionToSetup ) { actionToSetup->setText( "New Weight" ); actionToSetup->setIcon( QIcon( ":/ObjectiveFunctionWeight.svg" ) ); }