##// END OF EJS Templates
Documented couple of missing parameters in QPieSeries
Documented couple of missing parameters in QPieSeries

File last commit:

r332:744bdb6b6f83
r347:7cfd1fcf5481
Show More
axisitem.cpp
335 lines | 9.3 KiB | text/x-c | CppLexer
Michal Klocek
Add zoom support...
r67 #include "axisitem_p.h"
Michal Klocek
Adds refactored axis to presenter
r140 #include "qchartaxis.h"
Michal Klocek
Adds ZOrder enum to presenter
r262 #include "chartpresenter_p.h"
Michal Klocek
Add zoom support...
r67 #include <QPainter>
#include <QDebug>
Michal Klocek
Adds more axis handling...
r176 static int label_padding = 5;
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Add zoom support...
r67 QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Adds more axis handling...
r176 AxisItem::AxisItem(AxisType type,QGraphicsItem* parent) :
ChartItem(parent),
m_type(type),
m_labelsAngle(0),
Michal Klocek
Fixes wrong shades zvalues
r184 m_grid(parent),
m_shades(parent),
Michal Klocek
Adds ZOrder enum to presenter
r262 m_labels(parent),
Michal Klocek
Fix zorder of axis, and ticks
r272 m_axis(parent)
Michal Klocek
Add zoom support...
r67 {
Michal Klocek
Fix previous broken commit
r145 //initial initialization
Michal Klocek
Fix zorder of axis, and ticks
r272 m_axis.setZValue(ChartPresenter::AxisZValue);
Michal Klocek
Adds ZOrder enum to presenter
r262 m_shades.setZValue(ChartPresenter::ShadesZValue);
m_grid.setZValue(ChartPresenter::GridZValue);
Michal Klocek
Fix zorder of axis, and ticks
r272 setFlags(QGraphicsItem::ItemHasNoContents);
Michal Klocek
Add zoom support...
r67 }
AxisItem::~AxisItem()
{
}
QRectF AxisItem::boundingRect() const
{
Michal Klocek
Refactors axis layout managment...
r291 return QRectF();
Michal Klocek
Add zoom support...
r67 }
Michal Klocek
Refactors axis handling...
r223 void AxisItem::createItems(int count)
Michal Klocek
Adds more axis handling...
r176 {
Michal Klocek
Refactors axis layout managment...
r291 if(m_axis.children().size()==0)
m_axis.addToGroup(new QGraphicsLineItem());
Michal Klocek
Refactors axis handling...
r223 for (int i = 0; i < count; ++i) {
Michal Klocek
Refactors axis layout managment...
r291 m_grid.addToGroup(new QGraphicsLineItem());
m_labels.addToGroup(new QGraphicsSimpleTextItem());
if(m_grid.childItems().size()%2) m_shades.addToGroup(new QGraphicsRectItem());
m_axis.addToGroup(new QGraphicsLineItem());
Michal Klocek
Adds more axis handling...
r176 }
}
Michal Klocek
Refactors axis layout managment...
r291 void AxisItem::clear(int count)
Michal Klocek
Adds more axis handling...
r176 {
Michal Klocek
Refactors axis layout managment...
r291 QList<QGraphicsItem *> lines = m_grid.childItems();
QList<QGraphicsItem *> labels = m_labels.childItems();
QList<QGraphicsItem *> shades = m_shades.childItems();
QList<QGraphicsItem *> axis = m_axis.childItems();
Michal Klocek
Adds more axis handling...
r176
Michal Klocek
Refactors axis layout managment...
r291 for (int i = 0; i < count; ++i) {
delete(lines.takeLast());
delete(labels.takeLast());
if(lines.size()%2) delete(shades.takeLast());
delete(axis.takeLast());
Michal Klocek
Fix zorder of axis, and ticks
r272 }
Michal Klocek
Refactors axis handling...
r223 m_thicksList.clear();
Michal Klocek
Adds more axis handling...
r176 }
void AxisItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
Michal Klocek
Refactors axis layout managment...
r291 Q_UNUSED(painter);
Q_UNUSED(option);
Q_UNUSED(widget);
Michal Klocek
Adds more axis handling...
r176 }
Michal Klocek
Refactors axis layout managment...
r291 void AxisItem::updateItems(QVector<qreal>& vector)
Michal Klocek
Add zoom support...
r67 {
Michal Klocek
Refactors axis layout managment...
r291 calculateLayout(vector);
if(vector.count()==0) return;
applyLayout(vector);
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 }
Michal Klocek
Adds more axis handling...
r176
Michal Klocek
Refactors axis handling...
r223 void AxisItem::handleAxisUpdate(QChartAxis* axis)
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 {
Michal Klocek
Adds animation settings handling
r298 if(m_layoutVector.count()==0) return;
Michal Klocek
Refactors axis handling...
r223 if(axis->isAxisVisible()) {
Michal Klocek
minor. code formating
r189 setAxisOpacity(100);
}
else {
setAxisOpacity(0);
Michal Klocek
Fixes wrong shades zvalues
r184 }
Michal Klocek
Refactors axis handling...
r223 if(axis->isGridVisible()) {
Michal Klocek
Adds more axis handling...
r176 setGridOpacity(100);
}
else {
setGridOpacity(0);
}
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Refactors axis handling...
r223 if(axis->isLabelsVisible())
Michal Klocek
Adds more axis handling...
r176 {
setLabelsOpacity(100);
}
else {
setLabelsOpacity(0);
}
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Refactors axis handling...
r223 if(axis->isShadesVisible()) {
setShadesOpacity(axis->shadesOpacity());
Michal Klocek
Adds more axis handling...
r176 }
else {
setShadesOpacity(0);
}
Michal Klocek
Refactors axis handling...
r223 setLabelsAngle(axis->labelsAngle());
setAxisPen(axis->axisPen());
setLabelsPen(axis->labelsPen());
setLabelsBrush(axis->labelsBrush());
Michal Klocek
minor. compilation fix
r332 setLabelsFont(axis->labelsFont());
Michal Klocek
Refactors axis handling...
r223 setGridPen(axis->gridPen());
setShadesPen(axis->shadesPen());
setShadesBrush(axis->shadesBrush());
Michal Klocek
Adds more axis handling...
r176 }
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Bugfix shades not updated aftet tick changed
r241 void AxisItem::handleLabelsChanged(QChartAxis* axis,const QStringList& labels)
Michal Klocek
Adds more axis handling...
r176 {
Michal Klocek
Refactors axis layout managment...
r291 int diff = m_thicksList.size() - labels.size();
if(diff>0){
clear(diff);
}else if(diff<0){
createItems(-diff);
Michal Klocek
Refactors axis handling...
r223 }
Michal Klocek
Refactors axis layout managment...
r291 m_thicksList=labels;
m_layoutVector.resize(m_thicksList.size());
updateItems(m_layoutVector);
Michal Klocek
Adds animation settings handling
r298 if(diff!=0) handleAxisUpdate(axis);
Michal Klocek
Adds more axis handling...
r176 }
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Adds more axis handling...
r176 void AxisItem::handleGeometryChanged(const QRectF& rect)
{
m_rect = rect;
Michal Klocek
Refactors axis layout managment...
r291 updateItems(m_layoutVector);
Michal Klocek
Adds more axis handling...
r176 }
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Fixes wrong shades zvalues
r184 void AxisItem::setAxisOpacity(qreal opacity)
{
m_axis.setOpacity(opacity);
}
qreal AxisItem::axisOpacity() const
{
return m_axis.opacity();
}
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setGridOpacity(qreal opacity)
{
m_grid.setOpacity(opacity);
}
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Adds more axis handling...
r176 qreal AxisItem::gridOpacity() const
{
return m_grid.opacity();
}
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setLabelsOpacity(qreal opacity)
{
m_labels.setOpacity(opacity);
}
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Adds more axis handling...
r176 qreal AxisItem::labelsOpacity() const
{
return m_labels.opacity();
}
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setShadesOpacity(qreal opacity)
{
m_shades.setOpacity(opacity);
}
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85
Michal Klocek
Adds more axis handling...
r176 qreal AxisItem::shadesOpacity() const
{
return m_shades.opacity();
}
Michal Klocek
Add zoom support...
r67
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setLabelsAngle(int angle)
{
foreach(QGraphicsItem* item , m_labels.childItems()) {
QPointF center = item->boundingRect().center();
item->setRotation(angle);
Michal Klocek
Fix previous broken commit
r145 }
Michal Klocek
Adds more axis handling...
r176
m_labelsAngle=angle;
Michal Klocek
Add zoom support...
r67 }
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setLabelsPen(const QPen& pen)
Michal Klocek
Adds refactored axis to presenter
r140 {
Michal Klocek
Adds more axis handling...
r176 foreach(QGraphicsItem* item , m_labels.childItems()) {
static_cast<QGraphicsSimpleTextItem*>(item)->setPen(pen);
}
Michal Klocek
Adds refactored axis to presenter
r140 }
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setLabelsBrush(const QBrush& brush)
Michal Klocek
Adds refactored axis to presenter
r140 {
Michal Klocek
Adds more axis handling...
r176 foreach(QGraphicsItem* item , m_labels.childItems()) {
static_cast<QGraphicsSimpleTextItem*>(item)->setBrush(brush);
}
Michal Klocek
Adds refactored axis to presenter
r140 }
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setLabelsFont(const QFont& font)
Michal Klocek
Adds refactored axis to presenter
r140 {
Michal Klocek
Adds more axis handling...
r176 foreach(QGraphicsItem* item , m_labels.childItems()) {
static_cast<QGraphicsSimpleTextItem*>(item)->setFont(font);
}
Michal Klocek
Adds refactored axis to presenter
r140 }
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setShadesBrush(const QBrush& brush)
Michal Klocek
Adds refactored axis to presenter
r140 {
Michal Klocek
Adds more axis handling...
r176 foreach(QGraphicsItem* item , m_shades.childItems()) {
static_cast<QGraphicsRectItem*>(item)->setBrush(brush);
}
Michal Klocek
Adds refactored axis to presenter
r140 }
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setShadesPen(const QPen& pen)
Michal Klocek
Adds refactored axis to presenter
r140 {
Michal Klocek
Adds more axis handling...
r176 foreach(QGraphicsItem* item , m_shades.childItems()) {
static_cast<QGraphicsRectItem*>(item)->setPen(pen);
}
}
Michal Klocek
Fixes wrong shades zvalues
r184 void AxisItem::setAxisPen(const QPen& pen)
{
Michal Klocek
Fix zorder of axis, and ticks
r272 foreach(QGraphicsItem* item , m_axis.childItems()) {
static_cast<QGraphicsLineItem*>(item)->setPen(pen);
}
Michal Klocek
Fixes wrong shades zvalues
r184 }
Michal Klocek
Adds more axis handling...
r176 void AxisItem::setGridPen(const QPen& pen)
{
foreach(QGraphicsItem* item , m_grid.childItems()) {
static_cast<QGraphicsLineItem*>(item)->setPen(pen);
}
}
Michal Klocek
Refactors axis layout managment...
r291 void AxisItem::calculateLayout(QVector<qreal>& points)
{
switch (m_type)
{
case X_AXIS:
{
const qreal deltaX = m_rect.width()/(m_thicksList.size()-1);
for (int i = 0; i < m_thicksList.size(); ++i) {
int x = i * deltaX + m_rect.left();
points[i]=x;
}
}
break;
case Y_AXIS:
{
const qreal deltaY = m_rect.height()/(m_thicksList.size()-1);
for (int i = 0; i < m_thicksList.size(); ++i) {
int y = i * -deltaY + m_rect.bottom();
points[i]=y;
}
}
break;
}
}
void AxisItem::applyLayout(const QVector<qreal>& points)
{
Q_ASSERT(points.size() == m_thicksList.size());
QList<QGraphicsItem *> lines = m_grid.childItems();
QList<QGraphicsItem *> labels = m_labels.childItems();
QList<QGraphicsItem *> shades = m_shades.childItems();
QList<QGraphicsItem *> axis = m_axis.childItems();
Q_ASSERT(labels.size() == m_thicksList.size());
switch (m_type)
{
case X_AXIS:
{
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(axis.at(0));
lineItem->setLine(m_rect.left(), m_rect.bottom(), m_rect.right(), m_rect.bottom());
for (int i = 0; i < points.size(); ++i) {
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(lines.at(i));
lineItem->setLine(points[i], m_rect.top(), points[i], m_rect.bottom());
QGraphicsSimpleTextItem *labelItem = static_cast<QGraphicsSimpleTextItem*>(labels.at(i));
labelItem->setText(m_thicksList.at(i));
QPointF center = labelItem->boundingRect().center();
labelItem->setTransformOriginPoint(center.x(), center.y());
labelItem->setPos(points[i] - center.x(), m_rect.bottom() + label_padding);
if(i%2){
QGraphicsRectItem *rectItem = static_cast<QGraphicsRectItem*>(shades.at(i/2));
rectItem->setRect(points[i],m_rect.top(),points[i+1]-points[i],m_rect.height());
}
lineItem = static_cast<QGraphicsLineItem*>(axis.at(i+1));
lineItem->setLine(points[i],m_rect.bottom(),points[i],m_rect.bottom()+5);
}
}
break;
case Y_AXIS:
{
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(axis.at(0));
lineItem->setLine(m_rect.left() , m_rect.top(), m_rect.left(), m_rect.bottom());
for (int i = 0; i < points.size(); ++i) {
QGraphicsLineItem *lineItem = static_cast<QGraphicsLineItem*>(lines.at(i));
lineItem->setLine(m_rect.left() , points[i], m_rect.right(), points[i]);
QGraphicsSimpleTextItem *labelItem = static_cast<QGraphicsSimpleTextItem*>(labels.at(i));
labelItem->setText(m_thicksList.at(i));
QPointF center = labelItem->boundingRect().center();
labelItem->setTransformOriginPoint(center.x(), center.y());
labelItem->setPos(m_rect.left() - labelItem->boundingRect().width() - label_padding , points[i]-center.y());
if(i%2){
QGraphicsRectItem *rectItem = static_cast<QGraphicsRectItem*>(shades.at(i/2));
rectItem->setRect(m_rect.left(),points[i],m_rect.width(),points[i]-points[i+1]);
}
lineItem = static_cast<QGraphicsLineItem*>(axis.at(i+1));
lineItem->setLine(m_rect.left()-5,points[i],m_rect.left(),points[i]);
}
}
break;
default:
qDebug()<<"Unknown axis type";
break;
}
}
Michal Klocek
Adds refactored axis to presenter
r140
Michal Klocek
Add zoom support...
r67 //TODO "nice numbers algorithm"
Michal Klocek
Adds refactored axis to presenter
r140 #include "moc_axisitem_p.cpp"
Michal Klocek
Add zoom support...
r67
QTCOMMERCIALCHART_END_NAMESPACE