mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
a8b4d35b4f
p4#: 19268
108 lines
3.4 KiB
C++
108 lines
3.4 KiB
C++
#include "RiuSimpleHistogramWidget.h"
|
|
#include <QPainter>
|
|
#include <cmath>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RiuSimpleHistogramWidget::RiuSimpleHistogramWidget(QWidget * parent /*= 0*/, Qt::WindowFlags f /*= 0*/):
|
|
QWidget(parent, f)
|
|
{
|
|
m_minPercentile = HUGE_VAL;
|
|
m_maxPercentile = HUGE_VAL;
|
|
m_mean = HUGE_VAL;
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSimpleHistogramWidget::paintEvent(QPaintEvent* event)
|
|
{
|
|
QPainter painter(this);
|
|
this->draw(&painter, 0, 0, this->width()-1, this->height()-1);
|
|
}
|
|
|
|
|
|
|
|
void RiuSimpleHistogramWidget::draw(QPainter *painter,int x, int y, int width, int height )
|
|
{
|
|
|
|
// Initialize variables
|
|
m_x = x; m_y = y; m_width = width; m_height = height;
|
|
|
|
QRect r1(x,y,width, height);
|
|
|
|
// Frame around it all;
|
|
QColor windowColor = palette().color(QPalette::Window);// QColor(144, 173, 208, 180);
|
|
QColor frameColor = palette().color(QPalette::WindowText);//QColor(220, 240, 255, 100);
|
|
QColor foregroundColor = palette().color(QPalette::Dark);// QColor(100, 141, 189);
|
|
|
|
//painter->fillRect(r1, windowColor);
|
|
painter->setPen(frameColor);
|
|
painter->drawRect(r1);
|
|
|
|
// Columns
|
|
painter->setPen(foregroundColor);
|
|
|
|
int yColBottom = yPosFromCount(0);
|
|
|
|
for ( size_t colIdx = 0; colIdx < m_histogramData.size(); ++colIdx)
|
|
{
|
|
size_t colCount = m_histogramData[colIdx];
|
|
int yColTop = yPosFromCount(colCount);
|
|
int xColStart = xPosFromColIdx(colIdx);
|
|
int xColEnd = xPosFromColIdx(colIdx+1);
|
|
|
|
// First line
|
|
painter->drawLine(xColStart, yColBottom, xColStart, yColTop);
|
|
// If we span more than one pixel with :
|
|
++xColStart;
|
|
for (;xColStart < xColEnd; ++xColStart )
|
|
{
|
|
painter->drawLine(xColStart, yColBottom, xColStart, yColTop);
|
|
}
|
|
|
|
}
|
|
|
|
// Vertical lines for percentiles
|
|
if (m_minPercentile != HUGE_VAL)
|
|
{
|
|
int xpos = xPosFromDomainValue(m_minPercentile);
|
|
painter->setPen(QColor(255, 0, 0, 200));
|
|
painter->drawLine(xpos, y+1, xpos, y + height -1);
|
|
}
|
|
|
|
// Vertical lines for percentiles
|
|
if (m_maxPercentile != HUGE_VAL)
|
|
{
|
|
int xpos = xPosFromDomainValue(m_maxPercentile);
|
|
painter->setPen(QColor(255, 0, 0, 200));
|
|
painter->drawLine(xpos, y+1, xpos, y + height -1);
|
|
}
|
|
|
|
// Vertical lines for percentiles
|
|
if (m_mean != HUGE_VAL)
|
|
{
|
|
int xpos = xPosFromDomainValue(m_mean);
|
|
painter->setPen(QColor(0, 0, 255, 200));
|
|
painter->drawLine(xpos, y+1, xpos, y + height -1);
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiuSimpleHistogramWidget::setHistogramData(double min, double max, const std::vector<size_t>& histogram)
|
|
{
|
|
m_min = min;
|
|
m_max = max;
|
|
m_histogramData = histogram;
|
|
|
|
m_maxHistogramCount = 0;
|
|
for (size_t colIdx = 0; colIdx < m_histogramData.size(); ++colIdx)
|
|
{
|
|
if (m_maxHistogramCount < m_histogramData[colIdx]) m_maxHistogramCount = m_histogramData[colIdx] ;
|
|
}
|
|
}
|