##// END OF EJS Templates
legend layout with padding
legend layout with padding

File last commit:

r794:4c76de65bbac
r799:0ecf2967daa4
Show More
barvalue.cpp
93 lines | 1.9 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 "barvalue_p.h"
#include <QPainter>
#include <QPen>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
BarValue::BarValue(QBarSet &set, QGraphicsItem *parent)
: QGraphicsObject(parent),
m_barSet(set),
m_xPos(0),
m_yPos(0),
m_width(0),
m_height(0)
{
setVisible(false);
}
void BarValue::setText(QString str)
{
m_valueString = str;
}
QString BarValue::text() const
{
return m_valueString;
}
void BarValue::setPen(const QPen &pen)
{
m_pen = pen;
}
QPen BarValue::pen() const
{
return m_pen;
}
void BarValue::resize(qreal w, qreal h)
{
m_width = w;
m_height = h;
}
void BarValue::setPos(qreal x, qreal y)
{
m_xPos = x;
m_yPos = y;
}
void BarValue::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
Q_UNUSED(option)
Q_UNUSED(widget)
if (isVisible()) {
painter->setPen(m_pen);
painter->drawText(boundingRect(), m_valueString);
}
}
QRectF BarValue::boundingRect() const
{
QRectF r(m_xPos, m_yPos, m_width, m_height);
return r;
}
void BarValue::toggleVisible()
{
setVisible(!isVisible());
}
#include "moc_barvalue_p.cpp"
QTCOMMERCIALCHART_END_NAMESPACE