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  · 

ValueSpacePublisher

The ValueSpacePublisher allows application to publish values to Value Space. More...

Inherits QtObject

Properties

Detailed Description

ValueSpacePublishers are constructed with a fixed path which cannot be changed. And you should set the path property before publishing any values. If you need to publish within multiple different paths, you will need multiple publishers.

For the keys within the path chosen, if the key names to be published are alphanumeric, they can be accessed through dynamic properties by setting the keys list.

Example:

 ValueSpacePublisher {
     id: battery
     path: "/power/battery"
     keys: ["charge", "charging"]
 }

 MouseArea {
     onClicked: {
         battery.charge = 50
         battery.charging = true
     }
 }

Alternatively, for key names that can't be mapped to properties, or for key names shadowed by existing properties (like "value" or "path"), you can also access the value property of the publisher itself.

 ValueSpacePublisher {
     id: nonalpha
     path: "/something/with a space/value"
 }

 MouseArea {
     onClicked: {
         nonalpha.value = "example"
     }
 }

Property Documentation

read-onlyhasSubscribers : bool

This property is true if there are subscribers currently subscribed to the ValueSpace path being published by this Publisher.

This property is read only.


Setting this property creates a set of dynamic properties allowing easy access to set the values of keys under this Publisher's path.


path : string

This property holds the base path of the publisher, and it should be written before publishing any data. Note it can only be written once, and further writing has no effects.


value : QVariant

This property publishes a new value to the ValueSpace at the path given through the path property. This property is write only.


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