aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/views
diff options
context:
space:
mode:
authorXingtao Zhang <zhxt@ovi.com>2013-01-08 23:34:22 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-01-09 18:42:42 +0100
commit888a02ec4a338f3edefe6e4287173a600cd2dd37 (patch)
treeb9c73f18316337622dc871f91dde3e17ea2c01c4 /examples/quick/views
parent1c522ec7c7f5e9755075f62866098b9a54b35739 (diff)
Doc: Updated docs for examples and etc
- Corrected several \snippet paths and \example paths. - Added missing example images. - Marked several commands as code. - Updated the exampledirs variable for qtqml. Done-with: Venugopal Shivashankar <venugopal.shivashankar@digia.com> Task-number: QTBUG-28898 Change-Id: I24aac17821f54de4bd5129c45b5bf96dc0f114b2 Reviewed-by: Liang Qi <liang.qi@digia.com>
Diffstat (limited to 'examples/quick/views')
-rw-r--r--examples/quick/views/doc/src/views.qdoc30
1 files changed, 15 insertions, 15 deletions
diff --git a/examples/quick/views/doc/src/views.qdoc b/examples/quick/views/doc/src/views.qdoc
index fe135db0d7..13d054cfc9 100644
--- a/examples/quick/views/doc/src/views.qdoc
+++ b/examples/quick/views/doc/src/views.qdoc
@@ -35,49 +35,49 @@
This is a collection of small QML examples relating to model and view functionality. They demonstrate how to show data from a model using the QtQuick view types.
\section2 GridView and PathView demonstrate usage of these elements to display views.
- \snippet quick/modelviews/gridview/gridview-example.qml 0
+ \snippet quick/views/gridview/gridview-example.qml 0
\section2 Dynamic List demonstrates animation of runtime additions and removals to a ListView.
The ListView.onAdd signal handler runs an animation when new items are added to the
view, and the ListView.onRemove another when they are removed.
- \snippet quick/modelviews/listview/dynamiclist.qml 0
- \snippet quick/modelviews/listview/dynamiclist.qml 1
+ \snippet quick/views/listview/dynamiclist.qml 0
+ \snippet quick/views/listview/dynamiclist.qml 1
\section2 Expanding Delegates demonstrates delegates that expand when activated.
It has a complex delegate the size and appearance of which can change, displacing
other items in the view.
- \snippet quick/modelviews/listview/expandingdelegates.qml 0
- \snippet quick/modelviews/listview/expandingdelegates.qml 1
- \snippet quick/modelviews/listview/expandingdelegates.qml 2
- \snippet quick/modelviews/listview/expandingdelegates.qml 3
+ \snippet quick/views/listview/expandingdelegates.qml 0
+ \snippet quick/views/listview/expandingdelegates.qml 1
+ \snippet quick/views/listview/expandingdelegates.qml 2
+ \snippet quick/views/listview/expandingdelegates.qml 3
\section2 Highlight demonstrates adding a custom highlight to a ListView.
- \snippet quick/modelviews/listview/highlight.qml 0
+ \snippet quick/views/listview/highlight.qml 0
\section2 Highlight Ranges shows the three different highlight range modes of ListView.
- \snippet quick/modelviews/listview/highlightranges.qml 0
- \snippet quick/modelviews/listview/highlightranges.qml 1
- \snippet quick/modelviews/listview/highlightranges.qml 2
+ \snippet quick/views/listview/highlightranges.qml 0
+ \snippet quick/views/listview/highlightranges.qml 1
+ \snippet quick/views/listview/highlightranges.qml 2
\section2 Sections demonstrates the various section headers and footers available to ListView.
- \snippet quick/modelviews/listview/sections.qml 0
+ \snippet quick/views/listview/sections.qml 0
\section2 Packages demonstrates using Packages to transition delegates between two views.
It has a Package which defines delegate items for each view and an item that can
be transferred between delegates.
- \snippet quick/modelviews/package/Delegate.qml 0
+ \snippet quick/views/package/Delegate.qml 0
A VisualDataModel allows the individual views to access their specific items from
the shared package delegate.
- \snippet quick/modelviews/package/view.qml 0
+ \snippet quick/views/package/view.qml 0
\section2 VisualItemModel uses a VisualItemModel for the model instead of a ListModel.
- \snippet quick/modelviews/visualitemmodel/visualitemmodel.qml 0
+ \snippet quick/views/visualitemmodel/visualitemmodel.qml 0
*/