##// END OF EJS Templates
legend layout with padding
legend layout with padding

File last commit:

r794:4c76de65bbac
r799:0ecf2967daa4
Show More
chartanimator_p.h
77 lines | 2.7 KiB | text/x-c | CLexer
Jani Honkonen
Add license headers
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$
**
****************************************************************************/
Michal Klocek
Animation refactor...
r530 #ifndef CHARTANIMATOR_P_H_
#define CHARTANIMATOR_P_H_
#include "qchartglobal.h"
#include "chartanimation_p.h"
Jani Honkonen
Add animations to pie. Works but has some visual issues when adding slices.
r618 #include "piechartitem_p.h"
sauimone
Animation framework for barchart.
r671 #include "barchartitem_p.h"
Michal Klocek
Adds scroll support...
r531 #include <QPointF>
Michal Klocek
Animation refactor...
r530
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartItem;
Michal Klocek
Refactors chartitem...
r677 class Axis;
Michal Klocek
Adds area chart animations...
r560 class AreaChartItem;
Michal Klocek
Improves spline interpolation...
r622 class SplineChartItem;
class ScatterChartItem;
class LineChartItem;
class XYChartItem;
Michal Klocek
Animation refactor...
r530
class ChartAnimator : public QObject {
public:
Marek Rosa
Animation folder formating: white spaces, brackets, etc fixed
r738 enum State{ShowState, ScrollUpState, ScrollDownState, ScrollLeftState, ScrollRightState, ZoomInState, ZoomOutState};
Michal Klocek
Refactors chartitem...
r677
Michal Klocek
Animation refactor...
r530 ChartAnimator(QObject *parent = 0);
virtual ~ChartAnimator();
Marek Rosa
Animation folder formating: white spaces, brackets, etc fixed
r738 void addAnimation(Axis *item);
void addAnimation(PieChartItem *item);
void addAnimation(ScatterChartItem *item);
void addAnimation(LineChartItem *item);
void addAnimation(SplineChartItem *item);
void addAnimation(BarChartItem *item);
void removeAnimation(Chart *item);
Michal Klocek
Animation refactor...
r530
void animationStarted();
Marek Rosa
Animation folder formating: white spaces, brackets, etc fixed
r738 void updateLayout(XYChartItem *item, QVector<QPointF> &oldLayout, QVector<QPointF> &newLayout, int index);
void updateLayout(SplineChartItem *item, QVector<QPointF> &oldPoints, QVector<QPointF> &newPoints, QVector<QPointF> &oldControlPoints, QVector<QPointF> &newContorlPoints, int index);
void updateLayout(Axis *item, QVector<qreal> &layout);
Michal Klocek
Animation refactor...
r530
Marek Rosa
Animation folder formating: white spaces, brackets, etc fixed
r738 void addAnimation(PieChartItem *item, QPieSlice *slice, const PieSliceData &sliceData, bool isEmpty);
void removeAnimation(PieChartItem *item, QPieSlice *slice);
void updateLayout(PieChartItem *item, const PieLayout &layout);
void updateLayout(PieChartItem *item, QPieSlice *slice, const PieSliceData &sliceData);
Jani Honkonen
Add animations to pie. Works but has some visual issues when adding slices.
r618
Marek Rosa
Animation folder formating: white spaces, brackets, etc fixed
r738 void updateLayout(BarChartItem *item, const QVector<QRectF> &oldLayout, const QVector<QRectF> &newLayout);
sauimone
Animation framework for barchart.
r671
Marek Rosa
Animation folder formating: white spaces, brackets, etc fixed
r738 void setState(State state,const QPointF &point = QPointF());
Michal Klocek
Adds scroll support...
r531
Michal Klocek
Animation refactor...
r530 private:
Marek Rosa
Animation folder formating: white spaces, brackets, etc fixed
r738 QMap<Chart *, ChartAnimation *> m_animations;
Michal Klocek
Adds scroll support...
r531 State m_state;
QPointF m_point;
Michal Klocek
Animation refactor...
r530 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif