Fixed a mysterious login error that occured on some machines
[situare] / src / ui / mapviewscreen.h
1  /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Kaj Wallin - kaj.wallin@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
23 #ifndef MAPVIEWTAB_H
24 #define MAPVIEWTAB_H
25
26 #include <QtGui>
27
28 #include "map/mapengine.h"
29 #include "friendlistpanel.h"
30 #include "userpanel.h"
31
32 /**
33 * @brief Map View class. Used to display Map
34 *
35 * @class MapViewScreen mainwindow.h "src/ui/mainwindow.h"
36 */
37 class MapViewScreen : public QWidget
38 {
39     Q_OBJECT
40
41 public:
42     /**
43     * @brief Constructor
44     *
45     * @param parent Parent
46     */
47     MapViewScreen(QWidget *parent = 0);
48
49 /*******************************************************************************
50  * MEMBER FUNCTIONS AND SLOTS
51  ******************************************************************************/
52 private slots:
53
54     /**
55     * @brief Slot for enabling auto centering.
56     *
57     * @param enabled true if map should center to GPS position, false otherwise
58     */
59     void enableAutoCentering(bool enabled);
60
61     /**
62     * @brief Slot for drawing the Open Street Map license text
63     *
64     * @param width Width of the viewport
65     * @param height Height of the viewport
66     */
67     void drawOsmLicense(int width, int height);
68
69     /**
70     * @brief Slot for GPS position.
71     *
72     * @param position latitude and longitude values
73     */
74     void positionReceived(QPointF position);
75
76 /*******************************************************************************
77  * SIGNALS
78  ******************************************************************************/
79 signals:
80     /**
81     * @brief Signal when user location is fetched
82     *
83     * @param user User data
84     */
85     void userLocationReady(User *user);
86
87     /**
88     * @brief Signal when friend list locations are fetched
89     *
90     * Forwarded to map engine and friends list panel
91     *
92     * @param friendsList Friends list data
93     */
94     void friendsLocationsReady(QList<User *> &friendsList);
95
96 /*******************************************************************************
97  * DATA MEMBERS
98  ******************************************************************************/
99 private:
100     bool m_autoCenteringEnabled;        ///< Enable
101     FriendListPanel *friendsListPanel; ///< Instance of friends list panel
102     MapEngine *mapEngine; ///< MapEngine
103     QLabel *osmLicense; ///< Label for Open Street Map license
104     UserInfoPanel *userPanel; ///< Instance of the user information panel
105 };
106
107 #endif // MAPVIEWTAB_H