aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/util/qquickpropertychanges_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2014-01-10 14:51:00 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-17 08:10:07 +0100
commit4005c0e29cea1bbcb35c480866418ba01f019756 (patch)
tree80dcf657f787f40bb60be56d7bc4cd90ef749c70 /src/quick/util/qquickpropertychanges_p.h
parent97c21311a1de5bca7b97a0a1ae81bb651afa41c8 (diff)
[new compiler] Initial support for QQuick state changes
This requires the use of the customer parser together with lazy binding compilation Change-Id: I45d8a206267d3e0c807771a79645168254be9c95 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/quick/util/qquickpropertychanges_p.h')
-rw-r--r--src/quick/util/qquickpropertychanges_p.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/quick/util/qquickpropertychanges_p.h b/src/quick/util/qquickpropertychanges_p.h
index 0236e4529b..081ea72862 100644
--- a/src/quick/util/qquickpropertychanges_p.h
+++ b/src/quick/util/qquickpropertychanges_p.h
@@ -93,8 +93,10 @@ public:
: QQmlCustomParser(AcceptsAttachedProperties) {}
void compileList(QList<QPair<QString, QVariant> > &list, const QString &pre, const QQmlCustomParserProperty &prop);
+ void compileList(QList<QPair<QString, const QV4::CompiledData::Binding *> > &list, const QString &pre, const QV4::CompiledData::QmlUnit *qmlUnit, const QV4::CompiledData::Binding *binding);
virtual QByteArray compile(const QList<QQmlCustomParserProperty> &);
+ virtual QByteArray compile(const QV4::CompiledData::QmlUnit *qmlUnit, const QList<const QV4::CompiledData::Binding *> &props);
virtual void setCustomData(QObject *, const QByteArray &);
};