Modified header files function and member order.
[situare] / src / map / mapcommon.h
index 877623d..74785e8 100644 (file)
    USA.
 */
 
-#ifndef COMMON_H
-#define COMMON_H
+#ifndef MAPCOMMON_H
+#define MAPCOMMON_H
 
 #include <QtCore>
 
-static const int TILE_SIZE_X = 256; ///< Tile image size in x direction
-static const int TILE_SIZE_Y = 256; ///< Tile image size in y direction
+const int TILE_SIZE_X = 256; ///< Tile image size in x direction
+const int TILE_SIZE_Y = 256; ///< Tile image size in y direction
 
-static const int MIN_MAP_ZOOM_LEVEL = 0; ///< Minimum zoom level
-static const int MAX_MAP_ZOOM_LEVEL = 18; ///< Maximum zoom level
-static const int MIN_MAP_SCENE_NORMAL_LEVEL = MAX_MAP_ZOOM_LEVEL + 1;
+const int MIN_MAP_ZOOM_LEVEL = 0; ///< Minimum zoom level
+const int MAX_MAP_ZOOM_LEVEL = 18; ///< Maximum zoom level
+const int MIN_MAP_SCENE_NORMAL_LEVEL = MAX_MAP_ZOOM_LEVEL + 1;
 
-static const int ZOOM_FPS = 30; ///< FPS for the zoom effect
-static const qreal ZOOM_TIME = 0.25; ///< Length of the zoom effect (seconds)
+const int ZOOM_FPS = 30; ///< FPS for the zoom effect
+const qreal ZOOM_TIME = 0.25; ///< Length of the zoom effect (seconds)
 
-static const qreal MAX_LATITUDE = 85.05112877980659237802;  ///< Maximum latitude value
-static const qreal MIN_LATITUDE = -MAX_LATITUDE; ///< Minimum latitude value
-static const qreal MIN_LONGITUDE = -180.0;  ///< Minimum longitude value
-static const qreal MAX_LONGITUDE = 180.0;  ///< Maximum longitude value
+const qreal MAX_LATITUDE = 85.05112877980659237802;  ///< Maximum latitude value
+const qreal MIN_LATITUDE = -MAX_LATITUDE; ///< Minimum latitude value
+const qreal MIN_LONGITUDE = -180.0;  ///< Minimum longitude value
+const qreal MAX_LONGITUDE = 180.0;  ///< Maximum longitude value
 
-static const int DEFAULT_SCREEN_WIDTH = 973;    ///< Default screen width
-static const int DEFAULT_SCREEN_HEIGHT = 614;   ///< Default screen height
-static const int DEFAULT_ZOOM_LEVEL = 14;       ///< Default zoom level
-static const qreal DEFAULT_LONGITUDE = 25.5000; ///< Default longitude value
-static const qreal DEFAULT_LATITUDE = 65.0000;  ///< Default latitude value
+const int DEFAULT_SCREEN_WIDTH = 973;    ///< Default screen width
+const int DEFAULT_SCREEN_HEIGHT = 614;   ///< Default screen height
+const int DEFAULT_ZOOM_LEVEL = 14;       ///< Default zoom level
+const qreal DEFAULT_LONGITUDE = 25.5000; ///< Default longitude value
+const qreal DEFAULT_LATITUDE = 65.0000;  ///< Default latitude value
 
-static const int GRID_PADDING = 1;  ///< Grid padding used in tile grid calculation
+const int GRID_PADDING = 1;  ///< Grid padding used in tile grid calculation
 
 /**
 * \var UNDEFINED
 * \brief Value to be used when zoom level, tile numbers or position are not defined
 */
-static const int UNDEFINED = -1;
+const int UNDEFINED = -1;
 
-#endif // COMMON_H
+#endif // MAPCOMMON_H