##// END OF EJS Templates
enablers for tooltip and floating values, bug fixing, updated examples. tidying up the code
enablers for tooltip and floating values, bug fixing, updated examples. tidying up the code

File last commit:

r291:2b7ffa40a22f
r296:8254aab7233d
Show More
axisitem_p.h
78 lines | 2.0 KiB | text/x-c | CLexer
#ifndef AXISITEM_H_
#define AXISITEM_H_
#include "domain_p.h"
#include "chartitem_p.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QChartAxis;
class AxisItem : public QObject, public ChartItem
{
Q_OBJECT
public:
enum AxisType{X_AXIS,Y_AXIS};
AxisItem(AxisType type = X_AXIS,QGraphicsItem* parent = 0);
~AxisItem();
//from QGraphicsItem
QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
AxisType axisType() const {return m_type;};
void setAxisOpacity(qreal opacity);
qreal axisOpacity() const;
void setGridOpacity(qreal opacity);
qreal gridOpacity() const;
void setLabelsOpacity(qreal opacity);
qreal labelsOpacity() const;
void setShadesOpacity(qreal opacity);
qreal shadesOpacity() const;
void setLabelsAngle(int angle);
int labelsAngle()const { return m_labelsAngle; }
void setShadesBrush(const QBrush& brush);
void setShadesPen(const QPen& pen);
void setAxisPen(const QPen& pen);
void setGridPen(const QPen& pen);
void setLabelsPen(const QPen& pen);
void setLabelsBrush(const QBrush& brush);
void setLabelsFont(const QFont& font);
public slots:
void handleAxisUpdate(QChartAxis* axis); //look and feel
void handleLabelsChanged(QChartAxis* axis,const QStringList& labels); //labels from dataset
void handleGeometryChanged(const QRectF& size); // geometry from presenter
public:
virtual void updateItems(QVector<qreal>& points);
virtual void calculateLayout(QVector<qreal>& points);
virtual void applyLayout(const QVector<qreal>& points);
private:
void clear(int count);
void createItems(int count);
private:
AxisType m_type;
QRectF m_rect;
int m_labelsAngle;
QGraphicsItemGroup m_grid;
QGraphicsItemGroup m_shades;
QGraphicsItemGroup m_labels;
QGraphicsItemGroup m_axis;
QStringList m_thicksList;
QVector<qreal> m_layoutVector;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* AXISITEM_H_ */