diff options
Diffstat (limited to 'src/quick/util/qquicktransition_p.h')
-rw-r--r-- | src/quick/util/qquicktransition_p.h | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/src/quick/util/qquicktransition_p.h b/src/quick/util/qquicktransition_p.h new file mode 100644 index 0000000000..ebd82fde2c --- /dev/null +++ b/src/quick/util/qquicktransition_p.h @@ -0,0 +1,127 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/ +** +** This file is part of the QtQml module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** GNU Lesser General Public License Usage +** This file may be used under the terms of the GNU Lesser General Public +** License version 2.1 as published by the Free Software Foundation and +** appearing in the file LICENSE.LGPL included in the packaging of this +** file. Please review the following information to ensure the GNU Lesser +** General Public License version 2.1 requirements will be met: +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU General +** Public License version 3.0 as published by the Free Software Foundation +** and appearing in the file LICENSE.GPL included in the packaging of this +** file. Please review the following information to ensure the GNU General +** Public License version 3.0 requirements will be met: +** http://www.gnu.org/copyleft/gpl.html. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QQUICKTRANSITION_H +#define QQUICKTRANSITION_H + +#include "qquickstate_p.h" +#include <qqml.h> + +#include <QtCore/qobject.h> + +QT_BEGIN_HEADER + +QT_BEGIN_NAMESPACE + +class QQuickAbstractAnimation; +class QQuickTransitionPrivate; +class QQuickTransitionManager; +class QQuickTransition; +class QAbstractAnimationJob; + +class Q_QUICK_EXPORT QQuickTransitionInstance +{ +public: + QQuickTransitionInstance(); + ~QQuickTransitionInstance(); + + void start(); + void stop(); + + bool isRunning() const; + +private: + QAbstractAnimationJob *m_anim; + friend class QQuickTransition; +}; + +class Q_QUICK_EXPORT QQuickTransition : public QObject +{ + Q_OBJECT + Q_DECLARE_PRIVATE(QQuickTransition) + + Q_PROPERTY(QString from READ fromState WRITE setFromState NOTIFY fromChanged) + Q_PROPERTY(QString to READ toState WRITE setToState NOTIFY toChanged) + Q_PROPERTY(bool reversible READ reversible WRITE setReversible NOTIFY reversibleChanged) + Q_PROPERTY(QQmlListProperty<QQuickAbstractAnimation> animations READ animations) + Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged) + Q_CLASSINFO("DefaultProperty", "animations") + Q_CLASSINFO("DeferredPropertyNames", "animations") + +public: + QQuickTransition(QObject *parent=0); + ~QQuickTransition(); + + QString fromState() const; + void setFromState(const QString &); + + QString toState() const; + void setToState(const QString &); + + bool reversible() const; + void setReversible(bool); + + bool enabled() const; + void setEnabled(bool enabled); + + QQmlListProperty<QQuickAbstractAnimation> animations(); + + QQuickTransitionInstance *prepare(QQuickStateOperation::ActionList &actions, + QList<QQmlProperty> &after, + QQuickTransitionManager *end, + QObject *defaultTarget); + + void setReversed(bool r); + +Q_SIGNALS: + void fromChanged(); + void toChanged(); + void reversibleChanged(); + void enabledChanged(); +}; + +QT_END_NAMESPACE + +QML_DECLARE_TYPE(QQuickTransition) + +QT_END_HEADER + +#endif // QQUICKTRANSITION_H |