e38805b502ed74ba56614dd386841038ec7f5bf7
[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
8    Situare is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License
10    version 2 as published by the Free Software Foundation.
11
12    Situare is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with Situare; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
20    USA.
21 */
22
23
24 #ifndef MAINWINDOW_H
25 #define MAINWINDOW_H
26
27 #include <QtGui/QMainWindow>
28 #include <QWidget>
29 #include <QDebug>
30 #include "facebookservice/facebookauthentication.h"
31 #include "situareservice/situareservice.h"
32 #include <QNetworkAccessManager>
33
34 class QLabel;
35 class QStackedWidget;
36
37 /**
38 * @brief Main Window Class
39 *
40 * @class MainWindow mainwindow.h "src/ui/mainwindow.h"
41 */
42 class MainWindow : public QMainWindow
43 {
44     Q_OBJECT
45
46 public:
47     /**
48     * @brief Constructor
49     *
50     * @param parent Parent
51     */
52     MainWindow(QWidget *parent = 0);
53
54     /**
55     * @brief Destructor
56     */
57     ~MainWindow();
58
59 public slots:
60     /**
61     * @brief Public slot, which initiates toListViewAct action to switch view
62     */
63     void toListView();
64
65     /**
66     * @brief Public slot, which initiates toMapViewAct action to switch view
67     */
68     void toMapView();
69
70 private:
71     /**
72     * @brief Private method to create the Menu items    w.show();
73     */
74     void createMenus();
75
76     /**
77     * @brief Private method to create List and Map views as a stacked widget
78     */
79     void createViews();
80
81     /**
82     * @brief Method used to switch active view.
83     *
84     * @param nextIndex 0 for listview, 1 for mapview
85     */
86     void switchView(int);
87
88 private:
89     FacebookAuthentication *FBAuth;
90     QNetworkAccessManager *m_networkManager;
91     SituareService *m_situareService;
92     bool m_loggedIn; ///< Boolean value to indicate whether login has been successfull or not
93     QStackedWidget *m_situareViews; ///< Stacked widget that hold both view widgets
94     QAction *m_toListViewAct; ///< Action to trigger switch to list view
95     QAction *m_toMapViewAct; ///< Action to trigger switch to map view
96     QMenu *m_viewMenu; ///< Object that hold the view menu items
97
98 private slots:
99     /**
100     * @brief Slot to change value of m_loggedIn to true
101     */
102     void loginOK();
103
104     /**
105     * @brief Slot to check login status and exits if necessary
106     */
107     void loginScreenClosed();
108 };
109
110 #endif // MAINWINDOW_H