QGIS API Documentation
2.0.1-Dufour
|
Abstract base class for connection to a GPS device. More...
#include <qgsgpsconnection.h>
Public Types | |
enum | Status { NotConnected, Connected, DataReceived, GPSDataReceived } |
Signals | |
void | stateChanged (const QgsGPSInformation &info) |
void | nmeaSentenceReceived (const QString &substring) |
Public Member Functions | |
QgsGPSConnection (QIODevice *dev) | |
Constructor. | |
virtual | ~QgsGPSConnection () |
bool | connect () |
Opens connection to device. | |
bool | close () |
Closes connection to device. | |
void | setSource (QIODevice *source) |
Sets the GPS source. | |
Status | status () const |
Returns the status. | |
QgsGPSInformation | currentGPSInformation () const |
Returns the current gps information (lat, lon, etc.) |
Protected Slots | |
virtual void | parseData ()=0 |
Parse available data source content. |
Protected Attributes | |
QIODevice * | mSource |
Data source (e.g. | |
QgsGPSInformation | mLastGPSInformation |
Last state of the gps related variables (e.g. | |
Status | mStatus |
Connection status. |
Private Member Functions | |
void | cleanupSource () |
Closes and deletes mSource. | |
void | clearLastGPSInformation () |
Abstract base class for connection to a GPS device.
Definition at line 60 of file qgsgpsconnection.h.
Definition at line 65 of file qgsgpsconnection.h.
QgsGPSConnection::QgsGPSConnection | ( | QIODevice * | dev | ) |
Constructor.
dev | input device for the connection (e.g. serial device). The class takes ownership of the object |
Definition at line 32 of file qgsgpsconnection.cpp.
References clearLastGPSInformation(), connect(), and parseData().
|
virtual |
Definition at line 38 of file qgsgpsconnection.cpp.
References cleanupSource().
|
private |
Closes and deletes mSource.
Definition at line 69 of file qgsgpsconnection.cpp.
References mSource.
Referenced by setSource(), and ~QgsGPSConnection().
|
private |
Definition at line 86 of file qgsgpsconnection.cpp.
References QgsGPSInformation::direction, QgsGPSInformation::elevation, QgsGPSInformation::fixMode, QgsGPSInformation::fixType, QgsGPSInformation::hacc, QgsGPSInformation::hdop, QgsGPSInformation::latitude, QgsGPSInformation::longitude, mLastGPSInformation, QgsGPSInformation::pdop, QgsGPSInformation::quality, QgsGPSInformation::satellitesInView, QgsGPSInformation::satellitesUsed, QgsGPSInformation::satInfoComplete, QgsGPSInformation::satPrn, QgsGPSInformation::speed, QgsGPSInformation::status, QgsGPSInformation::utcDateTime, QgsGPSInformation::vacc, and QgsGPSInformation::vdop.
Referenced by QgsGPSConnection(), and setSource().
bool QgsGPSConnection::close | ( | ) |
Closes connection to device.
Definition at line 58 of file qgsgpsconnection.cpp.
References mSource.
bool QgsGPSConnection::connect | ( | ) |
Opens connection to device.
Definition at line 43 of file qgsgpsconnection.cpp.
References Connected, mSource, and mStatus.
Referenced by QgsGPSConnection(), QgsGpsdConnection::QgsGpsdConnection(), QgsQtLocationConnection::startGPS(), and QgsQtLocationConnection::startSatelliteMonitor().
|
inline |
Returns the current gps information (lat, lon, etc.)
Definition at line 90 of file qgsgpsconnection.h.
|
signal |
Referenced by QgsNMEAConnection::processStringBuffer().
|
protectedpure virtualslot |
Parse available data source content.
Referenced by QgsGPSConnection().
void QgsGPSConnection::setSource | ( | QIODevice * | source | ) |
Sets the GPS source.
The class takes ownership of the device class
Definition at line 79 of file qgsgpsconnection.cpp.
References cleanupSource(), clearLastGPSInformation(), and mSource.
|
signal |
|
inline |
Returns the status.
Possible state are not connected, connected, data received
Definition at line 87 of file qgsgpsconnection.h.
Referenced by QgsGPSDetector::detected().
|
protected |
Last state of the gps related variables (e.g.
position, time, ...)
Definition at line 100 of file qgsgpsconnection.h.
Referenced by QgsQtLocationConnection::broadcastConnectionAvailable(), clearLastGPSInformation(), QgsNMEAConnection::parseData(), QgsQtLocationConnection::parseData(), QgsNMEAConnection::processGGASentence(), QgsNMEAConnection::processGSASentence(), QgsNMEAConnection::processGSVSentence(), QgsNMEAConnection::processRMCSentence(), QgsNMEAConnection::processVTGSentence(), QgsQtLocationConnection::satellitesInUseUpdated(), and QgsQtLocationConnection::satellitesInViewUpdated().
|
protected |
Data source (e.g.
serial device, socket, file,...)
Definition at line 98 of file qgsgpsconnection.h.
Referenced by cleanupSource(), close(), connect(), QgsGpsdConnection::connected(), QgsGpsdConnection::error(), QgsNMEAConnection::parseData(), QgsGpsdConnection::QgsGpsdConnection(), and setSource().
|
protected |
Connection status.
Definition at line 102 of file qgsgpsconnection.h.
Referenced by QgsQtLocationConnection::broadcastConnectionAvailable(), connect(), QgsNMEAConnection::parseData(), QgsQtLocationConnection::parseData(), and QgsNMEAConnection::processStringBuffer().