diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-07-29 06:39:09 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-07-29 06:39:09 (GMT) |
commit | 219071c44b249399b99a513810d077f06aeb10bc (patch) | |
tree | a9b3ab685c325a760c61f8247695cc7f635e13ec /src/declarative/graphicsitems/qdeclarativepathview.cpp | |
parent | eae48b410cc28b83433b7dcba379a31aae2ce2df (diff) | |
parent | c2a22048a045f4e3d03b3251bc9af486250657e4 (diff) | |
download | Qt-219071c44b249399b99a513810d077f06aeb10bc.zip Qt-219071c44b249399b99a513810d077f06aeb10bc.tar.gz Qt-219071c44b249399b99a513810d077f06aeb10bc.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativepathview.cpp')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativepathview.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativepathview.cpp b/src/declarative/graphicsitems/qdeclarativepathview.cpp index 002ae21..5dcf1b7 100644 --- a/src/declarative/graphicsitems/qdeclarativepathview.cpp +++ b/src/declarative/graphicsitems/qdeclarativepathview.cpp @@ -334,7 +334,7 @@ void QDeclarativePathViewPrivate::regenerate() and XmlListModel, or custom model classes defined in C++ that inherit from QAbstractListModel. - A ListView has a \l model, which defines the data to be displayed, and + The view has a \l model, which defines the data to be displayed, and a \l delegate, which defines how the data should be displayed. The \l delegate is instantiated for each item on the \l path. The items may be flicked to move them along the path. @@ -353,6 +353,9 @@ void QDeclarativePathViewPrivate::regenerate() opacity of the items as they rotate. This additional code can be seen in the PathAttribute documentation.) + The \c focus can be set to \c true to enable keyboard navigation. + The path 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. |