mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-03 20:57:39 -06:00
0c90f67dcc
* Refactor interface to PdmObjectHandle and PdmFieldHandle Return objects instead of passing in structures as parameters * Add nodiscard to several functions * Remove redundant this-> * Rename to ptrReferencedObjectsByType
79 lines
2.8 KiB
C++
79 lines
2.8 KiB
C++
#include "RicfCloneView.h"
|
|
|
|
#include "RiaLogging.h"
|
|
|
|
#include "RicfCreateView.h"
|
|
|
|
#include "Rim3dView.h"
|
|
#include "RimEclipseCase.h"
|
|
#include "RimEclipseView.h"
|
|
#include "RimGeoMechCase.h"
|
|
#include "RimGeoMechView.h"
|
|
#include "RimProject.h"
|
|
|
|
#include "Riu3DMainWindowTools.h"
|
|
|
|
#include "cafPdmFieldScriptingCapability.h"
|
|
#include "cafSelectionManager.h"
|
|
|
|
#include <QAction>
|
|
|
|
CAF_PDM_SOURCE_INIT( RicfCloneView, "cloneView" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicfCloneView::RicfCloneView()
|
|
{
|
|
CAF_PDM_InitScriptableField( &m_viewId, "viewId", -1, "View Id" );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
caf::PdmScriptResponse RicfCloneView::execute()
|
|
{
|
|
RimProject* project = RimProject::current();
|
|
std::vector<Rim3dView*> allViews = project->descendantsIncludingThisOfType<Rim3dView>();
|
|
|
|
for ( Rim3dView* view : allViews )
|
|
{
|
|
if ( view->id() == m_viewId() )
|
|
{
|
|
const RimEclipseView* eclipseView = dynamic_cast<const RimEclipseView*>( view );
|
|
const RimGeoMechView* geoMechView = dynamic_cast<const RimGeoMechView*>( view );
|
|
|
|
int newViewId = -1;
|
|
if ( eclipseView )
|
|
{
|
|
RimEclipseCase* eclipseCase = eclipseView->eclipseCase();
|
|
RimEclipseView* newEclipseView = eclipseCase->createCopyAndAddView( eclipseView );
|
|
newEclipseView->loadDataAndUpdate();
|
|
newViewId = newEclipseView->id();
|
|
eclipseCase->updateConnectedEditors();
|
|
Riu3DMainWindowTools::setExpanded( newEclipseView );
|
|
}
|
|
else if ( geoMechView )
|
|
{
|
|
RimGeoMechCase* geoMechCase = geoMechView->geoMechCase();
|
|
RimGeoMechView* newGeoMechView = geoMechCase->createCopyAndAddView( geoMechView );
|
|
newGeoMechView->loadDataAndUpdate();
|
|
newViewId = newGeoMechView->id();
|
|
geoMechCase->updateConnectedEditors();
|
|
Riu3DMainWindowTools::setExpanded( view );
|
|
}
|
|
|
|
if ( newViewId >= 0 )
|
|
{
|
|
caf::PdmScriptResponse response;
|
|
response.setResult( new RicfCreateViewResult( newViewId ) );
|
|
return response;
|
|
}
|
|
}
|
|
}
|
|
|
|
QString error = QString( "cloneView: Could not clone view with id %1" ).arg( m_viewId() );
|
|
RiaLogging::error( error );
|
|
return caf::PdmScriptResponse( caf::PdmScriptResponse::COMMAND_ERROR, error );
|
|
}
|