///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2022- 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 "RicPasteSummaryMultiPlotFeature.h" #include "OperationsUsingObjReferences/RicPasteFeatureImpl.h" #include "PlotBuilderCommands/RicSummaryPlotBuilder.h" #include "RiaSummaryTools.h" #include "RimSummaryMultiPlot.h" #include "RimSummaryMultiPlotCollection.h" #include "cafPdmDefaultObjectFactory.h" #include "cafPdmObjectGroup.h" #include "cafSelectionManagerTools.h" #include "cvfAssert.h" #include CAF_CMD_SOURCE_INIT( RicPasteSummaryMultiPlotFeature, "RicPasteSummaryMultiPlotFeature" ); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RicPasteSummaryMultiPlotFeature::isCommandEnabled() { auto multiPlots = caf::selectedObjectsByTypeStrict(); return !multiPlots.empty(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicPasteSummaryMultiPlotFeature::onActionTriggered( bool isChecked ) { auto sourceObjects = RicPasteSummaryMultiPlotFeature::summaryMultiPlots(); for ( const auto& sourceObject : sourceObjects ) { RiaSummaryTools::summaryMultiPlotCollection()->duplicatePlot( sourceObject ); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicPasteSummaryMultiPlotFeature::setupActionLook( QAction* actionToSetup ) { actionToSetup->setText( "Paste Summary Plot" ); RicPasteFeatureImpl::setIconAndShortcuts( actionToSetup ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- std::vector> RicPasteSummaryMultiPlotFeature::summaryMultiPlots() { caf::PdmObjectGroup objectGroup; RicPasteFeatureImpl::findObjectsFromClipboardRefs( &objectGroup ); std::vector> typedObjects; objectGroup.objectsByType( &typedObjects ); return typedObjects; }