chartaxis_p.h
157 lines
| 4.1 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$ | ||||
** | ||||
****************************************************************************/ | ||||
unknown
|
r1366 | // W A R N I N G | ||
// ------------- | ||||
// | ||||
// This file is not part of the QtCommercial Chart API. It exists purely as an | ||||
// implementation detail. This header file may change from version to | ||||
// version without notice, or even be removed. | ||||
// | ||||
// We mean it. | ||||
Michal Klocek
|
r1241 | #ifndef CHARTAXIS_H | ||
#define CHARTAXIS_H | ||||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r855 | #include "qchartglobal.h" | ||
Michal Klocek
|
r677 | #include "chart_p.h" | ||
Michal Klocek
|
r1241 | #include "axisanimation_p.h" | ||
Michal Klocek
|
r67 | #include <QGraphicsItem> | ||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1006 | class QAxis; | ||
Michal Klocek
|
r530 | class ChartPresenter; | ||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r1006 | class ChartAxis : public Chart | ||
Michal Klocek
|
r67 | { | ||
Michal Klocek
|
r140 | Q_OBJECT | ||
Michal Klocek
|
r67 | public: | ||
Michal Klocek
|
r1241 | enum AxisType{ X_AXIS,Y_AXIS }; | ||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r1241 | ChartAxis(QAxis *axis, ChartPresenter *presenter); | ||
Michal Klocek
|
r1006 | ~ChartAxis(); | ||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r1241 | virtual AxisType axisType() const = 0; | ||
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
|
r1241 | void setLayout(QVector<qreal> &layout); | ||
QVector<qreal> layout() const { return m_layoutVector; } | ||||
void setAnimation(AxisAnimation* animation); | ||||
ChartAnimation* animation() const { return m_animation; }; | ||||
QRectF geometry() const { return m_rect; } | ||||
protected: | ||||
virtual void updateGeometry() = 0; | ||||
virtual QVector<qreal> calculateLayout() const = 0; | ||||
bool createLabels(QStringList &labels,qreal min, qreal max,int ticks) const; | ||||
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
|
r85 | private: | ||
Michal Klocek
|
r452 | inline bool isEmpty(); | ||
Michal Klocek
|
r223 | void createItems(int count); | ||
Michal Klocek
|
r502 | void deleteItems(int count); | ||
sauimone
|
r745 | void updateLayout(QVector<qreal> &layout); | ||
Michal Klocek
|
r677 | void axisSelected(); | ||
Michal Klocek
|
r497 | |||
Michal Klocek
|
r1241 | protected: | ||
Michal Klocek
|
r1006 | QAxis* m_chartAxis; | ||
Michal Klocek
|
r140 | 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
|
r1241 | AxisAnimation *m_animation; | ||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r530 | friend class AxisAnimation; | ||
Michal Klocek
|
r677 | friend class AxisItem; | ||
}; | ||||
class AxisItem: public QGraphicsLineItem | ||||
{ | ||||
Michal Klocek
|
r967 | public: | ||
Michal Klocek
|
r1006 | explicit AxisItem(ChartAxis *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(); | ||||
Michal Klocek
|
r1006 | path.addRect(rect.adjusted(0,0,m_axis->axisType()!=ChartAxis::X_AXIS?8:0,m_axis->axisType()!=ChartAxis::Y_AXIS?8:0)); | ||
Michal Klocek
|
r677 | return path; | ||
} | ||||
Michal Klocek
|
r679 | |||
Michal Klocek
|
r677 | private: | ||
Michal Klocek
|
r1006 | ChartAxis* m_axis; | ||
Michal Klocek
|
r530 | |||
Michal Klocek
|
r67 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif /* AXISITEM_H_ */ | ||||