Merge branch 'gps'
[situare] / src / ui / mapviewscreen.cpp
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5       Kaj Wallin - kaj.wallin@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #include "mapviewscreen.h"
23 #include "../map/mapview.h"
24 #include "../map/mapengine.h"
25 #include "friendlistpanel.h"
26 #include "userpanel.h"
27 #include "panelcommon.h"
28
29 #include "panelsidebar.h"
30
31 MapViewScreen::MapViewScreen(QWidget *parent)
32    : QWidget(parent),
33      m_autoCenteringEnabled(false)
34 {
35     MapView *mapView = new MapView(this);
36     mapEngine = new MapEngine(this);
37     mapView->setScene(mapEngine->scene());
38
39     FriendListPanel *friendsListPanel = new FriendListPanel(this);
40     UserInfoPanel *userPanel = new UserInfoPanel(this);
41     PanelSideBar *userPanelSidebar = new PanelSideBar(this, LEFT);
42     PanelSideBar *friendsListPanelSidebar = new PanelSideBar(this, RIGHT);
43
44     connect(mapView, SIGNAL(viewScrolled(QPoint)),
45             mapEngine, SLOT(setLocation(QPoint)));
46     connect(mapEngine, SIGNAL(locationChanged(QPoint)),
47             mapView, SLOT(centerToSceneCoordinates(QPoint)));
48     connect(mapEngine, SIGNAL(zoomLevelChanged(int)),
49             mapView, SLOT(setZoomLevel(int)));
50     connect(mapView, SIGNAL(viewResized(QSize)),
51             mapEngine, SLOT(viewResized(QSize)));
52     connect(mapView, SIGNAL(viewContentChanged(QPoint)),
53             mapEngine, SLOT(alignImmovableItems(QPoint)));
54     connect(mapView, SIGNAL(viewZoomFinished()),
55             mapEngine, SLOT(viewZoomFinished()));
56
57     connect(mapView, SIGNAL(viewResizedNewSize(int,int)),
58             this, SLOT(drawOsmLicense(int, int)));
59
60     connect(mapView, SIGNAL(viewResizedNewSize(int,int)),
61             friendsListPanel, SLOT(reDrawFriendsPanel(int,int)));
62     connect(mapView, SIGNAL(viewResizedNewSize(int,int)),
63             userPanel, SLOT(reDrawUserPanel(int,int)));
64     connect(mapView, SIGNAL(viewResizedNewSize(int,int)),
65             friendsListPanelSidebar, SLOT(reDrawSidebar(int,int)));
66
67     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
68             friendsListPanel, SLOT(friendInfoReceived(QList<User*>&)));
69
70     connect(this, SIGNAL(userLocationReady(User*)),
71             mapEngine, SLOT(receiveOwnLocation(User*)));
72     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
73             mapEngine, SIGNAL(friendsLocationsReady(QList<User*>&)));
74
75     QHBoxLayout *mapViewLayout = new QHBoxLayout;
76
77     osmLicense = new QLabel(this);
78     osmLicense->setAttribute(Qt::WA_TranslucentBackground, true);
79     osmLicense->setAttribute(Qt::WA_TransparentForMouseEvents, true);
80     osmLicense->setText("<font color='black'>"+OSM_LICENSE+"</font>");
81     osmLicense->setFont(QFont("Nokia Sans", 9));
82     osmLicense->resize(osmLicense->fontMetrics().width(OSM_LICENSE),
83                        osmLicense->fontMetrics().height());
84
85     friendsListPanel->stackUnder(friendsListPanelSidebar);
86     userPanelSidebar->stackUnder(friendsListPanel);
87     userPanel->stackUnder(userPanelSidebar);
88     osmLicense->stackUnder(userPanel);
89     mapView->stackUnder(osmLicense);
90
91     mapViewLayout->addWidget(mapView);
92     setLayout(mapViewLayout);
93
94     mapViewLayout->setMargin(0);
95
96     mapEngine->init();
97
98     setObjectName("Map view");
99 }
100
101 void MapViewScreen::drawOsmLicense(int width, int height)
102 {
103     qDebug() << __PRETTY_FUNCTION__ << width << "x" << height;
104     osmLicense->move(width - osmLicense->fontMetrics().width(OSM_LICENSE) - PANEL_PEEK_AMOUNT,
105                      height - osmLicense->fontMetrics().height());
106 }
107
108 void MapViewScreen::positionReceived(QPointF position)
109 {
110     qDebug() << __PRETTY_FUNCTION__;
111
112     if (m_autoCenteringEnabled)
113         mapEngine->setViewLocation(position);
114 }
115
116 void MapViewScreen::enableAutoCentering(bool enabled)
117 {
118     qDebug() << __PRETTY_FUNCTION__;
119
120     m_autoCenteringEnabled = enabled;
121 }