QtLocation.CategoryModel

The CategoryModel type provides a model of the categories supported by a Plugin. More...

Import Statement: import QtLocation 5.3
Since: Qt Location 5.0

Properties

Signals

Methods

Detailed Description

The hierarchical property.

The model supports the following roles:

RoleTypeDescription
categoryCategoryCategory object for the current item.
parentCategoryCategoryParent category object for the current item. If there is no parent, null is returned.

The following example displays a flat list of all available categories:

import QtQuick 2.0
import QtPositioning 5.2
import QtLocation 5.3
ListView {
model: CategoryModel {
plugin: myPlugin
hierarchical: false
}
delegate: Text { text: category.name }
}

To access the hierarchical category model it is necessary to use a DelegateModel to access the child items.

Property Documentation

hierarchical : bool

This property holds whether the model provides a hierarchical tree of categories or a flat list. The default is true.


plugin : Plugin

This property holds the provider Plugin used by this model.


status : enumeration

This property holds the status of the model. It can be one of:

CategoryModel.NullNo category fetch query has been executed. The model is empty.
CategoryModel.ReadyNo error occurred during the last operation, further operations may be performed on the model.
CategoryModel.LoadingThe model is being updated, no other operations may be performed until complete.
CategoryModel.ErrorAn error occurred during the last operation, further operations can still be performed on the model.

Signal Documentation

dataChanged()

This signal is emitted when significant changes have been made to the underlying datastore.

Applications should act on this signal at their own discretion. The data provided by the model could be out of date and so the model should be reupdated sometime, however an immediate reupdate may be disconcerting to users if the categories change without any action on their part.

The corresponding handler is onDataChanged.


Method Documentation

string errorString() const

This read-only property holds the textual presentation of latest category model error. If no error has occurred, an empty string is returned.

An empty string may also be returned if an error occurred which has no associated textual representation.