Files
ResInsight/ApplicationCode/ProjectDataModel/RimEclipsePropertyFilterCollection.h
T

61 lines
1.9 KiB
C++
Raw Normal View History

2012-05-18 09:45:23 +02:00
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2011- Statoil ASA
// Copyright (C) 2015- Ceetron Solutions AS
// Copyright (C) 2011-2012 Ceetron AS
//
2012-05-18 09:45:23 +02:00
// 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.
//
2012-05-18 09:45:23 +02:00
// 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>
2012-05-18 09:45:23 +02:00
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
2017-02-13 14:29:02 +01:00
#include "RimPropertyFilterCollection.h"
2012-05-18 09:45:23 +02:00
2015-07-31 18:58:23 +02:00
#include "cafPdmChildArrayField.h"
2017-02-13 14:29:02 +01:00
class RimEclipsePropertyFilter;
class RimEclipseView;
2015-07-31 18:58:23 +02:00
2012-05-18 09:45:23 +02:00
//==================================================================================================
///
///
2012-05-18 09:45:23 +02:00
//==================================================================================================
class RimEclipsePropertyFilterCollection : public RimPropertyFilterCollection
2012-05-18 09:45:23 +02:00
{
CAF_PDM_HEADER_INIT;
2012-05-18 09:45:23 +02:00
public:
RimEclipsePropertyFilterCollection();
~RimEclipsePropertyFilterCollection() override;
2012-05-18 09:45:23 +02:00
RimEclipseView* reservoirView();
2012-05-18 09:45:23 +02:00
// Fields:
2015-07-31 18:58:23 +02:00
caf::PdmChildArrayField<RimEclipsePropertyFilter*> propertyFilters;
2012-05-18 09:45:23 +02:00
// Methods
bool hasActiveFilters() const override;
bool hasActiveDynamicFilters() const override;
bool isUsingFormationNames() const;
2012-05-18 09:45:23 +02:00
void loadAndInitializePropertyFilters() override;
void updateIconState() override;
void updateFromCurrentTimeStep();
protected:
2012-05-18 09:45:23 +02:00
// Overridden methods
void initAfterRead() override;
2012-05-18 09:45:23 +02:00
};