Changed routing context buttons to be almost the upper one
[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     ImageButton *routeToCursorButton = new ImageButton(":res/images/sight.png",
55                                                        "", "", this);
56     connect(routeToCursorButton, SIGNAL(clicked()),
57             this, SIGNAL(routeToCursor()));
58
59     m_clearRouteButton = new ImageButton(":/res/images/gps_position.png",
60                                          "", "", this);
61     connect(m_clearRouteButton, SIGNAL(clicked()),
62             this, SLOT(clearRouteButtonClicked()));
63     m_clearRouteButton->setDisabled(true);
64
65     m_contextButtonLayout->addWidget(routeToCursorButton);
66     m_contextButtonLayout->addWidget(m_clearRouteButton);
67 }
68
69 void RoutingPanel::clearListsSelections()
70 {
71     qDebug() << __PRETTY_FUNCTION__;
72
73     m_routeWaypointListView->clearItemSelection();
74 }
75
76 void RoutingPanel::clearRouteButtonClicked()
77 {
78     qDebug() << __PRETTY_FUNCTION__;
79
80     m_clearRouteButton->setDisabled(true);
81     m_routeWaypointListView->clearList();
82     emit clearRoute();
83 }
84
85 void RoutingPanel::hideEvent(QHideEvent *event)
86 {
87     qDebug() << __PRETTY_FUNCTION__;
88
89     QWidget::hideEvent(event);
90
91     clearListsSelections();
92 }
93
94 void RoutingPanel::setRoute(Route &route)
95 {
96     qDebug() << __PRETTY_FUNCTION__;
97
98     m_routeWaypointListView->clearList();
99
100     QList<RouteSegment> segments = route.segments();
101     QList<GeoCoordinate> geometryPoints = route.geometryPoints();
102
103     for (int i = 0; i < segments.size(); ++i) {
104         RouteWaypointListItem *item = new RouteWaypointListItem();
105         RouteSegment routeSegment = segments.at(i);
106         item->setRouteWaypointData(routeSegment,
107                                    geometryPoints.at(routeSegment.positionIndex()));
108
109         m_routeWaypointListView->addListItem(QString::number(i), item);
110     }
111
112     m_routeWaypointListView->scrollToTop();
113
114     m_clearRouteButton->setDisabled(false);
115
116     emit openPanelRequested(this);
117 }