14f11faa995eef5807a0c4e1a2c8d00975cd70c5
[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 QDialog;
37 class QGraphicsScene;
38 class QLabel;
39 class QMessageBox;
40 class QNetworkReply;
41 class QToolButton;
42 class QWebView;
43
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     void buildLoginDialog(FacebookLoginBrowser *browser);
98
99     /**
100      * @brief
101      *
102      * @param logged
103      */
104     void loggedIn(bool logged);
105
106     /**
107      * @brief Gets the login state (logged in/logged out)
108      *
109      * @return bool Login state
110      */
111     bool loginState();
112
113     /**
114      * @brief Reads automatic location update settings.
115      */
116     void readAutomaticLocationUpdateSettings();
117
118     /**
119      * @brief Enable / disable GPS button.
120      *
121      * Does set visibilities for manual location cursor and auto centering menu button.
122      *
123      * @param enabled true if enabled, false otherwise
124      */
125     void setGPSButtonEnabled(bool enabled);
126
127     /**
128      * @brief Enable / disable direction indicator button.
129      *
130      * @param enabled true if shoud be enabled, false otherwise
131      */
132     void setIndicatorButtonEnabled(bool enabled);
133
134     /**
135      * @brief Set scene for MapView
136      *
137      * @param scene Scene to be set
138      */
139     void setMapViewScene(QGraphicsScene *scene);
140
141     /**
142      * Shows dialog with enable automatic location update question.
143      *
144      * @param text text to show in dialog
145      */
146     void showEnableAutomaticUpdateLocationDialog(const QString &text);
147
148     /**
149      * @brief Gets the username from member variable for saving purposes
150      *
151      * @return QString Username
152      */
153     const QString username();
154
155 public slots:
156     /**
157      * @brief Builds information box with message.
158      *
159      * @param message Information message
160      * @param modal Modal = true, non-modal false
161      */
162     void buildInformationBox(const QString &message, bool modal=false);
163
164     void destroyLoginDialog();
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     /**
504      * @brief MapView has been resized
505      *
506      * @param size view size
507      */
508     void mapViewResized(const QSize &size);
509
510     /**
511      * @brief Forwarding signal from MapView to MapEngine
512      *
513      * @param coordinate New center point coordinate
514      */
515     void mapViewScrolled(const SceneCoordinate &coordinate);
516
517     /**
518      * @brief Forwarding signal from MapEngine to MapView
519      */
520     void maxZoomLevelReached();
521
522     /**
523      * @brief Forwarding signal from MapEngine to MapView
524      */
525     void minZoomLevelReached();
526
527     /**
528      * @brief Forwarding signal from MapEngine to MapScale
529      */
530     void newMapResolution(qreal scale);
531
532     /**
533      * @brief Signal for refreshing user data.
534      *
535      */
536     void refreshUserData();
537
538     /**
539     * @brief Requests contact dialog.
540     *
541     * @param facebookId contact's facebookId
542     */
543     void requestContactDialog(const QString &facebookId);
544
545     /**
546      * @brief Signal for requesting reverseGeo from SituareEngine
547      *
548      */
549     void requestReverseGeo();
550
551     /**
552      * @brief Signals, when address data is ready
553      *
554      * @param address Street address
555      */
556     void reverseGeoReady(const QString &address);
557
558     /**
559     * @brief Emited when route is parsed and is ready for further processing
560     *
561     * @param route Route item containing parsed route details
562     */
563     void routeParsed(Route &route);
564
565     /**
566     * @brief Signal for routing to geo coordinates.
567     *
568     * @param coordinates destination geo coordinates
569     */
570     void routeTo(const GeoCoordinate &coordinates);
571
572     /**
573     * @brief Request routing to current cursor position
574     */
575     void routeToCursor();
576
577     /**
578      * @brief Signal for location search
579      *
580      * @param location QString location
581      */
582     void searchForLocation(QString location);
583
584     /**
585     * @brief Signal is emitted when search history item is clicked.
586     *
587     * @param searchString search string used
588     */
589     void searchHistoryItemClicked(const QString &searchString);
590
591     /**
592      * @brief Signal for requestLocationUpdate from SituareEngine
593      *
594      * @param status Status message
595      * @param publish Publish on Facebook
596      */
597     void statusUpdate(const QString &status, const bool &publish);
598
599     /**
600      * @brief Signals when updateLocationDialog's data must be cleared
601      *
602      */
603     void clearUpdateLocationDialogData();
604
605     /**
606     * @brief Dragging mode triggered.
607     */
608     void draggingModeTriggered();
609
610     /**
611      * @brief MapView has finished zooming
612      */
613     void viewZoomFinished();
614
615     /**
616      * @brief Signal for use location ready.
617      *
618      * @param user User object
619      */
620     void userLocationReady(User *user);
621
622     /**
623      * @brief Map zoom in request
624      */
625     void zoomIn();
626
627     /**
628      * @brief Forwarding signal from MapEngine to MapView
629      */
630     void zoomLevelChanged(int zoomLevel);
631
632     /**
633      * @brief Map zoom out request
634      */
635     void zoomOut();
636
637 /*******************************************************************************
638  * DATA MEMBERS
639  ******************************************************************************/
640 private:
641     bool m_errorShown;                      ///< Indicates if error dialog/note is shown
642     bool m_loggedIn;                        ///< Indicates login state
643     bool m_refresh;                         ///< Indicates when webpage is refreshed
644
645     int m_mapCenterHorizontalShifting;      ///< Amount of map center point horizontal shifting
646     int m_progressIndicatorCount;           ///< Indicates the number of progress indicator calls
647
648     QAction *m_gpsToggleAct;                ///< Action to trigger gps toggle
649     QAction *m_loginAct;                    ///< Action to Login/Logout
650     QAction *m_toSettingsAct;               ///< Action to trigger switch to settings dialog
651
652     QDialog *m_loginDialog;                 ///< Login 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     FriendListPanel *m_friendsListPanel;    ///< Instance of friends list panel
669     FullScreenButton *m_fullScreenButton;   ///< Instance of the fullscreen toggle button
670     IndicatorButtonPanel *m_indicatorButtonPanel;   ///< Instance of direction indicator button
671     LocationSearchPanel *m_locationSearchPanel;     ///< Location search panel
672     MapScale *m_mapScale;                   ///< Instance of the map scale
673     MapView *m_mapView;                     ///< Instance of the map view
674     RoutingPanel *m_routingPanel;           ///< Instance of routing panel
675     TabbedPanel *m_tabbedPanel;             ///< Widget for tabbed panels
676     UserInfoPanel *m_userInfoPanel;         ///< Instance of the user information panel
677     ZoomButtonPanel *m_zoomButtonPanel;     ///< Instance of zoom button panel
678 };
679
680 #endif // MAINWINDOW_H