2017-10-23 11:29:23 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017- Statoil ASA
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2017-10-23 11:29:23 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2017-10-23 11:29:23 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2017-10-23 11:29:23 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RiuPlotAnnotationTool.h"
|
|
|
|
|
2019-09-10 06:23:29 -05:00
|
|
|
#include "RiaColorTables.h"
|
2019-09-10 08:21:58 -05:00
|
|
|
#include "RiaColorTools.h"
|
2019-09-10 06:23:29 -05:00
|
|
|
|
2019-09-10 08:21:58 -05:00
|
|
|
#include "cafCategoryMapper.h"
|
2017-10-25 07:41:54 -05:00
|
|
|
#include "cvfMath.h"
|
2019-09-10 08:21:58 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
#include "qwt_plot.h"
|
2019-09-10 06:23:29 -05:00
|
|
|
#include "qwt_plot_shapeitem.h"
|
2017-10-23 11:29:23 -05:00
|
|
|
|
2019-09-10 08:21:58 -05:00
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
2017-10-23 11:29:23 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2017-10-23 11:29:23 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-11-03 05:36:44 -05:00
|
|
|
RiuPlotAnnotationTool::~RiuPlotAnnotationTool()
|
2017-10-23 11:29:23 -05:00
|
|
|
{
|
2017-10-25 07:41:54 -05:00
|
|
|
detachAllAnnotations();
|
2017-11-03 05:36:44 -05:00
|
|
|
}
|
2017-10-23 11:29:23 -05:00
|
|
|
|
2017-11-03 05:36:44 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2017-11-03 05:36:44 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RiuPlotAnnotationTool::attachFormationNames( QwtPlot* plot,
|
|
|
|
const std::vector<QString>& names,
|
2019-09-10 06:23:29 -05:00
|
|
|
const std::pair<double, double> xRange,
|
2019-09-06 03:40:57 -05:00
|
|
|
const std::vector<std::pair<double, double>> yPositions,
|
2019-09-10 06:23:29 -05:00
|
|
|
FormationDisplay formationDisplay,
|
2019-09-10 08:21:58 -05:00
|
|
|
const caf::ColorTable& colorTable,
|
|
|
|
int shadingAlphaByte,
|
|
|
|
bool showNames /*= true */ )
|
2017-11-03 05:36:44 -05:00
|
|
|
{
|
|
|
|
detachAllAnnotations();
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( names.size() != yPositions.size() ) return;
|
2017-11-03 05:36:44 -05:00
|
|
|
m_plot = plot;
|
2017-10-23 11:29:23 -05:00
|
|
|
|
2017-10-25 07:41:54 -05:00
|
|
|
double delta = 0.5;
|
|
|
|
|
2019-09-10 08:21:58 -05:00
|
|
|
std::vector<int> categoryIndices( names.size() );
|
|
|
|
std::iota( categoryIndices.begin(), categoryIndices.end(), 0 );
|
|
|
|
|
|
|
|
caf::CategoryMapper catMapper;
|
|
|
|
catMapper.setCategories( categoryIndices );
|
|
|
|
catMapper.setInterpolateColors( colorTable.color3ubArray() );
|
2019-09-10 06:23:29 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
for ( size_t i = 0; i < names.size(); i++ )
|
2017-10-23 11:29:23 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
QwtPlotMarker* line( new QwtPlotMarker() );
|
2017-10-25 07:41:54 -05:00
|
|
|
|
2018-07-06 02:16:03 -05:00
|
|
|
QString name;
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( showNames )
|
2017-11-28 03:18:59 -06:00
|
|
|
{
|
2018-07-06 02:16:03 -05:00
|
|
|
name = names[i];
|
2019-09-10 08:21:58 -05:00
|
|
|
if ( ( formationDisplay & COLOR_SHADING ) == 0 && names[i].toLower().indexOf( "top" ) == -1 )
|
2018-07-06 02:16:03 -05:00
|
|
|
{
|
|
|
|
name += " Top";
|
|
|
|
}
|
2017-11-28 03:18:59 -06:00
|
|
|
}
|
2019-09-10 06:23:29 -05:00
|
|
|
if ( formationDisplay & COLOR_SHADING )
|
|
|
|
{
|
2019-09-10 08:21:58 -05:00
|
|
|
cvf::Color3ub cvfColor = catMapper.mapToColor( static_cast<double>( i ) );
|
|
|
|
QColor shadingColor( cvfColor.r(), cvfColor.g(), cvfColor.b(), shadingAlphaByte );
|
|
|
|
|
2019-09-10 06:23:29 -05:00
|
|
|
QwtPlotShapeItem* shading = new QwtPlotShapeItem( name );
|
|
|
|
|
|
|
|
QwtInterval axisInterval = m_plot->axisInterval( QwtPlot::xBottom );
|
|
|
|
|
|
|
|
QRectF shadingRect( axisInterval.minValue(),
|
|
|
|
yPositions[i].first,
|
|
|
|
axisInterval.width(),
|
|
|
|
yPositions[i].second - yPositions[i].first );
|
|
|
|
|
|
|
|
shading->setRect( shadingRect );
|
2019-09-10 08:21:58 -05:00
|
|
|
shading->setPen( shadingColor, 0.0, Qt::NoPen );
|
2019-09-10 06:23:29 -05:00
|
|
|
shading->setBrush( QBrush( shadingColor ) );
|
|
|
|
shading->attach( m_plot );
|
|
|
|
shading->setZ( -100.0 );
|
|
|
|
shading->setXAxis( QwtPlot::xBottom );
|
|
|
|
m_markers.push_back( std::move( shading ) );
|
|
|
|
}
|
2017-10-23 11:29:23 -05:00
|
|
|
|
2019-09-10 06:23:29 -05:00
|
|
|
QColor lineColor( 0, 0, 0, 0 );
|
2019-09-10 08:21:58 -05:00
|
|
|
QColor textColor( 0, 0, 0, 255 );
|
2019-09-10 06:23:29 -05:00
|
|
|
if ( formationDisplay & DARK_LINES || formationDisplay & COLORED_LINES )
|
|
|
|
{
|
2019-09-10 08:21:58 -05:00
|
|
|
cvf::Color3ub cvfColor = catMapper.mapToColor( static_cast<double>( i ) );
|
|
|
|
QColor cycledColor( cvfColor.r(), cvfColor.g(), cvfColor.b() );
|
|
|
|
|
|
|
|
lineColor = formationDisplay & DARK_LINES ? QColor( 0, 0, 100 ) : cycledColor;
|
|
|
|
textColor = lineColor;
|
2019-09-10 06:23:29 -05:00
|
|
|
}
|
2019-09-10 08:21:58 -05:00
|
|
|
RiuPlotAnnotationTool::horizontalDashedLineWithColor( line, lineColor, textColor, name, yPositions[i].first );
|
2019-09-06 03:40:57 -05:00
|
|
|
line->attach( m_plot );
|
|
|
|
m_markers.push_back( std::move( line ) );
|
2017-10-25 07:41:54 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( ( i != names.size() - 1 ) && cvf::Math::abs( yPositions[i].second - yPositions[i + 1].first ) > delta )
|
2017-10-25 07:41:54 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
QwtPlotMarker* bottomLine( new QwtPlotMarker() );
|
2019-09-10 08:21:58 -05:00
|
|
|
RiuPlotAnnotationTool::horizontalDashedLineWithColor( bottomLine,
|
|
|
|
lineColor,
|
|
|
|
textColor,
|
|
|
|
QString(),
|
|
|
|
yPositions[i].second );
|
2017-10-25 07:41:54 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
bottomLine->attach( m_plot );
|
|
|
|
m_markers.push_back( std::move( bottomLine ) );
|
2017-10-25 07:41:54 -05:00
|
|
|
}
|
2017-10-23 11:29:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-05 05:56:13 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2017-12-05 05:56:13 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RiuPlotAnnotationTool::attachWellPicks( QwtPlot* plot,
|
|
|
|
const std::vector<QString>& names,
|
|
|
|
const std::vector<double> yPositions )
|
2017-12-05 05:56:13 -06:00
|
|
|
{
|
|
|
|
detachAllAnnotations();
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( names.size() != yPositions.size() ) return;
|
2017-12-05 05:56:13 -06:00
|
|
|
m_plot = plot;
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
for ( size_t i = 0; i < names.size(); i++ )
|
2017-12-05 05:56:13 -06:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
QwtPlotMarker* line( new QwtPlotMarker() );
|
|
|
|
RiuPlotAnnotationTool::horizontalDashedLine( line, names[i], yPositions[i] );
|
|
|
|
line->attach( m_plot );
|
|
|
|
m_markers.push_back( std::move( line ) );
|
2017-12-05 05:56:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 09:11:56 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2019-03-22 09:11:56 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RiuPlotAnnotationTool::attachAnnotationLine( QwtPlot* plot,
|
|
|
|
const QColor& color,
|
|
|
|
const QString& annotationText,
|
|
|
|
const double yPosition )
|
2019-03-22 09:11:56 -05:00
|
|
|
{
|
|
|
|
m_plot = plot;
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
QwtPlotMarker* line( new QwtPlotMarker() );
|
2019-09-10 06:23:29 -05:00
|
|
|
RiuPlotAnnotationTool::horizontalDashedLineWithColor( line, color, color, annotationText, yPosition );
|
2019-09-06 03:40:57 -05:00
|
|
|
line->attach( m_plot );
|
|
|
|
m_markers.push_back( std::move( line ) );
|
2019-03-22 09:11:56 -05:00
|
|
|
}
|
|
|
|
|
2017-10-23 11:29:23 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2017-10-23 11:29:23 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RiuPlotAnnotationTool::detachAllAnnotations()
|
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
if ( m_plot )
|
2017-10-23 11:29:23 -05:00
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
for ( size_t i = 0; i < m_markers.size(); i++ )
|
2017-11-03 05:36:44 -05:00
|
|
|
{
|
|
|
|
m_markers[i]->detach();
|
|
|
|
delete m_markers[i];
|
|
|
|
}
|
2017-10-23 11:29:23 -05:00
|
|
|
}
|
|
|
|
m_markers.clear();
|
|
|
|
}
|
2017-12-05 05:56:13 -06:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2017-12-05 05:56:13 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
void RiuPlotAnnotationTool::horizontalDashedLine( QwtPlotMarker* line, const QString& name, double yValue )
|
2019-03-22 09:11:56 -05:00
|
|
|
{
|
2019-09-10 06:23:29 -05:00
|
|
|
horizontalDashedLineWithColor( line, QColor( 0, 0, 100 ), QColor( 0, 0, 100 ), name, yValue );
|
2019-03-22 09:11:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2019-03-22 09:11:56 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-10 06:23:29 -05:00
|
|
|
void RiuPlotAnnotationTool::horizontalDashedLineWithColor(
|
|
|
|
QwtPlotMarker* line, const QColor& color, const QColor& textColor, const QString& name, double yValue )
|
2017-12-05 05:56:13 -06:00
|
|
|
{
|
|
|
|
QPen curvePen;
|
2019-09-06 03:40:57 -05:00
|
|
|
curvePen.setStyle( Qt::DashLine );
|
|
|
|
curvePen.setColor( color );
|
|
|
|
curvePen.setWidth( 1 );
|
|
|
|
|
|
|
|
line->setLineStyle( QwtPlotMarker::HLine );
|
|
|
|
line->setLinePen( curvePen );
|
|
|
|
line->setYValue( yValue );
|
2019-09-10 06:23:29 -05:00
|
|
|
QwtText label( name );
|
|
|
|
label.setColor( textColor );
|
|
|
|
line->setLabel( label );
|
2019-09-06 03:40:57 -05:00
|
|
|
line->setLabelAlignment( Qt::AlignRight | Qt::AlignBottom );
|
2017-12-05 05:56:13 -06:00
|
|
|
}
|