axisitem_p.h
143 lines
| 3.6 KiB
| text/x-c
|
CLexer
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
** Copyright (C) 2012 Digia Plc | ||||
** All rights reserved. | ||||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
** This file is part of the Qt Commercial Charts Add-on. | ||||
** | ||||
** $QT_BEGIN_LICENSE$ | ||||
** Licensees holding valid Qt Commercial licenses may use this file in | ||||
** accordance with the Qt Commercial License Agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and Digia. | ||||
** | ||||
** If you have questions regarding the use of this file, please use | ||||
** contact form at http://qt.digia.com | ||||
** $QT_END_LICENSE$ | ||||
** | ||||
****************************************************************************/ | ||||
Michal Klocek
|
r67 | #ifndef AXISITEM_H_ | ||
#define AXISITEM_H_ | ||||
Michal Klocek
|
r855 | #include "qchartglobal.h" | ||
Michal Klocek
|
r677 | #include "chart_p.h" | ||
Michal Klocek
|
r67 | #include <QGraphicsItem> | ||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r140 | class QChartAxis; | ||
Michal Klocek
|
r530 | class ChartPresenter; | ||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r677 | class Axis : public Chart | ||
Michal Klocek
|
r67 | { | ||
Michal Klocek
|
r140 | Q_OBJECT | ||
Michal Klocek
|
r67 | public: | ||
enum AxisType{X_AXIS,Y_AXIS}; | ||||
sauimone
|
r745 | Axis(QChartAxis *axis, ChartPresenter *presenter, AxisType type = X_AXIS); | ||
Michal Klocek
|
r677 | ~Axis(); | ||
Michal Klocek
|
r67 | |||
Tero Ahola
|
r760 | AxisType axisType() const { return m_type; } | ||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r184 | void setAxisOpacity(qreal opacity); | ||
qreal axisOpacity() const; | ||||
Michal Klocek
|
r176 | void setGridOpacity(qreal opacity); | ||
qreal gridOpacity() const; | ||||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r176 | void setLabelsOpacity(qreal opacity); | ||
qreal labelsOpacity() const; | ||||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r176 | void setShadesOpacity(qreal opacity); | ||
qreal shadesOpacity() const; | ||||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r176 | void setLabelsAngle(int angle); | ||
int labelsAngle()const { return m_labelsAngle; } | ||||
sauimone
|
r745 | void setShadesBrush(const QBrush &brush); | ||
void setShadesPen(const QPen &pen); | ||||
Michal Klocek
|
r140 | |||
sauimone
|
r745 | void setAxisPen(const QPen &pen); | ||
void setGridPen(const QPen &pen); | ||||
Michal Klocek
|
r176 | |||
sauimone
|
r745 | void setLabelsPen(const QPen &pen); | ||
void setLabelsBrush(const QBrush &brush); | ||||
void setLabelsFont(const QFont &font); | ||||
Michal Klocek
|
r176 | |||
Michal Klocek
|
r513 | inline QRectF geometry() const { return m_rect; } | ||
Tero Ahola
|
r760 | inline QVector<qreal> layout() { return m_layoutVector; } | ||
Michal Klocek
|
r504 | |||
sauimone
|
r775 | public Q_SLOTS: | ||
Michal Klocek
|
r502 | void handleAxisUpdated(); | ||
void handleAxisCategoriesUpdated(); | ||||
Michal Klocek
|
r531 | void handleRangeChanged(qreal min , qreal max,int tickCount); | ||
sauimone
|
r745 | void handleGeometryChanged(const QRectF &size); | ||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r393 | |||
Michal Klocek
|
r85 | private: | ||
Michal Klocek
|
r452 | inline bool isEmpty(); | ||
Michal Klocek
|
r223 | void createItems(int count); | ||
Michal Klocek
|
r502 | void deleteItems(int count); | ||
Michal Klocek
|
r530 | |||
Michal Klocek
|
r502 | QVector<qreal> calculateLayout() const; | ||
sauimone
|
r745 | void updateLayout(QVector<qreal> &layout); | ||
void setLayout(QVector<qreal> &layout); | ||||
Michal Klocek
|
r530 | |||
sauimone
|
r745 | bool createLabels(QStringList &labels,qreal min, qreal max,int ticks) const; | ||
Michal Klocek
|
r677 | void axisSelected(); | ||
Michal Klocek
|
r497 | |||
Michal Klocek
|
r67 | private: | ||
Michal Klocek
|
r439 | QChartAxis* m_chartAxis; | ||
Michal Klocek
|
r140 | AxisType m_type; | ||
QRectF m_rect; | ||||
Michal Klocek
|
r176 | int m_labelsAngle; | ||
Michal Klocek
|
r788 | QScopedPointer<QGraphicsItemGroup> m_grid; | ||
QScopedPointer<QGraphicsItemGroup> m_shades; | ||||
QScopedPointer<QGraphicsItemGroup> m_labels; | ||||
QScopedPointer<QGraphicsItemGroup> m_axis; | ||||
Michal Klocek
|
r291 | QVector<qreal> m_layoutVector; | ||
Michal Klocek
|
r452 | qreal m_min; | ||
qreal m_max; | ||||
Michal Klocek
|
r502 | int m_ticksCount; | ||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r530 | friend class AxisAnimation; | ||
Michal Klocek
|
r677 | friend class AxisItem; | ||
}; | ||||
class AxisItem: public QGraphicsLineItem | ||||
{ | ||||
public: | ||||
Tero Ahola
|
r760 | AxisItem(Axis *axis, QGraphicsItem *parent = 0) : QGraphicsLineItem(parent), m_axis(axis) {} | ||
Michal Klocek
|
r677 | |||
protected: | ||||
void mousePressEvent(QGraphicsSceneMouseEvent *event) | ||||
{ | ||||
Q_UNUSED(event) | ||||
m_axis->axisSelected(); | ||||
} | ||||
QRectF boundingRect() const | ||||
{ | ||||
Michal Klocek
|
r679 | return shape().boundingRect(); | ||
Michal Klocek
|
r677 | } | ||
QPainterPath shape() const | ||||
{ | ||||
Michal Klocek
|
r679 | QPainterPath path = QGraphicsLineItem::shape(); | ||
QRectF rect = path.boundingRect(); | ||||
path.addRect(rect.adjusted(0,0,m_axis->axisType()!=Axis::X_AXIS?8:0,m_axis->axisType()!=Axis::Y_AXIS?8:0)); | ||||
Michal Klocek
|
r677 | return path; | ||
} | ||||
Michal Klocek
|
r679 | |||
Michal Klocek
|
r677 | private: | ||
Axis* m_axis; | ||||
Michal Klocek
|
r530 | |||
Michal Klocek
|
r67 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif /* AXISITEM_H_ */ | ||||