2019-02-21 05:52:23 -06:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2019- Equinor 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 "RiuQwtPlotTools.h"
|
|
|
|
|
2019-08-19 02:37:42 -05:00
|
|
|
#include "RiaApplication.h"
|
|
|
|
#include "RiaPreferences.h"
|
|
|
|
|
2019-02-25 07:54:36 -06:00
|
|
|
#include "qwt_date_scale_draw.h"
|
|
|
|
#include "qwt_date_scale_engine.h"
|
2019-02-21 05:52:23 -06:00
|
|
|
#include "qwt_plot.h"
|
|
|
|
#include "qwt_plot_grid.h"
|
|
|
|
#include "qwt_plot_layout.h"
|
|
|
|
|
2019-08-19 02:37:42 -05:00
|
|
|
#include <QRegExp>
|
2019-02-21 05:52:23 -06:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RiuQwtPlotTools::setCommonPlotBehaviour(QwtPlot* plot)
|
|
|
|
{
|
|
|
|
// Plot background and frame look
|
|
|
|
|
|
|
|
QPalette newPalette(plot->palette());
|
|
|
|
newPalette.setColor(QPalette::Background, Qt::white);
|
|
|
|
plot->setPalette(newPalette);
|
|
|
|
|
|
|
|
plot->setAutoFillBackground(true);
|
|
|
|
plot->setCanvasBackground(Qt::white);
|
|
|
|
|
|
|
|
QFrame* canvasFrame = dynamic_cast<QFrame*>(plot->canvas());
|
|
|
|
if (canvasFrame)
|
|
|
|
{
|
|
|
|
canvasFrame->setFrameShape(QFrame::NoFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Grid
|
|
|
|
|
|
|
|
QwtPlotGrid* grid = new QwtPlotGrid;
|
|
|
|
grid->attach(plot);
|
|
|
|
QPen gridPen(Qt::SolidLine);
|
|
|
|
gridPen.setColor(Qt::lightGray);
|
|
|
|
grid->setPen(gridPen);
|
|
|
|
|
|
|
|
// Axis number font
|
|
|
|
QFont axisFont = plot->axisFont(QwtPlot::xBottom);
|
2019-04-10 09:13:40 -05:00
|
|
|
axisFont.setPointSize(10);
|
2019-02-21 05:52:23 -06:00
|
|
|
|
|
|
|
plot->setAxisFont(QwtPlot::xBottom, axisFont);
|
|
|
|
plot->setAxisFont(QwtPlot::xTop, axisFont);
|
|
|
|
plot->setAxisFont(QwtPlot::yLeft, axisFont);
|
|
|
|
plot->setAxisFont(QwtPlot::yRight, axisFont);
|
|
|
|
|
|
|
|
// Axis title font
|
2019-08-19 02:37:42 -05:00
|
|
|
std::vector<QwtPlot::Axis> axes = {QwtPlot::xBottom, QwtPlot::xTop, QwtPlot::yLeft, QwtPlot::yRight};
|
|
|
|
|
2019-02-21 05:52:23 -06:00
|
|
|
for (QwtPlot::Axis axis : axes)
|
|
|
|
{
|
|
|
|
QwtText axisTitle = plot->axisTitle(axis);
|
|
|
|
QFont axisTitleFont = axisTitle.font();
|
2019-04-10 09:13:40 -05:00
|
|
|
axisTitleFont.setPointSize(10);
|
2019-02-21 05:52:23 -06:00
|
|
|
axisTitleFont.setBold(false);
|
|
|
|
axisTitle.setFont(axisTitleFont);
|
|
|
|
axisTitle.setRenderFlags(Qt::AlignRight);
|
|
|
|
|
|
|
|
plot->setAxisTitle(axis, axisTitle);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set a focus policy to allow it taking key press events.
|
|
|
|
// This is not strictly necessary since this widget inherit QwtPlot
|
|
|
|
// which already has a focus policy.
|
|
|
|
// However, for completeness we still do it here.
|
|
|
|
plot->setFocusPolicy(Qt::WheelFocus);
|
|
|
|
|
|
|
|
// Enable mousetracking and event filter
|
|
|
|
plot->canvas()->setMouseTracking(true);
|
|
|
|
plot->canvas()->installEventFilter(plot);
|
|
|
|
plot->plotLayout()->setAlignCanvasToScales(true);
|
2019-04-15 02:58:08 -05:00
|
|
|
|
|
|
|
plot->setContentsMargins(4, 4, 4, 4);
|
2019-02-21 05:52:23 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RiuQwtPlotTools::setDefaultAxes(QwtPlot* plot)
|
|
|
|
{
|
|
|
|
plot->enableAxis(QwtPlot::xBottom, true);
|
|
|
|
plot->enableAxis(QwtPlot::yLeft, true);
|
|
|
|
plot->enableAxis(QwtPlot::xTop, false);
|
|
|
|
plot->enableAxis(QwtPlot::yRight, false);
|
|
|
|
|
|
|
|
plot->setAxisMaxMinor(QwtPlot::xBottom, 2);
|
|
|
|
plot->setAxisMaxMinor(QwtPlot::yLeft, 3);
|
|
|
|
}
|
2019-02-25 07:54:36 -06:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-08-19 02:37:42 -05:00
|
|
|
void RiuQwtPlotTools::enableDateBasedBottomXAxis(QwtPlot* plot,
|
|
|
|
const QString& dateFormat,
|
2019-08-23 07:13:13 -05:00
|
|
|
const QString& timeFormat,
|
|
|
|
RiaQDateTimeTools::DateFormatComponents dateComponents,
|
|
|
|
RiaQDateTimeTools::TimeFormatComponents timeComponents)
|
2019-02-25 07:54:36 -06:00
|
|
|
{
|
|
|
|
QwtDateScaleDraw* scaleDraw = new QwtDateScaleDraw(Qt::UTC);
|
2019-08-19 02:37:42 -05:00
|
|
|
|
|
|
|
std::set<QwtDate::IntervalType> intervals = {QwtDate::Year,
|
|
|
|
QwtDate::Month,
|
|
|
|
QwtDate::Week,
|
|
|
|
QwtDate::Day,
|
|
|
|
QwtDate::Hour,
|
|
|
|
QwtDate::Minute,
|
|
|
|
QwtDate::Second,
|
|
|
|
QwtDate::Millisecond};
|
|
|
|
|
|
|
|
for (QwtDate::IntervalType interval : intervals)
|
|
|
|
{
|
2019-08-23 07:13:13 -05:00
|
|
|
scaleDraw->setDateFormat(interval, dateTimeFormatForInterval(interval, dateFormat, timeFormat, dateComponents, timeComponents));
|
2019-08-19 02:37:42 -05:00
|
|
|
}
|
2019-02-25 07:54:36 -06:00
|
|
|
|
|
|
|
QwtDateScaleEngine* scaleEngine = new QwtDateScaleEngine(Qt::UTC);
|
|
|
|
plot->setAxisScaleEngine(QwtPlot::xBottom, scaleEngine);
|
|
|
|
plot->setAxisScaleDraw(QwtPlot::xBottom, scaleDraw);
|
2019-08-19 02:37:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
QString RiuQwtPlotTools::dateTimeFormatForInterval(QwtDate::IntervalType interval,
|
|
|
|
const QString& dateFormat,
|
2019-08-23 07:13:13 -05:00
|
|
|
const QString& timeFormat,
|
|
|
|
RiaQDateTimeTools::DateFormatComponents dateComponents,
|
|
|
|
RiaQDateTimeTools::TimeFormatComponents timeComponents)
|
2019-08-19 02:37:42 -05:00
|
|
|
{
|
2019-08-23 07:13:13 -05:00
|
|
|
if (dateComponents != RiaQDateTimeTools::DATE_FORMAT_UNSPECIFIED && timeComponents != RiaQDateTimeTools::TIME_FORMAT_UNSPECIFIED)
|
|
|
|
{
|
2019-08-23 09:23:07 -05:00
|
|
|
return RiaQDateTimeTools::timeFormatString(timeFormat, timeComponents) + "\n" +
|
|
|
|
RiaQDateTimeTools::dateFormatString(dateFormat, dateComponents);
|
|
|
|
}
|
2019-08-23 07:13:13 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (interval)
|
|
|
|
{
|
|
|
|
case QwtDate::Millisecond:
|
|
|
|
return RiaQDateTimeTools::timeFormatString(timeFormat, RiaQDateTimeTools::TIME_FORMAT_HOUR_MINUTE_SECOND_MILLISECOND);
|
|
|
|
case QwtDate::Second:
|
|
|
|
return RiaQDateTimeTools::timeFormatString(timeFormat, RiaQDateTimeTools::TIME_FORMAT_HOUR_MINUTE_SECOND);
|
|
|
|
case QwtDate::Minute:
|
|
|
|
{
|
|
|
|
QString fullFormat = RiaQDateTimeTools::timeFormatString(timeFormat, RiaQDateTimeTools::TIME_FORMAT_HOUR_MINUTE);
|
|
|
|
fullFormat += "\n";
|
|
|
|
fullFormat += RiaQDateTimeTools::dateFormatString(dateFormat, RiaQDateTimeTools::DATE_FORMAT_YEAR_MONTH_DAY);
|
|
|
|
return fullFormat;
|
|
|
|
}
|
|
|
|
case QwtDate::Hour:
|
|
|
|
{
|
|
|
|
QString fullFormat = RiaQDateTimeTools::timeFormatString(timeFormat, RiaQDateTimeTools::TIME_FORMAT_HOUR);
|
|
|
|
if (!fullFormat.endsWith("AP"))
|
|
|
|
{
|
|
|
|
fullFormat += ":00";
|
|
|
|
}
|
|
|
|
fullFormat += "\n";
|
|
|
|
fullFormat += RiaQDateTimeTools::dateFormatString(dateFormat, RiaQDateTimeTools::DATE_FORMAT_YEAR_MONTH_DAY);
|
|
|
|
return fullFormat;
|
|
|
|
}
|
|
|
|
case QwtDate::Day:
|
|
|
|
return RiaQDateTimeTools::dateFormatString(dateFormat, RiaQDateTimeTools::DATE_FORMAT_YEAR_MONTH_DAY);
|
|
|
|
case QwtDate::Week:
|
|
|
|
return RiaQDateTimeTools::dateFormatString(dateFormat, RiaQDateTimeTools::DATE_FORMAT_YEAR_MONTH);
|
|
|
|
case QwtDate::Month:
|
|
|
|
return RiaQDateTimeTools::dateFormatString(dateFormat, RiaQDateTimeTools::DATE_FORMAT_YEAR_MONTH);
|
|
|
|
case QwtDate::Year:
|
|
|
|
return RiaQDateTimeTools::dateFormatString(dateFormat, RiaQDateTimeTools::DATE_FORMAT_YEAR);
|
|
|
|
default:
|
|
|
|
return RiaQDateTimeTools::dateFormatString(dateFormat, RiaQDateTimeTools::DATE_FORMAT_YEAR_MONTH_DAY);
|
|
|
|
}
|
|
|
|
}
|
2019-08-19 02:37:42 -05:00
|
|
|
}
|