diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-10-09 02:44:38 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-10-09 02:44:38 (GMT) |
commit | 3a0cb6ebef245780782fcab6709e471d26789590 (patch) | |
tree | ec93f99dc4adc75ec2cde2ee89e4df88c8ec75e9 /doc/src/declarative/focus.qdoc | |
parent | 8cefc95e3d91cb16ef6a7b16c18ef1e23a3911a9 (diff) | |
parent | 91c85c76d83260d794701100b36a0cc04f848932 (diff) | |
download | Qt-3a0cb6ebef245780782fcab6709e471d26789590.zip Qt-3a0cb6ebef245780782fcab6709e471d26789590.tar.gz Qt-3a0cb6ebef245780782fcab6709e471d26789590.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'doc/src/declarative/focus.qdoc')
-rw-r--r-- | doc/src/declarative/focus.qdoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/declarative/focus.qdoc b/doc/src/declarative/focus.qdoc index c92632b..8733b2d 100644 --- a/doc/src/declarative/focus.qdoc +++ b/doc/src/declarative/focus.qdoc @@ -76,12 +76,12 @@ Item { \section1 Querying the Active Focus Item Whether or not an \l Item has \e {active focus} can be queried through the -read-only property \c {Item::activeFocus}. For example, here we have a \l Text +read-only property \c {Item::focus}. For example, here we have a \l Text element whose text is determined by whether or not it has \e {active focus}. \code Text { - text: activeFocus ? "I have active focus!" : "I do not have active focus" + text: focus ? "I have active focus!" : "I do not have active focus" } \endcode @@ -208,7 +208,7 @@ Conceptually \e {focus scopes} are quite simple. \o Within each \e {focus scope} one element may have \c {Item::focus} set to true. If more than one \l Item has the \c {Item::focus} property set, the first is selected and the others are unset, just like when there are no \e {focus scopes}. \o When a \e {focus scope} receives \e {active focus}, the contained element with \c {Item::focus} set (if any) also gets \e {active focus}. If this element is also a \l FocusScope, the proxying behaviour continues. Both the -\e {focus scope} and the sub-focused item will have \c {Item::activeFocus} set. +\e {focus scope} and the sub-focused item will have \c {Item::focus} set. \endlist So far the example has the second component statically selected. It is trivial |