mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#7754 Hide experimental StimPlan Model features behind RESINSIGHT_DEVEL
This commit is contained in:
parent
2390c91d9f
commit
1322bae6b6
@ -18,6 +18,8 @@
|
|||||||
|
|
||||||
#include "RimCompletionTemplateCollection.h"
|
#include "RimCompletionTemplateCollection.h"
|
||||||
|
|
||||||
|
#include "RiaApplication.h"
|
||||||
|
|
||||||
#include "RimEnsembleFractureStatisticsCollection.h"
|
#include "RimEnsembleFractureStatisticsCollection.h"
|
||||||
#include "RimFractureTemplateCollection.h"
|
#include "RimFractureTemplateCollection.h"
|
||||||
#include "RimStimPlanModelTemplateCollection.h"
|
#include "RimStimPlanModelTemplateCollection.h"
|
||||||
@ -146,9 +148,15 @@ void RimCompletionTemplateCollection::defineUiTreeOrdering( caf::PdmUiTreeOrderi
|
|||||||
QString uiConfigName /*= ""*/ )
|
QString uiConfigName /*= ""*/ )
|
||||||
{
|
{
|
||||||
uiTreeOrdering.add( m_fractureTemplates );
|
uiTreeOrdering.add( m_fractureTemplates );
|
||||||
|
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||||
|
{
|
||||||
uiTreeOrdering.add( m_stimPlanModelTemplates );
|
uiTreeOrdering.add( m_stimPlanModelTemplates );
|
||||||
|
}
|
||||||
uiTreeOrdering.add( m_valveTemplates );
|
uiTreeOrdering.add( m_valveTemplates );
|
||||||
|
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||||
|
{
|
||||||
uiTreeOrdering.add( m_fractureGroupStatisticsCollection );
|
uiTreeOrdering.add( m_fractureGroupStatisticsCollection );
|
||||||
|
}
|
||||||
uiTreeOrdering.skipRemainingChildren( true );
|
uiTreeOrdering.skipRemainingChildren( true );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -413,7 +413,10 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
|
|||||||
menuBuilder << "RicNewWellPathFractureFeature";
|
menuBuilder << "RicNewWellPathFractureFeature";
|
||||||
menuBuilder.subMenuEnd();
|
menuBuilder.subMenuEnd();
|
||||||
menuBuilder << "RicCreateTemporaryLgrFeature";
|
menuBuilder << "RicCreateTemporaryLgrFeature";
|
||||||
|
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||||
|
{
|
||||||
menuBuilder << "RicNewStimPlanModelFeature";
|
menuBuilder << "RicNewStimPlanModelFeature";
|
||||||
|
}
|
||||||
menuBuilder.addSeparator();
|
menuBuilder.addSeparator();
|
||||||
appendExportCompletions( menuBuilder );
|
appendExportCompletions( menuBuilder );
|
||||||
}
|
}
|
||||||
@ -443,19 +446,25 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
|
|||||||
menuBuilder << "RicDeleteWellPathAttributeFeature";
|
menuBuilder << "RicDeleteWellPathAttributeFeature";
|
||||||
}
|
}
|
||||||
else if ( dynamic_cast<RimStimPlanModel*>( firstUiItem ) )
|
else if ( dynamic_cast<RimStimPlanModel*>( firstUiItem ) )
|
||||||
|
{
|
||||||
|
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||||
{
|
{
|
||||||
menuBuilder << "RicNewStimPlanModelFeature";
|
menuBuilder << "RicNewStimPlanModelFeature";
|
||||||
menuBuilder << "RicNewStimPlanModelPlotFeature";
|
menuBuilder << "RicNewStimPlanModelPlotFeature";
|
||||||
menuBuilder << "RicExportStimPlanModelToFileFeature";
|
menuBuilder << "RicExportStimPlanModelToFileFeature";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else if ( dynamic_cast<RimPressureTable*>( firstUiItem ) )
|
else if ( dynamic_cast<RimPressureTable*>( firstUiItem ) )
|
||||||
{
|
{
|
||||||
menuBuilder << "RicNewPressureTableItemFeature";
|
menuBuilder << "RicNewPressureTableItemFeature";
|
||||||
}
|
}
|
||||||
else if ( dynamic_cast<RimStimPlanModelCollection*>( firstUiItem ) )
|
else if ( dynamic_cast<RimStimPlanModelCollection*>( firstUiItem ) )
|
||||||
|
{
|
||||||
|
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||||
{
|
{
|
||||||
menuBuilder << "RicNewStimPlanModelFeature";
|
menuBuilder << "RicNewStimPlanModelFeature";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else if ( dynamic_cast<Rim3dWellLogCurveCollection*>( firstUiItem ) ||
|
else if ( dynamic_cast<Rim3dWellLogCurveCollection*>( firstUiItem ) ||
|
||||||
dynamic_cast<Rim3dWellLogExtractionCurve*>( firstUiItem ) ||
|
dynamic_cast<Rim3dWellLogExtractionCurve*>( firstUiItem ) ||
|
||||||
dynamic_cast<Rim3dWellLogFileCurve*>( firstUiItem ) ||
|
dynamic_cast<Rim3dWellLogFileCurve*>( firstUiItem ) ||
|
||||||
@ -912,9 +921,12 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
|
|||||||
menuBuilder << "RicImportElasticPropertiesFeature";
|
menuBuilder << "RicImportElasticPropertiesFeature";
|
||||||
}
|
}
|
||||||
else if ( dynamic_cast<RimStimPlanModelTemplateCollection*>( firstUiItem ) )
|
else if ( dynamic_cast<RimStimPlanModelTemplateCollection*>( firstUiItem ) )
|
||||||
|
{
|
||||||
|
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||||
{
|
{
|
||||||
menuBuilder << "RicNewStimPlanModelTemplateFeature";
|
menuBuilder << "RicNewStimPlanModelTemplateFeature";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else if ( dynamic_cast<RimFractureTemplateCollection*>( firstUiItem ) )
|
else if ( dynamic_cast<RimFractureTemplateCollection*>( firstUiItem ) )
|
||||||
{
|
{
|
||||||
menuBuilder << "RicPasteEllipseFractureFeature";
|
menuBuilder << "RicPasteEllipseFractureFeature";
|
||||||
@ -1366,7 +1378,10 @@ int RimContextCommandBuilder::appendCreateCompletions( caf::CmdFeatureMenuBuilde
|
|||||||
candidates << "RicNewWellPathAttributeFeature";
|
candidates << "RicNewWellPathAttributeFeature";
|
||||||
candidates << "Separator";
|
candidates << "Separator";
|
||||||
candidates << "RicCreateTemporaryLgrFeature";
|
candidates << "RicCreateTemporaryLgrFeature";
|
||||||
|
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||||
|
{
|
||||||
candidates << "RicNewStimPlanModelFeature";
|
candidates << "RicNewStimPlanModelFeature";
|
||||||
|
}
|
||||||
|
|
||||||
return appendSubMenuWithCommands( menuBuilder,
|
return appendSubMenuWithCommands( menuBuilder,
|
||||||
candidates,
|
candidates,
|
||||||
|
@ -1473,9 +1473,12 @@ void RimProject::defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, Q
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( mainPlotCollection->stimPlanModelPlotCollection() )
|
if ( mainPlotCollection->stimPlanModelPlotCollection() )
|
||||||
|
{
|
||||||
|
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||||
{
|
{
|
||||||
itemCollection->add( mainPlotCollection->stimPlanModelPlotCollection() );
|
itemCollection->add( mainPlotCollection->stimPlanModelPlotCollection() );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ( mainPlotCollection->vfpPlotCollection() )
|
if ( mainPlotCollection->vfpPlotCollection() )
|
||||||
{
|
{
|
||||||
@ -1490,8 +1493,13 @@ void RimProject::defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, Q
|
|||||||
statisticsItemCollection->add( mainPlotCollection->gridStatisticsPlotCollection() );
|
statisticsItemCollection->add( mainPlotCollection->gridStatisticsPlotCollection() );
|
||||||
|
|
||||||
if ( mainPlotCollection->ensembleFractureStatisticsPlotCollection() )
|
if ( mainPlotCollection->ensembleFractureStatisticsPlotCollection() )
|
||||||
|
{
|
||||||
|
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||||
|
{
|
||||||
statisticsItemCollection->add( mainPlotCollection->ensembleFractureStatisticsPlotCollection() );
|
statisticsItemCollection->add( mainPlotCollection->ensembleFractureStatisticsPlotCollection() );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user