Commit b21660f6 authored by Nico Vertriest's avatar Nico Vertriest
Browse files

Doc: replace VisualDataModel with DelegateModel


Task-number: QTBUG-37725
Change-Id: Ia5b98f630afd735d60e80eb986d5df7a9d40cd82
Reviewed-by: default avatarMartin Smith <martin.smith@digia.com>
Showing with 5 additions and 5 deletions
......@@ -82,7 +82,7 @@ QT_USE_NAMESPACE
\codeline
\snippet declarative/places.qml CategoryView
To access the hierarchical category model it is necessary to use a \l VisualDataModel to access
To access the hierarchical category model it is necessary to use a \l DelegateModel to access
the child items.
*/
......@@ -364,7 +364,7 @@ void QDeclarativeSupportedCategoriesModel::addedCategory(const QPlaceCategory &c
parentNode->childIds.insert(rowToBeAdded,category.categoryId());
endInsertRows();
//this is a workaround to deal with the fact that the hasModelChildren field of VisualDataodel
//this is a workaround to deal with the fact that the hasModelChildren field of DelegateModel
//does not get updated when a child is added to a model
beginResetModel();
endResetModel();
......@@ -428,7 +428,7 @@ void QDeclarativeSupportedCategoriesModel::updatedCategory(const QPlaceCategory
categoryNode->parentId = parentId;
endMoveRows();
//this is a workaround to deal with the fact that the hasModelChildren field of VisualDataodel
//this is a workaround to deal with the fact that the hasModelChildren field of DelegateModel
//does not get updated when an index is updated to contain children
beginResetModel();
endResetModel();
......
......@@ -94,12 +94,12 @@
\codeline
\snippet places/content/places/CategoryView.qml CategoryModel view 3
Because a hierarchical model is being used, a \l VisualDataModel is needed to provide
Because a hierarchical model is being used, a \l DelegateModel is needed to provide
navigation functionality. If flat list model was being used the view could use the
\l CategoryModel directly.
The view contains a header item that is used as a back button to navigate up the category tree.
The \e onClicked handler sets the root index of the \l VisualDataModel to the parent of the
The \e onClicked handler sets the root index of the \l DelegateModel to the parent of the
current index. Categories are displayed by the \e CategoryDelegate, which provides four
signals. The \e onArrowClicked handler sets the root index to the current index causing the
sub categories of the selected category to be displayed. The \e onClicked handler emits
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment