Finished basic map scale feature
[situare] / src / ui / mainwindow.h
index 6007876..d703912 100644 (file)
@@ -4,6 +4,7 @@
 
       Henri Lampela - henri.lampela@ixonos.com
       Kaj Wallin - kaj.wallin@ixonos.com
+      Sami Rämö - sami.ramo@ixonos.com
 
    Situare is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    USA.
 */
 
-
 #ifndef MAINWINDOW_H
 #define MAINWINDOW_H
 
 #include <QtGui/QMainWindow>
-#include <QWidget>
-#include <QtWebKit>
-#include <QDebug>
-#include <QObject>
-#include <QNetworkAccessManager>
-#include "facebookservice/facebookauthentication.h"
-#include "situareservice/situareservice.h"
+#include <QUrl>
 
-#include "updatelocation/updatelocationdialog.h"
-#include "ui/logindialog.h"
+#include "network/networkcookiejar.h"
+#include "panelsidebar.h"
 
+class QGraphicsScene;
 class QLabel;
+class QWebView;
 
+class FacebookAuthentication;
 class FriendListPanel;
+class MapScale;
 class MapScene;
 class MapView;
+class SituareService;
+class User;
 class UserInfoPanel;
 class ZoomButtonPanel;
+class SettingsDialog;
+class QToolButton;
 
 /**
 * @brief Main Window Class
-*
-* @class MainWindow mainwindow.h "src/ui/mainwindow.h"
 */
 class MainWindow : public QMainWindow
 {
@@ -81,23 +81,33 @@ private:
  ******************************************************************************/
 public:
     /**
-    * @brief Enable / disable auto centering.
+    * @brief Clears cookie jar
+    *
+    */
+    void clearCookieJar();
+
+    /**
+    * @brief
     *
-    * Connect required actions to autoCenteringToggled() signal.
+    * @param logged
+    */
+    void loggedIn(bool logged);
+
+    /**
+    * @brief Enable / disable auto centering button.
     *
     * @param enabled true if shoud be enabled, false otherwise
     */
-    void setAutoCentering(bool enabled);
+    void setAutoCenteringButtonEnabled(bool enabled);
 
     /**
-    * @brief Enable / disable GPS.
+    * @brief Enable / disable GPS button.
     *
-    * Does show message for user and show / hide auto centering menu action.
-    * Connect required actions to gpsToggled() signal.
+    * Does set visibilities for manual location cursor and auto centering menu button.
     *
     * @param enabled true if enabled, false otherwise
     */
-    void setGPS(bool enabled);
+    void setGPSButtonEnabled(bool enabled);
 
     /**
       * @brief Set scene for MapView
@@ -106,15 +116,22 @@ public:
       */
     void setMapViewScene(QGraphicsScene *scene);
 
-public slots:
     /**
-    * @brief Slot to intercept signal when user has pressed connect button from loginDialog
+    * @brief Show Maemo information box with message.
+    *
+    * @param message Information message
+    * @param modal Modal = true, non-modal false
+    */
+    void showMaemoInformationBox(const QString &message, bool modal=false);
+
+    /**
+    * @brief Gets the username from member variable for saving purposes
     *
-    * @param email E-mail
-    * @param password Password
+    * @return QString Username
     */
-    void loginDialogDone(const QString &email, const QString &password);
+    const QString username();
 
+public slots:
     /**
     * @brief Slot to intercept signal when login has failed (loginFailure signal)
     *
@@ -122,11 +139,22 @@ public slots:
     void loginFailed();
 
     /**
+    * @brief Slot to intercept signal when login with cookies is requested
+    *
+    */
+    void loginUsingCookies();
+
+    /**
     * @brief Public slot, which open settings dialog
     */
     void openSettingsDialog();
 
-    //////////////////////
+    /**
+    * @brief Sets username to member variable for login dialog
+    *
+    * @param username Username to be set
+    */
+    void setUsername(const QString &username);
 
     /**
     * @brief Public slot to intercept signal when old cerdentials are invalid or credentials
@@ -143,18 +171,58 @@ public slots:
     */
     void toggleProgressIndicator(bool state);
 
+    /**
+    * @brief Shows / hides Situare related UI items
+    *
+    * @param show
+    */
+    void updateItemVisibility(bool show);
+
 private:
+    /**
+      * @brief Build fullscreen toggle button and connect slots
+      */
+    void buildFullScreenButton();
 
+    /**
+      * @brief Build friend list panel and connect slots
+      */
     void buildFriendListPanel();
 
+    /**
+      * @brief Build manual location setting cross hair and connect slots
+      */
     void buildManualLocationCrosshair();
 
+    /**
+      * @brief Build map and connect slots
+      */
     void buildMap();
 
+    /**
+     * @brief Build map scale and connect slots
+     */
+    void buildMapScale();
+
+    /**
+      * @brief Build OSM license and connect slots
+      */
     void buildOsmLicense();
 
+    /**
+      * @brief Build user info panel and connect slots
+      */
     void buildUserInfoPanel();
 
+    /**
+    * @brief Build webview and connect slots
+    *
+    */
+    void buildWebView();
+
+    /**
+      * @brief Build zoom button panel and connect slots
+      */
     void buildZoomButtonPanel();
 
     /**
@@ -170,29 +238,33 @@ private:
     void grabZoomKeys(bool grab);
 
     /**
-    * @brief Set own location crosshair visibility
-    *
-    * @param visibility
-    */
+      * @brief Set own location crosshair visibility
+      *
+      * @param visible
+      */
     void setOwnLocationCrosshairVisibility(bool visible);
 
+private slots:
     /**
-    * @brief Show Maemo information box with message.
+    * @brief Slot for drawing the fullscreen toggle button
     *
-    * @brief message information message
+    * @param size Size of the screen
     */
-    void showMaemoInformationBox(const QString &message);
+    void drawFullScreenButton(const QSize &size);
 
-private slots:
-    void autoCenteringToggledActions(bool enabled);
+    /**
+    * @brief Slot for drawing the map distance scale
+    *
+    * @param size Size of the screen
+    */
+    void drawMapScale(const QSize &size);
 
     /**
     * @brief Slot for drawing the Open Street Map license text
     *
-    * @param width Width of the viewport
-    * @param height Height of the viewport
+    * @param size Size of the screen
     */
-    void drawOsmLicense(int width, int height);
+    void drawOsmLicense(const QSize &size);
 
     /**
     * @brief Slot for drawing the own location crosshair
@@ -203,20 +275,17 @@ private slots:
     void drawOwnLocationCrosshair(int width, int height);
 
     /**
-    * @brief Slot for gps error.
-    *
-    * @param message error message
-    */
-    void gpsError(const QString &message);
-
-    /**
     * @brief Slot for gps timeout.
     *
     * Called when request timeout occurs.
     */
     void gpsTimeout();
 
-    void gpsToggledActions(bool enabled);
+    /**
+    * @brief Slot to load cookies from settings
+    *
+    */
+    void loadCookies();
 
     /**
     * @brief Slot to intercept signal when webview has finished loading webpage
@@ -226,6 +295,12 @@ private slots:
     void loadDone(bool done);
 
     /**
+    * @brief Slot to save cookies to settings
+    *
+    */
+    void saveCookies();
+
+    /**
     * @brief Set correnct view port size to datamembers
     *
     * @param width Width of the viewport
@@ -233,22 +308,27 @@ private slots:
     */
     void setViewPortSize(const int width, const int height);
 
+    /**
+    * @brief Toggle between fullscreen and normal window mode
+    */
+    void toggleFullScreen();
+
 /*******************************************************************************
  * SIGNALS
  ******************************************************************************/
 signals:
     /**
-    * @brief Signal that indicates when user has cancelled login process
+    * @brief Automatic centering setting changed by user
     *
+    * @param enabled True if automatic centering is enabled, otherwise false
     */
-    void cancelLoginProcess();
+    void autoCenteringTriggered(bool enabled);
 
     /**
-    * @brief Automatic centering setting changed
+    * @brief Signal that indicates when user has cancelled login process
     *
-    * @param enabled True if automatic centering is enabled, otherwise false
     */
-    void autoCenteringToggled(bool enabled);
+    void cancelLoginProcess();
 
     /**
     * @brief View should be centered to new location
@@ -258,18 +338,32 @@ signals:
     void centerToSceneCoordinates(QPoint sceneCoordinate);
 
     /**
+    * @brief Signal for enabling automatic location update.
+    *
+    * @param enabled true if enabled, false otherwise
+    * @param updateIntervalMsecs update interval in milliseconds
+    */
+    void enableAutomaticLocationUpdate(bool enabled, int updateIntervalMsecs);
+
+    /**
+    * @brief Signal for requesting username from settings
+    *
+    */
+    void fetchUsernameFromSettings();
+
+    /**
+    * @brief Signal for finding user.
+    *
+    * @param coordinates user geo coordinates
+    */
+    void findUser(const QPointF &coordinates);
+
+    /**
     * @brief GPS setting changed
     *
     * @param enabled True if GPS is enabled, otherwise false
     */
-    void gpsToggled(bool enabled);
-
-//     /**
-//    * @brief Signal for auto centering enabling.
-//    *
-//    * @param enabled if auto centering should be enabled
-//    */
-//    void enableAutoCentering(bool enabled);
+    void gpsTriggered(bool enabled);
 
     /**
     * @brief Signal for finding friend.
@@ -286,30 +380,54 @@ signals:
     void friendsLocationsReady(QList<User *> &friendsList);
 
     /**
+    * @brief Signal is emitted when location item is clicked.
+    *
+    * @param userIDs list of friends user IDs in the group
+    */
+    void locationItemClicked(const QList<QString> &userIDs);
+
+    /**
+    * @brief Signals when Login/Logout action is pressed
+    *
+    */
+    void loginActionPressed();
+
+    /**
     * @brief MapView has been resized
     *
     * @param size view size
     */
     void mapViewResized(const QSize &size);
 
+    /**
+      * @brief Forwarding signal from MapView to MapEngine
+      *
+      * @param sceneCoordinate
+      */
     void mapViewScrolled(QPoint sceneCoordinate);
 
+    /**
+      * @brief Forwarding signal from MapEngine to MapView
+      */
     void maxZoomLevelReached();
 
+    /**
+      * @brief Forwarding signal from MapEngine to MapView
+      */
     void minZoomLevelReached();
 
     /**
+     * @brief Forwarding signal from MapEngine to MapScale
+     */
+    void newMapResolution(qreal scale);
+
+    /**
     * @brief Signal for refreshing user data.
     *
     */
     void refreshUserData();
 
     /**
-    * @brief Signal from SituareEngine to MapEngine is travelling here
-    */
-    void requestOwnLocation();
-
-    /**
     * @brief Signal for requesting reverseGeo from SituareEngine
     *
     */
@@ -323,6 +441,13 @@ signals:
     void reverseGeoReady(const QString &address);
 
     /**
+    * @brief Signal to save username to settings
+    *
+    * @param username Username
+    */
+    void saveUsername(const QString &username);
+
+    /**
     * @brief Signal for requestLocationUpdate from SituareEngine
     *
     * @param status Status message
@@ -338,13 +463,6 @@ signals:
     void updateCredentials(const QUrl &url);
 
     /**
-    * @brief Map view port content update
-    *
-    * @param viewArea visible area of map scene
-    */
-    void updateMapViewContent(QRect viewArea);
-
-    /**
     * @brief MapView has finished zooming
     */
     void viewZoomFinished();
@@ -361,6 +479,9 @@ signals:
     */
     void zoomIn();
 
+    /**
+      * @brief Forwarding signal from MapEngine to MapView
+      */
     void zoomLevelChanged(int zoomLevel);
 
     /**
@@ -372,8 +493,8 @@ signals:
  * DATA MEMBERS
  ******************************************************************************/
 private:
-
     bool m_drawOwnLocationCrosshair;        ///< Flag for making ownLocationCrosshair visible or not
+    bool m_loggedIn;                        ///< Indicates login state
     bool m_refresh;                         ///< Indicates when webpage is refreshed
 
     int m_viewPortHeight;                   ///< Height of view port
@@ -381,6 +502,7 @@ private:
 
     QAction *m_autoCenteringAct;            ///< Action to auto center map using gps position
     QAction *m_gpsToggleAct;                ///< Action to trigger gps toggle
+    QAction *m_loginAct;                    ///< Action to Login/Logout
     QAction *m_toSettingsAct;               ///< Action to trigger switch to settings dialog
 
     QLabel *m_osmLicense;                   ///< Label for Open Street Map license
@@ -391,16 +513,20 @@ private:
     QString m_email;                        ///< Placeholder for email
     QString m_password;                     ///< Placeholder for password
 
-    QUrl m_loginUrl;                        ///< Placeholder for login page url
+    QToolButton *m_fullScreenButton;        ///< Instance of the fullscreen toggle button
 
     QWebView *m_webView;                    ///< Shows facebook login page
 
     FriendListPanel *m_friendsListPanel;    ///< Instance of friends list panel
-    LoginDialog *m_loginDialog;             ///< Login dialog
+    MapScale *m_mapScale;                   ///< Instance of the map scale
     MapView *m_mapView;                     ///< Instance of the map view
-    UpdateLocationDialog *m_locationDialog; ///< Message dialog
+    NetworkCookieJar *m_cookieJar;          ///< Placeholder for QNetworkCookies
+    PanelSideBar *m_userPanelSidebar;       ///< User panel side bar
+    PanelSideBar *m_friendsListPanelSidebar;///< Friends panel side bar
     UserInfoPanel *m_userPanel;             ///< Instance of the user information panel
     ZoomButtonPanel *m_zoomButtonPanel;     ///< Instance of zoom button panel
+
+    SettingsDialog *m_settingsDialog;       ///< Settings dialog
 };
 
 #endif // MAINWINDOW_H