Modified MapView::mouseDoubleClickEvent.
[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
28 class QPropertyAnimation;
29
30 /**
31 * @brief Map view widget
32 *
33 * @author Sami Rämö - sami.ramo (at) ixonos.com
34 * @author Pekka Nissinen - pekka.nissinen (at) ixonos.com
35 */
36 class MapView : public QGraphicsView
37 {
38     Q_OBJECT
39
40     /**
41     * @brief View scaling
42     *
43     * @property viewScale
44     */
45     Q_PROPERTY(qreal viewScale READ viewScale WRITE setViewScale)
46
47 public:
48     /**
49     * @brief Constructor
50     *
51     * @param parent Parent
52     */
53     MapView(QWidget *parent = 0);
54
55 /*******************************************************************************
56  * BASE CLASS INHERITED AND REIMPLEMENTED MEMBER FUNCTIONS
57  ******************************************************************************/
58 protected:
59     /**
60     * @brief Event handler for mouse double click event
61     *
62     * Emits zoomIn signal.
63     * @param event QMouseEvent
64     */
65     void mouseDoubleClickEvent(QMouseEvent *event);
66
67     /**
68     * @brief Event handler for mouse move events
69     *
70     * Does calculate mouse movement delta from last event position and new view center
71     * based on that delta. Saves current event position for next round. Emits viewScrolled
72     * signal and doesn't actually scroll the view.
73     * @param event Mouse event
74     */
75     void mouseMoveEvent(QMouseEvent *event);
76
77     /**
78     * @brief Event handler for mouse press events
79     *
80     * Saves inial values for mouse and scene location for dragging view.
81     * @param event Mouse event
82     */
83     void mousePressEvent(QMouseEvent *event);
84
85     void mouseReleaseEvent(QMouseEvent *event);
86
87     /**
88     * @brief Called when view is resized.
89     *
90     * @param event resize event
91     */
92     void resizeEvent(QResizeEvent *event);
93
94 /*******************************************************************************
95  * MEMBER FUNCTIONS AND SLOTS
96  ******************************************************************************/
97 public slots:
98     /**
99     * @brief Slot for centering view to new location
100     *
101     * @param sceneCoordinate Scene coordinates of the new center point
102     */
103     void centerToSceneCoordinates(QPoint sceneCoordinate);
104
105     /**
106     * @brief Set zoom level of the view
107     *
108     * @param zoomLevel Zoom level
109     */
110     void setZoomLevel(int zoomLevel);
111
112     void disableAnchor();
113
114 private:
115     /**
116     * @brief Set new view scale
117     *
118     * @param viewScale New scaling factor
119     */
120     void setViewScale(qreal viewScale);
121
122     /**
123     * @brief Get current view scale
124     *
125     * @return Current view scaling factor
126     */
127     qreal viewScale();
128
129 /*******************************************************************************
130  * SIGNALS
131  ******************************************************************************/
132 signals:
133     /**
134     * @brief Signal for view resize events.
135     *
136     * Signal is emitted when view has been resized.
137     * @param size view size
138     */
139     void viewResized(const QSize &size);
140
141     /**
142     * @brief Signal for view scroll events
143     *
144     * Signal is emitted when view is scrolled.
145     * @param sceneCoordinate Scene coordinates of the new center point of the view
146     */
147     void viewScrolled(QPoint sceneCoordinate);
148
149     /**
150     * @brief Signal for informing that zooming animation is finished
151     */
152     void viewZoomFinished();
153
154     /**
155     * @brief Signal for zooming in.
156     */
157     void zoomIn();
158
159 /*******************************************************************************
160  * DATA MEMBERS
161  ******************************************************************************/
162 private:
163     QPoint m_mousePosition;               ///< Previous mouse event position
164     QPoint m_scenePosition;               ///< New center position
165     QPropertyAnimation *m_zoomAnimation;  ///< Zoom animation
166 };
167
168 #endif // MAPVIEW_H