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  · 

Sensor Explorer example

The Sensor Explorer example demonstrates how to read the meta-data of available sensors.

Overview

This example contains 2 projects.

A Sensor Explorer QML Import to make the sensors and their meta-data available to a QML application.

A Sensor Explorer QML Application that represents the Sensor Explorer QML Import information to the user interface.

Sensor Explorer QML Import

The Sensor Explorer QML import exports the QSensorExplorer, QPropertyInfo and the QSensorItem class as a QML element.

This example creates the Explorer 1.0 import.

It consists of the code under the import/ directory.

Sensor Explorer QML Application

This is a pure QML application that can be run from Qt Creator or directly using the qmlscene binary. This app won't work if it cannot locate its related import.

 qmlscene main.qml

Overview

To write a QML application that will use the Explorer QML element you need to do the following steps:

Import the Explorer 1.0 declarative plugin:

 import Explorer 1.0

Create a SensorExplorer QML item:

     SensorExplorer {
         id: explorer
     }

You can retrieve a list of all available sensors using the SensorExplorer:

         listmodel: explorer.availableSensors

To retrieve the properties of a SensorItem use:

                 propertyList.listmodel = sensorList.selectedItem.properties;

Changing a property value can be done like:

                 explorer.selectedSensorItem.changePropertyValue(propertyList.selectedItem, textfield.text);

Starting and stoping a sesnor can be done like:

                 if (text === "Start") {
                     explorer.selectedSensorItem.start = true;
                     text = "Stop";
                 }
                 else {
                     explorer.selectedSensorItem.start = false;
                     text = "Start";
                 }

Files:

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