diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-02-23 06:47:50 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-02-23 06:47:50 (GMT) |
commit | cb3cd645082bda7b5142ceff31e5795f2d047c39 (patch) | |
tree | 152c67201476d81d423089cc5aef7e214bd8c85b /doc/src | |
parent | 5ffd6c0fba0ecc709551e414ed0649de15ac3754 (diff) | |
parent | 55fff3383b7fbac972a96c62345bc898c99eafc0 (diff) | |
download | Qt-cb3cd645082bda7b5142ceff31e5795f2d047c39.zip Qt-cb3cd645082bda7b5142ceff31e5795f2d047c39.tar.gz Qt-cb3cd645082bda7b5142ceff31e5795f2d047c39.tar.bz2 |
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/declarative/extending.qdoc | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/doc/src/declarative/extending.qdoc b/doc/src/declarative/extending.qdoc index d3e6c14..396ddab 100644 --- a/doc/src/declarative/extending.qdoc +++ b/doc/src/declarative/extending.qdoc @@ -557,18 +557,6 @@ to be used in bindings should have a NOTIFY signal instead. \l {Extending QML - Binding Example} shows the BirthdayParty example updated to include NOTIFY signals for use in binding. -\section1 Binding and Script Properties - -While generally no changes are needed to a C++ class to use property -binding, sometimes more advanced interaction between the binding engine and -an object is desirable. To facilitate this, there is a special exception -in the bind engine for allowing an object to access the binding directly. - -If a binding is assigned to a property with a type of QmlBinding -pointer (ie. \c {QmlBinding *}), each time the binding value changes, -a QmlBinding instance is assigned to that property. The QmlBinding instance -allows the object to read the binding and to evaluate the binding's current value. - \section1 Extension Objects \snippet examples/declarative/extending/extended/example.qml 0 |