diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-01 08:21:39 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-01 11:20:54 (GMT) |
commit | 5118020e63f5e634a74082c417362d735a7a2303 (patch) | |
tree | e8825b7d0960d260e124e22cbb6263bc5e01bb53 /src/declarative/util/qmlstateoperations.h | |
parent | 59a3b7d39e75884027decdd8a029062f0fdde32a (diff) | |
download | Qt-5118020e63f5e634a74082c417362d735a7a2303.zip Qt-5118020e63f5e634a74082c417362d735a7a2303.tar.gz Qt-5118020e63f5e634a74082c417362d735a7a2303.tar.bz2 |
Remove QmlSetProperty
This involves the introduction of separation between states and transition application. This was necessary to allow layouts to continue to use transitions.
Diffstat (limited to 'src/declarative/util/qmlstateoperations.h')
-rw-r--r-- | src/declarative/util/qmlstateoperations.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/declarative/util/qmlstateoperations.h b/src/declarative/util/qmlstateoperations.h index 6e5de48..221373b 100644 --- a/src/declarative/util/qmlstateoperations.h +++ b/src/declarative/util/qmlstateoperations.h @@ -95,38 +95,10 @@ public: virtual void execute(); }; -class QmlSetPropertyPrivate; -class Q_DECLARATIVE_EXPORT QmlSetProperty : public QmlStateOperation -{ - Q_OBJECT - Q_DECLARE_PRIVATE(QmlSetProperty) - - Q_PROPERTY(QObject *target READ object WRITE setObject) - Q_PROPERTY(QString property READ property WRITE setProperty) - Q_PROPERTY(QVariant value READ value WRITE setValue) - Q_PROPERTY(QString binding READ binding WRITE setBinding) - -public: - QmlSetProperty(QObject *parent=0); - ~QmlSetProperty(); - - QObject *object(); - void setObject(QObject *); - QString property() const; - void setProperty(const QString &); - QVariant value() const; - void setValue(const QVariant &); - QString binding() const; - void setBinding(const QString&); - - virtual ActionList actions(); -}; - QT_END_NAMESPACE QML_DECLARE_TYPE(QmlParentChange) QML_DECLARE_TYPE(QmlRunScript) -QML_DECLARE_TYPE(QmlSetProperty) QT_END_HEADER |