2015-08-25 12:40:55 +02: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.
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "RimDefines.h"
|
|
|
|
|
|
|
|
|
|
#include "cafPdmChildArrayField.h"
|
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
|
#include "cafPdmObject.h"
|
|
|
|
|
|
|
|
|
|
class RimManagedViewConfig;
|
|
|
|
|
class RiuViewer;
|
|
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
|
///
|
|
|
|
|
///
|
|
|
|
|
//==================================================================================================
|
|
|
|
|
class RimManagedViewCollection : public caf::PdmObject
|
|
|
|
|
{
|
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
RimManagedViewCollection(void);
|
|
|
|
|
virtual ~RimManagedViewCollection(void);
|
|
|
|
|
|
|
|
|
|
caf::PdmChildArrayField<RimManagedViewConfig*> managedViews;
|
|
|
|
|
|
|
|
|
|
void updateViewers(RiuViewer* masterViewer);
|
|
|
|
|
void updateTimeStep(int timeStep);
|
2015-08-27 14:57:04 +02:00
|
|
|
void updateCellResult();
|
2015-08-27 13:44:27 +02:00
|
|
|
|
|
|
|
|
void updateRangeFilters();
|
2015-08-27 15:45:22 +02:00
|
|
|
void updatePropertyFilters();
|
2015-08-28 08:01:40 +02:00
|
|
|
|
|
|
|
|
void configureOverrides();
|
2015-08-25 12:40:55 +02:00
|
|
|
};
|