Merge branch 'master' into current_position_marker
[situare] / src / map / mapview.h
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Sami Rämö - sami.ramo@ixonos.com
6        Pekka Nissinen - pekka.nissinen@ixonos.com
7
8    Situare is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License
10    version 2 as published by the Free Software Foundation.
11
12    Situare is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with Situare; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
20    USA.
21 */
22
23 #ifndef MAPVIEW_H
24 #define MAPVIEW_H
25
26 #include <QGraphicsView>
27 #include <QPropertyAnimation>
28
29 /**
30 * @brief Map view widget
31 *
32 * @author Sami Rämö - sami.ramo (at) ixonos.com
33 * @author Pekka Nissinen - pekka.nissinen (at) ixonos.com
34 */
35 class MapView : public QGraphicsView
36 {
37     Q_OBJECT
38
39     /**
40     * @brief View scaling
41     *
42     * @property viewScale
43     */
44     Q_PROPERTY(qreal viewScale READ viewScale WRITE setViewScale)
45
46 public:
47     /**
48     * @brief Constructor
49     *
50     * @param parent Parent
51     */
52     MapView(QWidget *parent = 0);
53
54 /*******************************************************************************
55  * BASE CLASS INHERITED AND REIMPLEMENTED MEMBER FUNCTIONS
56  ******************************************************************************/
57 protected:
58     /**
59     * @brief Called when view is resized.
60     *
61     * @param event resize event
62     */
63     void resizeEvent(QResizeEvent *event);
64
65 private:
66     /**
67     * @brief Event handler for mouse move events
68     *
69     * Does calculate mouse movement delta from last event position and new view center
70     * based on that delta. Saves current event position for next round. Emits viewScrolled
71     * signal and doesn't actually scroll the view.
72     * @param event Mouse event
73     */
74     void mouseMoveEvent(QMouseEvent *event);
75
76     /**
77     * @brief Event handler for mouse press events
78     *
79     * Saves inial values for mouse and scene location for dragging view.
80     * @param event Mouse event
81     */
82     void mousePressEvent(QMouseEvent *event);
83
84 /*******************************************************************************
85  * MEMBER FUNCTIONS AND SLOTS
86  ******************************************************************************/
87 public slots:
88     /**
89     * @brief Slot for centering view to new location
90     *
91     * @param sceneCoordinate Scene coordinates of the new center point
92     */
93     void centerToSceneCoordinates(QPoint sceneCoordinate);
94
95     /**
96     * @brief Set zoom level of the view
97     *
98     * @param zoomLevel Zoom level
99     */
100     void setZoomLevel(int zoomLevel);
101
102 private:
103     /**
104     * @brief Set new view scale
105     *
106     * @param viewScale New scaling factor
107     */
108     void setViewScale(qreal viewScale);
109
110     /**
111     * @brief Get current view scale
112     *
113     * @return Current view scaling factor
114     */
115     qreal viewScale();
116
117 /*******************************************************************************
118  * SIGNALS
119  ******************************************************************************/
120 signals:
121     /**
122     * @brief Signal for view resize events.
123     *
124     * Signal is emitted when view has been resized.
125     * @param size view size
126     */
127     void viewResized(const QSize &size);
128
129     /**
130     * @brief Signal for view scroll events
131     *
132     * Signal is emitted when view is scrolled.
133     * @param sceneCoordinate Scene coordinates of the new center point of the view
134     */
135     void viewScrolled(QPoint sceneCoordinate);
136
137     /**
138     * @brief Signal for informing that zooming animation is finished
139     *
140     */
141     void viewZoomFinished();
142
143     /**
144     * @brief Signal for drawing OSM license
145     *
146     * Signal is emitted when view is resized.
147     * @param width Viewport width
148     * @param height Viewport height
149     */
150     void viewResizedNewSize(int width, int height);
151
152 /*******************************************************************************
153  * DATA MEMBERS
154  ******************************************************************************/
155 private:
156     QPoint m_mousePosition; ///< Previous mouse event position
157     QPoint m_scenePosition; ///< New center position
158     QPropertyAnimation *m_zoomAnimation; ///< Zoom animation
159 };
160
161 #endif // MAPVIEW_H