fixed review issues
[situare] / src / ui / mainwindow.cpp
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
9    Situare is free software; you can redistribute it and/or
10    modify it under the terms of the GNU General Public License
11    version 2 as published by the Free Software Foundation.
12
13    Situare is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with Situare; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
21    USA.
22 */
23
24 #include <QtGui>
25
26 #ifdef Q_WS_MAEMO_5
27 #include <QtMaemo5/QMaemo5InformationBox>
28 #endif // Q_WS_MAEMO_5
29
30 #include "mainwindow.h"
31 #include "mapviewscreen.h"
32 #include "settingsdialog.h"
33 #include "facebookservice/facebookauthentication.h"
34 #include "common.h"
35
36 #include <QtGui/QX11Info>
37 #include <X11/Xlib.h>
38 #include <X11/Xatom.h>
39
40 MainWindow::MainWindow(QWidget *parent)
41     : QMainWindow(parent),
42     m_email(),
43     m_loginUrl(),
44     m_password(),
45     m_refresh(0),
46     m_webView(0)
47 {
48     qDebug() << __PRETTY_FUNCTION__;
49
50     m_mapViewScreen = new MapViewScreen(this);
51     setCentralWidget(m_mapViewScreen);
52     createMenus();
53     setWindowTitle(tr("Situare"));
54     show();
55
56     m_locationDialog = new UpdateLocationDialog(this);
57
58     connect(this, SIGNAL(reverseGeoReady(QString)),
59             m_locationDialog, SLOT(setAddress(QString)));
60     connect(m_locationDialog, SIGNAL(statusUpdate(QString, bool)),
61             this, SIGNAL(statusUpdate(QString, bool)));
62
63     connect(this, SIGNAL(userLocationReady(User*)),
64             m_mapViewScreen, SIGNAL(userLocationReady(User*)));
65     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
66             m_mapViewScreen, SIGNAL(friendsLocationsReady(QList<User*>&)));
67
68         connect(this, SIGNAL(autoCentering(bool)),
69             m_mapViewScreen, SLOT(enableAutoCentering(bool)));
70     connect(this, SIGNAL(positionReceived(QPointF, qreal)),
71             m_mapViewScreen, SLOT(positionReceived(QPointF, qreal)));
72     connect(m_mapViewScreen, SIGNAL(mapLocationChanged()),
73             this, SLOT(mapLocationChanged()));
74
75     connect(this, SIGNAL(zoomInKeyPressed()),
76             m_mapViewScreen, SIGNAL(zoomInKeyPressed()));
77     connect(this, SIGNAL(zoomOutKeyPressed()),
78             m_mapViewScreen, SIGNAL(zoomOutKeyPressed()));
79
80     connect(this, SIGNAL(requestOwnLocation()),
81             m_mapViewScreen, SIGNAL(requestOwnLocation()));
82     connect(m_mapViewScreen, SIGNAL(ownLocation(QPointF)),
83             this, SIGNAL(ownLocation(QPointF)));
84
85     this->toggleProgressIndicator(true);
86
87     grabZoomKeys(true);
88 }
89
90 MainWindow::~MainWindow()
91 {
92     qDebug() << __PRETTY_FUNCTION__;
93
94     grabZoomKeys(false);
95
96     if(m_webView)
97         delete m_webView;
98 }
99
100 void MainWindow::toggleProgressIndicator(bool value)
101 {
102     qDebug() << __PRETTY_FUNCTION__;
103 #ifdef Q_WS_MAEMO_5
104     setAttribute(Qt::WA_Maemo5ShowProgressIndicator, value);
105 #else
106     Q_UNUSED(value);
107 #endif // Q_WS_MAEMO_5
108 }
109
110 void MainWindow::createMenus()
111 {
112     qDebug() << __PRETTY_FUNCTION__;
113
114     m_toSettingsAct = new QAction(tr("Settings"), this);
115     m_toSettingsAct->setObjectName(tr("Settings"));
116     connect(m_toSettingsAct, SIGNAL(triggered()),
117         this, SLOT(openSettingsDialog()));
118     m_gpsToggleAct = new QAction(tr("GPS"), this);
119     m_gpsToggleAct->setCheckable(true);
120     m_gpsToggleAct->setChecked(true);
121     connect(m_gpsToggleAct, SIGNAL(toggled(bool)),
122         this, SLOT(gpsToggled(bool)));
123     connect(m_gpsToggleAct, SIGNAL(toggled(bool)),
124             m_mapViewScreen, SLOT(setOwnLocationCrosshairVisibility(bool)));
125     m_autoCenteringAct = new QAction(tr("Auto centering"), this);
126     m_autoCenteringAct->setCheckable(true);
127     m_autoCenteringAct->setChecked(true);
128     connect(m_autoCenteringAct, SIGNAL(toggled(bool)),
129         this, SLOT(autoCenteringToggled(bool)));    
130         
131     m_viewMenu = menuBar()->addMenu(tr("Main"));
132
133     m_viewMenu->addAction(m_toSettingsAct);
134     m_viewMenu->addAction(m_gpsToggleAct);
135     m_viewMenu->addAction(m_autoCenteringAct);
136     m_viewMenu->setObjectName(tr("Menu"));
137 }
138
139 void MainWindow::openLocationUpdateDialog()
140 {
141     qDebug() << __PRETTY_FUNCTION__;
142
143     emit requestReverseGeo();
144     m_locationDialog->exec();
145 }
146
147 void MainWindow::openSettingsDialog()
148 {
149     qDebug() << __PRETTY_FUNCTION__;
150     SettingsDialog *dialog = new SettingsDialog(this);
151     dialog->show();
152 }
153
154 void MainWindow::gpsToggled(bool checked)
155 {
156     qDebug() << __PRETTY_FUNCTION__;
157
158     if (checked)
159         emit enableGPS(true);
160     else
161         emit enableGPS(false);
162 }
163
164 void MainWindow::setGPSButton(bool enabled)
165 {
166     qDebug() << __PRETTY_FUNCTION__;
167
168     if (enabled) {
169         showMaemoInformationBox(tr("GPS enabled"));
170         m_gpsToggleAct->setChecked(true);
171         m_autoCenteringAct->setVisible(true);
172     }
173     else {
174         showMaemoInformationBox(tr("GPS disabled"));
175         m_gpsToggleAct->setChecked(false);
176         m_autoCenteringAct->setVisible(false);
177     }
178 }
179
180 void MainWindow::setAutoCenteringButton(bool enabled)
181 {
182     if (enabled) {
183         showMaemoInformationBox(tr("Auto centering enabled"));
184         m_autoCenteringAct->setChecked(true);
185     }
186     else {
187         showMaemoInformationBox(tr("Auto centering disabled"));
188         m_autoCenteringAct->setChecked(false);
189     }
190 }
191
192 void MainWindow::gpsTimeout()
193 {
194     qDebug() << __PRETTY_FUNCTION__;
195
196     showMaemoInformationBox(tr("GPS timeout"));
197 }
198
199 void MainWindow::gpsError(const QString &message)
200 {
201     qDebug() << __PRETTY_FUNCTION__;
202
203     showMaemoInformationBox(message);
204 }
205
206 void MainWindow::mapLocationChanged()
207 {
208     qDebug() << __PRETTY_FUNCTION__;
209
210     emit enableAutoCentering(false);
211 }
212
213 void MainWindow::autoCenteringToggled(bool checked)
214 {
215     qDebug() << __PRETTY_FUNCTION__ << checked;
216
217     if (checked)
218         emit enableAutoCentering(true);
219     else
220         emit enableAutoCentering(false);
221 }
222
223 void MainWindow::autoCenteringEnabled(bool enabled)
224 {
225     qDebug() << __PRETTY_FUNCTION__ << enabled;
226
227     emit autoCentering(enabled);
228 }
229
230 void MainWindow::showMaemoInformationBox(const QString &message)
231 {
232     qDebug() << __PRETTY_FUNCTION__;
233
234 #ifdef Q_WS_MAEMO_5
235     QMaemo5InformationBox::information(this, message, QMaemo5InformationBox::DefaultTimeout);
236 #else
237     Q_UNUSED(message);
238 #endif
239 }
240
241 void MainWindow::startLoginProcess(const QUrl &url)
242 {
243     qDebug() << __PRETTY_FUNCTION__;
244
245     m_loginUrl = url;
246     m_webView = new QWebView;
247     m_loginDialog = new LoginDialog(this);
248
249     connect(m_webView, SIGNAL(urlChanged(const QUrl &)),
250             this, SIGNAL(updateCredentials(QUrl)));
251     connect(m_webView, SIGNAL(loadFinished(bool)),
252             this, SLOT(loadDone(bool)));
253
254     connect(m_loginDialog, SIGNAL(loginDialogDone(QString,QString)),
255             this, SLOT(loginDialogDone(QString,QString)));
256
257     m_webView->hide();
258
259     if(m_loginDialog->exec() != QDialog::Accepted) {
260         // if login dialog was canceled we need to stop processing webview
261         // stop and disconnect m_webView;
262         m_webView->stop();
263         disconnect(m_webView, SIGNAL(loadFinished(bool)),
264                    this, SLOT(loadDone(bool)));
265         disconnect(m_webView, SIGNAL(urlChanged(const QUrl &)),
266                    this, SLOT(updateCredentials(const QUrl &)));
267
268         emit cancelLoginProcess();
269     }
270     else {
271         m_webView->load(m_loginUrl);
272         toggleProgressIndicator(true);
273         m_refresh = true;
274     }
275 }
276
277 void MainWindow::loginDialogDone(const QString &email, const QString &password)
278 {
279     qDebug() << __PRETTY_FUNCTION__;
280
281     m_email = email;
282     m_password = password;
283 }
284
285 void MainWindow::loginFailed()
286 {
287     qDebug() << __PRETTY_FUNCTION__;
288
289     m_email.clear();
290     m_password.clear();
291
292     toggleProgressIndicator(false);
293
294 #ifdef Q_WS_MAEMO_5
295     QMaemo5InformationBox::information(this, tr("Invalid E-mail address or password"),
296                                        QMaemo5InformationBox::NoTimeout);
297
298 #endif // Q_WS_MAEMO_5
299
300     if(m_loginDialog->exec() != QDialog::Accepted) {
301         // if login dialog was canceled we need to stop processing webview
302         // stop and disconnect m_webView;
303         m_webView->stop();
304         disconnect(m_webView, SIGNAL(loadFinished(bool)),
305                    this, SLOT(loadDone(bool)));
306         disconnect(m_webView, SIGNAL(urlChanged(const QUrl &)),
307                    this, SLOT(updateCredentials(const QUrl &)));
308
309         emit cancelLoginProcess();
310     }
311     else {
312         // re-load login page for webview
313         toggleProgressIndicator(true);
314         m_webView->load(m_loginUrl);
315     }
316 }
317
318 void MainWindow::loadDone(bool done)
319 {
320     qDebug() << __PRETTY_FUNCTION__;
321
322     // for the first time the login page is opened, we need to refresh it to get cookies working
323     if(m_refresh) {
324         m_webView->reload();
325         m_refresh = false;
326     }
327
328     if (done)
329     {
330         QWebFrame* frame = m_webView->page()->currentFrame();
331         if (frame!=NULL)
332         {
333             // set email box
334             QWebElementCollection emailCollection = frame->findAllElements("input[name=email]");
335
336             foreach (QWebElement element, emailCollection) {
337                 element.setAttribute("value", m_email.toAscii());
338             }
339             // set password box
340             QWebElementCollection passwordCollection = frame->findAllElements("input[name=pass]");
341             foreach (QWebElement element, passwordCollection) {
342                 element.setAttribute("value", m_password.toAscii());
343             }
344             // find connect button
345             QWebElementCollection buttonCollection = frame->findAllElements("input[name=login]");
346             foreach (QWebElement element, buttonCollection)
347             {
348                 QPoint pos(element.geometry().center());
349
350                 // send a mouse click event to the web page
351                 QMouseEvent event0(QEvent::MouseButtonPress, pos, Qt::LeftButton, Qt::LeftButton,
352                                    Qt::NoModifier);
353                 QApplication::sendEvent(m_webView->page(), &event0);
354                 QMouseEvent event1(QEvent::MouseButtonRelease, pos, Qt::LeftButton, Qt::LeftButton,
355                                    Qt::NoModifier);
356                 QApplication::sendEvent(m_webView->page(), &event1);
357             }
358         }
359     }
360 }
361
362 void MainWindow::grabZoomKeys(bool grab)
363 {
364     qDebug() << __PRETTY_FUNCTION__;
365 #ifdef Q_WS_MAEMO_5
366     // Can't grab keys unless we have a window id
367     if (!winId())
368         return;
369
370     unsigned long val = (grab) ? 1 : 0;
371     Atom atom = XInternAtom(QX11Info::display(), "_HILDON_ZOOM_KEY_ATOM", False);
372     if (!atom)
373         return;
374
375     XChangeProperty (QX11Info::display(),
376                      winId(),
377                      atom,
378                      XA_INTEGER,
379                      32,
380                      PropModeReplace,
381                      reinterpret_cast<unsigned char *>(&val),
382                      1);
383 #else
384     Q_UNUSED(grab);
385 #endif // Q_WS_MAEMO_5
386 }
387
388 void MainWindow::keyPressEvent(QKeyEvent* event)
389 {
390     qDebug() << __PRETTY_FUNCTION__;
391
392     switch (event->key()) {
393     case Qt::Key_F7:
394         event->accept();
395         emit zoomInKeyPressed();
396         break;
397
398     case Qt::Key_F8:
399         event->accept();
400         emit zoomOutKeyPressed();
401         break;
402     }
403     QWidget::keyPressEvent(event);
404 }