///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "cafAppEnum.h" #include "cafPdmChildArrayField.h" #include "cafPdmChildField.h" #include "cafPdmField.h" #include "cafPdmFieldHandle.h" #include "cafPdmObject.h" #include "RiaDefines.h" #include "RimPlotWindow.h" #include "RimWellLogPlotNameConfig.h" #include #include class RimWellLogCurveCommonDataSource; class RiuWellLogPlot; class RimPlot; class QKeyEvent; //================================================================================================== /// /// //================================================================================================== class RimWellLogPlot : public RimPlotWindow, public RimNameConfigHolderInterface { CAF_PDM_HEADER_INIT; public: enum AxisGridVisibility { AXIS_GRID_NONE = 0x00, AXIS_GRID_MAJOR = 0x01, AXIS_GRID_MINOR = 0x02, AXIS_GRID_MAJOR_AND_MINOR = 0x03 }; typedef caf::AppEnum AxisGridEnum; using DepthTypeEnum = RiaDefines::DepthTypeEnum; public: RimWellLogPlot(); ~RimWellLogPlot() override; RimWellLogPlot& operator=( RimWellLogPlot&& rhs ); QWidget* viewWidget() override; QWidget* createPlotWidget( QWidget* mainWindowParent = nullptr ); QString description() const override; bool isPlotTitleVisible() const; void setPlotTitleVisible( bool visible ); void addPlot( RimPlot* plot ); void insertPlot( RimPlot* plot, size_t index ); void removePlot( RimPlot* plot ); size_t plotCount() const; size_t plotIndex( const RimPlot* plot ) const; RimPlot* plotByIndex( size_t index ) const; std::vector plots() const; std::vector visiblePlots() const; DepthTypeEnum depthType() const; void setDepthType( DepthTypeEnum depthType ); RiaDefines::DepthUnitType depthUnit() const; void setDepthUnit( RiaDefines::DepthUnitType depthUnit ); QString depthAxisTitle() const; void enableDepthAxisGridLines( AxisGridVisibility gridVisibility ); AxisGridVisibility depthAxisGridLinesEnabled() const; void setAutoScaleXEnabled( bool enabled ); void setAutoScaleDepthEnabled( bool enabled ); void zoomAll() override; void updateZoom(); void setDepthAxisRangeByFactorAndCenter( double zoomFactor, double zoomCenter ); void setDepthAxisRangeByPanDepth( double panFactor ); void setDepthAxisRange( double minimumDepth, double maximumDepth ); void calculateAvailableDepthRange(); void availableDepthRange( double* minimumDepth, double* maximumDepth ) const; void visibleDepthRange( double* minimumDepth, double* maximumDepth ) const; void uiOrderingForDepthAxis( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ); void uiOrderingForAutoName( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ); QString createAutoName() const override; RimWellLogPlotNameConfig* nameConfig() const; RimWellLogCurveCommonDataSource* commonDataSource() const; void updateCommonDataSource(); void setCommonDataSourceEnabled( bool enable ); void setAvailableDepthUnits( const std::set& depthUnits ); void setAvailableDepthTypes( const std::set& depthTypes ); QString asciiDataForPlotExport() const; void handleKeyPressEvent( QKeyEvent* keyEvent ); protected: QImage snapshotWindowContent() override; QWidget* createViewWidget( QWidget* mainWindowParent ) override; void deleteViewWidget() override; void performAutoNameUpdate() override; void recreatePlotWidgets(); // Overridden PDM methods void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override; void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override; QList calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions, bool* useOptionsOnly ) override; void initAfterRead() override; void defineEditorAttribute( const caf::PdmFieldHandle* field, QString uiConfigName, caf::PdmUiEditorAttribute* attribute ) override; void onLoadDataAndUpdate() override; void updatePlots(); caf::PdmFieldHandle* userDescriptionField() override; private: void cleanupBeforeClose(); void updateSubPlotNames(); void onPlotAdditionOrRemoval(); void doRenderWindowContent( QPaintDevice* paintDevice ) override; void doUpdateLayout() override; protected: caf::PdmChildField m_commonDataSource; bool m_commonDataSourceEnabled; caf::PdmField m_showPlotWindowTitle; caf::PdmField m_plotWindowTitle; caf::PdmField> m_depthType; caf::PdmField> m_depthUnit; caf::PdmField m_minVisibleDepth; caf::PdmField m_maxVisibleDepth; caf::PdmField m_depthAxisGridVisibility; caf::PdmField m_isAutoScaleDepthEnabled; caf::PdmChildField m_nameConfig; caf::PdmChildArrayField m_plots; QPointer m_viewer; std::set m_availableDepthUnits; std::set m_availableDepthTypes; double m_minAvailableDepth; double m_maxAvailableDepth; };