mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-05 21:53:27 -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 "RiaApplication.h"
|
||||
|
||||
#include "RimEnsembleFractureStatisticsCollection.h"
|
||||
#include "RimFractureTemplateCollection.h"
|
||||
#include "RimStimPlanModelTemplateCollection.h"
|
||||
@ -146,9 +148,15 @@ void RimCompletionTemplateCollection::defineUiTreeOrdering( caf::PdmUiTreeOrderi
|
||||
QString uiConfigName /*= ""*/ )
|
||||
{
|
||||
uiTreeOrdering.add( m_fractureTemplates );
|
||||
uiTreeOrdering.add( m_stimPlanModelTemplates );
|
||||
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||
{
|
||||
uiTreeOrdering.add( m_stimPlanModelTemplates );
|
||||
}
|
||||
uiTreeOrdering.add( m_valveTemplates );
|
||||
uiTreeOrdering.add( m_fractureGroupStatisticsCollection );
|
||||
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||
{
|
||||
uiTreeOrdering.add( m_fractureGroupStatisticsCollection );
|
||||
}
|
||||
uiTreeOrdering.skipRemainingChildren( true );
|
||||
}
|
||||
|
||||
|
@ -413,7 +413,10 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
|
||||
menuBuilder << "RicNewWellPathFractureFeature";
|
||||
menuBuilder.subMenuEnd();
|
||||
menuBuilder << "RicCreateTemporaryLgrFeature";
|
||||
menuBuilder << "RicNewStimPlanModelFeature";
|
||||
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||
{
|
||||
menuBuilder << "RicNewStimPlanModelFeature";
|
||||
}
|
||||
menuBuilder.addSeparator();
|
||||
appendExportCompletions( menuBuilder );
|
||||
}
|
||||
@ -444,9 +447,12 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
|
||||
}
|
||||
else if ( dynamic_cast<RimStimPlanModel*>( firstUiItem ) )
|
||||
{
|
||||
menuBuilder << "RicNewStimPlanModelFeature";
|
||||
menuBuilder << "RicNewStimPlanModelPlotFeature";
|
||||
menuBuilder << "RicExportStimPlanModelToFileFeature";
|
||||
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||
{
|
||||
menuBuilder << "RicNewStimPlanModelFeature";
|
||||
menuBuilder << "RicNewStimPlanModelPlotFeature";
|
||||
menuBuilder << "RicExportStimPlanModelToFileFeature";
|
||||
}
|
||||
}
|
||||
else if ( dynamic_cast<RimPressureTable*>( firstUiItem ) )
|
||||
{
|
||||
@ -454,7 +460,10 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
|
||||
}
|
||||
else if ( dynamic_cast<RimStimPlanModelCollection*>( firstUiItem ) )
|
||||
{
|
||||
menuBuilder << "RicNewStimPlanModelFeature";
|
||||
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||
{
|
||||
menuBuilder << "RicNewStimPlanModelFeature";
|
||||
}
|
||||
}
|
||||
else if ( dynamic_cast<Rim3dWellLogCurveCollection*>( firstUiItem ) ||
|
||||
dynamic_cast<Rim3dWellLogExtractionCurve*>( firstUiItem ) ||
|
||||
@ -913,7 +922,10 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection()
|
||||
}
|
||||
else if ( dynamic_cast<RimStimPlanModelTemplateCollection*>( firstUiItem ) )
|
||||
{
|
||||
menuBuilder << "RicNewStimPlanModelTemplateFeature";
|
||||
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||
{
|
||||
menuBuilder << "RicNewStimPlanModelTemplateFeature";
|
||||
}
|
||||
}
|
||||
else if ( dynamic_cast<RimFractureTemplateCollection*>( firstUiItem ) )
|
||||
{
|
||||
@ -1366,7 +1378,10 @@ int RimContextCommandBuilder::appendCreateCompletions( caf::CmdFeatureMenuBuilde
|
||||
candidates << "RicNewWellPathAttributeFeature";
|
||||
candidates << "Separator";
|
||||
candidates << "RicCreateTemporaryLgrFeature";
|
||||
candidates << "RicNewStimPlanModelFeature";
|
||||
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||
{
|
||||
candidates << "RicNewStimPlanModelFeature";
|
||||
}
|
||||
|
||||
return appendSubMenuWithCommands( menuBuilder,
|
||||
candidates,
|
||||
|
@ -1474,7 +1474,10 @@ void RimProject::defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, Q
|
||||
|
||||
if ( mainPlotCollection->stimPlanModelPlotCollection() )
|
||||
{
|
||||
itemCollection->add( mainPlotCollection->stimPlanModelPlotCollection() );
|
||||
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||
{
|
||||
itemCollection->add( mainPlotCollection->stimPlanModelPlotCollection() );
|
||||
}
|
||||
}
|
||||
|
||||
if ( mainPlotCollection->vfpPlotCollection() )
|
||||
@ -1490,7 +1493,12 @@ void RimProject::defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, Q
|
||||
statisticsItemCollection->add( mainPlotCollection->gridStatisticsPlotCollection() );
|
||||
|
||||
if ( mainPlotCollection->ensembleFractureStatisticsPlotCollection() )
|
||||
statisticsItemCollection->add( mainPlotCollection->ensembleFractureStatisticsPlotCollection() );
|
||||
{
|
||||
if ( RiaApplication::enableDevelopmentFeatures() )
|
||||
{
|
||||
statisticsItemCollection->add( mainPlotCollection->ensembleFractureStatisticsPlotCollection() );
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user