qabstractaxis_p.h
116 lines
| 2.8 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" | ||||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1556 | class ChartPresenter; | ||
class ChartAxis; | ||||
Michal Klocek
|
r1661 | class Domain; | ||
Michal Klocek
|
r1725 | class ChartDataSet; | ||
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
|
r1698 | |||
Michal Klocek
|
r1556 | virtual ChartAxis* createGraphics(ChartPresenter* presenter) = 0; | ||
Michal Klocek
|
r1695 | virtual void intializeDomain(Domain* domain) = 0; | ||
Michal Klocek
|
r1556 | |||
Michal Klocek
|
r1698 | void emitUpdated(); | ||
void setDirty(bool dirty); | ||||
Marek Rosa
|
r1743 | bool isDirty(){ return m_dirty; } | ||
Michal Klocek
|
r1698 | void setOrientation(Qt::Orientation orientation); | ||
Qt::Orientation orientation() const { return m_orientation; } | ||||
sauimone
|
r1578 | virtual void setMin(const QVariant &min) = 0; | ||
Michal Klocek
|
r1698 | virtual qreal min() = 0; | ||
sauimone
|
r1578 | virtual void setMax(const QVariant &max) = 0; | ||
Michal Klocek
|
r1698 | virtual qreal max() = 0; | ||
Michal Klocek
|
r1725 | virtual int count() const = 0; | ||
Michal Klocek
|
r1611 | virtual void setRange(const QVariant &min, const QVariant &max) = 0; | ||
Michal Klocek
|
r1544 | |||
Michal Klocek
|
r1698 | public Q_SLOTS: | ||
virtual void handleDomainUpdated() = 0; | ||||
Q_SIGNALS: | ||||
void updated(); | ||||
protected: | ||||
Michal Klocek
|
r1540 | QAbstractAxis *q_ptr; | ||
Michal Klocek
|
r1698 | Qt::Orientation m_orientation; | ||
Michal Klocek
|
r1725 | ChartDataSet *m_dataset; | ||
Michal Klocek
|
r1698 | |||
private: | ||||
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
|
r1540 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||