Added test cases to mapEngine. Modified map tile remove method.
[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 <QColor>
23 #include <QPalette>
24
25 #include "mapviewscreen.h"
26 #include "../map/mapview.h"
27 #include "../map/mapengine.h"
28
29 MapViewScreen::MapViewScreen(QWidget *parent)
30    : QWidget(parent)
31 {
32     MapView *mapView = new MapView(this);
33     mapEngine = new MapEngine(this);
34     mapView->setScene(mapEngine->scene());
35
36     connect(mapView, SIGNAL(viewScrolled(QPointF)), mapEngine, SLOT(setLocation(QPointF)));
37     connect(mapEngine, SIGNAL(locationChanged(QPointF)),
38            mapView, SLOT(centerToSceneCoordinates(QPointF)));
39     connect(mapEngine, SIGNAL(zoomLevelChanged(int)), mapView, SLOT(setZoomLevel(int)));
40     connect(mapView, SIGNAL(viewResized(QSize)), mapEngine, SLOT(viewResized(QSize)));
41
42     QHBoxLayout *mapViewLayout = new QHBoxLayout;
43     //DEBUG
44     QVBoxLayout *mapControlLayout = new QVBoxLayout;
45     QWidget *mapControl = new QWidget(this);
46     mapControl->setLayout(mapControlLayout);
47     search = new QPushButton("Search", this);
48     zoomOut = new QPushButton("-", this);
49     zoomIn = new QPushButton("+", this);
50     mapControlLayout->addWidget(&latLine);
51     mapControlLayout->addWidget(&lonLine);
52     mapControlLayout->addWidget(search);
53     mapControlLayout->addWidget(zoomIn);
54     mapControlLayout->addWidget(zoomOut);
55     mapViewLayout->addWidget(mapControl);
56     connect(search, SIGNAL(clicked()), this, SLOT(searchMap()));
57     connect(zoomIn, SIGNAL(clicked()), mapEngine, SLOT(zoomIn()));
58     connect(zoomOut, SIGNAL(clicked()), mapEngine, SLOT(zoomOut()));
59     //DEBUG
60     mapViewLayout->addWidget(mapView);
61     setLayout(mapViewLayout);
62
63     mapEngine->init();
64 }
65
66 void MapViewScreen::searchMap()
67 {
68     qreal lat = latLine.text().toFloat();
69     qreal lon = lonLine.text().toFloat();
70
71     qDebug() << lat << "," << lon;
72
73     mapEngine->setViewLocation(QPointF(lon, lat));
74 }
75
76 void MapViewScreen::zoomInMap()
77 {
78
79 }
80
81 void MapViewScreen::zoomOutMap()
82 {
83     //mapEngine->zoomLevelChanged();
84 }