Added feature for full screen toggling
[situare] / src / ui / mainwindow.h
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5       Henri Lampela - henri.lampela@ixonos.com
6       Kaj Wallin - kaj.wallin@ixonos.com
7       Sami Rämö - sami.ramo@ixonos.com
8
9    Situare is free software; you can redistribute it and/or
10    modify it under the terms of the GNU General Public License
11    version 2 as published by the Free Software Foundation.
12
13    Situare is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with Situare; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
21    USA.
22 */
23
24 #ifndef MAINWINDOW_H
25 #define MAINWINDOW_H
26
27 #include <QtGui/QMainWindow>
28 #include <QUrl>
29
30 #include "network/networkcookiejar.h"
31 #include "panelsidebar.h"
32
33 class QGraphicsScene;
34 class QLabel;
35 class QWebView;
36
37 class FacebookAuthentication;
38 class FriendListPanel;
39 class MapScene;
40 class MapView;
41 class SituareService;
42 class User;
43 class UserInfoPanel;
44 class ZoomButtonPanel;
45 class SettingsDialog;
46 class QToolButton;
47
48 /**
49 * @brief Main Window Class
50 */
51 class MainWindow : public QMainWindow
52 {
53     Q_OBJECT
54
55 public:
56     /**
57     * @brief Constructor
58     *
59     * @param parent Parent
60     */
61     MainWindow(QWidget *parent = 0);
62
63     /**
64     * @brief Destructor
65     *
66     */
67     ~MainWindow();
68
69 /*******************************************************************************
70  * BASE CLASS INHERITED AND REIMPLEMENTED MEMBER FUNCTIONS
71  ******************************************************************************/
72 private:
73     /**
74       * @brief HW increase and decrease key presses are grabbed and used for zooming the map.
75       */
76     void keyPressEvent(QKeyEvent* event);
77
78 /*******************************************************************************
79  * MEMBER FUNCTIONS AND SLOTS
80  ******************************************************************************/
81 public:
82     /**
83     * @brief Clears cookie jar
84     *
85     */
86     void clearCookieJar();
87
88     /**
89     * @brief
90     *
91     * @param logged
92     */
93     void loggedIn(bool logged);
94
95     /**
96     * @brief Enable / disable auto centering button.
97     *
98     * @param enabled true if shoud be enabled, false otherwise
99     */
100     void setAutoCenteringButtonEnabled(bool enabled);
101
102     /**
103     * @brief Enable / disable GPS button.
104     *
105     * Does set visibilities for manual location cursor and auto centering menu button.
106     *
107     * @param enabled true if enabled, false otherwise
108     */
109     void setGPSButtonEnabled(bool enabled);
110
111     /**
112       * @brief Set scene for MapView
113       *
114       * @param scene Scene to be set
115       */
116     void setMapViewScene(QGraphicsScene *scene);
117
118     /**
119     * @brief Show Maemo information box with message.
120     *
121     * @param message Information message
122     * @param modal Modal = true, non-modal false
123     */
124     void showMaemoInformationBox(const QString &message, bool modal=false);
125
126     /**
127     * @brief Gets the username from member variable for saving purposes
128     *
129     * @return QString Username
130     */
131     const QString username();
132
133 public slots:
134     /**
135     * @brief Slot to intercept signal when login has failed (loginFailure signal)
136     *
137     */
138     void loginFailed();
139
140     /**
141     * @brief Slot to intercept signal when login with cookies is requested
142     *
143     */
144     void loginUsingCookies();
145
146     /**
147     * @brief Public slot, which open settings dialog
148     */
149     void openSettingsDialog();
150
151     /**
152     * @brief Sets username to member variable for login dialog
153     *
154     * @param username Username to be set
155     */
156     void setUsername(const QString &username);
157
158     /**
159     * @brief Public slot to intercept signal when old cerdentials are invalid or credentials
160     *        doesn't exist yet
161     *
162     * @param url Login page url
163     */
164     void startLoginProcess(const QUrl &url);
165
166     /**
167     * @brief Toggle progress indicator.
168     *
169     * @param state true if progress indicator should be shown, false otherwise
170     */
171     void toggleProgressIndicator(bool state);
172
173     /**
174     * @brief Shows / hides Situare related UI items
175     *
176     * @param show
177     */
178     void updateItemVisibility(bool show);
179
180 private:
181     /**
182       * @brief Build fullscreen toggle button and connect slots
183       */
184     void buildFullScreenButton();
185
186     /**
187       * @brief Build friend list panel and connect slots
188       */
189     void buildFriendListPanel();
190
191     /**
192       * @brief Build manual location setting cross hair and connect slots
193       */
194     void buildManualLocationCrosshair();
195
196     /**
197       * @brief Build map and connect slots
198       */
199     void buildMap();
200
201     /**
202       * @brief Build OSM license and connect slots
203       */
204     void buildOsmLicense();
205
206     /**
207       * @brief Build user info panel and connect slots
208       */
209     void buildUserInfoPanel();
210
211     /**
212     * @brief Build webview and connect slots
213     *
214     */
215     void buildWebView();
216
217     /**
218       * @brief Build zoom button panel and connect slots
219       */
220     void buildZoomButtonPanel();
221
222     /**
223     * @brief Private method to create the Menu items
224     */
225     void createMenus();
226
227     /**
228       * @brief Grab or release HW increase and decrease buttons.
229       *
230       * @param grab Use true for grabbing and false for releasing the keys
231       */
232     void grabZoomKeys(bool grab);
233
234     /**
235       * @brief Set own location crosshair visibility
236       *
237       * @param visible
238       */
239     void setOwnLocationCrosshairVisibility(bool visible);
240
241 private slots:
242     /**
243     * @brief Slot for drawing the fullscreen toggle button
244     *
245     * @param size Size of the screen
246     */
247     void drawFullScreenButton(const QSize &size);
248
249     /**
250     * @brief Slot for drawing the Open Street Map license text
251     *
252     * @param size Size of the screen
253     */
254     void drawOsmLicense(const QSize &size);
255
256     /**
257     * @brief Slot for drawing the own location crosshair
258     *
259     * @param width Width of the viewport
260     * @param height Height of the viewport
261     */
262     void drawOwnLocationCrosshair(int width, int height);
263
264     /**
265     * @brief Slot for gps error.
266     *
267     * @param message error message
268     */
269     void gpsError(const QString &message);
270
271     /**
272     * @brief Slot for gps timeout.
273     *
274     * Called when request timeout occurs.
275     */
276     void gpsTimeout();
277
278     /**
279     * @brief Slot to load cookies from settings
280     *
281     */
282     void loadCookies();
283
284     /**
285     * @brief Slot to intercept signal when webview has finished loading webpage
286     *
287     * @param done Status of the loading
288     */
289     void loadDone(bool done);
290
291     /**
292     * @brief Slot to save cookies to settings
293     *
294     */
295     void saveCookies();
296
297     /**
298     * @brief Set correnct view port size to datamembers
299     *
300     * @param width Width of the viewport
301     * @param height Height of the viewport
302     */
303     void setViewPortSize(const int width, const int height);
304
305     /**
306     * @brief Toggle between fullscreen and normal window mode
307     */
308     void toggleFullScreen();
309
310 /*******************************************************************************
311  * SIGNALS
312  ******************************************************************************/
313 signals:
314     /**
315     * @brief Automatic centering setting changed by user
316     *
317     * @param enabled True if automatic centering is enabled, otherwise false
318     */
319     void autoCenteringTriggered(bool enabled);
320
321     /**
322     * @brief Signal that indicates when user has cancelled login process
323     *
324     */
325     void cancelLoginProcess();
326
327     /**
328     * @brief View should be centered to new location
329     *
330     * @param sceneCoordinate Scene coordinates of the new center point
331     */
332     void centerToSceneCoordinates(QPoint sceneCoordinate);
333
334     /**
335     * @brief Signal for enabling automatic location update.
336     *
337     * @param enabled true if enabled, false otherwise
338     * @param updateIntervalMsecs update interval in milliseconds
339     */
340     void enableAutomaticLocationUpdate(bool enabled, int updateIntervalMsecs);
341
342     /**
343     * @brief Signal for requesting username from settings
344     *
345     */
346     void fetchUsernameFromSettings();
347
348     /**
349     * @brief Signal for finding user.
350     *
351     * @param coordinates user geo coordinates
352     */
353     void findUser(const QPointF &coordinates);
354
355     /**
356     * @brief GPS setting changed
357     *
358     * @param enabled True if GPS is enabled, otherwise false
359     */
360     void gpsTriggered(bool enabled);
361
362     /**
363     * @brief Signal for finding friend.
364     *
365     * @param coordinates friend's geo coordinates
366     */
367     void findFriend(const QPointF &coordinates);
368
369     /**
370     * @brief Signal for friend location ready.
371     *
372     * @param friendsList
373     */
374     void friendsLocationsReady(QList<User *> &friendsList);
375
376     /**
377     * @brief Signal is emitted when location item is clicked.
378     *
379     * @param userIDs list of friends user IDs in the group
380     */
381     void locationItemClicked(const QList<QString> &userIDs);
382
383     /**
384     * @brief Signals when Login/Logout action is pressed
385     *
386     */
387     void loginActionPressed();
388
389     /**
390     * @brief MapView has been resized
391     *
392     * @param size view size
393     */
394     void mapViewResized(const QSize &size);
395
396     /**
397       * @brief Forwarding signal from MapView to MapEngine
398       *
399       * @param sceneCoordinate
400       */
401     void mapViewScrolled(QPoint sceneCoordinate);
402
403     /**
404       * @brief Forwarding signal from MapEngine to MapView
405       */
406     void maxZoomLevelReached();
407
408     /**
409       * @brief Forwarding signal from MapEngine to MapView
410       */
411     void minZoomLevelReached();
412
413     /**
414     * @brief Signal for refreshing user data.
415     *
416     */
417     void refreshUserData();
418
419     /**
420     * @brief Signal for requesting reverseGeo from SituareEngine
421     *
422     */
423     void requestReverseGeo();
424
425     /**
426     * @brief Signals, when address data is ready
427     *
428     * @param address Street address
429     */
430     void reverseGeoReady(const QString &address);
431
432     /**
433     * @brief Signal to save username to settings
434     *
435     * @param username Username
436     */
437     void saveUsername(const QString &username);
438
439     /**
440     * @brief Signal for requestLocationUpdate from SituareEngine
441     *
442     * @param status Status message
443     * @param publish Publish on Facebook
444     */
445     void statusUpdate(const QString &status, const bool &publish);
446
447     /**
448     * @brief Signals when webview's urlChanged signal is emitted
449     *
450     * @param url New url
451     */
452     void updateCredentials(const QUrl &url);
453
454     /**
455     * @brief MapView has finished zooming
456     */
457     void viewZoomFinished();
458
459     /**
460     * @brief Signal for use location ready.
461     *
462     * @param user User object
463     */
464     void userLocationReady(User *user);
465
466     /**
467     * @brief Map zoom in request
468     */
469     void zoomIn();
470
471     /**
472       * @brief Forwarding signal from MapEngine to MapView
473       */
474     void zoomLevelChanged(int zoomLevel);
475
476     /**
477     * @brief Map zoom out request
478     */
479     void zoomOut();
480
481 /*******************************************************************************
482  * DATA MEMBERS
483  ******************************************************************************/
484 private:
485     bool m_drawOwnLocationCrosshair;        ///< Flag for making ownLocationCrosshair visible or not
486     bool m_loggedIn;                        ///< Indicates login state
487     bool m_refresh;                         ///< Indicates when webpage is refreshed
488
489     int m_viewPortHeight;                   ///< Height of view port
490     int m_viewPortWidth;                    ///< Width of view port
491
492     QAction *m_autoCenteringAct;            ///< Action to auto center map using gps position
493     QAction *m_gpsToggleAct;                ///< Action to trigger gps toggle
494     QAction *m_loginAct;                    ///< Action to Login/Logout
495     QAction *m_toSettingsAct;               ///< Action to trigger switch to settings dialog
496
497     QLabel *m_osmLicense;                   ///< Label for Open Street Map license
498     QLabel *m_ownLocationCrosshair;         ///< Label that show ownLocationCrosshair
499
500     QMenu *m_viewMenu;                      ///< Object that hold the view menu items
501
502     QString m_email;                        ///< Placeholder for email
503     QString m_password;                     ///< Placeholder for password
504
505     QToolButton *m_fullScreenButton;        ///< Instance of the fullscreen toggle button
506
507     QWebView *m_webView;                    ///< Shows facebook login page
508
509     FriendListPanel *m_friendsListPanel;    ///< Instance of friends list panel
510     MapView *m_mapView;                     ///< Instance of the map view
511     NetworkCookieJar *m_cookieJar;          ///< Placeholder for QNetworkCookies
512     PanelSideBar *m_userPanelSidebar;       ///< User panel side bar
513     PanelSideBar *m_friendsListPanelSidebar;///< Friends panel side bar
514     UserInfoPanel *m_userPanel;             ///< Instance of the user information panel
515     ZoomButtonPanel *m_zoomButtonPanel;     ///< Instance of zoom button panel
516
517     SettingsDialog *m_settingsDialog;       ///< Settings dialog
518 };
519
520 #endif // MAINWINDOW_H