##// END OF EJS Templates
pie: change the order of parameters when creating slices to be more intuitive
pie: change the order of parameters when creating slices to be more intuitive

File last commit:

r1079:1181d21f7863
r1206:080b090a9a03
Show More
chartanimation_p.h
48 lines | 1.3 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
Fixes header guard style issues
r969 #ifndef CHARTANIMATION_H
#define CHARTANIMATION_H
Michal Klocek
Animation refactor...
r530
#include "qchartglobal.h"
#include <QVariantAnimation>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Jani Honkonen
Use same animation duration for all series animations.
r1079 const static int ChartAnimationDuration = 1000;
Michal Klocek
Animation refactor...
r530 class ChartAnimation: public QVariantAnimation
{
public:
Michal Klocek
Improves spline interpolation...
r622 enum Animation { LineDrawAnimation, MoveDownAnimation, MoveUpAnimation };
Marek Rosa
White spaces fixes in Theme and animation classes
r948 ChartAnimation(QObject *parent = 0):QVariantAnimation(parent), m_type(MoveDownAnimation){}
Michal Klocek
Improves spline interpolation...
r622 void setAnimationType(Animation type){
m_type=type;
}
protected:
Animation m_type;
Michal Klocek
Animation refactor...
r530 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* AXISITEM_H_ */