2015-06-19 07:09:45 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2015- Statoil ASA
|
|
|
|
// Copyright (C) 2015- Ceetron Solutions AS
|
|
|
|
//
|
|
|
|
// 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 "RimGeoMechPropertyFilterCollection.h"
|
2015-08-27 15:54:37 -05:00
|
|
|
|
2015-06-19 07:09:45 -05:00
|
|
|
#include "RimGeoMechPropertyFilter.h"
|
2016-10-18 00:31:02 -05:00
|
|
|
#include "RimGeoMechResultDefinition.h"
|
2015-06-19 07:09:45 -05:00
|
|
|
#include "RimGeoMechView.h"
|
2015-10-13 03:24:11 -05:00
|
|
|
#include "RimViewController.h"
|
2015-09-07 07:29:46 -05:00
|
|
|
#include "RimViewLinker.h"
|
2015-06-19 07:09:45 -05:00
|
|
|
|
|
|
|
#include "cvfAssert.h"
|
|
|
|
|
|
|
|
|
|
|
|
CAF_PDM_SOURCE_INIT(RimGeoMechPropertyFilterCollection, "GeoMechPropertyFilters");
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimGeoMechPropertyFilterCollection::RimGeoMechPropertyFilterCollection()
|
|
|
|
{
|
2015-08-24 10:26:22 -05:00
|
|
|
CAF_PDM_InitObject("Property Filters", ":/CellFilter_Values.png", "", "");
|
2015-06-19 07:09:45 -05:00
|
|
|
|
|
|
|
CAF_PDM_InitFieldNoDefault(&propertyFilters, "PropertyFilters", "Property Filters", "", "", "");
|
2015-08-11 08:23:57 -05:00
|
|
|
propertyFilters.uiCapability()->setUiHidden(true);
|
|
|
|
|
2015-06-19 07:09:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimGeoMechPropertyFilterCollection::~RimGeoMechPropertyFilterCollection()
|
|
|
|
{
|
2015-12-09 06:52:25 -06:00
|
|
|
propertyFilters.deleteAllChildObjects();
|
2015-06-19 07:09:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimGeoMechView* RimGeoMechPropertyFilterCollection::reservoirView()
|
|
|
|
{
|
2015-08-27 15:54:37 -05:00
|
|
|
RimGeoMechView* geoMechView = NULL;
|
2016-09-21 06:59:41 -05:00
|
|
|
firstAncestorOrThisOfType(geoMechView);
|
2015-08-27 15:54:37 -05:00
|
|
|
|
|
|
|
return geoMechView;
|
2015-06-19 07:09:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimGeoMechPropertyFilterCollection::loadAndInitializePropertyFilters()
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < propertyFilters.size(); i++)
|
|
|
|
{
|
|
|
|
RimGeoMechPropertyFilter* propertyFilter = propertyFilters[i];
|
2015-09-01 10:11:23 -05:00
|
|
|
propertyFilter->resultDefinition->setGeoMechCase(reservoirView()->geoMechCase());
|
2015-06-19 07:09:45 -05:00
|
|
|
propertyFilter->resultDefinition->loadResult();
|
|
|
|
propertyFilter->computeResultValueRange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimGeoMechPropertyFilterCollection::initAfterRead()
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < propertyFilters.size(); i++)
|
|
|
|
{
|
|
|
|
RimGeoMechPropertyFilter* propertyFilter = propertyFilters[i];
|
|
|
|
|
|
|
|
propertyFilter->setParentContainer(this);
|
2015-09-01 10:11:23 -05:00
|
|
|
propertyFilter->resultDefinition->setGeoMechCase(reservoirView()->geoMechCase());
|
2015-06-19 07:09:45 -05:00
|
|
|
propertyFilter->updateIconState();
|
|
|
|
}
|
|
|
|
|
2015-09-23 07:35:35 -05:00
|
|
|
updateIconState();
|
2015-06-19 07:09:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool RimGeoMechPropertyFilterCollection::hasActiveFilters() const
|
|
|
|
{
|
2015-09-23 07:35:35 -05:00
|
|
|
if (!isActive) return false;
|
2015-06-19 07:09:45 -05:00
|
|
|
|
|
|
|
for (size_t i = 0; i < propertyFilters.size(); i++)
|
|
|
|
{
|
|
|
|
RimGeoMechPropertyFilter* propertyFilter = propertyFilters[i];
|
|
|
|
if (propertyFilter->isActive() && propertyFilter->resultDefinition->hasResult()) return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
/// Returns whether any of the active property filters are based on a dynamic result
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool RimGeoMechPropertyFilterCollection::hasActiveDynamicFilters() const
|
|
|
|
{
|
|
|
|
return hasActiveFilters();
|
|
|
|
}
|
|
|
|
|
2016-11-04 09:10:58 -05:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool RimGeoMechPropertyFilterCollection::isUsingFormationNames() const
|
|
|
|
{
|
|
|
|
if ( !isActive ) return false;
|
|
|
|
|
|
|
|
for ( size_t i = 0; i < propertyFilters.size(); i++ )
|
|
|
|
{
|
|
|
|
RimGeoMechPropertyFilter* propertyFilter = propertyFilters[i];
|
|
|
|
if ( propertyFilter->isActive()
|
|
|
|
&& propertyFilter->resultDefinition->resultPositionType() == RIG_FORMATION_NAMES
|
|
|
|
&& propertyFilter->resultDefinition->resultFieldName() != "") return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-23 07:35:35 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimGeoMechPropertyFilterCollection::updateIconState()
|
|
|
|
{
|
|
|
|
bool activeIcon = true;
|
2015-08-27 15:54:37 -05:00
|
|
|
|
2015-09-23 07:35:35 -05:00
|
|
|
RimGeoMechView* view = NULL;
|
2016-09-21 06:59:41 -05:00
|
|
|
this->firstAncestorOrThisOfType(view);
|
2017-02-24 09:00:56 -06:00
|
|
|
if (view)
|
2015-09-23 07:35:35 -05:00
|
|
|
{
|
2017-02-24 09:00:56 -06:00
|
|
|
RimViewController* viewController = view->viewController();
|
|
|
|
if (viewController && ( viewController->isPropertyFilterOveridden()
|
|
|
|
|| viewController->isVisibleCellsOveridden()))
|
|
|
|
{
|
|
|
|
activeIcon = false;
|
|
|
|
}
|
2015-09-23 07:35:35 -05:00
|
|
|
}
|
2015-09-01 10:14:22 -05:00
|
|
|
|
2015-09-23 07:35:35 -05:00
|
|
|
if (!isActive)
|
2015-09-01 10:14:22 -05:00
|
|
|
{
|
2015-09-23 07:35:35 -05:00
|
|
|
activeIcon = false;
|
2015-09-01 10:14:22 -05:00
|
|
|
}
|
2015-09-23 07:35:35 -05:00
|
|
|
|
|
|
|
updateUiIconFromState(activeIcon);
|
|
|
|
|
2015-11-02 02:30:04 -06:00
|
|
|
for (size_t i = 0; i < propertyFilters.size(); i++)
|
|
|
|
{
|
|
|
|
RimGeoMechPropertyFilter* propFilter = propertyFilters[i];
|
|
|
|
propFilter->updateActiveState();
|
|
|
|
propFilter->updateIconState();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|