6225bab653ec9e16e26262ec0568acee6b5757d8
[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         Jussi Laitinen - jussi.laitinen@ixonos.com
8         Sami Rämö - sami.ramo@ixonos.com
9         Ville Tiensuu - ville.tiensuu@ixonos.com
10         Katri Kaikkonen - katri.kaikkonen@ixonos.com
11
12     Situare is free software; you can redistribute it and/or
13     modify it under the terms of the GNU General Public License
14     version 2 as published by the Free Software Foundation.
15
16     Situare is distributed in the hope that it will be useful,
17     but WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19     GNU General Public License for more details.
20
21     You should have received a copy of the GNU General Public License
22     along with Situare; if not, write to the Free Software
23     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
24     USA.
25 */
26
27 #ifndef MAINWINDOW_H
28 #define MAINWINDOW_H
29
30 #include <QtGui/QMainWindow>
31 #include <QSslError>
32 #include <QUrl>
33
34 #include "network/networkcookiejar.h"
35
36 class QGraphicsScene;
37 class QLabel;
38 class QMessageBox;
39 class QNetworkReply;
40 class QToolButton;
41 class QWebView;
42
43 class FacebookAuthentication;
44 class FacebookLoginBrowser;
45 class FriendListPanel;
46 class FullScreenButton;
47 class GeoCoordinate;
48 class IndicatorButtonPanel;
49 class Location;
50 class LocationSearchPanel;
51 class MapScale;
52 class MapScene;
53 class MapView;
54 class Route;
55 class RoutingPanel;
56 class SceneCoordinate;
57 class SettingsDialog;
58 class SituareService;
59 class TabbedPanel;
60 class User;
61 class UserInfoPanel;
62 class ZoomButtonPanel;
63
64 /**
65  * @brief Main Window Class
66  */
67 class MainWindow : public QMainWindow
68 {
69     Q_OBJECT
70
71 public:
72     /**
73      * @brief Constructor
74      *
75      * @param parent Parent
76      */
77     MainWindow(QWidget *parent = 0);
78
79     /**
80      * @brief Destructor
81      */
82     ~MainWindow();
83
84 /*******************************************************************************
85  * BASE CLASS INHERITED AND REIMPLEMENTED MEMBER FUNCTIONS
86  ******************************************************************************/
87 private:
88     /**
89      * @brief HW increase and decrease key presses are grabbed and used for zooming the map.
90      */
91     void keyPressEvent(QKeyEvent* event);
92
93 /*******************************************************************************
94  * MEMBER FUNCTIONS AND SLOTS
95  ******************************************************************************/
96 public:
97     /**
98      * @brief
99      *
100      * @param logged
101      */
102     void loggedIn(bool logged);
103
104     /**
105      * @brief Gets the login state (logged in/logged out)
106      *
107      * @return bool Login state
108      */
109     bool loginState();
110
111     /**
112      * @brief Reads automatic location update settings.
113      */
114     void readAutomaticLocationUpdateSettings();
115
116     /**
117      * @brief Enable / disable GPS button.
118      *
119      * Does set visibilities for manual location cursor and auto centering menu button.
120      *
121      * @param enabled true if enabled, false otherwise
122      */
123     void setGPSButtonEnabled(bool enabled);
124
125     /**
126      * @brief Enable / disable direction indicator button.
127      *
128      * @param enabled true if shoud be enabled, false otherwise
129      */
130     void setIndicatorButtonEnabled(bool enabled);
131
132     /**
133      * @brief Set scene for MapView
134      *
135      * @param scene Scene to be set
136      */
137     void setMapViewScene(QGraphicsScene *scene);
138
139     /**
140      * Shows dialog with enable automatic location update question.
141      *
142      * @param text text to show in dialog
143      */
144     void showEnableAutomaticUpdateLocationDialog(const QString &text);
145
146     /**
147      * @brief Gets the username from member variable for saving purposes
148      *
149      * @return QString Username
150      */
151     const QString username();
152
153 public slots:
154     void buildFacebookLoginBrowser();
155
156     void destroyFacebookLoginBrowser();
157
158     /**
159      * @brief Builds information box with message.
160      *
161      * @param message Information message
162      * @param modal Modal = true, non-modal false
163      */
164     void buildInformationBox(const QString &message, bool modal=false);
165
166     /**
167      * @brief Slot for failed login
168      */
169     void loginFailed();
170
171     /**
172      * @brief Public slot, which open settings dialog
173      */
174     void openSettingsDialog();
175
176     /**
177      * @brief Set own location crosshair visibility
178      *
179      * @param visible
180      */
181     void setCrosshairVisibility(bool visible);
182
183     /**
184     * @brief Shows contact dialog.
185     *
186     * Shows contact dialog with contact's information.
187     * @param guid globally unique ID of a contact
188     */
189     void showContactDialog(const QString &guid);
190
191     /**
192      * @brief Public slot to intercept signal when old cerdentials are invalid or credentials
193      *        doesn't exist yet
194      */
195     void startLoginProcess();
196
197     /**
198      * @brief Toggle progress indicator.
199      *
200      * @param state true if progress indicator should be shown, false otherwise
201      */
202     void toggleProgressIndicator(bool state);
203
204     /**
205      * @brief Shows / hides Situare related UI items
206      *
207      */
208     void updateItemVisibility();
209
210 private:
211     /**
212      * @brief Build manual location setting cross hair and connect slots
213      */
214     void buildCrosshair();
215
216     /**
217      * @brief Build friend list panel and connect slots
218      */
219     void buildFriendListPanel();
220
221     /**
222      * @brief Build fullscreen toggle button and connect slots
223      */
224     void buildFullScreenButton();
225
226     /**
227      * @brief Build direction indicator button panel and connect signals
228      */
229     void buildIndicatorButtonPanel();
230
231
232     /**
233      * @brief Build location search panel and connect signals
234      */
235     void buildLocationSearchPanel();
236
237     /**
238      * @brief Build map and connect slots
239      */
240     void buildMap();
241
242     /**
243      * @brief Build map scale and connect slots
244      */
245     void buildMapScale();
246
247     /**
248      * @brief Build OSM license and connect slots
249      */
250     void buildOsmLicense();
251
252     /**
253      * @brief Build application panels
254      */
255     void buildPanels();
256
257     /**
258      * @brief Build routing panel and connect slots
259      */
260     void buildRoutingPanel();
261
262     /**
263      * @brief Build user info panel and connect slots
264      */
265     void buildUserInfoPanel();
266
267     /**
268      * @brief Build zoom button panel and connect slots
269      */
270     void buildZoomButtonPanel();
271
272     /**
273      * @brief Private method to create the Menu items
274      */
275     void createMenus();
276
277     /**
278      * @brief Grab or release HW increase and decrease buttons.
279      *
280      * @param grab Use true for grabbing and false for releasing the keys
281      */
282     void grabZoomKeys(bool grab);
283
284     /**
285      * @brief Queues dialog/information box
286      *
287      * @param dialog Dialog to be added into queue
288      */
289     void queueDialog(QDialog *dialog);
290
291     /**
292      * @brief Shows queued error information box
293      *
294      */
295     void showErrorInformationBox();
296
297     /**
298      * @brief Shows queued information box
299      *
300      * @fn showInformationBox
301      */
302     void showInformationBox();
303
304 private slots:
305     /**
306      * @brief Slot for automatic update dialog finished.
307      *
308      * @result result code
309      */
310     void automaticUpdateDialogFinished(int result);
311
312     /**
313      * @brief Slot to intercept signal when dialog/information note is processed
314      *
315      * @param status Status of the dialog
316      */
317     void dialogFinished(int status);
318
319     /**
320      * @brief Slot for drawing the fullscreen toggle button
321      *
322      * @param size Size of the screen
323      */
324     void drawFullScreenButton(const QSize &size);
325
326     /**
327      * @brief Slot for drawing the map distance scale
328      *
329      * @param size Size of the screen
330      */
331     void drawMapScale(const QSize &size);
332
333     /**
334      * @brief Slot for drawing the Open Street Map license text
335      *
336      * @param size Size of the screen
337      */
338     void drawOsmLicense(const QSize &size);
339
340     /**
341      * @brief Slot to intercept signal when error dialog/information note is processed
342      *
343      * @param status Status of the dialog
344      */
345     void errorDialogFinished(int status);
346
347     /**
348      * @brief Slot for gps timeout.
349      *
350      * Called when request timeout occurs.
351      */
352     void gpsTimeout();
353
354     /**
355     * @brief Called when map center point horizontal shifting is changed
356     *
357     * @param shifting New shifting value
358     */
359     void mapCenterHorizontalShiftingChanged(int shifting);
360
361     /**
362      * @brief Move the crosshair
363      */
364     void moveCrosshair();
365
366     /**
367      * @brief Slot for settings dialog accepted.
368      */
369     void settingsDialogAccepted();
370
371     /**
372      * @brief Ignore SSL error from the reply
373      */
374     void sslErrors(QNetworkReply *reply, const QList<QSslError> &errors);
375
376     /**
377      * @brief Start location search (open search dialog)
378      */
379     void startLocationSearch();
380
381     /**
382      * @brief Toggle between fullscreen and normal window mode
383      */
384     void toggleFullScreen();
385
386 /*******************************************************************************
387  * SIGNALS
388  ******************************************************************************/
389 signals:
390     /**
391      * @brief Automatic centering setting changed by user
392      *
393      * @param enabled True if automatic centering is enabled, otherwise false
394      */
395     void autoCenteringTriggered(bool enabled);
396
397     /**
398      * @brief Signal that indicates when user has cancelled login process
399      *
400      */
401     void cancelLoginProcess();
402
403     /**
404      * @brief Signal for centering to coordinates.
405      *
406      * @param coordinates geo coordinates to center to.
407      */
408     void centerToCoordinates(const GeoCoordinate &coordinates);
409
410     /**
411      * @brief View should be centered to new location
412      *
413      * @param coordinate Scene coordinates of the new center point
414      */
415     void centerToSceneCoordinates(const SceneCoordinate &coordinate);
416
417     /**
418     * @brief Emitted when route is cleared
419     */
420     void clearRoute();
421
422     /**
423     * @brief Signal when direction and distance from current map center point to current GPS
424     *        location is changed
425     *
426     * @param direction Direction in degrees
427     * @param distance Distance in meters
428     * @param draw Should the indicator triangle be drawn or not
429     */
430     void directionIndicatorValuesUpdate(qreal direction, qreal distance, bool draw);
431
432     /**
433      * @brief Signal for enabling automatic location update.
434      *
435      * @param enabled true if enabled, false otherwise
436      * @param updateIntervalMsecs update interval in milliseconds
437      */
438     void enableAutomaticLocationUpdate(bool enabled, int updateIntervalMsecs = 0);
439
440     /**
441      * @brief Signals error
442      *
443      * @param context error context
444      * @param error error code
445      */
446     void error(const int context, const int error);
447
448     /**
449      * @brief Signal for requesting username from settings
450      *
451      */
452     void fetchUsernameFromSettings();
453
454     /**
455      * @brief Signals when friend's profile image is ready
456      *
457      * @param user Friend
458      */
459     void friendImageReady(User *user);
460
461     /**
462      * @brief GPS setting changed
463      *
464      * @param enabled True if GPS is enabled, otherwise false
465      */
466     void gpsTriggered(bool enabled);
467
468     /**
469      * @brief Signal for friend location ready.
470      *
471      * @param friendsList
472      */
473     void friendsLocationsReady(QList<User *> &friendsList);
474
475     /**
476     * @brief Emited when location request is parsed and is ready for further processing
477     *
478     * @param result List of Location items
479     */
480     void locationDataParsed(const QList<Location> &result);
481
482     /**
483      * @brief Signal is emitted when location item is clicked on map.
484      *
485      * @param userIDs list of friends user IDs in the group
486      */
487     void locationItemClicked(const QList<QString> &userIDs);
488
489     /**
490      * @brief Signal is emitted when location item is clicked in list.
491      *
492      * @param swBound south-west bound in GeoCoorinate
493      * @param neBound north-east bound in GeoCoordinate
494      */
495     void locationItemClicked(const GeoCoordinate &swBound, const GeoCoordinate &neBound);
496
497     /**
498      * @brief Signals when Login/Logout action is pressed
499      *
500      */
501     void loginActionPressed();
502
503     void loginBrowserCreated(FacebookLoginBrowser *);
504
505     /**
506      * @brief MapView has been resized
507      *
508      * @param size view size
509      */
510     void mapViewResized(const QSize &size);
511
512     /**
513      * @brief Forwarding signal from MapView to MapEngine
514      *
515      * @param coordinate New center point coordinate
516      */
517     void mapViewScrolled(const SceneCoordinate &coordinate);
518
519     /**
520      * @brief Forwarding signal from MapEngine to MapView
521      */
522     void maxZoomLevelReached();
523
524     /**
525      * @brief Forwarding signal from MapEngine to MapView
526      */
527     void minZoomLevelReached();
528
529     /**
530      * @brief Forwarding signal from MapEngine to MapScale
531      */
532     void newMapResolution(qreal scale);
533
534     /**
535      * @brief Signal for refreshing user data.
536      *
537      */
538     void refreshUserData();
539
540     /**
541     * @brief Requests contact dialog.
542     *
543     * @param facebookId contact's facebookId
544     */
545     void requestContactDialog(const QString &facebookId);
546
547     /**
548      * @brief Signal for requesting reverseGeo from SituareEngine
549      *
550      */
551     void requestReverseGeo();
552
553     /**
554      * @brief Signals, when address data is ready
555      *
556      * @param address Street address
557      */
558     void reverseGeoReady(const QString &address);
559
560     /**
561     * @brief Emited when route is parsed and is ready for further processing
562     *
563     * @param route Route item containing parsed route details
564     */
565     void routeParsed(Route &route);
566
567     /**
568     * @brief Signal for routing to geo coordinates.
569     *
570     * @param coordinates destination geo coordinates
571     */
572     void routeTo(const GeoCoordinate &coordinates);
573
574     /**
575     * @brief Request routing to current cursor position
576     */
577     void routeToCursor();
578
579     /**
580      * @brief Signal for location search
581      *
582      * @param location QString location
583      */
584     void searchForLocation(QString location);
585
586     /**
587     * @brief Signal is emitted when search history item is clicked.
588     *
589     * @param searchString search string used
590     */
591     void searchHistoryItemClicked(const QString &searchString);
592
593     /**
594      * @brief Signal for requestLocationUpdate from SituareEngine
595      *
596      * @param status Status message
597      * @param publish Publish on Facebook
598      */
599     void statusUpdate(const QString &status, const bool &publish);
600
601     /**
602      * @brief Signals when updateLocationDialog's data must be cleared
603      *
604      */
605     void clearUpdateLocationDialogData();
606
607     /**
608     * @brief Dragging mode triggered.
609     */
610     void draggingModeTriggered();
611
612     /**
613      * @brief MapView has finished zooming
614      */
615     void viewZoomFinished();
616
617     /**
618      * @brief Signal for use location ready.
619      *
620      * @param user User object
621      */
622     void userLocationReady(User *user);
623
624     /**
625      * @brief Map zoom in request
626      */
627     void zoomIn();
628
629     /**
630      * @brief Forwarding signal from MapEngine to MapView
631      */
632     void zoomLevelChanged(int zoomLevel);
633
634     /**
635      * @brief Map zoom out request
636      */
637     void zoomOut();
638
639 /*******************************************************************************
640  * DATA MEMBERS
641  ******************************************************************************/
642 private:
643     bool m_errorShown;                      ///< Indicates if error dialog/note is shown
644     bool m_loggedIn;                        ///< Indicates login state
645     bool m_refresh;                         ///< Indicates when webpage is refreshed
646
647     int m_mapCenterHorizontalShifting;      ///< Amount of map center point horizontal shifting
648     int m_progressIndicatorCount;           ///< Indicates the number of progress indicator calls
649
650     QAction *m_gpsToggleAct;                ///< Action to trigger gps toggle
651     QAction *m_loginAct;                    ///< Action to Login/Logout
652     QAction *m_toSettingsAct;               ///< Action to trigger switch to settings dialog
653
654     QLabel *m_crosshair;                    ///< Label for center point crosshair
655     QLabel *m_osmLicense;                   ///< Label for Open Street Map license
656
657     QList<int> m_situareTabsIndexes;        ///< List of Situare tab indexes
658     QList<QDialog *> m_error_queue;         ///< QList type error dialog queue
659     QList<QDialog *> m_queue;               ///< QList type dialog queue
660
661     QMenu *m_viewMenu;                      ///< Object that hold the view menu items
662
663     QMessageBox *m_automaticUpdateLocationDialog;   ///< Automatic update location dialog
664
665     QString m_email;                        ///< Placeholder for email
666     QString m_password;                     ///< Placeholder for password
667
668     FacebookLoginBrowser *m_facebookLoginBrowser;
669     FriendListPanel *m_friendsListPanel;    ///< Instance of friends list panel
670     FullScreenButton *m_fullScreenButton;   ///< Instance of the fullscreen toggle button
671     IndicatorButtonPanel *m_indicatorButtonPanel;   ///< Instance of direction indicator button
672     LocationSearchPanel *m_locationSearchPanel;     ///< Location search panel
673     MapScale *m_mapScale;                   ///< Instance of the map scale
674     MapView *m_mapView;                     ///< Instance of the map view
675     RoutingPanel *m_routingPanel;           ///< Instance of routing panel
676     TabbedPanel *m_tabbedPanel;             ///< Widget for tabbed panels
677     UserInfoPanel *m_userInfoPanel;         ///< Instance of the user information panel
678     ZoomButtonPanel *m_zoomButtonPanel;     ///< Instance of zoom button panel
679 };
680
681 #endif // MAINWINDOW_H