blob: 9e7f3b36ba8a032a531e5d0895a072bf3621f981 [file] [log] [blame]
/****************************************************************************
**
** Copyright (C) 2019 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Quick Designer Components.
**
** $QT_BEGIN_LICENSE:GPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QQUICKTIMELINE_P_H
#define QQUICKTIMELINE_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 "qquickkeyframe_p.h"
#include "qquicktimelineanimation_p.h"
#include <QtQml/qqml.h>
QT_BEGIN_NAMESPACE
class QQuickTimelinePrivate;
class QQuickTimeline : public QObject, public QQmlParserStatus
{
Q_OBJECT
Q_DECLARE_PRIVATE(QQuickTimeline)
Q_INTERFACES(QQmlParserStatus)
Q_PROPERTY(qreal startFrame READ startFrame WRITE setStartFrame NOTIFY startFrameChanged)
Q_PROPERTY(qreal endFrame READ endFrame WRITE setEndFrame NOTIFY endFrameChanged)
Q_PROPERTY(qreal currentFrame READ currentFrame WRITE setCurrentFrame NOTIFY currentFrameChanged)
Q_PROPERTY(QQmlListProperty<QQuickKeyframeGroup> keyframeGroups READ keyframeGroups)
Q_PROPERTY(QQmlListProperty<QQuickTimelineAnimation> animations READ animations)
Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged)
Q_CLASSINFO("DefaultProperty", "keyframeGroups")
public:
explicit QQuickTimeline(QObject *parent = nullptr);
QQmlListProperty<QQuickKeyframeGroup> keyframeGroups();
QQmlListProperty<QQuickTimelineAnimation> animations();
bool enabled() const;
void setEnabled(bool enabled);
qreal startFrame() const;
void setStartFrame(qreal);
qreal endFrame() const;
void setEndFrame(qreal);
qreal currentFrame() const;
void setCurrentFrame(qreal);
void reevaulate();
void init();
void reset();
QList<QQuickTimelineAnimation*> getAnimations() const;
protected:
void classBegin() override;
void componentComplete() override;
Q_SIGNALS:
void enabledChanged();
void startFrameChanged();
void endFrameChanged();
void currentFrameChanged();
};
QT_END_NAMESPACE
#endif // QQUICKTIMELINE_P_H