Removed Engine::locationDataReady() slot.
[situare] / src / engine / engine.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         Henri Lampela - henri.lampela@ixonos.com
7         Jussi Laitinen - jussi.laitinen@ixonos.com
8         Sami Rämö - sami.ramo@ixonos.com
9
10     Situare is free software; you can redistribute it and/or
11     modify it under the terms of the GNU General Public License
12     version 2 as published by the Free Software Foundation.
13
14     Situare is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19     You should have received a copy of the GNU General Public License
20     along with Situare; if not, write to the Free Software
21     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
22     USA.
23  */
24
25
26 #ifndef ENGINE_H
27 #define ENGINE_H
28
29 #include <QObject>
30 #include <QTime>
31
32 #include "coordinates/geocoordinate.h"
33
34 #ifdef Q_WS_MAEMO_5
35 class Application;
36 #endif
37 class FacebookAuthentication;
38 class FacebookCredentials;
39 class GPSPosition;
40 class Location;
41 class MainWindow;
42 class MapEngine;
43 class NetworkAccessManager;
44 class RoutingService;
45 class SituareService;
46 class User;
47 class MCE;
48
49 class QTimer;
50
51 /**
52 * @brief Engine class for Situare Application
53 *
54 * This class handles all the underlaying login of the Situare
55 * application.
56 */
57 class SituareEngine : public QObject
58 {
59     Q_OBJECT
60 public:
61     /**
62     * @brief Constructor
63     *
64     */
65     SituareEngine();
66
67     /**
68     * @brief Destructor
69     */
70     ~SituareEngine();
71
72 /*******************************************************************************
73  * MEMBER FUNCTIONS AND SLOTS
74  ******************************************************************************/
75 public slots:
76     /**
77     * @brief Slot to intercept error signal from ImageFetcher and SituareService
78     *
79     * @param context Error context
80     * @param error Error message
81     */
82     void error(const int context, const int error);
83
84     /**
85     * @brief Slot to intercept signal when username is fetched from settings
86     *
87     */
88     void fetchUsernameFromSettings();
89
90     /**
91     * @brief Slot to intercept signal when location search is issued
92     *
93     * @param location QString location
94     */
95     void locationSearch(QString location);
96
97     /**
98     * @brief Slot to intercept signal when Login/Logout action is pressed
99     *
100     */
101     void loginActionPressed();
102
103     /**
104     * @brief Slot to intercept signal from successful login
105     *
106     */
107     void loginOk();
108
109     /**
110     * @brief Slot to intercept signal when user has cancelled login process
111     */
112     void loginProcessCancelled();
113
114     /**
115     * @brief Changes application state when logged out
116     *
117     */
118     void logout();
119
120     /**
121     * @brief Calls reverseGeo from SituareService to translate coordinates to street address
122     *
123     */
124     void requestAddress();
125
126     /**
127     * @brief Calls updateLocation from SituareService to send the location update to
128     *        Situare server.
129     *
130     * @param status Status message
131     * @param publish Publish on Facebook
132     */
133     void requestUpdateLocation(const QString &status = QString(), bool publish = false);
134
135     /**
136     * @brief Slot to refresh user data
137     */
138     void refreshUserData();
139
140     /**
141     * @brief Slot to intercept signal from successful location update
142     *
143     */
144     void updateWasSuccessful();
145
146     /**
147     * @brief Slot to intercept signal when new user data is available.
148     *        Splits User and friendsList data and emits them as two different signals.
149     *
150     * @param user instance of User
151     * @param friendsList list of User instances (friends)
152     */
153     void userDataChanged(User *user, QList<User *> &friendsList);
154
155 private:
156     /**
157     * @brief Read settings and determine whether to use GPS and autocentering.
158     * When values does not found on the settings, GPS and autocentering are enabled as a default.
159     */
160     void initializeGpsAndAutocentering();
161
162     /**
163       * @brief Connect signals coming from Facdebook authenticator
164       */
165     void signalsFromFacebookAuthenticator();
166
167     /**
168       * @brief Connect signals coming from GPS
169       */
170     void signalsFromGPS();
171
172     /**
173       * @brief Connect signals coming from MainWindow
174       */
175     void signalsFromMainWindow();
176
177     /**
178       * @brief Connect signals coming from MapEngine
179       */
180     void signalsFromMapEngine();
181
182     /**
183       * @brief Connect signals coming from MapView
184       */
185     void signalsFromMapView();
186
187     /**
188       * @brief Connect signals coming from RoutingService
189       */
190     void signalsFromRoutingService();
191
192     /**
193       * @brief Connect signals coming from Situare
194       */
195     void signalsFromSituareService();
196
197 private slots:
198     /**
199     * @brief Set auto centering feature enabled / disabled
200     *
201     * @param enabled true if enabled, false otherwise
202     */
203     void changeAutoCenteringSetting(bool enabled);
204
205     /**
206     * @brief Slot for disabling automatic centering when map is scrolled manually
207     */
208     void disableAutoCentering();
209
210     /**
211     * @brief Calls vibration feedback.
212     */
213     void draggingModeTriggered();
214
215     /**
216     * @brief Enables automatic location update.
217     *
218     * @param enabled true if enabled, false otherwise
219     * @param updateIntervalMsecs update interval in milliseconds
220     */
221     void enableAutomaticLocationUpdate(bool enabled, int updateIntervalMsecs = 0);
222
223     /**
224     * @brief Slot for enabling power saving.
225     *
226     * @param enabled true if enabled, false otherwise
227     */
228     void enablePowerSave(bool enabled);
229
230     /**
231     * @brief Slot to intercept signal when user's/friend's image is downloaded
232     *
233     * @param user Instance of user/friend
234     */
235     void imageReady(User *user);
236
237     /**
238     * @brief Requests automatic update.
239     *
240     * Makes automatic location update request if user has moved enough.
241     *
242     * @param position geo coordinates
243     */
244     void requestAutomaticUpdateIfMoved(GeoCoordinate position);
245
246     /**
247     * @brief Slot for setting auto centering state.
248     *
249     * Calls gps to send last known position
250     *
251     * @param enabled true if auto centering was enabled, false otherwise
252     */
253     void setAutoCentering(bool enabled);
254
255     /**
256      * @brief Sets zoom level to default when first GPS location is received if autocentering
257      * is enabled.
258      */
259     void setFirstStartZoomLevel();
260
261     /**
262     * @brief Slot for setting GPS state.
263     *
264     * @param enabled true if gps should be enabled, false otherwise
265     */
266     void setGPS(bool enabled);
267
268     /**
269     * @brief Automatic update interval timer timeout.
270     *
271     * Requests update location if user has moved.
272     */
273     void startAutomaticUpdate();
274
275 /*******************************************************************************
276  * SIGNALS
277  ******************************************************************************/
278 signals:
279     /**
280     * @brief Signals when automatic location update was enabled.
281     *
282     * @param enabled true if enabled, false otherwise
283     */
284     void automaticLocationUpdateEnabled(bool enabled);
285
286     /**
287     * @brief Signal to clear locationUpdateDialog's data
288     *
289     */
290     void clearUpdateLocationDialogData();
291
292     /**
293     * @brief Signals when new friends data is ready
294     *
295     * @param friendList List of User instances (friends)
296     */
297     void friendsLocationsReady(QList<User *> &friendList);
298
299     /**
300     * @brief Signals when friend's image is ready
301     *
302     * @param user Instance of friend
303     */
304     void friendImageReady(User *user);
305
306     /**
307     * @brief Emited when location request is parsed and is ready for further processing
308     *
309     * @param result List of Location items
310     */
311     void locationDataParsed(QList<Location> &result);
312
313     /**
314     * @brief Signals when new user data is ready
315     *
316     * @param user Instance of User
317     */
318     void userLocationReady(User *user);
319
320 /*******************************************************************************
321  * DATA MEMBERS
322  ******************************************************************************/
323 private:
324     bool m_autoCenteringEnabled;        ///< Auto centering flag
325     bool m_automaticUpdateFirstStart;   ///< Automatic location update first start flag
326     bool m_automaticUpdateRequest;      ///< Flag for automatic update request
327     bool m_userMoved;                   ///< Flag for user move
328
329 #ifdef Q_WS_MAEMO_5
330     Application *m_app;                              ///< Pointer to Application
331 #endif
332     FacebookAuthentication *m_facebookAuthenticator; ///< Instance for facebook authenticator
333     GPSPosition *m_gps;                              ///< Instance of the gps position
334     MainWindow *m_ui;                                ///< Instance of the MainWindow UI
335     MapEngine *m_mapEngine;                          ///< MapEngine
336     NetworkAccessManager *m_networkAccessManager;    ///< NetworkAccessManager
337     RoutingService *m_routingService;  ///< Instance of the routing service
338     SituareService *m_situareService;  ///< Instance of the situare server communication service
339     MCE *m_mce;                        ///< Instance of the MCE
340
341     QTimer *m_automaticUpdateIntervalTimer; ///< Automatic update interval timer
342     GeoCoordinate m_lastUpdatedGPSPosition; ///< Last updated GPS position
343
344 };
345
346 #endif // ENGINE_H