##// END OF EJS Templates
Changed comma to full stop...
Changed comma to full stop Change-Id: If0023777995c99855fe731568e8c3e8abd5d1ba5 Reviewed-by: Mika Salmela <mika.salmela@digia.com>

File last commit:

r2528:2219fb4b2e1c
r2535:3c82f10df041
Show More
boxwhiskers.cpp
207 lines | 5.8 KiB | text/x-c | CppLexer
/****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
#include "boxwhiskers_p.h"
#include <QPainter>
#include <QWidget>
#include <QDebug>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
BoxWhiskers::BoxWhiskers(QBoxSet *set, AbstractDomain *domain, QGraphicsObject *parent) :
QGraphicsObject(parent),
m_boxSet(set),
m_domain(domain)
{
setAcceptHoverEvents(true);
setAcceptedMouseButtons(Qt::MouseButtonMask);
}
BoxWhiskers::~BoxWhiskers()
{
}
void BoxWhiskers::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
Q_UNUSED(event)
emit clicked(m_boxSet);
}
void BoxWhiskers::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
{
Q_UNUSED(event)
emit hovered(true, m_boxSet);
}
void BoxWhiskers::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
{
Q_UNUSED(event)
emit hovered(false, m_boxSet);
}
void BoxWhiskers::setBrush(const QBrush &brush)
{
m_brush = brush;
update();
}
void BoxWhiskers::setPen(const QPen &pen)
{
m_pen = pen;
update();
}
void BoxWhiskers::setLayout(const BoxWhiskersData &data)
{
m_data = data;
updateGeometry();
update();
}
QSizeF BoxWhiskers::sizeHint(Qt::SizeHint which, const QSizeF &constraint) const
{
//Q_UNUSED(which)
Q_UNUSED(constraint)
qDebug() << "BoxWhiskers::sizeHint, which = " << which;
return QSizeF();
}
void BoxWhiskers::setGeometry(const QRectF &rect) // TODO: Unused?
{
Q_UNUSED(rect)
qDebug() << "BoxWhiskers::setGeometry";
}
void BoxWhiskers::setDomainSize(const QSizeF &size)
{
m_domainSize = size;
updateBoundingRect();
}
QRectF BoxWhiskers::boundingRect() const
{
return m_boundingRect;
}
void BoxWhiskers::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
Q_UNUSED(option)
Q_UNUSED(widget)
//Q_UNUSED(painter)
//painter->save();
//painter->setClipRect(parentItem()->boundingRect());
painter->setPen(m_pen);
painter->setBrush(m_brush);
//qreal spanY = m_data.m_maxY - m_data.m_minY;
qreal spanY = m_domain->maxY() - m_domain->minY();
//painter->setClipRect(parentItem()->boundingRect());
painter->scale(m_domainSize.width() / m_data.m_boxItems, m_domainSize.height() / spanY);
painter->drawPath(m_boxPath);
//painter->restore();
}
void BoxWhiskers::updateGeometry()
{
prepareGeometryChange();
QPainterPath path;
qreal columnWidth = 1.0 / m_data.m_seriesCount;
qreal left = 0.25 * columnWidth + columnWidth * m_data.m_seriesIndex;
qreal right = 0.75 * columnWidth + columnWidth * m_data.m_seriesIndex;
qreal middle = 0.5 * columnWidth + columnWidth * m_data.m_seriesIndex;
qreal domainMaxY = m_domain->maxY();
qreal domainMinY = m_domain->minY();
qreal tmpUE = m_data.m_upperExtreme;
if (tmpUE > domainMaxY) tmpUE = domainMaxY;
if (tmpUE < domainMinY) tmpUE = domainMinY;
qreal tmpUQ = m_data.m_upperQuartile;
if (tmpUQ > domainMaxY) tmpUQ = domainMaxY;
if (tmpUQ < domainMinY) tmpUQ = domainMinY;
qreal tmpLQ = m_data.m_lowerQuartile;
if (tmpLQ > domainMaxY) tmpLQ = domainMaxY;
if (tmpLQ < domainMinY) tmpLQ = domainMinY;
qreal tmpLE = m_data.m_lowerExtreme;
if (tmpLE > domainMaxY) tmpLE = domainMaxY;
if (tmpLE < domainMinY) tmpLE = domainMinY;
//whisker = 0.35 0.75
// Upper whisker
if (m_data.m_upperExtreme <= domainMaxY && m_data.m_upperExtreme >= domainMinY) {
path.moveTo(left + m_data.m_index, domainMaxY - m_data.m_upperExtreme);
path.lineTo(right + m_data.m_index, domainMaxY - m_data.m_upperExtreme);
}
if ((tmpUE - tmpUQ) > 0.0) {
path.moveTo(middle + m_data.m_index, domainMaxY - tmpUE);
path.lineTo(middle + m_data.m_index, domainMaxY - tmpUQ);
path.closeSubpath();
}
// Middle Box
if ((tmpUQ - tmpLQ) > 0.0)
path.addRect(left + m_data.m_index, domainMaxY - tmpUQ, 0.5 * columnWidth, tmpUQ - tmpLQ);
// Median/mean line
if (m_data.m_median < domainMaxY && m_data.m_median > domainMinY) {
path.moveTo(left + m_data.m_index, domainMaxY - m_data.m_median);
path.lineTo(right + m_data.m_index, domainMaxY - m_data.m_median);
}
// Lower whisker
if (m_data.m_lowerExtreme <= domainMaxY && m_data.m_lowerExtreme >= domainMinY) {
path.moveTo(left + m_data.m_index, domainMaxY - m_data.m_lowerExtreme);
path.lineTo(right + m_data.m_index, domainMaxY - m_data.m_lowerExtreme);
}
if ((tmpLQ - tmpLE) > 0.0) {
path.moveTo(middle + m_data.m_index, domainMaxY - tmpLE);
path.lineTo(middle + m_data.m_index, domainMaxY - tmpLQ);
}
path.closeSubpath();
m_boxPath = path;
updateBoundingRect();
}
void BoxWhiskers::updateBoundingRect()
{
//qreal scaleY = m_domainSize.height() / (m_data.m_maxY - m_data.m_minY);
qreal scaleY = m_domainSize.height() / (m_domain->maxY() - m_domain->minY());
qreal scaleX = m_domainSize.width() / m_data.m_boxItems;
QRectF br = m_boxPath.boundingRect();
m_boundingRect = QRectF( br.x() * scaleX, br.y() * scaleY,
br.width() * scaleX, br.height() * scaleY);
}
#include "moc_boxwhiskers_p.cpp"
QTCOMMERCIALCHART_END_NAMESPACE