2018-03-07 04:32:24 -06:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2018- Statoil ASA
|
|
|
|
//
|
|
|
|
// 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 "cafAppEnum.h"
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
#include "cafPdmObject.h"
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
|
|
|
class Rim3dWellLogCurve : public caf::PdmObject
|
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum DrawPlane
|
|
|
|
{
|
|
|
|
HORIZONTAL_LEFT,
|
|
|
|
HORIZONTAL_RIGHT,
|
|
|
|
VERTICAL_ABOVE,
|
|
|
|
VERTICAL_BELOW,
|
|
|
|
CAMERA_ALIGNED_SIDE1,
|
|
|
|
CAMERA_ALIGNED_SIDE2
|
|
|
|
};
|
|
|
|
|
|
|
|
enum DrawStyle
|
|
|
|
{
|
|
|
|
LINE,
|
|
|
|
FILLED
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ColoringStyle
|
|
|
|
{
|
|
|
|
SINGLE_COLOR,
|
|
|
|
CURVE_VALUE,
|
|
|
|
OTHER_RESULT
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
Rim3dWellLogCurve();
|
|
|
|
virtual ~Rim3dWellLogCurve();
|
|
|
|
|
2018-03-13 05:18:25 -05:00
|
|
|
void updateCurveIn3dView();
|
|
|
|
|
2018-04-13 06:45:12 -05:00
|
|
|
DrawPlane drawPlane() const;
|
|
|
|
DrawStyle drawStyle() const;
|
|
|
|
ColoringStyle coloringStyle() const;
|
|
|
|
bool isShowingCurve() const;
|
2018-03-09 08:42:23 -06:00
|
|
|
|
2018-03-15 08:17:56 -05:00
|
|
|
virtual void curveValuesAndMds(std::vector<double>* values, std::vector<double>* measuredDepthValues) const = 0;
|
2018-03-13 03:25:29 -05:00
|
|
|
|
2018-03-15 06:55:50 -05:00
|
|
|
protected:
|
2018-03-07 07:24:18 -06:00
|
|
|
virtual caf::PdmFieldHandle* objectToggleField() override;
|
|
|
|
virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) override;
|
|
|
|
virtual caf::PdmFieldHandle* userDescriptionField() override;
|
2018-03-15 08:17:56 -05:00
|
|
|
void appearanceUiOrdering(caf::PdmUiOrdering& uiOrdering);
|
2018-03-15 06:55:50 -05:00
|
|
|
|
|
|
|
protected:
|
|
|
|
caf::PdmField<QString> m_name;
|
2018-03-15 08:17:56 -05:00
|
|
|
caf::PdmField<caf::AppEnum<DrawPlane>> m_drawPlane;
|
|
|
|
caf::PdmField<caf::AppEnum<DrawStyle>> m_drawStyle;
|
|
|
|
caf::PdmField<caf::AppEnum<ColoringStyle>> m_coloringStyle;
|
2018-03-15 06:55:50 -05:00
|
|
|
|
2018-03-07 04:32:24 -06:00
|
|
|
private:
|
2018-03-07 07:24:18 -06:00
|
|
|
caf::PdmField<bool> m_showCurve;
|
2018-03-07 04:32:24 -06:00
|
|
|
};
|