Removed FacebookLoginBrowser class, replaced with QWebView.
[situare] / src / ui / mainwindow.h
index bb57fe6..14f5402 100644 (file)
@@ -1,72 +1,83 @@
 /*
-   Situare - A location system for Facebook
-   Copyright (C) 2010  Ixonos Plc. Authors:
-
-      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
-   version 2 as published by the Free Software Foundation.
-
-   Situare is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with Situare; if not, write to the Free Software
-   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
-   USA.
+    Situare - A location system for Facebook
+    Copyright (C) 2010  Ixonos Plc. Authors:
+
+        Henri Lampela - henri.lampela@ixonos.com
+        Kaj Wallin - kaj.wallin@ixonos.com
+        Jussi Laitinen - jussi.laitinen@ixonos.com
+        Sami Rämö - sami.ramo@ixonos.com
+        Ville Tiensuu - ville.tiensuu@ixonos.com
+        Katri Kaikkonen - katri.kaikkonen@ixonos.com
+
+    Situare is free software; you can redistribute it and/or
+    modify it under the terms of the GNU General Public License
+    version 2 as published by the Free Software Foundation.
+
+    Situare is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with Situare; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
+    USA.
 */
 
 #ifndef MAINWINDOW_H
 #define MAINWINDOW_H
 
 #include <QtGui/QMainWindow>
+#include <QSslError>
 #include <QUrl>
 
 #include "network/networkcookiejar.h"
-#include "panelsidebar.h"
 
+class QDialog;
 class QGraphicsScene;
 class QLabel;
-class QWebView;
+class QMessageBox;
 class QNetworkReply;
+class QToolButton;
+class QWebView;
 
-class FacebookAuthentication;
 class FriendListPanel;
+class FullScreenButton;
+class GeoCoordinate;
+class IndicatorButtonPanel;
+class Location;
+class LocationSearchPanel;
 class MapScale;
 class MapScene;
 class MapView;
+class Route;
+class RoutingPanel;
+class SceneCoordinate;
+class SettingsDialog;
 class SituareService;
+class TabbedPanel;
 class User;
 class UserInfoPanel;
 class ZoomButtonPanel;
