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

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

lic

File size: 1000 bytes
Line 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
4// %flair:license}
5#ifndef LANDMARK_H
6#define LANDMARK_H
7
8#include <QGeoMapGroupObject>
9#include <QGeoCoordinate>
10
11namespace QtMobility {
12 class QGraphicsGeoMap;
13 class QGeoMapTextObject;
14 class QGeoMapPixmapObject;
15}
16
17
18class Landmark : public QtMobility::QGeoMapGroupObject
19{
20
21public:
22 Landmark(QtMobility::QGraphicsGeoMap *geoMap,const QtMobility::QGeoCoordinate &coordinate,QString name,QString type="landmark");
23 ~Landmark();
24
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);
31
32private:
33 QtMobility::QGeoMapTextObject* text;
34 QtMobility::QGeoMapPixmapObject* pixmap;
35 QtMobility::QGraphicsGeoMap *geoMap;
36};
37
38#endif
Note: See TracBrowser for help on using the repository browser.