diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-07-29 05:12:17 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-07-29 05:14:03 (GMT) |
commit | d27e7484c8fcb08e0c533b9a8bf5af8d527b1de3 (patch) | |
tree | c1d167044f80ce3bdd7fa328f734b5d9ef4e92d7 /src/declarative/graphicsitems/qdeclarativelistview.cpp | |
parent | 5d5feaa86f3933a1e89b53267953b86e2b0459ed (diff) | |
download | Qt-d27e7484c8fcb08e0c533b9a8bf5af8d527b1de3.zip Qt-d27e7484c8fcb08e0c533b9a8bf5af8d527b1de3.tar.gz Qt-d27e7484c8fcb08e0c533b9a8bf5af8d527b1de3.tar.bz2 |
Document elements that are focus scopes.
Task-number: QTBUG-12404
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativelistview.cpp')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativelistview.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativelistview.cpp b/src/declarative/graphicsitems/qdeclarativelistview.cpp index b3e1dc0..b0a11b9 100644 --- a/src/declarative/graphicsitems/qdeclarativelistview.cpp +++ b/src/declarative/graphicsitems/qdeclarativelistview.cpp @@ -1385,14 +1385,16 @@ void QDeclarativeListViewPrivate::flick(AxisData &data, qreal minExtent, qreal m the delegate is able to access the model's \c name and \c number data directly. An improved list view is shown below. The delegate is visually improved and is moved - into a separate \c contactDelegate component. Also, the currently selected item is highlighted - with a blue \l Rectangle using the \l highlight property, and \c focus is set to \c true - to enable keyboard navigation for the list view. + into a separate \c contactDelegate component. \snippet doc/src/snippets/declarative/listview/listview.qml classdocs advanced \image listview-highlight.png - In a GridView, delegates are instantiated as needed and may be destroyed at any time. + The currently selected item is highlighted with a blue \l Rectangle using the \l highlight property, + and \c focus is set to \c true to enable keyboard navigation for the list view. + The list view itself is a focus scope (see \l{qmlfocus#Acquiring Focus and Focus Scopes}{the focus documentation page} for more details). + + Delegates are instantiated as needed and may be destroyed at any time. State should \e never be stored in a delegate. \note Views do not enable \e clip automatically. If the view |