chartpresenter_p.h
171 lines
| 4.6 KiB
| text/x-c
|
CLexer
/ src / chartpresenter_p.h
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
|
r969 | #ifndef CHARTPRESENTER_H | ||
#define CHARTPRESENTER_H | ||||
Michal Klocek
|
r131 | |||
#include "qchartglobal.h" | ||||
Michal Klocek
|
r143 | #include "qchart.h" //becouse of QChart::ChartThemeId //TODO | ||
Michal Klocek
|
r131 | #include <QRectF> | ||
Michal Klocek
|
r1883 | #include <QMargins> | ||
Michal Klocek
|
r131 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1736 | class ChartElement; | ||
Tero Ahola
|
r988 | class QAbstractSeries; | ||
Michal Klocek
|
r131 | class ChartDataSet; | ||
class Domain; | ||||
Michal Klocek
|
r1006 | class ChartAxis; | ||
Michal Klocek
|
r143 | class ChartTheme; | ||
Michal Klocek
|
r530 | class ChartAnimator; | ||
Michal Klocek
|
r1006 | class ChartBackground; | ||
Michal Klocek
|
r1965 | class ChartTitle; | ||
Michal Klocek
|
r1241 | class ChartAnimation; | ||
Michal Klocek
|
r1534 | class ChartLayout; | ||
Michal Klocek
|
r131 | |||
class ChartPresenter: public QObject | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
Tero Ahola
|
r375 | enum ZValues { | ||
BackgroundZValue = -1, | ||||
Michal Klocek
|
r1747 | ShadesZValue , | ||
Tero Ahola
|
r375 | GridZValue, | ||
Tero Ahola
|
r1790 | AxisZValue, | ||
Tero Ahola
|
r1260 | SeriesZValue, | ||
LineChartZValue = SeriesZValue, | ||||
Michal Klocek
|
r1747 | SplineChartZValue = SeriesZValue, | ||
Tero Ahola
|
r1260 | BarSeriesZValue = SeriesZValue, | ||
ScatterSeriesZValue = SeriesZValue, | ||||
PieSeriesZValue = SeriesZValue, | ||||
Michal Klocek
|
r1747 | LegendZValue, | ||
TopMostZValue | ||||
Tero Ahola
|
r375 | }; | ||
Tero Ahola
|
r1260 | |||
enum State { | ||||
ShowState, | ||||
Michal Klocek
|
r1241 | ScrollUpState, | ||
ScrollDownState, | ||||
ScrollLeftState, | ||||
ScrollRightState, | ||||
ZoomInState, | ||||
ZoomOutState | ||||
}; | ||||
Michal Klocek
|
r262 | |||
Jani Honkonen
|
r2131 | ChartPresenter(QChart *chart, ChartDataSet *dataset); | ||
Michal Klocek
|
r131 | virtual ~ChartPresenter(); | ||
Michal Klocek
|
r139 | |||
Michal Klocek
|
r742 | ChartTheme *chartTheme() const { return m_chartTheme; } | ||
ChartDataSet *dataSet() const { return m_dataset; } | ||||
Jani Honkonen
|
r2131 | QGraphicsItem *rootItem() const { return m_chart; } | ||
ChartBackground *backgroundElement(); | ||||
ChartTitle *titleElement(); | ||||
QList<ChartAxis *> axisItems() const; | ||||
QList<ChartElement *> chartItems() const; | ||||
Michal Klocek
|
r1534 | |||
Jani Honkonen
|
r2131 | QLegend *legend(); | ||
Michal Klocek
|
r1534 | |||
Jani Honkonen
|
r2131 | void setBackgroundBrush(const QBrush &brush); | ||
Michal Klocek
|
r1534 | QBrush backgroundBrush() const; | ||
Jani Honkonen
|
r2131 | void setBackgroundPen(const QPen &pen); | ||
Michal Klocek
|
r1534 | QPen backgroundPen() const; | ||
Jani Honkonen
|
r2131 | void setTitle(const QString &title); | ||
Michal Klocek
|
r1534 | QString title() const; | ||
Jani Honkonen
|
r2131 | void setTitleFont(const QFont &font); | ||
Michal Klocek
|
r1534 | QFont titleFont() const; | ||
void setTitleBrush(const QBrush &brush); | ||||
QBrush titleBrush() const; | ||||
void setBackgroundVisible(bool visible); | ||||
bool isBackgroundVisible() const; | ||||
void setBackgroundDropShadowEnabled(bool enabled); | ||||
bool isBackgroundDropShadowEnabled() const; | ||||
void setVisible(bool visible); | ||||
Michal Klocek
|
r131 | |||
Jani Honkonen
|
r2131 | void setTheme(QChart::ChartTheme theme, bool force = true); | ||
Michal Klocek
|
r740 | QChart::ChartTheme theme(); | ||
Michal Klocek
|
r143 | |||
Michal Klocek
|
r298 | void setAnimationOptions(QChart::AnimationOptions options); | ||
QChart::AnimationOptions animationOptions() const; | ||||
Jani Honkonen
|
r1187 | void zoomIn(qreal factor); | ||
Jani Honkonen
|
r2131 | void zoomIn(const QRectF &rect); | ||
Jani Honkonen
|
r1187 | void zoomOut(qreal factor); | ||
Jani Honkonen
|
r2131 | void scroll(qreal dx, qreal dy); | ||
Jani Honkonen
|
r659 | |||
Jani Honkonen
|
r2131 | void startAnimation(ChartAnimation *animation); | ||
Michal Klocek
|
r1241 | State state() const { return m_state; } | ||
QPointF statePoint() const { return m_statePoint; } | ||||
Michal Klocek
|
r1534 | |||
Michal Klocek
|
r531 | void resetAllElements(); | ||
Michal Klocek
|
r1534 | |||
Jani Honkonen
|
r2131 | ChartLayout *layout(); | ||
Michal Klocek
|
r1534 | |||
private: | ||||
void createBackgroundItem(); | ||||
void createTitleItem(); | ||||
Michal Klocek
|
r1628 | void selectVisibleAxis(); | ||
Michal Klocek
|
r131 | |||
sauimone
|
r775 | public Q_SLOTS: | ||
Jani Honkonen
|
r2131 | void handleSeriesAdded(QAbstractSeries *series, Domain *domain); | ||
void handleSeriesRemoved(QAbstractSeries *series); | ||||
void handleAxisAdded(QAbstractAxis *axis, Domain *domain); | ||||
void handleAxisRemoved(QAbstractAxis *axis); | ||||
Michal Klocek
|
r1626 | void handleAxisVisibleChanged(bool visible); | ||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r1241 | private Q_SLOTS: | ||
void handleAnimationFinished(); | ||||
sauimone
|
r775 | Q_SIGNALS: | ||
Michal Klocek
|
r1241 | void animationsFinished(); | ||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r131 | private: | ||
Jani Honkonen
|
r2131 | QChart *m_chart; | ||
ChartDataSet *m_dataset; | ||||
Michal Klocek
|
r143 | ChartTheme *m_chartTheme; | ||
Jani Honkonen
|
r2131 | QMap<QAbstractSeries *, ChartElement *> m_chartItems; | ||
QMap<QAbstractAxis *, ChartAxis *> m_axisItems; | ||||
Michal Klocek
|
r298 | QChart::AnimationOptions m_options; | ||
Michal Klocek
|
r1241 | State m_state; | ||
QPointF m_statePoint; | ||||
Jani Honkonen
|
r2131 | QList<ChartAnimation *> m_animations; | ||
ChartLayout *m_layout; | ||||
ChartBackground *m_background; | ||||
ChartTitle *m_title; | ||||
Michal Klocek
|
r131 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
Jani Honkonen
|
r1935 | #endif /* CHARTPRESENTER_H */ | ||