mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 15:26:48 -06:00
129 lines
4.7 KiB
C++
129 lines
4.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2016- Statoil 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 <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RicPasteEnsembleCurveSetFeature.h"
|
|
|
|
#include "RiaSummaryTools.h"
|
|
|
|
#include "OperationsUsingObjReferences/RicPasteFeatureImpl.h"
|
|
|
|
#include "RimEnsembleCurveSet.h"
|
|
#include "RimEnsembleCurveSetCollection.h"
|
|
//#include "RimSummaryCurve.h"
|
|
//#include "RimSummaryCurveFilter.h"
|
|
#include "RimSummaryPlot.h"
|
|
//#include "RimSummaryCrossPlot.h"
|
|
|
|
#include "cafPdmDefaultObjectFactory.h"
|
|
#include "cafPdmDocument.h"
|
|
#include "cafPdmObjectGroup.h"
|
|
#include "cafSelectionManagerTools.h"
|
|
|
|
#include "cvfAssert.h"
|
|
|
|
#include <QAction>
|
|
|
|
|
|
CAF_CMD_SOURCE_INIT(RicPasteEnsembleCurveSetFeature, "RicPasteEnsembleCurveSetFeature");
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimEnsembleCurveSet* RicPasteEnsembleCurveSetFeature::copyCurveSetAndAddToCollection(RimEnsembleCurveSet *sourceCurveSet)
|
|
{
|
|
RimSummaryPlot* plot = caf::firstAncestorOfTypeFromSelectedObject<RimSummaryPlot*>();
|
|
RimEnsembleCurveSetCollection* coll = caf::firstAncestorOfTypeFromSelectedObject<RimEnsembleCurveSetCollection*>();
|
|
|
|
RimEnsembleCurveSet* newCurveSet = dynamic_cast<RimEnsembleCurveSet*>(sourceCurveSet->xmlCapability()->copyByXmlSerialization(caf::PdmDefaultObjectFactory::instance()));
|
|
CVF_ASSERT(newCurveSet);
|
|
|
|
if (!coll) coll = plot->ensembleCurveSetCollection();
|
|
|
|
coll->addCurveSet(newCurveSet);
|
|
|
|
// Resolve references after object has been inserted into the project data model
|
|
newCurveSet->resolveReferencesRecursively();
|
|
newCurveSet->initAfterReadRecursively();
|
|
newCurveSet->loadDataAndUpdate(true);
|
|
newCurveSet->updateConnectedEditors();
|
|
|
|
coll->updateConnectedEditors();
|
|
|
|
return newCurveSet;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicPasteEnsembleCurveSetFeature::isCommandEnabled()
|
|
{
|
|
caf::PdmObject* destinationObject = dynamic_cast<caf::PdmObject*>(caf::SelectionManager::instance()->selectedItem());
|
|
|
|
RimSummaryPlot* plot;
|
|
RimEnsembleCurveSetCollection* coll = nullptr;
|
|
destinationObject->firstAncestorOrThisOfType(plot);
|
|
destinationObject->firstAncestorOrThisOfType(coll);
|
|
if(!coll && !plot)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (ensembleCurveSetsOnClipboard().size() == 0)
|
|
{
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicPasteEnsembleCurveSetFeature::onActionTriggered(bool isChecked)
|
|
{
|
|
std::vector<caf::PdmPointer<RimEnsembleCurveSet> > sourceObjects = RicPasteEnsembleCurveSetFeature::ensembleCurveSetsOnClipboard();
|
|
|
|
for (size_t i = 0; i < sourceObjects.size(); i++)
|
|
{
|
|
copyCurveSetAndAddToCollection(sourceObjects[i]);
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicPasteEnsembleCurveSetFeature::setupActionLook(QAction* actionToSetup)
|
|
{
|
|
actionToSetup->setText("Paste Ensemble Curve Set");
|
|
|
|
RicPasteFeatureImpl::setIconAndShortcuts(actionToSetup);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::vector<caf::PdmPointer<RimEnsembleCurveSet> > RicPasteEnsembleCurveSetFeature::ensembleCurveSetsOnClipboard()
|
|
{
|
|
caf::PdmObjectGroup objectGroup;
|
|
RicPasteFeatureImpl::findObjectsFromClipboardRefs(&objectGroup);
|
|
|
|
std::vector<caf::PdmPointer<RimEnsembleCurveSet> > typedObjects;
|
|
objectGroup.objectsByType(&typedObjects);
|
|
|
|
return typedObjects;
|
|
}
|