Clean-up and re-factoring for RoutingPanel
[situare] / src / ui / routingpanel.cpp
1 /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5         Jussi Laitinen - jussi.laitinen@ixonos.com
6         Sami Rämö - sami.ramo@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 #include "coordinates/geocoordinate.h"
24 #include "extendedlistitemdelegate.h"
25 #include "imagebutton.h"
26 #include "panelcommon.h"
27 #include "routewaypointlistitem.h"
28 #include "routewaypointlistview.h"
29 #include "routing/location.h"
30 #include "routing/route.h"
31
32 #include "routingpanel.h"
33
34 RoutingPanel::RoutingPanel(QWidget *parent)
35     : PanelBase(parent)
36 {
37     qDebug() << __PRETTY_FUNCTION__;
38
39     // --- LAYOUT & ROUTING INSTRUCTIONS VIEW ---
40     m_routeWaypointListView = new RouteWaypointListView(this);
41     m_routeWaypointListView->setItemDelegate(new ExtendedListItemDelegate(this));
42
43     connect(m_routeWaypointListView, SIGNAL(routeWaypointItemClicked(GeoCoordinate)),
44             this, SIGNAL(routeWaypointItemClicked(GeoCoordinate)));
45
46     QVBoxLayout *panelLayout = new QVBoxLayout;
47     panelLayout->setContentsMargins(PANEL_MARGIN_LEFT, PANEL_MARGIN_TOP,
48                                     PANEL_MARGIN_RIGHT, PANEL_MARGIN_BOTTOM);
49
50     panelLayout->addWidget(m_routeWaypointListView);
51     setLayout(panelLayout);
52
53     // --- CONTEXT BUTTONS ---
54     m_clearRouteButton = new ImageButton(":/res/images/gps_position.png",
55                                          "", "", this);
56     connect(m_clearRouteButton, SIGNAL(clicked()),
57             this, SLOT(clearRouteButtonClicked()));
58
59     ImageButton *routeToCursorButton = new ImageButton(":res/images/sight.png",
60                                                        "", "", this);
61     connect(routeToCursorButton, SIGNAL(clicked()),
62             this, SIGNAL(routeToCursor()));
63
64     m_contextButtonLayout->addWidget(m_clearRouteButton);
65     m_contextButtonLayout->addWidget(routeToCursorButton);
66 }
67
68 void RoutingPanel::clearListsSelections()
69 {
70     qDebug() << __PRETTY_FUNCTION__;
71
72     m_routeWaypointListView->clearItemSelection();
73 }
74
75 void RoutingPanel::clearRouteButtonClicked()
76 {
77     qDebug() << __PRETTY_FUNCTION__;
78
79     m_clearRouteButton->setDisabled(true);
80     emit clearRoute();
81 }
82
83 void RoutingPanel::hideEvent(QHideEvent *event)
84 {
85     qDebug() << __PRETTY_FUNCTION__;
86
87     QWidget::hideEvent(event);
88
89     clearListsSelections();
90 }
91
92 void RoutingPanel::setRoute(Route &route)
93 {
94     qDebug() << __PRETTY_FUNCTION__;
95
96     m_routeWaypointListView->clearList();
97
98     QList<RouteSegment> segments = route.segments();
99     QList<GeoCoordinate> geometryPoints = route.geometryPoints();
100
101     for (int i = 0; i < segments.size(); ++i) {
102         RouteWaypointListItem *item = new RouteWaypointListItem();
103         RouteSegment routeSegment = segments.at(i);
104         item->setRouteWaypointData(routeSegment,
105                                    geometryPoints.at(routeSegment.positionIndex()));
106
107         m_routeWaypointListView->addListItem(QString::number(i), item);
108     }
109
110     m_routeWaypointListView->scrollToTop();
111
112     m_clearRouteButton->setDisabled(false);
113
114     emit openPanelRequested(this);
115 }