barpresenterbase.cpp
111 lines
| 2.9 KiB
| text/x-c
|
CppLexer
sauimone
|
r216 | #include "barpresenterbase.h" | ||
sauimone
|
r126 | #include "bar_p.h" | ||
#include "barlabel_p.h" | ||||
#include "separator_p.h" | ||||
#include <QDebug> | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
sauimone
|
r216 | BarPresenterBase::BarPresenterBase(BarChartModel& model, QGraphicsItem *parent) | ||
sauimone
|
r126 | : ChartItem(parent) | ||
,mBarDefaultWidth(20) // TODO: remove hard coding, when we have layout code ready | ||||
,mLayoutSet(false) | ||||
,mLayoutDirty(true) | ||||
,mSeparatorsVisible(true) | ||||
sauimone
|
r172 | ,mModel(model) | ||
sauimone
|
r126 | { | ||
sauimone
|
r167 | dataChanged(); | ||
sauimone
|
r126 | } | ||
sauimone
|
r216 | void BarPresenterBase::setSeparatorsVisible(bool visible) | ||
sauimone
|
r126 | { | ||
mSeparatorsVisible = visible; | ||||
} | ||||
sauimone
|
r216 | void BarPresenterBase::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) | ||
sauimone
|
r126 | { | ||
sauimone
|
r165 | // qDebug() << "BarGroupBase::paint" << childItems().count(); | ||
sauimone
|
r126 | if (!mLayoutSet) { | ||
qDebug() << "BarGroupBase::paint called without layout set. Aborting."; | ||||
return; | ||||
} | ||||
sauimone
|
r161 | // if (mLayoutDirty) { | ||
sauimone
|
r126 | // Layout or data has changed. Need to redraw. | ||
foreach(QGraphicsItem* i, childItems()) { | ||||
i->paint(painter,option,widget); | ||||
} | ||||
sauimone
|
r161 | // } | ||
sauimone
|
r126 | } | ||
sauimone
|
r216 | QRectF BarPresenterBase::boundingRect() const | ||
sauimone
|
r126 | { | ||
return QRectF(0,0,mWidth,mHeight); | ||||
} | ||||
sauimone
|
r165 | |||
sauimone
|
r216 | void BarPresenterBase::setBarWidth( int w ) | ||
sauimone
|
r126 | { | ||
mBarDefaultWidth = w; | ||||
} | ||||
sauimone
|
r183 | |||
sauimone
|
r216 | void BarPresenterBase::dataChanged() | ||
sauimone
|
r126 | { | ||
sauimone
|
r172 | // TODO: performance optimizations. Do we really need to delete and create items every time data is changed or can we reuse them? | ||
sauimone
|
r126 | |||
// Delete old bars | ||||
foreach (QGraphicsItem* item, childItems()) { | ||||
delete item; | ||||
} | ||||
// Create new graphic items for bars | ||||
sauimone
|
r173 | int totalItems = mModel.countTotalItems(); | ||
sauimone
|
r126 | for (int i=0; i<totalItems; i++) { | ||
Bar *bar = new Bar(this); | ||||
childItems().append(bar); | ||||
} | ||||
sauimone
|
r173 | int count = mModel.countCategories(); | ||
sauimone
|
r126 | for (int i=0; i<count; i++) { | ||
BarLabel* label = new BarLabel(this); | ||||
sauimone
|
r172 | label->set(mModel.label(i)); | ||
sauimone
|
r126 | childItems().append(label); | ||
} | ||||
sauimone
|
r173 | count = mModel.countCategories() - 1; // There is one less separator than columns | ||
sauimone
|
r126 | for (int i=0; i<count; i++) { | ||
Separator* sep = new Separator(this); | ||||
sep->setColor(QColor(255,0,0,255)); // TODO: color for separations from theme | ||||
childItems().append(sep); | ||||
} | ||||
// TODO: if (autolayout) { layoutChanged() } or something | ||||
mLayoutDirty = true; | ||||
} | ||||
Michal Klocek
|
r139 | //handlers | ||
sauimone
|
r216 | void BarPresenterBase::handleModelChanged(int index) | ||
Michal Klocek
|
r139 | { | ||
sauimone
|
r173 | // qDebug() << "BarGroupBase::handleModelChanged" << index; | ||
sauimone
|
r161 | dataChanged(); | ||
Michal Klocek
|
r139 | } | ||
sauimone
|
r216 | void BarPresenterBase::handleDomainChanged(const Domain& domain) | ||
Michal Klocek
|
r139 | { | ||
sauimone
|
r165 | // qDebug() << "BarGroupBase::handleDomainChanged"; | ||
sauimone
|
r167 | // TODO: Figure out the use case for this. | ||
// Affects the size of visible item, so layout is changed. | ||||
// layoutChanged(); | ||||
Michal Klocek
|
r139 | } | ||
sauimone
|
r216 | void BarPresenterBase::handleGeometryChanged(const QRectF& rect) | ||
Michal Klocek
|
r139 | { | ||
mWidth = rect.width(); | ||||
mHeight = rect.height(); | ||||
layoutChanged(); | ||||
mLayoutSet = true; | ||||
setPos(rect.topLeft()); | ||||
} | ||||
sauimone
|
r216 | #include "moc_barpresenterbase.cpp" | ||
Michal Klocek
|
r139 | |||
sauimone
|
r126 | QTCOMMERCIALCHART_END_NAMESPACE | ||