1// Copyright (C) 2017 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
5\page qml-dynamicview-tutorial.html tutorial
6\title QML Dynamic View Ordering Tutorial
7\brief A tutorial describing how to re-arrange items in a QML ListView
8\nextpage QML Dynamic View Ordering Tutorial 1 - A Simple ListView and Delegate
10This tutorial shows how items in a ListView can be re-ordered without modifying the source model.
11It demonstrates using drag and drop to reposition individual items within a view and using model
12data to dynamically sort all items in a view.
17\li \l {QML Dynamic View Ordering Tutorial 1 - A Simple ListView and Delegate}{A Simple ListView and Delegate}
18\li \l {QML Dynamic View Ordering Tutorial 2 - Dragging View Items}{Dragging View Items}
19\li \l {QML Dynamic View Ordering Tutorial 3 - Moving Dragged Items}{Moving Dragged Items}
20\li \l {QML Dynamic View Ordering Tutorial 4 - Sorting Items}{Sorting Items}
23All the code in this tutorial can be found in Qt's \c examples/quick/tutorials/dynamicview
28\title QML Dynamic View Ordering Tutorial 1 - A Simple ListView and Delegate
29\previouspage QML Dynamic View Ordering Tutorial
30\nextpage QML Dynamic View Ordering Tutorial 2 - Dragging View Items
32\example tutorials/dynamicview/dynamicview1
34We begin our application by defining a ListView, a model which will provide data to the view, and a
35delegate which provides a template for constructing items in the view.
37The code for the ListView and delegate looks like this:
39\snippet tutorials/dynamicview/dynamicview1/dynamicview.qml 0
41The model is defined in a separate QML file which looks like this:
43\snippet tutorials/dynamicview/dynamicview1/PetsModel.qml 0
44\snippet tutorials/dynamicview/dynamicview1/PetsModel.qml 1
48The first item defined within the application's root Rectangle is the delegate Component. This
49is the template from which each item in the ListView is constructed.
51The \c name, \c age, \c type, and \c size variables referenced in the delegate are sourced from
52the model data. The names correspond to roles defined in the model.
54\snippet tutorials/dynamicview/dynamicview1/dynamicview.qml 1
56The second part of the application is the ListView itself to which we bind the model and delegate.
58\snippet tutorials/dynamicview/dynamicview1/dynamicview.qml 2
62\title QML Dynamic View Ordering Tutorial 2 - Dragging View Items
63\previouspage QML Dynamic View Ordering Tutorial 1 - A Simple ListView and Delegate
64\nextpage QML Dynamic View Ordering Tutorial 3 - Moving Dragged Items
66\example tutorials/dynamicview/dynamicview2
68Now that we have a visible list of items we want to be able to interact with them. We'll start
69by extending the delegate so the visible content can be dragged up and down the screen. The
70updated delegate looks like this:
72\snippet tutorials/dynamicview/dynamicview2/dynamicview.qml 0
76The major change here is the root item of the delegate is now a MouseArea which provides handlers
77for mouse events and will allow us to drag the delegate's content item. It also acts as
78a container for the content item which is important as a delegate's root item is positioned by
79the view and cannot be moved by other means.
81\snippet tutorials/dynamicview/dynamicview2/dynamicview.qml 1
82\snippet tutorials/dynamicview/dynamicview2/dynamicview.qml 2
84Dragging the content item is enabled by binding it to the MouseArea's
85\l {QtQuick::MouseArea::drag.target}{drag.target} property. Because we still want the view to be
86flickable we wait until the MouseArea's \l {QtQuick::MouseArea::}{pressAndHold}
87signal is emitted before binding the drag target. This way when mouse moves before the hold
88timeout has expired it is interpreted as moving the list and if it moves after it is interpreted as
89dragging an item. To make it more obvious to the user when an item can be dragged we'll change the
90background color of the content item when the timeout has expired.
92\snippet tutorials/dynamicview/dynamicview2/dynamicview.qml 3
94The other thing we'll need to do before an item can be dragged is to unset any anchors on the
95content item so it can be freely moved around. We do this in a state change that is triggered
96when the delegate item is held, at the same time we can reparent the content item to the root item
97so that is above other items in the stacking order and isn't obscured as it is dragged around.
99\snippet tutorials/dynamicview/dynamicview2/dynamicview.qml 4
104\title QML Dynamic View Ordering Tutorial 3 - Moving Dragged Items
105\previouspage QML Dynamic View Ordering Tutorial 2 - Dragging View Items
106\nextpage QML Dynamic View Ordering Tutorial 4 - Sorting Items
108\example tutorials/dynamicview/dynamicview3
110The next step in our application to move items within the list as they're dragged so that we
111can re-order the list. To achieve this we introduce three new types to our application;
112DelegateModel, \l Drag and DropArea.
114\snippet tutorials/dynamicview/dynamicview3/dynamicview.qml 0
115\snippet tutorials/dynamicview/dynamicview3/dynamicview.qml 1
116\snippet tutorials/dynamicview/dynamicview3/dynamicview.qml 2
117\snippet tutorials/dynamicview/dynamicview3/dynamicview.qml 5
121In order to re-order the view we need to determine when one item has been dragged over another. With
122the Drag attached property we can generate events that are sent to the scene graph whenever the item
123it is attached to moves.
125\snippet tutorials/dynamicview/dynamicview3/dynamicview.qml 1
127Drag events are only sent while the active property is true, so in this example the first event
128would be sent when the delegate was held with additional event sents when dragging. The
129\l {QtQuick::Drag::hotSpot}{hotSpot} property specifies the relative position of the drag events
130within the dragged item, the center of the item in this instance.
132Then we use a DropArea in each view item to determine when the hot spot of the dragged item
133intersects another item, when a drag enters one of these DropAreas we can move the dragged item
134to the index of the item it was dragged over.
136\snippet tutorials/dynamicview/dynamicview3/dynamicview.qml 3
138To move the items within the view we use a DelegateModel. The DelegateModel type is used by
139the view types to instantiate delegate items from model data and when constructed explicitly can
140be used to filter and re-order the model items provided to ListView. The
141\l [QML]{DelegateModel::}{items} property of DelegateModel provides access to the
142view's items and allows us to change the visible order without modifying the source model. To
143determine the current visible index of the items we use \l {DelegateModel::}{itemsIndex}
144{itemsIndex} property on the DelegateModel attached property of the delegate item.
146To utilize a DelegateModel with a ListView we bind it to the \l {ListView::}{model}
147property of the view and bind the \l {DelegateModel::}{model} and
148\l {DelegateModel::}{delegate} to the DelegateModel.
150\snippet tutorials/dynamicview/dynamicview3/dynamicview.qml 4
155\title QML Dynamic View Ordering Tutorial 4 - Sorting Items
156\previouspage QML Dynamic View Ordering Tutorial 3 - Moving Dragged Items
158\example tutorials/dynamicview/dynamicview4
160Drag and drop isn't the only way items in a view can be re-ordered, using a DelegateModel it is
161also possible to sort items based on model data. To do that we extend our DelegateModel instance
164\snippet tutorials/dynamicview/dynamicview4/dynamicview.qml 0
168Items in a DelegateModel are filtered into groups represented by the DelegateModelGroup type,
169normally all items in the model belong to a default \l {DelegateModel::}{items}
170group but this default can be changed with the includeByDefault property. To implement our sorting
171we want items to first be added to an unsorted group from where we can transfer them to a sorted
172position in the items group. To do that we clear includeByDefault on the items group and set it on
173a new group name 'unsorted'.
175\snippet tutorials/dynamicview/dynamicview4/dynamicview.qml 1
176\snippet tutorials/dynamicview/dynamicview4/dynamicview.qml 2
178We sort the items by first finding the position in the items group to insert the first unsorted
179item and then transfer the item to the items group before moving it to the pre-determined index and
180repeat until the unsorted group is empty.
182To find the insert position for an item we request a handle for the item from the unsorted group
183with the \l {DelegateModelGroup::}{get()} function. Through the model property on this handle we can
184access the same model data that is available in a delegate instance of that item and
185compare against other items to determine relative position.
187\snippet tutorials/dynamicview/dynamicview4/dynamicview.qml 3
189The lessThan argument to the sort function is a comparsion function which will determine the order
190of the list. In this example it can be one of the following:
192\snippet tutorials/dynamicview/dynamicview4/dynamicview.qml 4
194A sort is triggered whenever new items are added to the unsorted DelegateModel which we are
195notified of by the \l {DelegateModelGroup} \c onChanged handler. If no sort
196function is currently selected we simply transfer all items from the unsorted group to the items
197group, otherwise we call sort with the selected sort function.
199\snippet tutorials/dynamicview/dynamicview4/dynamicview.qml 5
201Finally when the selected sort order changes we can trigger a full re-sort of the list by moving
202all items from the items group to the unsorted group, which will trigger the
203\l {DelegateModelGroup} \c onChanged handler and transfer the items back to the
204items group in correct order. Note that the \l {DelegateModelGroup} \c onChanged
205handler will not be invoked recursively so there's no issue with it being invoked during a sort.
207\snippet tutorials/dynamicview/dynamicview4/dynamicview.qml 6