// // This file is part of the Marble Desktop Globe. // // This program is free software licensed under the GNU LGPL. You can // find a copy of this license in LICENSE.txt in the top directory of // the source code. // // Copyright 2007 Carlos Licea // #ifndef GPSLAYER_H #define GPSLAYER_H #include "AbstractLayer.h" class QRegion; namespace Marble { class PositionTracking; class GpxFile; class GpxFileModel; class Track; class Waypoint; class GpsLayer : public AbstractLayer { public: explicit GpsLayer( GpxFileModel *fileModel, QObject *parent =0 ); ~GpsLayer(); virtual void paintLayer( ClipPainter *painter, const QSize &canvasSize, ViewParams *viewParams ); virtual void paintCurrentPosition( ClipPainter *painter, const QSize &canvasSize, ViewParams *viewParams ); void changeCurrentPosition( qreal lat, qreal lon ); // public slots: bool updateGps(const QSize &canvasSize, ViewParams *viewParams, QRegion ®); GpxFileModel *m_fileModel; PositionTracking* getPositionTracking(); public slots: virtual void clearModel(); private: Waypoint *m_currentPosition; // QVector *m_files; GpxFile *m_currentGpx; PositionTracking *m_tracking; }; } #endif