2012-05-18 02:45:23 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron 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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "RimCellPropertyFilter.h"
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
|
|
|
class RimCellPropertyFilterCollection : public caf::PdmObject
|
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
|
|
RimCellPropertyFilterCollection();
|
|
|
|
virtual ~RimCellPropertyFilterCollection();
|
|
|
|
|
|
|
|
|
|
|
|
// Fields:
|
2013-04-25 03:57:52 -05:00
|
|
|
caf::PdmField<bool> active;
|
2015-06-25 04:45:31 -05:00
|
|
|
caf::PdmPointersField<RimEclipsePropertyFilter*> propertyFilters;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
// Methods
|
2015-06-25 04:45:31 -05:00
|
|
|
RimEclipsePropertyFilter* createAndAppendPropertyFilter();
|
|
|
|
void remove(RimEclipsePropertyFilter* propertyFilter);
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2013-04-25 03:57:52 -05:00
|
|
|
bool hasActiveFilters() const;
|
|
|
|
bool hasActiveDynamicFilters() const;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2015-05-21 03:05:33 -05:00
|
|
|
void setReservoirView(RimEclipseView* reservoirView);
|
|
|
|
RimEclipseView* reservoirView();
|
2013-04-25 03:57:52 -05:00
|
|
|
|
|
|
|
void loadAndInitializePropertyFilters();
|
|
|
|
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
// Overridden methods
|
2013-04-25 03:57:52 -05:00
|
|
|
virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue);
|
|
|
|
virtual caf::PdmFieldHandle* objectToggleField();
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// Overridden methods
|
|
|
|
virtual void initAfterRead();
|
|
|
|
|
|
|
|
private:
|
2015-05-21 03:05:33 -05:00
|
|
|
caf::PdmPointer<RimEclipseView> m_reservoirView;
|
2012-05-18 02:45:23 -05:00
|
|
|
};
|