2017-10-23 11:29:23 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RiuPlotAnnotationTool.h"
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "qwt_plot.h"
|
2017-10-25 07:41:54 -05:00
|
|
|
#include "cvfMath.h"
|
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
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RiuPlotAnnotationTool::attachFormationNames(QwtPlot* plot, const std::vector<QString>& names, const std::vector<std::pair<double, double>> yPositions)
|
|
|
|
{
|
|
|
|
detachAllAnnotations();
|
|
|
|
|
|
|
|
if (names.size() != yPositions.size()) return;
|
|
|
|
m_plot = plot;
|
2017-10-23 11:29:23 -05:00
|
|
|
QPen curvePen;
|
|
|
|
curvePen.setStyle(Qt::DashLine);
|
2017-11-06 03:21:58 -06:00
|
|
|
curvePen.setColor(QColor(0, 0, 100));
|
2017-10-23 11:29:23 -05:00
|
|
|
curvePen.setWidth(1);
|
|
|
|
|
2017-10-25 07:41:54 -05:00
|
|
|
double delta = 0.5;
|
|
|
|
|
2017-10-23 11:29:23 -05:00
|
|
|
for (size_t i = 0; i < names.size(); i++)
|
|
|
|
{
|
2017-11-03 05:36:44 -05:00
|
|
|
QwtPlotMarker* line(new QwtPlotMarker());
|
2017-10-23 11:29:23 -05:00
|
|
|
|
|
|
|
line->setLineStyle(QwtPlotMarker::HLine);
|
|
|
|
line->setLinePen(curvePen);
|
2017-10-25 07:41:54 -05:00
|
|
|
line->setYValue(yPositions[i].first);
|
|
|
|
QString name = "Top ";
|
|
|
|
name += names[i];
|
|
|
|
|
|
|
|
line->setLabel(name);
|
|
|
|
line->setLabelAlignment(Qt::AlignRight | Qt::AlignBottom);
|
2017-10-23 11:29:23 -05:00
|
|
|
|
|
|
|
line->attach(m_plot);
|
|
|
|
|
|
|
|
m_markers.push_back(std::move(line));
|
2017-10-25 07:41:54 -05:00
|
|
|
|
2017-10-27 06:57:35 -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
|
|
|
{
|
2017-11-03 05:36:44 -05:00
|
|
|
QwtPlotMarker* line(new QwtPlotMarker());
|
2017-10-25 07:41:54 -05:00
|
|
|
|
|
|
|
line->setLineStyle(QwtPlotMarker::HLine);
|
|
|
|
line->setLinePen(curvePen);
|
|
|
|
line->setYValue(yPositions[i].second);
|
|
|
|
|
|
|
|
line->attach(m_plot);
|
|
|
|
|
|
|
|
m_markers.push_back(std::move(line));
|
|
|
|
}
|
2017-10-23 11:29:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RiuPlotAnnotationTool::detachAllAnnotations()
|
|
|
|
{
|
2017-11-03 05:36:44 -05:00
|
|
|
if (m_plot)
|
2017-10-23 11:29:23 -05:00
|
|
|
{
|
2017-11-03 05:36:44 -05:00
|
|
|
for (size_t i = 0; i < m_markers.size(); i++)
|
|
|
|
{
|
|
|
|
m_markers[i]->detach();
|
|
|
|
delete m_markers[i];
|
|
|
|
}
|
2017-10-23 11:29:23 -05:00
|
|
|
}
|
|
|
|
m_markers.clear();
|
|
|
|
}
|