|
|
#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(QChartAxis* axis,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 handleAxisUpdated();//qchartaxis update calls
|
|
|
void handleRangeChanged(qreal min , qreal max); //domain update calls
|
|
|
void handleGeometryChanged(const QRectF& size); //geometry update calls
|
|
|
|
|
|
public:
|
|
|
virtual void updateItems(QVector<qreal>& oldLayout,QVector<qreal>& newLayout);
|
|
|
QVector<qreal> calculateLayout() const;
|
|
|
void applyLayout(const QVector<qreal>& points);
|
|
|
|
|
|
private:
|
|
|
void clear(int count);
|
|
|
void createItems(int count);
|
|
|
QStringList createLabels(int ticks, qreal min, qreal max);
|
|
|
private:
|
|
|
QChartAxis* m_chartAxis;
|
|
|
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_ */
|
|
|
|