///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "cafAppEnum.h" #include "cafPdmField.h" #include "cafPdmObject.h" #include "cafPdmFieldCvfColor.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 }; public: Rim3dWellLogCurve(); virtual ~Rim3dWellLogCurve(); void updateCurveIn3dView(); DrawPlane drawPlane() const; cvf::Color3f color() const; bool isShowingCurve() const; virtual void curveValuesAndMds(std::vector* values, std::vector* measuredDepthValues) const = 0; void setColor(const cvf::Color3f& color); protected: virtual caf::PdmFieldHandle* objectToggleField() override; virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) override; virtual caf::PdmFieldHandle* userDescriptionField() override; void appearanceUiOrdering(caf::PdmUiOrdering& uiOrdering); protected: caf::PdmField m_name; caf::PdmField> m_drawPlane; caf::PdmField m_color; private: caf::PdmField m_showCurve; };