##// END OF EJS Templates
Removed the visible frame around chart view
Removed the visible frame around chart view

File last commit:

r694:08035ff71c15
r700:4707806c8913
Show More
barchartitem_p.h
78 lines | 2.0 KiB | text/x-c | CLexer
#ifndef BARCHARTITEM_H
#define BARCHARTITEM_H
#include "chartitem_p.h"
#include "qbarseries.h"
#include <QPen>
#include <QBrush>
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class Bar;
class BarValue;
class QChartAxisCategories;
class QChart;
//typedef QVector<QRectF> BarLayout;
class BarChartItem : public ChartItem
{
Q_OBJECT
public:
BarChartItem(QBarSeries *series, ChartPresenter *presenter);
virtual ~BarChartItem();
// Common implemantation of different presenters. Not to be instantiated.
// TODO: combine this with BarPresenter and derive other presenters from it?
public:
// From QGraphicsItem
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
QRectF boundingRect() const;
// TODO: Consider the domain for layoutChanged. May be use case, may not be. If it is, then the derived classes need to implement it
virtual void dataChanged(); // data of series has changed -> need to recalculate bar sizes
private slots:
public:
virtual QVector<QRectF> calculateLayout();
void applyLayout(const QVector<QRectF> &layout);
void setLayout(const QVector<QRectF> &layout);
void updateLayout(const QVector<QRectF> &layout);
QRectF geometry() const { return m_rect;}
protected:
void initAxisLabels();
public slots:
void handleModelChanged(int index);
void handleDomainChanged(qreal minX, qreal maxX, qreal minY, qreal maxY);
void handleGeometryChanged(const QRectF& size);
void handleLayoutChanged();
// Internal slots
void showToolTip(QPoint pos, QString tip); // shows tooltip (if enabled)
protected:
// TODO: consider these.
qreal mDomainMinX;
qreal mDomainMaxX;
qreal mDomainMinY;
qreal mDomainMaxY;
QRectF m_rect;
bool mLayoutSet; // True, if component has been laid out.
QVector<QRectF> mLayout;
// Not owned.
QBarSeries* mSeries;
QList<Bar*> mBars;
QList<BarValue*> mFloatingValues;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // BARCHARTITEM_H