chartbackground.cpp
53 lines
| 1.1 KiB
| text/x-c
|
CppLexer
/ src / chartbackground.cpp
Michal Klocek
|
r640 | #include "chartbackground_p.h" | ||
Michal Klocek
|
r719 | #include "chartconfig_p.h" | ||
Michal Klocek
|
r640 | #include <QPen> | ||
#include <QBrush> | ||||
#include <QPainter> | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
ChartBackground::ChartBackground(QGraphicsItem* parent):QGraphicsRectItem(parent), | ||||
m_diameter(15) | ||||
{ | ||||
} | ||||
ChartBackground::~ChartBackground() | ||||
{ | ||||
} | ||||
void ChartBackground::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) | ||||
{ | ||||
Q_UNUSED(option); | ||||
Q_UNUSED(widget); | ||||
Michal Klocek
|
r715 | painter->save(); | ||
Michal Klocek
|
r640 | painter->setPen(pen()); | ||
painter->setBrush(brush()); | ||||
painter->drawRoundRect(rect(),roundness(rect().width()),roundness(rect().height())); | ||||
Michal Klocek
|
r715 | #ifndef QT_NO_DEBUG | ||
painter->setPen(Qt::black); | ||||
QFont font; | ||||
QString build("build %1"); | ||||
font.setPointSize(6); | ||||
painter->setFont(font); | ||||
Michal Klocek
|
r719 | painter->drawText(rect().bottomLeft(),build.arg(ChartConfig::instance()->compilationTime())); | ||
Michal Klocek
|
r715 | #endif | ||
painter->restore(); | ||||
Michal Klocek
|
r640 | } | ||
int ChartBackground::roundness(qreal size) const | ||||
{ | ||||
return 100*m_diameter/int(size); | ||||
} | ||||
int ChartBackground::diameter() const | ||||
{ | ||||
return m_diameter; | ||||
} | ||||
void ChartBackground::setDimeter(int dimater) | ||||
{ | ||||
m_diameter=dimater; | ||||
} | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||