The DocumentGalleryModel element is used to specify a model containing items from the document gallery. More...
This element is part of the QtMobility.gallery 1.1 module.
The properties that should be returned for each item by the query are specified in properties. In addition all queries return the following properties:
import Qt 4.7 import QtMobility.gallery 1.1 Rectangle { width: 1024 height: 768 GridView { anchors.fill: parent cellWidth: 128 cellHeight: 128 model: DocumentGalleryModel { rootType: DocumentGallery.Image properties: [ "url" ] filter: GalleryWildcardFilter { property: "fileName"; value: "*.jpg"; } } delegate: Image { source: url width: 128 height: 128 } } }
See also DocumentGalleryItem and DocumentGalleryType.
autoUpdate : bool |
This property holds whether a query should refresh its results automatically.
This documentation was introduced in Qt Mobility Mobility 1.1.
read-onlycount : int |
This property holds the number of results returned by a query.
This documentation was introduced in Qt Mobility Mobility 1.1.
This property contains criteria to used to filter the results of a query.
This documentation was introduced in Qt Mobility Mobility 1.1.
limit : int |
This property contains the maximum number of items returned by a query.
This documentation was introduced in Qt Mobility Mobility 1.1.
offset : int |
This property holds the offset of the first item returned by a query.
This documentation was introduced in Qt Mobility Mobility 1.1.
read-onlyprogress : real |
This property holds the current progress of the request, from 0.0 (started) to 1.0 (finished).
This documentation was introduced in Qt Mobility Mobility 1.1.
properties : QStringList |
This property holds the item properties a query should return values for. All supported properties are listed QDocumentGallery.
This documentation was introduced in Qt Mobility Mobility 1.1.
This property contains the id of an item that a query should return the descendants of.
This documentation was introduced in Qt Mobility Mobility 1.1.
This property contains the type of item a query should return. It can be one of:
The default value is DocumentGallery.File
This documentation was introduced in Qt Mobility Mobility 1.1.
The property contains whether a query should count the direct descendants of the rootItem or all descendants.
This documentation was introduced in Qt Mobility Mobility 1.1.
sortProperties : QStringList |
This property holds the properties the results of a query should be sorted on.
Prefixing a property name with the '+' character indicates it should be sorted in ascending order, and a '-' character prefix indicates a descending order. If there is no prefix ascending order is assumed.
This documentation was introduced in Qt Mobility Mobility 1.1.
This property holds the status of a query. It can be one of:
This documentation was introduced in Qt Mobility Mobility 1.1.
Cancels an executing query.
This documentation was introduced in Qt Mobility Mobility 1.1.
Clears the results of a query.
This documentation was introduced in Qt Mobility Mobility 1.1.
DocumentGalleryModel::get ( int index ) |
Returns the result at index in a query model.
query.get(0).title
This documentation was introduced in Qt Mobility Mobility 1.1.
Returns the value of property from the result at index.
query.getProperty(0, "title")
This documentation was introduced in Qt Mobility Mobility 1.1.
Re-queries the gallery.
This documentation was introduced in Qt Mobility Mobility 1.1.
DocumentGalleryModel::set ( int index, jsobject dict ) |
Changes the item at index in the list model with the values in dict. Properties not appearing in dict are left unchanged.
This documentation was introduced in Qt Mobility Mobility 1.1.
Changes the property of the result at index in a model to value.
model.setProperty(0, "rating", 4)
This documentation was introduced in Qt Mobility Mobility 1.1.