chartpresenter_p.h
180 lines
| 5.1 KiB
| text/x-c
|
CLexer
/ src / chartpresenter_p.h
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Jani Honkonen
|
r794 | ** 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" | ||||
Miikka Heikkinen
|
r2439 | #include "qchart.h" //because of QChart::ChartThemeId | ||
Michal Klocek
|
r131 | #include <QRectF> | ||
Michal Klocek
|
r1883 | #include <QMargins> | ||
Michal Klocek
|
r131 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r2273 | class ChartItem; | ||
class AxisItem; | ||||
Tero Ahola
|
r988 | class QAbstractSeries; | ||
Michal Klocek
|
r131 | class ChartDataSet; | ||
Marek Rosa
|
r2275 | class AbstractDomain; | ||
Miikka Heikkinen
|
r2483 | class ChartAxisElement; | ||
Michal Klocek
|
r530 | class ChartAnimator; | ||
Michal Klocek
|
r1006 | class ChartBackground; | ||
Michal Klocek
|
r1965 | class ChartTitle; | ||
Michal Klocek
|
r1241 | class ChartAnimation; | ||
Miikka Heikkinen
|
r2483 | class AbstractChartLayout; | ||
Michal Klocek
|
r131 | |||
class ChartPresenter: public QObject | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
Tero Ahola
|
r375 | enum ZValues { | ||
BackgroundZValue = -1, | ||||
Miikka Heikkinen
|
r2498 | PlotAreaZValue, | ||
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, | ||||
Mika Salmela
|
r2548 | BoxPlotSeriesZValue = 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 | |||
Miikka Heikkinen
|
r2483 | ChartPresenter(QChart *chart, QChart::ChartType type); | ||
Michal Klocek
|
r131 | virtual ~ChartPresenter(); | ||
Michal Klocek
|
r139 | |||
Michal Klocek
|
r2273 | |||
void setGeometry(QRectF rect); | ||||
QRectF geometry() const; | ||||
QGraphicsItem *rootItem(){ return m_chart; } | ||||
Jani Honkonen
|
r2131 | ChartBackground *backgroundElement(); | ||
Miikka Heikkinen
|
r2498 | QAbstractGraphicsShapeItem *plotAreaElement(); | ||
Jani Honkonen
|
r2131 | ChartTitle *titleElement(); | ||
Miikka Heikkinen
|
r2483 | QList<ChartAxisElement *> axisItems() const; | ||
Michal Klocek
|
r2273 | QList<ChartItem *> chartItems() const; | ||
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; | ||
Miikka Heikkinen
|
r2549 | void setBackgroundRoundness(qreal diameter); | ||
qreal backgroundRoundness() const; | ||||
Miikka Heikkinen
|
r2498 | void setPlotAreaBackgroundBrush(const QBrush &brush); | ||
QBrush plotAreaBackgroundBrush() const; | ||||
void setPlotAreaBackgroundPen(const QPen &pen); | ||||
QPen plotAreaBackgroundPen() 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; | ||||
Miikka Heikkinen
|
r2498 | void setPlotAreaBackgroundVisible(bool visible); | ||
bool isPlotAreaBackgroundVisible() const; | ||||
Michal Klocek
|
r1534 | void setBackgroundDropShadowEnabled(bool enabled); | ||
bool isBackgroundDropShadowEnabled() const; | ||||
void setVisible(bool visible); | ||||
Michal Klocek
|
r131 | |||
Michal Klocek
|
r298 | void setAnimationOptions(QChart::AnimationOptions options); | ||
QChart::AnimationOptions animationOptions() const; | ||||
Jani Honkonen
|
r2131 | void startAnimation(ChartAnimation *animation); | ||
Michal Klocek
|
r2273 | |||
Miikka Heikkinen
|
r2477 | //TODO refactor | ||
Michal Klocek
|
r2273 | void setState(State state,QPointF point); | ||
Michal Klocek
|
r1241 | State state() const { return m_state; } | ||
QPointF statePoint() const { return m_statePoint; } | ||||
Miikka Heikkinen
|
r2483 | AbstractChartLayout *layout(); | ||
QChart::ChartType chartType() const { return m_chart->chartType(); } | ||||
Miikka Heikkinen
|
r2498 | QChart *chart() { return m_chart; } | ||
Michal Klocek
|
r1534 | |||
Miikka Heikkinen
|
r2539 | static QRectF textBoundingRect(const QFont &font, const QString &text, qreal angle = 0.0); | ||
static QString truncatedText(const QFont &font, const QString &text, qreal angle, qreal maxSize, | ||||
Qt::Orientation constraintOrientation, QRectF &boundingRect); | ||||
Michal Klocek
|
r1534 | private: | ||
void createBackgroundItem(); | ||||
Miikka Heikkinen
|
r2498 | void createPlotAreaBackgroundItem(); | ||
Michal Klocek
|
r1534 | void createTitleItem(); | ||
Michal Klocek
|
r131 | |||
sauimone
|
r775 | public Q_SLOTS: | ||
Michal Klocek
|
r2273 | void handleSeriesAdded(QAbstractSeries *series); | ||
Jani Honkonen
|
r2131 | void handleSeriesRemoved(QAbstractSeries *series); | ||
Michal Klocek
|
r2273 | void handleAxisAdded(QAbstractAxis *axis); | ||
Jani Honkonen
|
r2131 | void handleAxisRemoved(QAbstractAxis *axis); | ||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r131 | private: | ||
Jani Honkonen
|
r2131 | QChart *m_chart; | ||
Michal Klocek
|
r2273 | QList<ChartItem *> m_chartItems; | ||
Miikka Heikkinen
|
r2483 | QList<ChartAxisElement *> m_axisItems; | ||
Michal Klocek
|
r2273 | QList<QAbstractSeries *> m_series; | ||
QList<QAbstractAxis *> m_axes; | ||||
Michal Klocek
|
r298 | QChart::AnimationOptions m_options; | ||
Michal Klocek
|
r1241 | State m_state; | ||
QPointF m_statePoint; | ||||
Miikka Heikkinen
|
r2483 | AbstractChartLayout *m_layout; | ||
Jani Honkonen
|
r2131 | ChartBackground *m_background; | ||
Miikka Heikkinen
|
r2498 | QAbstractGraphicsShapeItem *m_plotAreaBackground; | ||
Jani Honkonen
|
r2131 | ChartTitle *m_title; | ||
Michal Klocek
|
r2273 | QRectF m_rect; | ||
Michal Klocek
|
r131 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
Jani Honkonen
|
r1935 | #endif /* CHARTPRESENTER_H */ | ||