source: flair-src/trunk/tools/FlairGCS/src/Landmark.h@ 195

Last change on this file since 195 was 67, checked in by Sanahuja Guillaume, 8 years ago

corrections bugs checkpoint map

File size: 1015 bytes
RevLine 
[10]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[10]4// %flair:license}
[9]5#ifndef LANDMARK_H
6#define LANDMARK_H
7
8#include <QGeoMapGroupObject>
9#include <QGeoCoordinate>
10
11namespace QtMobility {
[15]12class QGraphicsGeoMap;
13class QGeoMapTextObject;
14class QGeoMapPixmapObject;
[9]15}
16
[15]17class Landmark : public QtMobility::QGeoMapGroupObject {
[9]18
19public:
[15]20 Landmark(QtMobility::QGraphicsGeoMap *geoMap,
21 const QtMobility::QGeoCoordinate &coordinate, QString name,
22 QString type = "landmark");
23 ~Landmark();
[9]24
[15]25 QtMobility::QGeoCoordinate coordinate(void);
26 void setCoordinate(const QtMobility::QGeoCoordinate &coordinate);
27 void setText(QString string);
28 void setColor(Qt::GlobalColor color);
29 void RemoveLandmark(void);
30 void AddLandmark(QtMobility::QGraphicsGeoMap *geoMap);
[67]31 bool IsUptodate(void);
[9]32
33private:
[15]34 QtMobility::QGeoMapTextObject *text;
35 QtMobility::QGeoMapPixmapObject *pixmap;
36 QtMobility::QGraphicsGeoMap *geoMap;
[9]37};
38
39#endif
Note: See TracBrowser for help on using the repository browser.