2018-06-27 10:22:08 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2018-10-10 01:22:36 -05:00
|
|
|
// Copyright (C) 2018 - Equinor ASA
|
2018-06-27 10:22:08 -05: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.
|
|
|
|
//
|
|
|
|
// 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 "RimWellPath.h"
|
|
|
|
|
2018-08-29 09:03:31 -05:00
|
|
|
#include "cafPdmChildField.h"
|
2018-06-27 10:22:08 -05:00
|
|
|
|
|
|
|
class RimWellPathTarget;
|
|
|
|
class RimWellPath;
|
|
|
|
class RimWellPathGeometryDef;
|
|
|
|
|
2018-06-28 02:00:34 -05:00
|
|
|
class RimModeledWellPath: public RimWellPath
|
2018-06-27 10:22:08 -05:00
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
|
|
|
2018-06-28 02:00:34 -05:00
|
|
|
RimModeledWellPath();
|
2018-10-18 12:45:57 -05:00
|
|
|
~RimModeledWellPath() override;
|
2018-06-27 10:22:08 -05:00
|
|
|
|
2018-08-29 09:03:31 -05:00
|
|
|
void createWellPathGeometry();
|
|
|
|
void updateWellPathVisualization();
|
2018-09-12 06:18:48 -05:00
|
|
|
void scheduleUpdateOfDependentVisualization();
|
2018-11-06 04:23:19 -06:00
|
|
|
RimWellPathGeometryDef* geometryDefinition() const;
|
2018-09-26 05:38:53 -05:00
|
|
|
QString wellPlanText();
|
2018-07-02 07:51:17 -05:00
|
|
|
|
2018-06-27 10:22:08 -05:00
|
|
|
private:
|
2018-10-18 12:45:57 -05:00
|
|
|
void defineUiTreeOrdering(caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName) override;
|
2018-06-27 10:22:08 -05:00
|
|
|
|
|
|
|
caf::PdmChildField<RimWellPathGeometryDef*> m_geometryDefinition;
|
|
|
|
|
|
|
|
};
|
|
|
|
|