mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
90 lines
3.2 KiB
C++
90 lines
3.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017- 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 "cafColorTable.h"
|
|
|
|
#include "qwt_plot_marker.h"
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include <QPointer>
|
|
|
|
class QString;
|
|
class QwtPlot;
|
|
|
|
class RiuPlotAnnotationTool
|
|
{
|
|
public:
|
|
enum RegionAnnotationType
|
|
{
|
|
NO_ANNOTATIONS = 0,
|
|
FORMATION_ANNOTATIONS = 1,
|
|
CURVE_ANNOTATIONS = 2
|
|
};
|
|
enum RegionDisplay
|
|
{
|
|
DARK_LINES = 0x01,
|
|
COLORED_LINES = 0x02,
|
|
COLOR_SHADING = 0x04,
|
|
COLOR_SHADING_AND_LINES = 0x05,
|
|
LIGHT_LINES = 0x08,
|
|
};
|
|
enum TrackSpan
|
|
{
|
|
FULL_WIDTH,
|
|
LEFT_COLUMN,
|
|
CENTRE_COLUMN,
|
|
RIGHT_COLUMN
|
|
};
|
|
|
|
public:
|
|
RiuPlotAnnotationTool(){};
|
|
~RiuPlotAnnotationTool();
|
|
|
|
void attachNamedRegions( QwtPlot* plot,
|
|
const std::vector<QString>& names,
|
|
const std::pair<double, double> xRange,
|
|
const std::vector<std::pair<double, double>>& yPositions,
|
|
RegionDisplay regionDisplay,
|
|
const caf::ColorTable& colorTable,
|
|
int shadingAlphaByte,
|
|
bool showNames = true,
|
|
TrackSpan trackSpan = FULL_WIDTH );
|
|
void attachWellPicks( QwtPlot* plot, const std::vector<QString>& names, const std::vector<double>& yPositions );
|
|
|
|
void attachAnnotationLine( QwtPlot* plot, const QColor& color, const QString& annotationText, const double yPosition );
|
|
|
|
void detachAllAnnotations();
|
|
|
|
private:
|
|
static Qt::Alignment trackTextAlignment( TrackSpan trackSpan );
|
|
static void horizontalDashedLine( QwtPlotMarker* line,
|
|
const QString& name,
|
|
double yValue,
|
|
const QColor& color = QColor( 0, 0, 100 ),
|
|
const QColor& textColor = QColor( 0, 0, 100 ),
|
|
Qt::Alignment horizontalAlignment = Qt::AlignRight );
|
|
|
|
private:
|
|
QPointer<QwtPlot> m_plot;
|
|
std::vector<QwtPlotItem*> m_markers;
|
|
};
|