1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4// W A R N I N G
5// -------------
6//
7// This file is not part of the Qt Chart API. It exists purely as an
8// implementation detail. This header file may change from version to
9// version without notice, or even be removed.
10//
11// We mean it.
12
13#ifndef SCATTERANIMATION_P_H
14#define SCATTERANIMATION_P_H
15
16#include <private/xyanimation_p.h>
17#include <QtCharts/private/qchartglobal_p.h>
18
19QT_BEGIN_NAMESPACE
20
21class ScatterChartItem;
22
23class Q_CHARTS_PRIVATE_EXPORT ScatterAnimation : public XYAnimation
24{
25public:
26 ScatterAnimation(ScatterChartItem *item, int duration, QEasingCurve &curve);
27 ~ScatterAnimation();
28
29protected:
30
31 void updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState) override;
32};
33
34QT_END_NAMESPACE
35
36#endif
37

source code of qtcharts/src/charts/animations/scatteranimation_p.h