Added signal and slot for view scaling level change
[situare] / src / map / maptile.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
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #ifndef MAPTILE_H
23 #define MAPTILE_H
24
25 #include <QGraphicsPixmapItem>
26 #include <QPoint>
27
28 /**
29 * @brief Map tile item
30 *
31 * @author Sami Rämö - sami.ramo (at) ixonos.com
32 */
33 class MapTile : public QGraphicsPixmapItem
34 {
35 public:
36     /**
37     * @brief Constructor
38     */
39     MapTile();
40
41     /**
42     * @brief Getter for zoom level
43     *
44     * @return Zoom level
45     */
46     int zoomLevel();
47
48     /**
49     * @brief Setter for zoom level
50     *
51     * @param zoomLevel Zoom level
52     */
53     void setZoomLevel(int zoomLevel);
54
55     /**
56     * @brief Set drawing level of the tile based on current zoom level
57     *
58     * Drawing order of MapTiles, which has the zoom level higher than the current
59     * zoom level, is reversed and those MapTiles are mapped between lower level MapTiles.
60     * Example: If maximum zoom level is 18 and current view zoomlevel is 15, then
61     * the drawing order from top to bottom is 15, 16, 14, 17, 13, 18, 12, 11, 10, ...
62     * @param currentZoomLevel current zoom level
63     */
64     void setSceneLevel(int currentZoomLevel);
65
66     /**
67     * @brief Getter for tile number
68     *
69     * @return Tile number
70     */
71     QPoint tileNumber();
72
73     /**
74     * @brief Setter for tile number
75     *
76     * Does also set the position for the item in the MapScene coordinate system
77     * @param tileNumber Tile number
78     */
79     void setTileNumber(QPoint tileNumber);
80
81 private:
82     /**
83     * @brief Set position of the tile in the MapScene coordinate system
84     *
85     * Does set the position based on the m_zoomLevel and the m_TileNumber. Position is set to
86     * (UNDEFINED, UNDEFINED) if there is something wrong with zoom level or tile numbers
87     */
88     void setPosition();
89
90 private:
91     int m_zoomLevel; ///< Zoom level
92     QPoint m_tileNumber; ///< Tile number
93 };
94
95 #endif // MAPTILE_H