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  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QGeoPositionInfoSource Class Reference

The QGeoPositionInfoSource class is an abstract base class for the distribution of positional updates. More...

    #include <QGeoPositionInfoSource>

Inherits QObject.

Inherited by QNmeaPositionInfoSource.


Public Types

enum PositioningMethod { SatellitePositioningMethods, NonSatellitePositioningMethods, AllPositioningMethods }
flags PositioningMethods

Properties

  • 1 property inherited from QObject

Public Functions

QGeoPositionInfoSource ( QObject * parent )
virtual ~QGeoPositionInfoSource ()
virtual QGeoPositionInfo lastKnownPosition ( bool fromSatellitePositioningMethodsOnly = false ) const = 0
virtual int minimumUpdateInterval () const = 0
PositioningMethods preferredPositioningMethods () const
virtual void setPreferredPositioningMethods ( PositioningMethods methods )
virtual void setUpdateInterval ( int msec )
virtual PositioningMethods supportedPositioningMethods () const = 0
int updateInterval () const
  • 29 public functions inherited from QObject

Public Slots

virtual void requestUpdate ( int timeout = 0 ) = 0
virtual void startUpdates () = 0
virtual void stopUpdates () = 0
  • 1 public slot inherited from QObject

Signals

void positionUpdated ( const QGeoPositionInfo & update )
void requestTimeout ()

Static Public Members

QGeoPositionInfoSource * createDefaultSource ( QObject * parent )
  • 4 static public members inherited from QObject

Additional Inherited Members

  • 1 public type inherited from QObject
  • 7 protected functions inherited from QObject
  • 2 protected variables inherited from QObject

Detailed Description

The QGeoPositionInfoSource class is an abstract base class for the distribution of positional updates.

The static function QGeoPositionInfoSource::createDefaultSource() creates a default position source that is appropriate for the platform, if one is available. Otherwise, QGeoPositionInfoSource can be subclassed to create an appropriate custom source of position data.

Users of a QGeoPositionInfoSource subclass can request the current position using requestUpdate(), or start and stop regular position updates using startUpdates() and stopUpdates(). When an update is available, positionUpdate() is emitted. The last known position can be accessed with lastUpdate().

If regular position updates are required, setUpdateInterval() can be used to specify how often these updates should be emitted. (If no interval is specified, updates are simply provided whenever they are available.) For example:

    // Emit updates every 10 seconds if available
    QGeoPositionInfoSource *source = QGeoPositionInfoSource::createDefaultSource();
    source->setUpdateInterval(10000);

To remove an update interval that was previously set, call setUpdateInterval() with a value of 0.

Note that the position source may have a minimum value requirement for update intervals, as returned by minimumIntervalForType().

Warning: On Windows CE it is not possible to detect if a device is GPS enabled. The default position source on a Windows CE device without GPS support will never provide any position data.


Member Type Documentation

enum QGeoPositionInfoSource::PositioningMethod
flags QGeoPositionInfoSource::PositioningMethods

Defines the types of positioning methods.

ConstantValueDescription
QGeoPositionInfoSource::SatellitePositioningMethods0x000000ffSatellite-based positioning methods such as GPS.
QGeoPositionInfoSource::NonSatellitePositioningMethods0xffffff00Other positioning methods.
QGeoPositionInfoSource::AllPositioningMethods0xffffffffA flag that matches all positioning methods.

The PositioningMethods type is a typedef for QFlags<PositioningMethod>. It stores an OR combination of PositioningMethod values.


Property Documentation

minimumUpdateInterval : const int

This property holds this property holds the minimum time (in milliseconds) required to retrieve a position update.

This is the minimum value accepted by setUpdateInterval() and requestUpdate().

Access functions:

virtual int minimumUpdateInterval () const = 0

updateInterval : int

This property holds this property holds the requested interval in milliseconds between each update.

If the update interval is not set (or is set to 0) the source will provide updates as often as necessary.

If the update interval is set, the source will provide updates at an interval as close to the requested interval as possible. If the requested interval is less than the minimumUpdateInterval(), the minimum interval is used instead.

