///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2019- 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 "RicPasteGridCrossPlotCurveSetFeature.h" #include "RiaApplication.h" #include "RimGridCrossPlot.h" #include "RimGridCrossPlotCurveSet.h" #include "RiuPlotMainWindowTools.h" #include "OperationsUsingObjReferences/RicPasteFeatureImpl.h" #include "cafPdmObjectGroup.h" #include "cafSelectionManager.h" #include CAF_CMD_SOURCE_INIT(RicPasteGridCrossPlotCurveSetFeature, "RicPasteGridCrossPlotCurveSetFeature"); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RicPasteGridCrossPlotCurveSetFeature::isCommandEnabled() { auto curvesOnClipboard = gridCrossPlotCurveSetsOnClipboard(); if (curvesOnClipboard.empty()) return false; return caf::SelectionManager::instance()->selectedItemAncestorOfType() != nullptr; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicPasteGridCrossPlotCurveSetFeature::onActionTriggered(bool isChecked) { RimGridCrossPlot* crossPlot = caf::SelectionManager::instance()->selectedItemAncestorOfType(); if (crossPlot) { auto curvesOnClipboard = gridCrossPlotCurveSetsOnClipboard(); if (!curvesOnClipboard.empty()) { RimGridCrossPlotCurveSet* objectToSelect = nullptr; for (RimGridCrossPlotCurveSet* crossPlotCurveSet : gridCrossPlotCurveSetsOnClipboard()) { RimGridCrossPlotCurveSet* newCurveSet = dynamic_cast( crossPlotCurveSet->xmlCapability()->copyByXmlSerialization(caf::PdmDefaultObjectFactory::instance())); crossPlot->addCurveSet(newCurveSet); newCurveSet->resolveReferencesRecursively(); newCurveSet->initAfterReadRecursively(); objectToSelect = newCurveSet; } RiaApplication::instance()->getOrCreateMainPlotWindow(); crossPlot->updateAllRequiredEditors(); crossPlot->loadDataAndUpdate(); RiuPlotMainWindowTools::selectAsCurrentItem(objectToSelect); } } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicPasteGridCrossPlotCurveSetFeature::setupActionLook(QAction* actionToSetup) { actionToSetup->setText("Paste Grid Cross Plot Curve Set"); // actionToSetup->setIcon(QIcon(":/WellLogCurve16x16.png")); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- std::vector> RicPasteGridCrossPlotCurveSetFeature::gridCrossPlotCurveSetsOnClipboard() { caf::PdmObjectGroup objectGroup; RicPasteFeatureImpl::findObjectsFromClipboardRefs(&objectGroup); std::vector> typedObjects; objectGroup.objectsByType(&typedObjects); return typedObjects; }