##// END OF EJS Templates
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples

File last commit:

r276:d062a7f38647
r280:9b4c1980ee18
Show More
barpresenter.cpp
95 lines | 3.0 KiB | text/x-c | CppLexer
#include "barpresenter.h"
#include "bar_p.h"
#include "barlabel_p.h"
#include "barvalue_p.h"
#include "qbarset.h"
#include <QDebug>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
BarPresenter::BarPresenter(BarChartModel& model, QGraphicsItem *parent) :
BarPresenterBase(model,parent)
{
mBarDefaultWidth = 15;
}
void BarPresenter::layoutChanged()
{
// Scale bars to new layout
// Layout for bars:
if (mModel.countSets() <= 0) {
qDebug() << "No sets in model!";
return;
}
if (childItems().count() == 0) {
qDebug() << "WARNING: BarPresenter::layoutChanged called before graphics items are created!";
return;
}
// TODO: better way to auto-layout?
// Use reals for accurancy (we might get some compiler warnings... :)
int categoryCount = mModel.countCategories();
int setCount = mModel.countSets();
qreal tW = mWidth;
qreal tH = mHeight;
qreal tM = mModel.max();
qreal scale = (tH/tM);
qreal tC = categoryCount+1;
qreal xStepPerSet = (tW/tC);
// Scaling.
int itemIndex(0);
int labelIndex(0);
for (int category=0; category < categoryCount; category++) {
qreal xPos = xStepPerSet * category + ((tW + mBarDefaultWidth*setCount)/(categoryCount*2));
qreal yPos = mHeight;
for (int set = 0; set < setCount; set++) {
qreal barHeight = mModel.valueAt(set, category) * scale;
Bar* bar = mBars.at(itemIndex);
// TODO: width settable per bar?
bar->resize(mBarDefaultWidth, barHeight);
bar->setBrush(mModel.setAt(set)->brush());
bar->setPos(xPos, yPos-barHeight); // item*posStep+startPos + set * mBarDefaultWidth, mHeight);
itemIndex++;
xPos += mBarDefaultWidth;
}
// TODO: Layout for labels, remove magic number
xPos = xStepPerSet * category + ((tW + mBarDefaultWidth*setCount)/(categoryCount*2));
BarLabel* label = mLabels.at(labelIndex);
label->setPos(xPos, mHeight + 20);
labelIndex++;
}
// Position floating values
itemIndex = 0;
for (int category=0; category < mModel.countCategories(); category++) {
qreal xPos = xStepPerSet * category + ((tW + mBarDefaultWidth*setCount)/(categoryCount*2));
qreal yPos = mHeight;
for (int set=0; set < mModel.countSets(); set++) {
qreal barHeight = mModel.valueAt(set,category) * scale;
BarValue* value = mFloatingValues.at(itemIndex);
// TODO: remove hard coding, apply layout
value->resize(100,50);
value->setPos(xPos, yPos-barHeight/2);
value->setPen(QPen(QColor(255,255,255,255)));
if (mModel.valueAt(set,category) != 0) {
value->setValueString(QString::number(mModel.valueAt(set,category)));
} else {
value->setValueString(QString(""));
}
itemIndex++;
xPos += mBarDefaultWidth;
}
}
mLayoutDirty = true;
}
QTCOMMERCIALCHART_END_NAMESPACE