-class SettingsDialog;
-class QToolButton;
-class QMessageBox;
 
 /**
-* @brief Main Window Class
-*/
+ * @brief Main Window Class
+ */
 class MainWindow : public QMainWindow
 {
     Q_OBJECT
 
 public:
     /**
-    * @brief Constructor
-    *
-    * @param parent Parent
-    */
+     * @brief Constructor
+     *
+     * @param parent Parent
+     */
     MainWindow(QWidget *parent = 0);
 
     /**
-    * @brief Destructor
-    *
-    */
+     * @brief Destructor
+     */
     ~MainWindow();
 
 /*******************************************************************************
@@ -74,150 +85,157 @@ public:
  ******************************************************************************/
 private:
     /**
-      * @brief HW increase and decrease key presses are grabbed and used for zooming the map.
-      */
+     * @brief HW increase and decrease key presses are grabbed and used for zooming the map.
+     */
     void keyPressEvent(QKeyEvent* event);
 
 /*******************************************************************************
  * MEMBER FUNCTIONS AND SLOTS
  ******************************************************************************/
 public:
-    /**
-    * @brief Clears cookie jar
-    *
-    */
-    void clearCookieJar();
+    void buildLoginDialog(QWebView *browser);
 
     /**
-    * @brief
-    *
-    * @param logged
-    */
+     * @brief
+     *
+     * @param logged
+     */
     void loggedIn(bool logged);
 
     /**
-    * @brief Reads automatic location update settings.
-    */
-    void readAutomaticLocationUpdateSettings();
-
+     * @brief Gets the login state (logged in/logged out)
+     *
+     * @return bool Login state
+     */
+    bool loginState();
 
     /**
-    * @brief Enable / disable auto centering button.
-    *
-    * @param enabled true if shoud be enabled, false otherwise
-    */
-    void setAutoCenteringButtonEnabled(bool enabled);
+     * @brief Reads automatic location update settings.
+     */
+    void readAutomaticLocationUpdateSettings();
 
     /**
-    * @brief Enable / disable GPS button.
-    *
-    * Does set visibilities for manual location cursor and auto centering menu button.
-    *
-    * @param enabled true if enabled, false otherwise
-    */
+     * @brief Enable / disable GPS button.
+     *
+     * Does set visibilities for manual location cursor and auto centering menu button.
+     *
+     * @param enabled true if enabled, false otherwise
+     */
     void setGPSButtonEnabled(bool enabled);
 
     /**
-      * @brief Set scene for MapView
-      *
-      * @param scene Scene to be set
-      */
+     * @brief Enable / disable direction indicator button.
+     *
+     * @param enabled true if shoud be enabled, false otherwise
+     */
+    void setIndicatorButtonEnabled(bool enabled);
+
+    /**
+     * @brief Set scene for MapView
+     *
+     * @param scene Scene to be set
+     */
     void setMapViewScene(QGraphicsScene *scene);
 
     /**
-    * Shows dialog with enable automatic location update question.
-    *
-    * @param text text to show in dialog
-    */
+     * Shows dialog with enable automatic location update question.
+     *
+     * @param text text to show in dialog
+     */
     void showEnableAutomaticUpdateLocationDialog(const QString &text);
 
     /**
-    * @brief Gets the username from member variable for saving purposes
-    *
-    * @return QString Username
-    */
+     * @brief Gets the username from member variable for saving purposes
+     *
+     * @return QString Username
+     */
     const QString username();
 
 public slots:
     /**
-    * @brief Builds information box with message.
-    *
-    * @param message Information message
-    * @param modal Modal = true, non-modal false
-    */
+     * @brief Builds information box with message.
+     *
+     * @param message Information message
+     * @param modal Modal = true, non-modal false
+     */
     void buildInformationBox(const QString &message, bool modal=false);
 
-    /**
-    * @brief Slot to intercept signal when login has failed (loginFailure signal)
-    *
-    */
-    void loginFailed();
+    void destroyLoginDialog();
 
     /**
-    * @brief Slot to intercept signal when login with cookies is requested
-    *
-    */
-    void loginUsingCookies();
+     * @brief Slot for failed login
+     */
+    void loginFailed();
 
     /**
-    * @brief Public slot, which open settings dialog
-    */
+     * @brief Public slot, which open settings dialog
+     */
     void openSettingsDialog();
 
     /**
-      * @brief Set own location crosshair visibility
-      *
-      * @param visible
-      */
-    void setOwnLocationCrosshairVisibility(bool visible);
+     * @brief Set own location crosshair visibility
+     *
+     * @param visible
+     */
+    void setCrosshairVisibility(bool visible);
 
     /**
-    * @brief Sets username to member variable for login dialog
+    * @brief Shows contact dialog.
     *
-    * @param username Username to be set
+    * Shows contact dialog with contact's information.
+    * @param guid globally unique ID of a contact
     */
-    void setUsername(const QString &username);
+    void showContactDialog(const QString &guid);
 
     /**
-    * @brief Public slot to intercept signal when old cerdentials are invalid or credentials
-    *        doesn't exist yet
-    *
-    */
+     * @brief Public slot to intercept signal when old cerdentials are invalid or credentials
+     *        doesn't exist yet
+     */
     void startLoginProcess();
 
     /**
-    * @brief Toggle progress indicator.
-    *
-    * @param state true if progress indicator should be shown, false otherwise
-    */
+     * @brief Toggle progress indicator.
+     *
+     * @param state true if progress indicator should be shown, false otherwise
+     */
     void toggleProgressIndicator(bool state);
 
     /**
-    * @brief Shows / hides Situare related UI items
-    *
-    * @param show
-    */
-    void updateItemVisibility(bool show);
+     * @brief Shows / hides Situare related UI items
+     *
+     */
+    void updateItemVisibility();
 
 private:
     /**
-      * @brief Build fullscreen toggle button and connect slots
-      */
-    void buildFullScreenButton();
+     * @brief Build manual location setting cross hair and connect slots
+     */
+    void buildCrosshair();
 
     /**
-      * @brief Build friend list panel and connect slots
-      */
+     * @brief Build friend list panel and connect slots
+     */
     void buildFriendListPanel();
 
     /**
-      * @brief Build manual location setting cross hair and connect slots
-      */
-    void buildManualLocationCrosshair();
+     * @brief Build fullscreen toggle button and connect slots
+     */
+    void buildFullScreenButton();
 
     /**
-      * @brief Build map and connect slots
-      */
+     * @brief Build direction indicator button panel and connect signals
+     */
+    void buildIndicatorButtonPanel();
+
+
+    /**
+     * @brief Build location search panel and connect signals
+     */
+    void buildLocationSearchPanel();
+
+    /**
+     * @brief Build map and connect slots
+     */
     void buildMap();
 
     /**
@@ -226,275 +244,283 @@ private:
     void buildMapScale();
 
     /**
-      * @brief Build OSM license and connect slots
-      */
+     * @brief Build OSM license and connect slots
+     */
     void buildOsmLicense();
 
     /**
-      * @brief Build user info panel and connect slots
-      */
-    void buildUserInfoPanel();
+     * @brief Build application panels
+     */
+    void buildPanels();
 
     /**
-    * @brief Build webview and connect slots
-    *
-    */
-    void buildWebView();
+     * @brief Build routing panel and connect slots
+     */
+    void buildRoutingPanel();
+
+    /**
+     * @brief Build user info panel and connect slots
+     */
+    void buildUserInfoPanel();
 
     /**
-      * @brief Build zoom button panel and connect slots
-      */
+     * @brief Build zoom button panel and connect slots
+     */
     void buildZoomButtonPanel();
 
     /**
-    * @brief Private method to create the Menu items
-    */
+     * @brief Private method to create the Menu items
+     */
     void createMenus();
 
     /**
-      * @brief Grab or release HW increase and decrease buttons.
-      *
-      * @param grab Use true for grabbing and false for releasing the keys
-      */
+     * @brief Grab or release HW increase and decrease buttons.
+     *
+     * @param grab Use true for grabbing and false for releasing the keys
+     */
     void grabZoomKeys(bool grab);
 
     /**
-    * @brief Queues dialog/information box
-    *
-    * @param dialog Dialog to be added into queue
-    */
+     * @brief Queues dialog/information box
+     *
+     * @param dialog Dialog to be added into queue
+     */
     void queueDialog(QDialog *dialog);
 
     /**
-    * @brief Shows queued error information box
-    *
-    */
+     * @brief Shows queued error information box
+     *
+     */
     void showErrorInformationBox();
 
     /**
-    * @brief Shows queued information box
-    *
-    * @fn showInformationBox
-    */
+     * @brief Shows queued information box
+     *
+     * @fn showInformationBox
+     */
     void showInformationBox();
 
 private slots:
     /**
-    * @brief Slot for automatic update dialog finished.
-    *
-    * @result result code
-    */
+     * @brief Slot for automatic update dialog finished.
+     *
+     * @result result code
+     */
     void automaticUpdateDialogFinished(int result);
 
     /**
-    * @brief Slot to intercept signal when dialog/information note is processed
-    *
-    * @param status Status of the dialog
-    */
+     * @brief Slot to intercept signal when dialog/information note is processed
+     *
+     * @param status Status of the dialog
+     */
     void dialogFinished(int status);
 
     /**
-    * @brief Slot for drawing the fullscreen toggle button
-    *
-    * @param size Size of the screen
-    */
+     * @brief Slot for drawing the fullscreen toggle button
+     *
+     * @param size Size of the screen
+     */
     void drawFullScreenButton(const QSize &size);
 
     /**
-    * @brief Slot for drawing the map distance scale
-    *
-    * @param size Size of the screen
-    */
+     * @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 size Size of the screen
-    */
+     * @brief Slot for drawing the Open Street Map license text
+     *
+     * @param size Size of the screen
+     */
     void drawOsmLicense(const QSize &size);
 
     /**
-    * @brief Slot for drawing the own location crosshair
-    *
-    * @param size Size of the screen
-    */
-    void drawOwnLocationCrosshair(const QSize &size);
-
-    /**
-    * @brief Slot to intercept signal when error dialog/information note is processed
-    *
-    * @param status Status of the dialog
-    */
+     * @brief Slot to intercept signal when error dialog/information note is processed
+     *
+     * @param status Status of the dialog
+     */
     void errorDialogFinished(int status);
 
     /**
-    * @brief Slot for gps timeout.
-    *
-    * Called when request timeout occurs.
-    */
+     * @brief Slot for gps timeout.
+     *
+     * Called when request timeout occurs.
+     */
     void gpsTimeout();
 
     /**
-    * @brief Slot to load cookies from settings
-    *
-    */
-    void loadCookies();
-
-    /**
-    * @brief Slot to intercept signal when webview has finished loading webpage
+    * @brief Called when map center point horizontal shifting is changed
     *
-    * @param done Status of the loading
+    * @param shifting New shifting value
     */
-    void loadDone(bool done);
+    void mapCenterHorizontalShiftingChanged(int shifting);
 
     /**
-    * @brief Slot to save cookies to settings
-    *
-    */
-    void saveCookies();
+     * @brief Move the crosshair
+     */
+    void moveCrosshair();
 
     /**
-    * @brief Slot for settings dialog accepted.
-    */
+     * @brief Slot for settings dialog accepted.
+     */
     void settingsDialogAccepted();
 
     /**
-    * @brief Set correnct view port size to datamembers
-    *
-    * @param size Size of the screen
-    */
-    void setViewPortSize(const QSize &size);
+     * @brief Ignore SSL error from the reply
+     */
+    void sslErrors(QNetworkReply *reply, const QList<QSslError> &errors);
 
     /**
-    * @brief Toggle between fullscreen and normal window mode
-    */
-    void toggleFullScreen();
+     * @brief Start location search (open search dialog)
+     */
+    void startLocationSearch();
 
     /**
-    * @brief Slot to intercept signal from webview's networkaccessmanager
-    *
-    * @param reply Network reply (contains errors)
-    */
-    void webViewRequestFinished(QNetworkReply* reply);
+     * @brief Toggle between fullscreen and normal window mode
+     */
+    void toggleFullScreen();
 
 /*******************************************************************************
  * SIGNALS
  ******************************************************************************/
 signals:
     /**
-    * @brief Automatic centering setting changed by user
-    *
-    * @param enabled True if automatic centering is enabled, otherwise false
-    */
+     * @brief Automatic centering setting changed by user
+     *
+     * @param enabled True if automatic centering is enabled, otherwise false
+     */
     void autoCenteringTriggered(bool enabled);
 
     /**
-    * @brief Signal that indicates when user has cancelled login process
-    *
-    */
+     * @brief Signal that indicates when user has cancelled login process
+     *
+     */
     void cancelLoginProcess();
 
     /**
-    * @brief View should be centered to new location
-    *
-    * @param sceneCoordinate Scene coordinates of the new center point
+     * @brief Signal for centering to coordinates.
+     *
+     * @param coordinates geo coordinates to center to.
+     */
+    void centerToCoordinates(const GeoCoordinate &coordinates);
+
+    /**
+     * @brief View should be centered to new location
+     *
+     * @param coordinate Scene coordinates of the new center point
+     */
+    void centerToSceneCoordinates(const SceneCoordinate &coordinate);
+
+    /**
+    * @brief Emitted when route is cleared
     */
-    void centerToSceneCoordinates(QPoint sceneCoordinate);
+    void clearRoute();
 
     /**
-    * @brief Signal for enabling automatic location update.
+    * @brief Signal when direction and distance from current map center point to current GPS
+    *        location is changed
     *
-    * @param enabled true if enabled, false otherwise
-    * @param updateIntervalMsecs update interval in milliseconds
+    * @param direction Direction in degrees
+    * @param distance Distance in meters
+    * @param draw Should the indicator triangle be drawn or not
     */
+    void directionIndicatorValuesUpdate(qreal direction, qreal distance, bool draw);
+
+    /**
+     * @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 = 0);
 
     /**
-    * @brief Signals error
-    *
-    * @param error Error code
-    */
-    void error(const int error);
+     * @brief Signals error
+     *
+     * @param context error context
+     * @param error error code
+     */
+    void error(const int context, const int error);
 
     /**
-    * @brief Signal for requesting username from settings
-    *
-    */
+     * @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 Signals when friend's profile image is ready
+     *
+     * @param user Friend
+     */
+    void friendImageReady(User *user);
 
     /**
-    * @brief GPS setting changed
-    *
-    * @param enabled True if GPS is enabled, otherwise false
-    */
+     * @brief GPS setting changed
+     *
+     * @param enabled True if GPS is enabled, otherwise false
+     */
     void gpsTriggered(bool enabled);
 
     /**
-    * @brief Signal for finding friend.
-    *
-    * @param coordinates friend's geo coordinates
-    */
-    void findFriend(const QPointF &coordinates);
+     * @brief Signal for friend location ready.
+     *
+     * @param friendsList
+     */
+    void friendsLocationsReady(QList<User *> &friendsList);
 
     /**
-    * @brief Signal for friend location ready.
+    * @brief Emited when location request is parsed and is ready for further processing
     *
-    * @param friendsList
+    * @param result List of Location items
     */
-    void friendsLocationsReady(QList<User *> &friendsList);
+    void locationDataParsed(const QList<Location> &result);
 
     /**
-    * @brief Signal is emitted when location item is clicked.
-    *
-    * @param userIDs list of friends user IDs in the group
-    */
+     * @brief Signal is emitted when location item is clicked on map.
+     *
+     * @param userIDs list of friends user IDs in the group
+     */
     void locationItemClicked(const QList<QString> &userIDs);
 
     /**
-    * @brief Signals when Login/Logout action is pressed
-    *
-    */
+     * @brief Signal is emitted when location item is clicked in list.
+     *
+     * @param swBound south-west bound in GeoCoorinate
+     * @param neBound north-east bound in GeoCoordinate
+     */
+    void locationItemClicked(const GeoCoordinate &swBound, const GeoCoordinate &neBound);
+
+    /**
+     * @brief Signals when Login/Logout action is pressed
+     *
+     */
     void loginActionPressed();
 
     /**
-    * @brief MapView has been resized
-    *
-    * @param size view size
-    */
+     * @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 MapView to MapEngine
+     *
+     * @param coordinate New center point coordinate
+     */
+    void mapViewScrolled(const SceneCoordinate &coordinate);
 
     /**
-      * @brief Forwarding signal from MapEngine to MapView
-      */
+     * @brief Forwarding signal from MapEngine to MapView
+     */
     void maxZoomLevelReached();
 
     /**
-    * @brief Signal that informs that user's message/location failed to update on Situare server
-    *        This signal is originally sended from SituareService with name error
-    *        Signal is renamed on MainWindow
-    *
-    * @param error error code
-    */
-    void messageSendingFailed(const int error);
-
-    /**
-      * @brief Forwarding signal from MapEngine to MapView
-      */
+     * @brief Forwarding signal from MapEngine to MapView
+     */
     void minZoomLevelReached();
 
     /**
@@ -503,99 +529,131 @@ signals:
     void newMapResolution(qreal scale);
 
     /**
-    * @brief Signal for refreshing user data.
-    *
-    */
+     * @brief Signal for refreshing user data.
+     *
+     */
     void refreshUserData();
 
     /**
-    * @brief Signal for requesting reverseGeo from SituareEngine
+    * @brief Requests contact dialog.
     *
+    * @param facebookId contact's facebookId
     */
+    void requestContactDialog(const QString &facebookId);
+
+    /**
+     * @brief Signal for requesting reverseGeo from SituareEngine
+     *
+     */
     void requestReverseGeo();
 
     /**
-    * @brief Signals, when address data is ready
-    *
-    * @param address Street address
-    */
+     * @brief Signals, when address data is ready
+     *
+     * @param address Street address
+     */
     void reverseGeoReady(const QString &address);
 
     /**
-    * @brief Signal to save username to settings
+    * @brief Emited when route is parsed and is ready for further processing
     *
-    * @param username Username
+    * @param route Route item containing parsed route details
     */
-    void saveUsername(const QString &username);
+    void routeParsed(Route &route);
 
     /**
-    * @brief Signal for requestLocationUpdate from SituareEngine
+    * @brief Signal for routing to geo coordinates.
     *
-    * @param status Status message
-    * @param publish Publish on Facebook
+    * @param coordinates destination geo coordinates
     */
-    void statusUpdate(const QString &status, const bool &publish);
+    void routeTo(const GeoCoordinate &coordinates);
 
     /**
-    * @brief Signals when webview's urlChanged signal is emitted
-    *
-    * @param url New url
+    * @brief Request routing to current cursor position
     */
-    void updateCredentials(const QUrl &url);
+    void routeToCursor();
+
+    /**
+     * @brief Signal for location search
+     *
+     * @param location QString location
+     */
+    void searchForLocation(QString location);
 
     /**
-    * @brief Signals when updateLocationDialog's data must be cleared
+    * @brief Signal is emitted when search history item is clicked.
     *
+    * @param searchString search string used
     */
+    void searchHistoryItemClicked(const QString &searchString);
+
+    /**
+     * @brief Signal for requestLocationUpdate from SituareEngine
+     *
+     * @param status Status message
+     * @param publish Publish on Facebook
+     */
+    void statusUpdate(const QString &status, const bool &publish);
+
+    /**
+     * @brief Signals when updateLocationDialog's data must be cleared
+     *
+     */
     void clearUpdateLocationDialogData();
 
     /**
-    * @brief MapView has finished zooming
+    * @brief Dragging mode triggered.
     */
+    void draggingModeTriggered();
+
+    /**
+     * @brief MapView has finished zooming
+     */
     void viewZoomFinished();
 
     /**
-    * @brief Signal for use location ready.
-    *
-    * @param user User object
-    */
+     * @brief Signal for use location ready.
+     *
+     * @param user User object
+     */
     void userLocationReady(User *user);
 
     /**
-    * @brief Map zoom in request
-    */
+     * @brief Map zoom in request
+     */
     void zoomIn();
 
     /**
-      * @brief Forwarding signal from MapEngine to MapView
-      */
+     * @brief Forwarding signal from MapEngine to MapView
+     */
     void zoomLevelChanged(int zoomLevel);
 
     /**
-    * @brief Map zoom out request
-    */
+     * @brief Map zoom out request
+     */
     void zoomOut();
 
 /*******************************************************************************
  * DATA MEMBERS
  ******************************************************************************/
 private:
-    bool m_drawOwnLocationCrosshair;        ///< Flag for making ownLocationCrosshair visible or not
     bool m_errorShown;                      ///< Indicates if error dialog/note is shown
     bool m_loggedIn;                        ///< Indicates login state
     bool m_refresh;                         ///< Indicates when webpage is refreshed
 
-    int m_viewPortHeight;                   ///< Height of view port
-    int m_viewPortWidth;                    ///< Width of view port
+    int m_mapCenterHorizontalShifting;      ///< Amount of map center point horizontal shifting
+    int m_progressIndicatorCount;           ///< Indicates the number of progress indicator calls
 
-    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
 
+    QDialog *m_loginDialog;                 ///< Login dialog
+
+    QLabel *m_crosshair;                    ///< Label for center point crosshair
     QLabel *m_osmLicense;                   ///< Label for Open Street Map license
-    QLabel *m_ownLocationCrosshair;         ///< Label that show ownLocationCrosshair
 
+    QList<int> m_situareTabsIndexes;        ///< List of Situare tab indexes
     QList<QDialog *> m_error_queue;         ///< QList type error dialog queue
     QList<QDialog *> m_queue;               ///< QList type dialog queue
 
@@ -606,17 +664,15 @@ private:
     QString m_email;                        ///< Placeholder for email
     QString m_password;                     ///< Placeholder for password
 
-    QToolButton *m_fullScreenButton;        ///< Instance of the fullscreen toggle button
-
-    QWebView *m_webView;                    ///< Shows facebook login page
-
     FriendListPanel *m_friendsListPanel;    ///< Instance of friends list panel
+    FullScreenButton *m_fullScreenButton;   ///< Instance of the fullscreen toggle button
+    IndicatorButtonPanel *m_indicatorButtonPanel;   ///< Instance of direction indicator button
+    LocationSearchPanel *m_locationSearchPanel;     ///< Location search panel
     MapScale *m_mapScale;                   ///< Instance of the map scale
     MapView *m_mapView;                     ///< Instance of the map view
-    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
+    RoutingPanel *m_routingPanel;           ///< Instance of routing panel
+    TabbedPanel *m_tabbedPanel;             ///< Widget for tabbed panels
+    UserInfoPanel *m_userInfoPanel;         ///< Instance of the user information panel
     ZoomButtonPanel *m_zoomButtonPanel;     ///< Instance of zoom button panel
 };