summaryrefslogtreecommitdiffstats
path: root/src/chartpresenter_p.h
blob: 7a78cfdb6a1e4d6d0708a05f9dec52f7cf83a0f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/****************************************************************************
**
** 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 CHARTPRESENTER_H
#define CHARTPRESENTER_H

#include "qchartglobal.h"
#include "qchart.h" //becouse of QChart::ChartThemeId //TODO
#include <QRectF>
#include <QMargins>

QTCOMMERCIALCHART_BEGIN_NAMESPACE

class ChartElement;
class QAbstractSeries;
class ChartDataSet;
class Domain;
class ChartAxis;
class ChartTheme;
class ChartAnimator;
class ChartBackground;
class ChartAnimation;
class ChartLayout;

class ChartPresenter: public QObject
{
    Q_OBJECT
public:
    enum ZValues {
        BackgroundZValue = -1,
        ShadesZValue ,
        GridZValue,
        AxisZValue,
        SeriesZValue,
        LineChartZValue = SeriesZValue,
        SplineChartZValue = SeriesZValue,
        BarSeriesZValue = SeriesZValue,
        ScatterSeriesZValue = SeriesZValue,
        PieSeriesZValue = SeriesZValue,
        LegendZValue,
        TopMostZValue
    };

    enum State {
        ShowState,
        ScrollUpState,
        ScrollDownState,
        ScrollLeftState,
        ScrollRightState,
        ZoomInState,
        ZoomOutState
    };

    ChartPresenter(QChart* chart,ChartDataSet *dataset);
    virtual ~ChartPresenter();

    ChartTheme *chartTheme() const { return m_chartTheme; }
    ChartDataSet *dataSet() const { return m_dataset; }
    QGraphicsItem* rootItem() const { return m_chart; }
    QGraphicsRectItem* backgroundItem();
    QGraphicsItem* titleItem();
    QList<ChartAxis*> axisItems() const;

    QLegend* legend();

    void setBackgroundBrush(const QBrush& brush);
    QBrush backgroundBrush() const;

    void setBackgroundPen(const QPen& pen);
    QPen backgroundPen() const;

    void setTitle(const QString& title);
    QString title() const;

    void setTitleFont(const QFont& font);
    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);

    void setTheme(QChart::ChartTheme theme,bool force = true);
    QChart::ChartTheme theme();

    void setAnimationOptions(QChart::AnimationOptions options);
    QChart::AnimationOptions animationOptions() const;

    void zoomIn(qreal factor);
    void zoomIn(const QRectF& rect);
    void zoomOut(qreal factor);
    void scroll(qreal dx,qreal dy);

    void setGeometry(const QRectF& rect);
    QRectF geometry() { return m_rect; }

    void startAnimation(ChartAnimation* animation);
    State state() const { return m_state; }
    QPointF statePoint() const { return m_statePoint; }

    void resetAllElements();

    void setMinimumMargins(const QMargins& margins);
    QMargins minimumMargins() const;
    QGraphicsLayout* layout();

private:
    void createBackgroundItem();
    void createTitleItem();
    void selectVisibleAxis();

public Q_SLOTS:
    void handleSeriesAdded(QAbstractSeries* series,Domain* domain);
    void handleSeriesRemoved(QAbstractSeries* series);
    void handleAxisAdded(QAbstractAxis* axis,Domain* domain);
    void handleAxisRemoved(QAbstractAxis* axis);
    void handleAxisVisibleChanged(bool visible);

private Q_SLOTS:
    void handleAnimationFinished();

Q_SIGNALS:
    void geometryChanged(const QRectF& rect);
    void animationsFinished();
    void marginsChanged(QRectF margins);

private:
    QChart* m_chart;
    ChartDataSet* m_dataset;
    ChartTheme *m_chartTheme;
    QMap<QAbstractSeries*, ChartElement*> m_chartItems;
    QMap<QAbstractAxis*, ChartAxis*> m_axisItems;
    QRectF m_rect;
    QChart::AnimationOptions m_options;
    State m_state;
    QPointF m_statePoint;
    QList<ChartAnimation*> m_animations;
    ChartLayout* m_layout;
    ChartBackground* m_backgroundItem;
    QGraphicsSimpleTextItem* m_titleItem;
};

QTCOMMERCIALCHART_END_NAMESPACE

#endif /* CHARTPRESENTER_H */