Add well path manager to RimView

This commit is contained in:
Magne Sjaastad
2017-06-15 14:06:38 +02:00
parent 9caf412b6c
commit 5739e7e09e
2 changed files with 43 additions and 12 deletions

View File

@@ -50,6 +50,7 @@ class RimPropertyFilterCollection;
class RimViewController;
class RimViewLinker;
class RiuViewer;
class RivWellPathCollectionPartMgr;
namespace cvf
{
@@ -203,6 +204,8 @@ protected:
virtual void resetLegendsInViewer() = 0;
virtual void calculateCurrentTotalCellVisibility(cvf::UByteArray* totalVisibility) = 0;
RivWellPathCollectionPartMgr* wellPathsPartManager();
QPointer<RiuViewer> m_viewer;
caf::PdmField<int> m_currentTimeStep;
@@ -237,9 +240,13 @@ private:
void setCurrentTimeStepAndUpdate(int frameIdx);
void endAnimation();
void ensureWellPathManagerIsCreated();
private:
bool m_previousGridModeMeshLinesWasFaults;
caf::PdmField<bool> m_disableLighting;
cvf::ref<RivWellPathCollectionPartMgr> m_wellPathsPartManager;
};