##// END OF EJS Templates
signals and slots for bars and sets
signals and slots for bars and sets

File last commit:

r239:b700ad3a5165
r239:b700ad3a5165
Show More
bar.cpp
77 lines | 1.4 KiB | text/x-c | CppLexer
sauimone
renamed bar.h to bar_p.h
r118 #include "bar_p.h"
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 #include <QDebug>
Michal Klocek
minor.
r59 #include <QPainter>
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 Bar::Bar(QGraphicsItem *parent)
sauimone
signals and slots for bars and sets
r239 : QGraphicsObject(parent)
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 {
}
sauimone
theme interface to barcharts. some minor fixes
r113 void Bar::resize( qreal w, qreal h )
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 {
sauimone
Some fixes to bar charts. Now bars draw almost correctly
r97 // qDebug() << "bar::resize" << w << h;
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 mWidth = w;
mHeight = h;
}
void Bar::setPos(qreal x, qreal y)
{
sauimone
Some fixes to bar charts. Now bars draw almost correctly
r97 // qDebug() << "Bar::setpos" << x << y;
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 mXpos = x;
mYpos = y;
}
sauimone
brush support for bargroups
r183 void Bar::setPen(QPen pen)
{
mPen = pen;
}
void Bar::setBrush(QBrush brush)
{
mBrush = brush;
}
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 void Bar::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
sauimone
correct drawing for barchart
r82 if (0 == mHeight) {
return;
}
sauimone
signals and slots for bars and sets
r239
sauimone
brush support for bargroups
r183 painter->setBrush(mBrush);
sauimone
theme interface to barcharts. some minor fixes
r113
// This compensates for rounding errors. drawRect takes ints and cumulative error of pos + size may be over 1.
int x0 = mXpos;
int x1 = (mXpos + mWidth);
int w = x1-x0;
int y0 = mYpos;
int y1 = (mYpos + mHeight);
int h = y1-y0;
painter->drawRect(x0, y0 ,w ,h);
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 }
QRectF Bar::boundingRect() const
{
QRectF r(mXpos, mYpos, mXpos + mWidth, mYpos + mHeight);
return r;
}
sauimone
signals and slots for bars and sets
r239 void Bar::hoverEnterEvent(QGraphicsSceneHoverEvent* /*event*/)
{
emit hoverEnter();
}
void Bar::hoverLeaveEvent(QGraphicsSceneHoverEvent* /*event*/)
{
emit hoverLeave();
}
void Bar::mousePressEvent(QGraphicsSceneMouseEvent* /*event*/)
{
emit clicked();
}
#include "moc_bar_p.cpp"
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 QTCOMMERCIALCHART_END_NAMESPACE