mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-08 15:14:07 -06:00
1f7cb2b973
* #7147 VFP plots: refactor to separate data extraction and display. * #7147 VFP Plots: Add "Show Plot Data" functionality. * #7147 VFP plots: Move defines to separate file * #7147 VFP plots: Minor adjustments * #7147 VFP Plot: Show table number in title and auto-generated name. * #7147 VFP Plot: Add "Show Plot Data" to context menu. * Remove unused member. * #7147 VFP Plot: Disable broken curve selection. * Revert "#7147 VFP Plot: Add "Show Plot Data" to context menu." This reverts commit 5f3b2f362fcea7fc6de5fd2c614919079629bf1c. * #7147 VFP Plot: Use event filter to show context menu * Janitor : Use context menu launcher for WellAllocationPlot and CrossPlot Co-authored-by: Magne Sjaastad <magne.sjaastad@ceetronsolutions.com>
199 lines
7.1 KiB
C++
199 lines
7.1 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 "RiuInterfaceToViewWindow.h"
|
|
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmPointer.h"
|
|
|
|
#include "qwt_plot.h"
|
|
|
|
#include <QPointer>
|
|
|
|
#include <set>
|
|
|
|
class RiaPlotWindowRedrawScheduler;
|
|
class RimPlot;
|
|
class RiuDraggableOverlayFrame;
|
|
|
|
class QwtLegend;
|
|
class QwtPicker;
|
|
class QwtPlotCurve;
|
|
class QwtPlotGrid;
|
|
class QwtPlotItem;
|
|
class QwtPlotMarker;
|
|
|
|
class QEvent;
|
|
class QLabel;
|
|
class QPainter;
|
|
class QPaintDevice;
|
|
class QWheelEvent;
|
|
|
|
//==================================================================================================
|
|
//
|
|
//
|
|
//
|
|
//==================================================================================================
|
|
class RiuQwtPlotWidget : public QwtPlot, public RiuInterfaceToViewWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RiuQwtPlotWidget( RimPlot* plotDefinition, QWidget* parent = nullptr );
|
|
~RiuQwtPlotWidget() override;
|
|
|
|
RimPlot* plotDefinition();
|
|
|
|
bool isChecked() const;
|
|
|
|
int colSpan() const;
|
|
int rowSpan() const;
|
|
|
|
int axisTitleFontSize( QwtPlot::Axis axis ) const;
|
|
int axisValueFontSize( QwtPlot::Axis axis ) const;
|
|
void setAxisFontsAndAlignment( QwtPlot::Axis,
|
|
int titleFontSize,
|
|
int valueFontSize,
|
|
bool titleBold = false,
|
|
int alignment = (int)Qt::AlignCenter );
|
|
void setAxesFontsAndAlignment( int titleFontSize,
|
|
int valueFontSize,
|
|
bool titleBold = false,
|
|
int alignment = (int)Qt::AlignCenter );
|
|
|
|
void setAxisTitleText( QwtPlot::Axis axis, const QString& title );
|
|
void setAxisTitleEnabled( QwtPlot::Axis axis, bool enable );
|
|
|
|
void setPlotTitle( const QString& plotTitle );
|
|
const QString& plotTitle() const;
|
|
void setPlotTitleEnabled( bool enabled );
|
|
bool plotTitleEnabled() const;
|
|
void setPlotTitleFontSize( int titleFontSize );
|
|
|
|
void setLegendFontSize( int fontSize );
|
|
void setInternalLegendVisible( bool visible );
|
|
|
|
QwtInterval axisRange( QwtPlot::Axis axis ) const;
|
|
void setAxisRange( QwtPlot::Axis axis, double min, double max );
|
|
|
|
void setAxisInverted( QwtPlot::Axis axis );
|
|
void setAxisLabelsAndTicksEnabled( QwtPlot::Axis axis, bool enableLabels, bool enableTicks );
|
|
|
|
void enableGridLines( QwtPlot::Axis axis, bool majorGridLines, bool minorGridLines );
|
|
|
|
void setMajorAndMinorTickIntervals( QwtPlot::Axis axis,
|
|
double majorTickInterval,
|
|
double minorTickInterval,
|
|
double minValue,
|
|
double maxValue );
|
|
void setMajorAndMinorTickIntervalsAndRange( QwtPlot::Axis axis,
|
|
double majorTickInterval,
|
|
double minorTickInterval,
|
|
double minTickValue,
|
|
double maxTickValue,
|
|
double rangeMin,
|
|
double rangeMax );
|
|
void setAutoTickIntervalCounts( QwtPlot::Axis axis, int maxMajorTickIntervalCount, int maxMinorTickIntervalCount );
|
|
double majorTickInterval( QwtPlot::Axis axis ) const;
|
|
double minorTickInterval( QwtPlot::Axis axis ) const;
|
|
|
|
int axisExtent( QwtPlot::Axis axis ) const;
|
|
|
|
bool frameIsInFrontOfThis( const QRect& frameGeometry );
|
|
QPoint dragStartPosition() const;
|
|
|
|
void scheduleReplot();
|
|
|
|
void addOverlayFrame( RiuDraggableOverlayFrame* overlayWidget );
|
|
void removeOverlayFrame( RiuDraggableOverlayFrame* overlayWidget );
|
|
void updateLayout() override;
|
|
|
|
void renderTo( QPainter* painter, const QRect& targetRect, double scaling );
|
|
void renderTo( QPaintDevice* painter, const QRect& targetRect );
|
|
int overlayMargins() const;
|
|
|
|
RimViewWindow* ownerViewWindow() const override;
|
|
|
|
signals:
|
|
void plotSelected( bool toggleSelection );
|
|
void axisSelected( int axisId, bool toggleSelection );
|
|
void plotItemSelected( QwtPlotItem* plotItem, bool toggleSelection, int sampleIndex );
|
|
void onKeyPressEvent( QKeyEvent* event );
|
|
void onWheelEvent( QWheelEvent* event );
|
|
void plotZoomed();
|
|
|
|
protected:
|
|
bool eventFilter( QObject* watched, QEvent* event ) override;
|
|
void hideEvent( QHideEvent* event ) override;
|
|
void showEvent( QShowEvent* event ) override;
|
|
void resizeEvent( QResizeEvent* event ) override;
|
|
void keyPressEvent( QKeyEvent* event ) override;
|
|
|
|
void applyPlotTitleToQwt();
|
|
void applyAxisTitleToQwt( QwtPlot::Axis axis );
|
|
|
|
QSize sizeHint() const override;
|
|
QSize minimumSizeHint() const override;
|
|
|
|
virtual bool isZoomerActive() const;
|
|
virtual void endZoomOperations();
|
|
|
|
void findClosestPlotItem( const QPoint& pos,
|
|
QwtPlotItem** closestItem,
|
|
int* closestCurvePoint,
|
|
double* distanceFromClick ) const;
|
|
|
|
private:
|
|
void selectClosestPlotItem( const QPoint& pos, bool toggleItemInSelection = false );
|
|
static int defaultMinimumWidth();
|
|
void replot() override;
|
|
|
|
void highlightPlotItem( const QwtPlotItem* closestItem );
|
|
void resetPlotItemHighlighting();
|
|
void onAxisSelected( QwtScaleWidget* scale, bool toggleItemInSelection );
|
|
void recalculateAxisExtents( QwtPlot::Axis axis );
|
|
|
|
void updateOverlayFrameLayout();
|
|
|
|
private:
|
|
caf::PdmPointer<RimPlot> m_plotDefinition;
|
|
QPoint m_clickPosition;
|
|
std::map<QwtPlot::Axis, QString> m_axisTitles;
|
|
std::map<QwtPlot::Axis, bool> m_axisTitlesEnabled;
|
|
const int m_overlayMargins;
|
|
QString m_plotTitle;
|
|
bool m_plotTitleEnabled;
|
|
|
|
QList<QPointer<RiuDraggableOverlayFrame>> m_overlayFrames;
|
|
|
|
struct CurveColors
|
|
{
|
|
QColor lineColor;
|
|
QColor symbolColor;
|
|
QColor symbolLineColor;
|
|
};
|
|
|
|
std::map<QwtPlotCurve*, CurveColors> m_originalCurveColors;
|
|
std::map<QwtPlotCurve*, double> m_originalZValues;
|
|
|
|
friend class RiaPlotWindowRedrawScheduler;
|
|
};
|