source: flair-src/trunk/tools/FlairGCS/src/mapwidget.h@ 9

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

gcs

File size: 3.4 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation (qt-info@nokia.com)
6**
7** This file is part of the documentation of Qt. It was originally
8** published as part of Qt Quarterly.
9**
10** $QT_BEGIN_LICENSE:LGPL$
11** Commercial Usage
12** Licensees holding valid Qt Commercial licenses may use this file in
13** accordance with the Qt Commercial License Agreement provided with the
14** Software or, alternatively, in accordance with the terms contained in
15** a written agreement between you and Nokia.
16**
17** GNU Lesser General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU Lesser
19** General Public License version 2.1 as published by the Free Software
20** Foundation and appearing in the file LICENSE.LGPL included in the
21** packaging of this file. Please review the following information to
22** ensure the GNU Lesser General Public License version 2.1 requirements
23** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24**
25** In addition, as a special exception, Nokia gives you certain additional
26** rights. These rights are described in the Nokia Qt LGPL Exception
27** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28**
29** GNU General Public License Usage
30** Alternatively, this file may be used under the terms of the GNU
31** General Public License version 3.0 as published by the Free Software
32** Foundation and appearing in the file LICENSE.GPL included in the
33** packaging of this file. Please review the following information to
34** ensure the GNU General Public License version 3.0 requirements will be
35** met: http://www.gnu.org/copyleft/gpl.html.
36**
37** If you have questions regarding the use of this file, please contact
38** Nokia at qt-info@nokia.com.
39** $QT_END_LICENSE$
40**
41****************************************************************************/
42
43#ifndef MAPWIDGET_H
44#define MAPWIDGET_H
45
46#include <QGraphicsView>
47#include <QGraphicsGeoMap>
48
49class QGraphicsScene;
50class Map;
51class Landmark;
52
53using namespace QtMobility;
54
55class MapWidget : public QGraphicsView
56{
57 Q_OBJECT
58
59 public:
60 MapWidget(Map* map,QWidget *parent = 0);
61 void setMap(QtMobility::QGraphicsGeoMap *geoMap);
62 QGraphicsScene *scene() const;
63 bool IsUptodate(void);
64 void SetUptodate(void);
65 void Reset(void);
66 QList<Landmark*>* Landmarks(void);
67 bool LandmarkToSend(int index);
68 void AddLandmark(const QGeoCoordinate &coordinate);
69 void RemoveLandmarks(void);
70 void AddLandmarks(QGraphicsGeoMap *geoMap);
71 void AddPoint(QString name);
72
73 signals:
74 void positionChanged(const QGeoCoordinate &coordinate);
75
76 protected:
77 void mousePressEvent(QMouseEvent *event);
78 void mouseMoveEvent(QMouseEvent *event);
79 void mouseReleaseEvent(QMouseEvent *event);
80 void resizeEvent(QResizeEvent *event);
81 void wheelEvent(QWheelEvent *event);
82 void mouseDoubleClickEvent(QMouseEvent *event);
83
84 private slots:
85 void initDrag();
86
87 private:
88 QGraphicsGeoMap *geoMap;
89 bool dragging;
90 QPoint dragStartPosition;
91 bool pressed;
92 bool is_uptodate;
93
94 QGraphicsScene *m_scene;
95 QList<Landmark*> *landmarks;
96 QList<Landmark*> *landmarks_old;
97 QList<QString> points;
98 Landmark *landmark_match;
99 Map* map;
100};
101
102#endif
Note: See TracBrowser for help on using the repository browser.