source: flair-src/trunk/tools/FlairGCS/src/Landmark.cpp@ 82

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

corrections bugs checkpoint map

File size: 1.7 KB
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#include "Landmark.h"
6#include <QPen>
7#include <QGeoMapTextObject>
8#include <QGeoMapPixmapObject>
9#include <QGraphicsGeoMap>
10
11using namespace QtMobility;
12
13Landmark::Landmark(QGraphicsGeoMap *geoMap, const QGeoCoordinate &coordinate,
14 QString name, QString type) {
15 geoMap->addMapObject(this);
16 this->geoMap = geoMap;
17 pixmap = new QGeoMapPixmapObject();
18 pixmap->setCoordinate(coordinate);
19
20 if (type == "cross") {
21 pixmap->setOffset(QPoint(-16, -16));
22 pixmap->setPixmap(QPixmap(":cross.png"));
23 } else {
24 pixmap->setOffset(QPoint(-2, -30));
25 pixmap->setPixmap(QPixmap(":landmark.png"));
26 }
27 addChildObject(pixmap);
28
29 QFont font;
30 font.setWeight(QFont::Bold);
31 text = new QGeoMapTextObject(coordinate, name, font, QPoint(0, 10));
32 text->setPen(QPen(Qt::NoPen));
33 text->setBrush(QBrush(Qt::red));
34 addChildObject(text);
35}
36
37Landmark::~Landmark() {
38 geoMap->removeMapObject(this);
39 clearChildObjects();
40}
41
42void Landmark::setText(QString string) { text->setText(string); }
43
44void Landmark::setColor(Qt::GlobalColor color) {
45 text->setBrush(QBrush(color));
46}
47
48bool Landmark::IsUptodate(void) {
49 if(text->brush()==QBrush(Qt::white)) {
50 return true;
51 } else {
52 return false;
53 }
54}
55
56void Landmark::setCoordinate(const QGeoCoordinate &coordinate) {
57 pixmap->setCoordinate(coordinate);
58 text->setCoordinate(coordinate);
59}
60
61QGeoCoordinate Landmark::coordinate(void) { return pixmap->coordinate(); }
62
63void Landmark::RemoveLandmark(void) { geoMap->removeMapObject(this); }
64
65void Landmark::AddLandmark(QGraphicsGeoMap *geoMap) {
66 geoMap->addMapObject(this);
67 this->geoMap = geoMap;
68}
Note: See TracBrowser for help on using the repository browser.