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  · 

ContactDetail

The ContactDetail element holds a contact detail such as a phone number or a website address. More...

Inherits QtObject

This type was introduced in Qt Location 5.0.

Properties

Detailed Description

The ContactDetail provides a single detail on how one could contact a Place. The ContactDetail consists of a label, which is a localized string describing the contact method, and a value representing the actual contact detail.

Examples

The following example demonstrates how to assign a single phone number to a place in JavaScript:

 function writeSingle() {
     var phoneNumber = Qt.createQmlObject('import QtLocation 5.0; ContactDetail {}', place);
     phoneNumber.label = "Phone";
     phoneNumber.value = "555-5555"
     place.contactDetails.phone = phoneNumber;
 }

The following demonstrates how to assign multiple phone numbers to a place in JavaScript:

 function writeMultiple() {
     var bob = Qt.createQmlObject('import QtLocation 5.0; ContactDetail {}', place);
     bob.label = "Bob";
     bob.value = "555-5555"

     var alice = Qt.createQmlObject('import QtLocation 5.0; ContactDetail {}', place);
     alice.label = "Alice";
     alice.value = "555-8745"

     var numbers = new Array();
     numbers.push(bob);
     numbers.push(alice);

     place.contactDetails.phone = numbers;
 }

Note, due to limitations of the QQmlPropertyMap, it is not possible to declaratively specify the contact details in QML, it can only be accomplished via JavaScript.

Property Documentation

contactDetail : QPlaceContactDetail

For details on how to use this property to interface between C++ and QML see "Interfaces between C++ and QML Code".


label : string

This property holds a label describing the contact detail.

The label can potentially be localized. The language is dependent on the entity that sets it, typically this is the Plugin. The Plugin::locales property defines what language is used.


value : string

This property holds the value of the contact detail which may be a phone number, an email address, a website url and so on.


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