Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

ImageModel

The ImageModel element provides a model of place images. More...

Inherits QtObject

This type was introduced in Qt Location 5.0.

Properties

Detailed Description

The ImageModel is a read-only model used to fetch images related to a Place. Binding a Place via ImageModel::place initiates an initial fetch of images. The model performs fetches incrementally and is intended to be used in conjunction with a View such as a ListView. When the View reaches the last of the images currently in the model, a fetch is performed to retrieve more if they are available. The View is automatically updated as the images are received. The number of images which are fetched at a time is specified by the batchSize property. The total number of images available can be accessed via the totalCount property.

The model returns data for the following roles:

RoleTypeDescription
urlurlThe URL of the image.
imageIdstringThe identifier of the image.
mimeTypestringThe MIME type of the image.
supplierSupplierThe supplier of the image.
userUserThe user who contributed the image.
attributionstringAttribution text which must be displayed when displaying the image.

Example

The following example shows how to display images for a place:

 import QtQuick 2.0
 import QtLocation 5.0

 ImageModel {
     id: imageModel
     batchSize: 3
     place: place
 }

 ListView {
     anchors.top: parent.top
     anchors.bottom: position.top
     width: parent.width
     spacing: 10

     model: imageModel
     orientation: ListView.Horizontal
     snapMode: ListView.SnapOneItem

     delegate: Item {
         width: listView.width
         height: listView.height

         Image {
             anchors.fill: parent
             source: url
             fillMode: Image.PreserveAspectFit
         }

         Text {
             text: supplier.name + "\n" + supplier.url
             width: parent.width
             anchors.bottom: parent.bottom
         }
     }
 }

Property Documentation

batchSize : int

This property holds the batch size to use when fetching more image items.


place : Place

This property holds the Place that the images are for.


read-onlytotalCount : int

This property holds the total number of image items for the place.


Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 5.0-snapshot
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web