|
|
#include "percentbarpresenter_p.h"
|
|
|
#include "bar_p.h"
|
|
|
#include "barlabel_p.h"
|
|
|
#include "barvalue_p.h"
|
|
|
#include "separator_p.h"
|
|
|
#include "qbarset.h"
|
|
|
#include <QDebug>
|
|
|
|
|
|
QTCOMMERCIALCHART_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
|
PercentBarPresenter::PercentBarPresenter(QBarSeries *series, QGraphicsItem *parent) :
|
|
|
BarPresenterBase(series, parent)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
void PercentBarPresenter::layoutChanged()
|
|
|
{
|
|
|
// Scale bars to new layout
|
|
|
// Layout for bars:
|
|
|
if (mSeries->barsetCount() <= 0) {
|
|
|
qDebug() << "No sets in model!";
|
|
|
// Nothing to do.
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
if (childItems().count() == 0) {
|
|
|
qDebug() << "WARNING: PercentBarPresenter::layoutChanged called before graphics items are created!";
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
// Use temporary qreals for accurancy (we might get some compiler warnings... :)
|
|
|
qreal tW = mWidth;
|
|
|
qreal tC = mSeries->categoryCount() + 1;
|
|
|
qreal cC = mSeries->categoryCount() * 2 + 1;
|
|
|
mBarWidth = tW / cC;
|
|
|
qreal xStep = (tW/tC);
|
|
|
qreal xPos = ((tW/tC) - mBarWidth / 2);
|
|
|
qreal h = mHeight;
|
|
|
|
|
|
int itemIndex(0);
|
|
|
int labelIndex(0);
|
|
|
for (int category = 0; category < mSeries->categoryCount(); category++) {
|
|
|
qreal colSum = mSeries->categorySum(category);
|
|
|
qreal scale = (h / colSum);
|
|
|
qreal yPos = h;
|
|
|
for (int set=0; set < mSeries->barsetCount(); set++) {
|
|
|
qreal barHeight = mSeries->valueAt(set, category) * scale;
|
|
|
Bar* bar = mBars.at(itemIndex);
|
|
|
|
|
|
// TODO: width settable per bar?
|
|
|
bar->resize(mBarWidth, barHeight);
|
|
|
bar->setBrush(mSeries->barsetAt(set)->brush());
|
|
|
bar->setPos(xPos, yPos-barHeight);
|
|
|
itemIndex++;
|
|
|
yPos -= barHeight;
|
|
|
}
|
|
|
|
|
|
// TODO: Layout for labels, remove magic number
|
|
|
BarLabel* label = mLabels.at(labelIndex);
|
|
|
label->setPos(xPos, mHeight + 20);
|
|
|
labelIndex++;
|
|
|
xPos += xStep;
|
|
|
}
|
|
|
|
|
|
// Position separators
|
|
|
xPos = xStep + xStep/2;
|
|
|
for (int s=0; s < mSeries->categoryCount() - 1; s++) {
|
|
|
Separator* sep = mSeparators.at(s);
|
|
|
sep->setPos(xPos,0);
|
|
|
sep->setSize(QSizeF(1,mHeight));
|
|
|
xPos += xStep;
|
|
|
}
|
|
|
|
|
|
// Position floating values
|
|
|
itemIndex = 0;
|
|
|
xPos = (tW/tC);
|
|
|
for (int category=0; category < mSeries->categoryCount(); category++) {
|
|
|
qreal yPos = h;
|
|
|
qreal colSum = mSeries->categorySum(category);
|
|
|
qreal scale = (h / colSum);
|
|
|
for (int set=0; set < mSeries->barsetCount(); set++) {
|
|
|
qreal barHeight = mSeries->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 (mSeries->valueAt(set,category) != 0) {
|
|
|
int p = mSeries->percentageAt(set,category) * 100;
|
|
|
QString vString(QString::number(p));
|
|
|
vString.truncate(3);
|
|
|
vString.append("%");
|
|
|
value->setValueString(vString);
|
|
|
} else {
|
|
|
value->setValueString(QString(""));
|
|
|
}
|
|
|
|
|
|
itemIndex++;
|
|
|
yPos -= barHeight;
|
|
|
}
|
|
|
xPos += xStep;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
#include "moc_percentbarpresenter_p.cpp"
|
|
|
|
|
|
QTCOMMERCIALCHART_END_NAMESPACE
|
|
|
|