#ifndef QQMLANDROIDANTICIPATEINTERPOLATOR_P_H #define QQMLANDROIDANTICIPATEINTERPOLATOR_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt 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. // #include #include QT_BEGIN_NAMESPACE class QQmlAndroidAnticipateInterpolator : public QQmlAndroidInterpolator { Q_OBJECT Q_PROPERTY(qreal tension READ tension WRITE setTension NOTIFY tensionChanged) public: explicit QQmlAndroidAnticipateInterpolator(QObject *parent = 0); qreal tension() const; void setTension(qreal tension); Q_SIGNALS: void tensionChanged(); protected: QAndroidJniObject onCreate() Q_DECL_OVERRIDE; private: QQmlAndroidOptional m_tension; }; QT_END_NAMESPACE #endif // QQMLANDROIDANTICIPATEINTERPOLATOR_P_H