diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-23 04:24:20 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-23 06:19:10 (GMT) |
commit | cd8d8d49f78c1cbb8ad3546e66a461b9e6e29ff5 (patch) | |
tree | 1fbbbfec0a5ea7a1ce0c00684f83c34e8278e18e /doc | |
parent | 113e350e36c0ff31824bc238160094814dc3fb4f (diff) | |
download | Qt-cd8d8d49f78c1cbb8ad3546e66a461b9e6e29ff5.zip Qt-cd8d8d49f78c1cbb8ad3546e66a461b9e6e29ff5.tar.gz Qt-cd8d8d49f78c1cbb8ad3546e66a461b9e6e29ff5.tar.bz2 |
Make QmlBinding (and friends) private
QmlBinding exposes way too many implementation details to be confident
about making it public right now.
Diffstat (limited to 'doc')
-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 |