2019-10-11 08:54:19 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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 <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "RiuQwtPlotWidget.h"
|
|
|
|
|
|
|
|
class RimWellLogTrack;
|
2020-01-16 05:32:40 -06:00
|
|
|
class QWheelEvent;
|
2019-10-11 08:54:19 -05:00
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==================================================================================================
|
|
|
|
class RiuWellLogTrack : public RiuQwtPlotWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-01-16 05:32:40 -06:00
|
|
|
RiuWellLogTrack( RimWellLogTrack* track, QWidget* parent = nullptr );
|
2019-10-11 08:54:19 -05:00
|
|
|
~RiuWellLogTrack() override;
|
|
|
|
|
2019-12-04 06:26:00 -06:00
|
|
|
private:
|
|
|
|
void setAxisEnabled( QwtPlot::Axis axis, bool enabled );
|
2019-10-11 08:54:19 -05:00
|
|
|
};
|