Modified listviewscreen.
[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 "infotab.h"
24 #include "../map/mapview.h"
25 #include "../map/mapengine.h"
26 #include "infotab.h"
27
28 MapViewScreen::MapViewScreen(QWidget *parent)
29    : QWidget(parent)
30 {
31     MapView *mapView = new MapView(this);
32     mapEngine = new MapEngine(this);
33     mapView->setScene(mapEngine->scene());
34
35     connect(mapView, SIGNAL(viewScrolled(QPoint)), mapEngine, SLOT(setLocation(QPoint)));
36     connect(mapEngine, SIGNAL(locationChanged(QPoint)),
37             mapView, SLOT(centerToSceneCoordinates(QPoint)));
38     connect(mapEngine, SIGNAL(zoomLevelChanged(int)), mapView, SLOT(setZoomLevel(int)));
39     connect(mapView, SIGNAL(viewResized(QSize)), mapEngine, SLOT(viewResized(QSize)));
40     connect(mapView, SIGNAL(viewContentChanged(QPoint)),
41             mapEngine, SLOT(alignImmovableItems(QPoint)));
42     connect(mapView, SIGNAL(viewZoomFinished()), mapEngine, SLOT(viewZoomFinished()));
43
44     QHBoxLayout *mapViewLayout = new QHBoxLayout;
45     mapViewLayout->addWidget(mapView);
46     setLayout(mapViewLayout);
47
48     mapViewLayout->setMargin(0);
49
50     mapEngine->init();
51
52     setObjectName("Map view");
53 }