The default value for this property is 0.

Note: Subclass implementations must call the base implementation of setUpdateInterval() so that updateInterval() returns the correct value.

Access functions:

int updateInterval () const
virtual void setUpdateInterval ( int msec )

Member Function Documentation

QGeoPositionInfoSource::QGeoPositionInfoSource ( QObject * parent )

Creates a position source with the specified parent.

QGeoPositionInfoSource::~QGeoPositionInfoSource ()   [virtual]

Destroys the position source.

QGeoPositionInfoSource * QGeoPositionInfoSource::createDefaultSource ( QObject * parent )   [static]

Creates and returns a position source with the given parent that reads from the system's default sources of location data.

Returns 0 if the system has no default position source.

QGeoPositionInfo QGeoPositionInfoSource::lastKnownPosition ( bool fromSatellitePositioningMethodsOnly = false ) const   [pure virtual]

Returns an update containing the last known position, or a null update if none is available.

If fromSatellitePositioningMethodsOnly is true, this returns the last known position received from a satellite positioning method; if none is available, a null update is returned.

void QGeoPositionInfoSource::positionUpdated ( const QGeoPositionInfo & update )   [signal]

If startUpdates() or requestUpdate() is called, this signal is emitted when an update becomes available.

The update value holds the value of the new update.

PositioningMethods QGeoPositionInfoSource::preferredPositioningMethods () const

Returns the positioning methods set by setPreferredPositioningMethods().

See also setPreferredPositioningMethods().

void QGeoPositionInfoSource::requestTimeout ()   [signal]

Emitted if requestUpdate() was called and the current position could not be retrieved within the specified timeout.

void QGeoPositionInfoSource::requestUpdate ( int timeout = 0 )   [pure virtual slot]

Attempts to get the current position and emit positionUpdated() with this information. If the current position cannot be found within the given timeout (in milliseconds) or if timeout is less than the value returned by minimumUpdateInterval(), requestTimeout() is emitted.

If the timeout is zero, the timeout defaults to a reasonable timeout period as appropriate for the source.

This does nothing if another update request is in progress. However it can be called even if startUpdates() has already been called and regular updates are in progress.

If the source uses multiple positioning methods, it tries to gets the current position from the most accurate positioning method within the given timeout.

void QGeoPositionInfoSource::setPreferredPositioningMethods ( PositioningMethods methods )   [virtual]

Sets the preferred positioning methods for this source to methods.

If methods includes a method that is not supported by the source, the unsupported method will be ignored.

Note: When reimplementing this method, subclasses must call the base method implementation to ensure preferredPositioningMethods() returns the correct value.

See also preferredPositioningMethods() and supportedPositioningMethods().

void QGeoPositionInfoSource::startUpdates ()   [pure virtual slot]

Starts emitting updates at regular intervals as specified by setUpdateInterval().

If setUpdateInterval() has not been called, the source will emit updates as soon as they become available.

void QGeoPositionInfoSource::stopUpdates ()   [pure virtual slot]

Stops emitting updates at regular intervals.

PositioningMethods QGeoPositionInfoSource::supportedPositioningMethods () const   [pure virtual]

Returns the positioning methods available to this source.

See also setPreferredPositioningMethods().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 72
  2. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  3. Une nouvelle ère d'IHM 3D pour les automobiles, un concept proposé par Digia et implémenté avec Qt 3
  4. Qt Creator 2.5 est sorti en beta, l'EDI supporte maintenant plus de fonctionnalités de C++11 2
  5. Vingt sociétés montrent leurs décodeurs basés sur Qt au IPTV World Forum, en en exploitant diverses facettes (déclaratif, Web, widgets) 0
  6. PySide devient un add-on Qt et rejoint le Qt Project et le modèle d'open gouvernance 1
  7. Thread travailleur avec Qt en utilisant les signaux et les slots, un article de Christophe Dumez traduit par Thibaut Cuvelier 1
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 51
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 69
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 229
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
  7. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
Page suivante

Le Qt Labs au hasard

Logo

Le moteur de rendu OpenGL

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

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 qtmobility-1.0-tp
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