##// END OF EJS Templates
removed old separator.h and .cpp files
removed old separator.h and .cpp files

File last commit:

r1241:51695bb27b0e
r1244:d9d50e7b4662
Show More
chartanimation_p.h
42 lines | 1.1 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
{
Michal Klocek
Refactors axis animation, line animations
r1241 Q_OBJECT
Michal Klocek
Animation refactor...
r530 public:
Michal Klocek
Refactors animation handling for xyseries
r1217 ChartAnimation(QObject *parent = 0):QVariantAnimation(parent){};
Michal Klocek
Animation refactor...
r530 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* AXISITEM_H_ */