qabstractaxis_p.h
129 lines
| 3.3 KiB
| text/x-c
|
CLexer
Michal Klocek
|
r1540 | /**************************************************************************** | ||
** | ||||
** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
// 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. | ||||
#ifndef QABSTRACTAXIS_P_H | ||||
#define QABSTRACTAXIS_P_H | ||||
#include "qabstractaxis.h" | ||||
Michal Klocek
|
r2273 | #include "chartaxis_p.h" | ||
#include "qchart.h" | ||||
#include <QDebug> | ||||
class QGraphicsItem; | ||||
Michal Klocek
|
r1540 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1556 | class ChartPresenter; | ||
Marek Rosa
|
r2275 | class AbstractDomain; | ||
Michal Klocek
|
r2273 | class QChart; | ||
class QAbstractSeries; | ||||
class ChartTheme; | ||||
class ChartElement; | ||||
Michal Klocek
|
r1556 | |||
Michal Klocek
|
r1698 | class QTCOMMERCIALCHART_AUTOTEST_EXPORT QAbstractAxisPrivate : public QObject | ||
Michal Klocek
|
r1540 | { | ||
Q_OBJECT | ||||
public: | ||||
QAbstractAxisPrivate(QAbstractAxis *q); | ||||
~QAbstractAxisPrivate(); | ||||
Michal Klocek
|
r1556 | public: | ||
Michal Klocek
|
r2273 | Qt::Alignment alignment() const { return m_alignment; } | ||
Michal Klocek
|
r1698 | Qt::Orientation orientation() const { return m_orientation; } | ||
Michal Klocek
|
r2273 | void setAlignment( Qt::Alignment alignment); | ||
Michal Klocek
|
r1698 | |||
Marek Rosa
|
r2275 | virtual void initializeDomain(AbstractDomain *domain) = 0; | ||
Michal Klocek
|
r2273 | virtual void initializeGraphics(QGraphicsItem* parent) = 0; | ||
virtual void initializeTheme(ChartTheme* theme, bool forced = false); | ||||
virtual void initializeAnimations(QChart::AnimationOptions options); | ||||
Michal Klocek
|
r1698 | |||
Michal Klocek
|
r2273 | //interface for manipulating range form base class | ||
virtual void setMin(const QVariant &min) = 0; | ||||
sauimone
|
r1578 | virtual void setMax(const QVariant &max) = 0; | ||
Michal Klocek
|
r2273 | virtual void setRange(const QVariant &min, const QVariant &max) = 0; | ||
Michal Klocek
|
r1698 | |||
Michal Klocek
|
r2273 | //interface manipulating range form domain | ||
virtual void setRange(qreal min, qreal max) = 0; | ||||
virtual qreal min() = 0; | ||||
virtual qreal max() = 0; | ||||
Michal Klocek
|
r1725 | |||
Michal Klocek
|
r2273 | ChartAxis* axisItem() { return m_item.data(); } | ||
Michal Klocek
|
r1544 | |||
Michal Klocek
|
r1698 | public Q_SLOTS: | ||
Michal Klocek
|
r2273 | void handleRangeChanged(qreal min, qreal max); | ||
Michal Klocek
|
r1698 | |||
Q_SIGNALS: | ||||
Michal Klocek
|
r2273 | void rangeChanged(qreal min, qreal max); | ||
Michal Klocek
|
r1698 | |||
protected: | ||||
Michal Klocek
|
r1540 | QAbstractAxis *q_ptr; | ||
Michal Klocek
|
r2273 | QChart *m_chart; | ||
QScopedPointer<ChartAxis> m_item; | ||||
private: | ||||
QList<QAbstractSeries*> m_series; | ||||
Michal Klocek
|
r2105 | Qt::Alignment m_alignment; | ||
Michal Klocek
|
r2273 | Qt::Orientation m_orientation; | ||
Michal Klocek
|
r1698 | |||
Michal Klocek
|
r1617 | bool m_visible; | ||
Michal Klocek
|
r1540 | |||
sauimone
|
r1654 | bool m_arrowVisible; | ||
Michal Klocek
|
r1540 | QPen m_axisPen; | ||
QBrush m_axisBrush; | ||||
bool m_gridLineVisible; | ||||
QPen m_gridLinePen; | ||||
bool m_labelsVisible; | ||||
QPen m_labelsPen; | ||||
QBrush m_labelsBrush; | ||||
QFont m_labelsFont; | ||||
int m_labelsAngle; | ||||
Michal Klocek
|
r1965 | bool m_titleVisible; | ||
QPen m_titlePen; | ||||
QBrush m_titleBrush; | ||||
QFont m_titleFont; | ||||
QString m_title; | ||||
Michal Klocek
|
r1540 | bool m_shadesVisible; | ||
QPen m_shadesPen; | ||||
QBrush m_shadesBrush; | ||||
qreal m_shadesOpacity; | ||||
Michal Klocek
|
r1698 | bool m_dirty; | ||
sauimone
|
r1566 | |||
Michal Klocek
|
r1540 | friend class QAbstractAxis; | ||
Michal Klocek
|
r1725 | friend class ChartDataSet; | ||
Michal Klocek
|
r2273 | friend class ChartPresenter; | ||
Michal Klocek
|
r1540 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||