mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1183 Property Filter: Context command : Apply As Cell Result - GeoMech
This commit is contained in:
parent
738e44ed46
commit
03932f59c3
@ -22,6 +22,10 @@
|
|||||||
#include "RimEclipsePropertyFilter.h"
|
#include "RimEclipsePropertyFilter.h"
|
||||||
#include "RimEclipseView.h"
|
#include "RimEclipseView.h"
|
||||||
|
|
||||||
|
#include "RimGeoMechPropertyFilter.h"
|
||||||
|
#include "RimGeoMechResultDefinition.h"
|
||||||
|
#include "RimGeoMechView.h"
|
||||||
|
|
||||||
#include "cafSelectionManager.h"
|
#include "cafSelectionManager.h"
|
||||||
|
|
||||||
#include <QAction>
|
#include <QAction>
|
||||||
@ -33,12 +37,24 @@ CAF_CMD_SOURCE_INIT(RicApplyPropertyFilterAsCellResultFeature, "RicApplyProperty
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
bool RicApplyPropertyFilterAsCellResultFeature::isCommandEnabled()
|
bool RicApplyPropertyFilterAsCellResultFeature::isCommandEnabled()
|
||||||
{
|
{
|
||||||
std::vector<RimEclipsePropertyFilter*> objects;
|
|
||||||
caf::SelectionManager::instance()->objectsByType(&objects);
|
|
||||||
|
|
||||||
if (objects.size() == 1)
|
|
||||||
{
|
{
|
||||||
return true;
|
std::vector<RimEclipsePropertyFilter*> objects;
|
||||||
|
caf::SelectionManager::instance()->objectsByType(&objects);
|
||||||
|
|
||||||
|
if (objects.size() == 1)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
std::vector<RimGeoMechPropertyFilter*> objects;
|
||||||
|
caf::SelectionManager::instance()->objectsByType(&objects);
|
||||||
|
|
||||||
|
if (objects.size() == 1)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
@ -49,21 +65,48 @@ bool RicApplyPropertyFilterAsCellResultFeature::isCommandEnabled()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RicApplyPropertyFilterAsCellResultFeature::onActionTriggered(bool isChecked)
|
void RicApplyPropertyFilterAsCellResultFeature::onActionTriggered(bool isChecked)
|
||||||
{
|
{
|
||||||
std::vector<RimEclipsePropertyFilter*> objects;
|
|
||||||
caf::SelectionManager::instance()->objectsByType(&objects);
|
|
||||||
|
|
||||||
if (objects.size() == 1)
|
|
||||||
{
|
{
|
||||||
RimEclipsePropertyFilter* propertyFilter = objects[0];
|
std::vector<RimEclipsePropertyFilter*> objects;
|
||||||
if (!propertyFilter) return;
|
caf::SelectionManager::instance()->objectsByType(&objects);
|
||||||
|
|
||||||
RimEclipseView* rimEclipseView = nullptr;
|
if (objects.size() == 1)
|
||||||
propertyFilter->firstAncestorOrThisOfType(rimEclipseView);
|
{
|
||||||
if (!rimEclipseView) return;
|
RimEclipsePropertyFilter* propertyFilter = objects[0];
|
||||||
|
if (!propertyFilter) return;
|
||||||
|
|
||||||
rimEclipseView->cellResult()->simpleCopy(propertyFilter->resultDefinition());
|
RimEclipseView* rimEclipseView = nullptr;
|
||||||
|
propertyFilter->firstAncestorOrThisOfType(rimEclipseView);
|
||||||
|
if (!rimEclipseView) return;
|
||||||
|
|
||||||
rimEclipseView->scheduleCreateDisplayModelAndRedraw();
|
rimEclipseView->cellResult()->simpleCopy(propertyFilter->resultDefinition());
|
||||||
|
rimEclipseView->cellResult()->updateConnectedEditors();
|
||||||
|
|
||||||
|
rimEclipseView->scheduleCreateDisplayModelAndRedraw();
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
std::vector<RimGeoMechPropertyFilter*> objects;
|
||||||
|
caf::SelectionManager::instance()->objectsByType(&objects);
|
||||||
|
|
||||||
|
if (objects.size() == 1)
|
||||||
|
{
|
||||||
|
RimGeoMechPropertyFilter* propertyFilter = objects[0];
|
||||||
|
if (!propertyFilter) return;
|
||||||
|
|
||||||
|
RimGeoMechView* geoMechView = nullptr;
|
||||||
|
propertyFilter->firstAncestorOrThisOfType(geoMechView);
|
||||||
|
if (!geoMechView) return;
|
||||||
|
|
||||||
|
geoMechView->cellResultResultDefinition()->setResultAddress(propertyFilter->resultDefinition()->resultAddress());
|
||||||
|
geoMechView->cellResultResultDefinition()->updateConnectedEditors();
|
||||||
|
|
||||||
|
geoMechView->scheduleCreateDisplayModelAndRedraw();
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -198,6 +198,7 @@ QStringList RimContextCommandBuilder::commandsFromSelection()
|
|||||||
else if (dynamic_cast<RimGeoMechPropertyFilter*>(uiItem))
|
else if (dynamic_cast<RimGeoMechPropertyFilter*>(uiItem))
|
||||||
{
|
{
|
||||||
commandIds << "RicGeoMechPropertyFilterInsertFeature";
|
commandIds << "RicGeoMechPropertyFilterInsertFeature";
|
||||||
|
commandIds << "RicApplyPropertyFilterAsCellResultFeature";
|
||||||
}
|
}
|
||||||
else if (dynamic_cast<RimWellPathCollection*>(uiItem))
|
else if (dynamic_cast<RimWellPathCollection*>(uiItem))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user