Fix: Routing instructions list was not cleared when route was deleted.
[situare] / src / ui / routingpanel.cpp
index 49851e9..9ead7be 100644 (file)
@@ -1,13 +1,33 @@
+/*
+    Situare - A location system for Facebook
+    Copyright (C) 2010  Ixonos Plc. Authors:
+
+        Jussi Laitinen - jussi.laitinen@ixonos.com
+        Sami Rämö - sami.ramo@ixonos.com
+
+    Situare is free software; you can redistribute it and/or
+    modify it under the terms of the GNU General Public License
+    version 2 as published by the Free Software Foundation.
+
+    Situare is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with Situare; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
+    USA.
+*/
+
 #include "coordinates/geocoordinate.h"
 #include "extendedlistitemdelegate.h"
-#include "locationlistitem.h"
-#include "locationlistview.h"
 #include "imagebutton.h"
 #include "panelcommon.h"
-#include "routing/location.h"
-#include "routing/route.h"
 #include "routewaypointlistitem.h"
 #include "routewaypointlistview.h"
+#include "routing/location.h"
+#include "routing/route.h"
 
 #include "routingpanel.h"
 
@@ -16,164 +36,65 @@ RoutingPanel::RoutingPanel(QWidget *parent)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    QVBoxLayout *routingLayout = new QVBoxLayout;
-    routingLayout->setMargin(0);
-    routingLayout->setSpacing(0);
-    setLayout(routingLayout);
-
-    QHBoxLayout *headerLayout = new QHBoxLayout();
-    headerLayout->setContentsMargins(PANEL_MARGIN_LEFT, PANEL_MARGIN_TOP,
-                                     PANEL_MARGIN_RIGHT, PANEL_MARGIN_BOTTOM);
-
-    QVBoxLayout *listViewLayout = new QVBoxLayout;
-    listViewLayout->setContentsMargins(PANEL_MARGIN_LEFT, PANEL_MARGIN_TOP,
-                                       PANEL_MARGIN_RIGHT, PANEL_MARGIN_BOTTOM);
-
-    ImageButton *searchLocationButton = new ImageButton(":/res/images/search.png",
-                                                        ":/res/images/search_s.png",
-                                                        "", this);
-    searchLocationButton->setCheckable(true);
-    m_contextButtonLayout->addWidget(searchLocationButton);
-
-    m_routeButton = new ImageButton(":res/images/route_to_location.png",
-                                    ":res/images/route_to_location_s.png", "", this);
-    m_routeButton->setCheckable(true);
-    m_routeButton->setDisabled(true);
-
-    m_locationListHeaderWidget = new QWidget();
-    m_locationListHeaderWidget->setLayout(headerLayout);
-    m_locationListHeaderWidget->setAutoFillBackground(true);
-    QPalette labelPalette = m_locationListHeaderWidget->palette();
-    labelPalette.setColor(QPalette::Background, Qt::black);
-    m_locationListHeaderWidget->setPalette(labelPalette);
-    m_locationListHeaderWidget->hide();
-
-    m_locationListLabel = new QLabel(this);
-
-    m_locationListView = new LocationListView(this);
-    m_locationListView->setItemDelegate(new ExtendedListItemDelegate(this));
-    m_locationListView->hide();
-
+    // --- LAYOUT & ROUTING INSTRUCTIONS VIEW ---
     m_routeWaypointListView = new RouteWaypointListView(this);
     m_routeWaypointListView->setItemDelegate(new ExtendedListItemDelegate(this));
-    m_routeWaypointListView->hide();
-
-    headerLayout->addWidget(m_locationListLabel, 0, Qt::AlignCenter);
-
-    listViewLayout->addWidget(m_locationListView);
-    listViewLayout->addWidget(m_routeWaypointListView);
-
-    routingLayout->addWidget(m_locationListHeaderWidget);
-    routingLayout->addLayout(listViewLayout);
-
-    connect(m_locationListView,
-            SIGNAL(locationItemClicked(const GeoCoordinate&, const GeoCoordinate&)),
-            this,
-            SIGNAL(locationItemClicked(const GeoCoordinate&, const GeoCoordinate&)));
-
-    connect(m_locationListView, SIGNAL(listItemSelectionChanged()),
-            this, SLOT(setRouteButtonDisabled()));
 
     connect(m_routeWaypointListView, SIGNAL(routeWaypointItemClicked(GeoCoordinate)),
             this, SIGNAL(routeWaypointItemClicked(GeoCoordinate)));
 
-    connect(m_routeButton, SIGNAL(toggled(bool)),
-            this, SLOT(routeButtonToggled(bool)));
+    QVBoxLayout *panelLayout = new QVBoxLayout;
+    panelLayout->setContentsMargins(PANEL_MARGIN_LEFT, PANEL_MARGIN_TOP,
+                                    PANEL_MARGIN_RIGHT, PANEL_MARGIN_BOTTOM);
 
-    connect(searchLocationButton, SIGNAL(toggled(bool)),
-            this, SLOT(searchLocationButtonToggled(bool)));
+    panelLayout->addWidget(m_routeWaypointListView);
+    setLayout(panelLayout);
 
-    // CONTEXT BUTTONS
-    m_contextButtonLayout->addWidget(m_routeButton);
-}
+    // --- CONTEXT BUTTONS ---
+    m_clearRouteButton = new ImageButton(":/res/images/gps_position.png",
+                                         "", "", this);
+    connect(m_clearRouteButton, SIGNAL(clicked()),
+            this, SLOT(clearRouteButtonClicked()));
+    m_clearRouteButton->setDisabled(true);
 
-void RoutingPanel::clearListsSelections()
-{
-    qDebug() << __PRETTY_FUNCTION__;
+    ImageButton *routeToCursorButton = new ImageButton(":res/images/sight.png",
+                                                       "", "", this);
+    connect(routeToCursorButton, SIGNAL(clicked()),
+            this, SIGNAL(routeToCursor()));
 
-    m_locationListView->clearItemSelection();
-    m_routeWaypointListView->clearItemSelection();
-
-    setRouteButtonDisabled();
+    m_contextButtonLayout->addWidget(m_clearRouteButton);
+    m_contextButtonLayout->addWidget(routeToCursorButton);
 }
 
-void RoutingPanel::hideEvent(QHideEvent *event)
+void RoutingPanel::clearListsSelections()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    QWidget::hideEvent(event);
-
-    clearListsSelections();
+    m_routeWaypointListView->clearItemSelection();
 }
 
-void RoutingPanel::populateLocationListView(const QList<Location> &locations)
+void RoutingPanel::clearRouteButtonClicked()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    m_locationListHeaderWidget->show();
-    m_locationListLabel->setText(tr("Search results: %1").arg(locations.count()));
-
-    m_routeWaypointListView->hide();
-    m_locationListView->show();
-    m_locationListView->clearList();
-
-    for (int i = 0; i < locations.size(); ++i) {
-        LocationListItem *item = new LocationListItem();
-        item->setLocationData(locations.at(i));
-        m_locationListView->addListItem(QString::number(i), item);
-    }
-
-    const int FIRST_LOCATION_ITEM_INDEX = 0;
-    const int ONE_LOCATION_ITEM = 1;
-
-    if (locations.size() == ONE_LOCATION_ITEM) {
-        ListItem *item = m_locationListView->listItemAt(FIRST_LOCATION_ITEM_INDEX);
-
-        if (item)
-            m_locationListView->setSelectedItem(item);
-    }
-
-    m_locationListView->scrollToTop();
-}
-
-void RoutingPanel::routeButtonToggled(bool checked)
-{
-    if (checked) {
-        routeToSelectedLocation();
-    } else {
-        emit clearRoute();
-        /// @todo clear route panel
-    }
+    m_clearRouteButton->setDisabled(true);
+    m_routeWaypointListView->clearList();
+    emit clearRoute();
 }
 
-void RoutingPanel::routeToSelectedLocation()
+void RoutingPanel::hideEvent(QHideEvent *event)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    LocationListItem *item = dynamic_cast<LocationListItem *>
-                             (m_locationListView->selectedItem());
-
-    if (item)
-        emit routeToLocation(item->coordinates());
-}
+    QWidget::hideEvent(event);
 
-void RoutingPanel::searchLocationButtonToggled(bool checked)
-{
-    if (checked) {
-        emit requestSearchLocation();
-    } else {
-        m_locationListHeaderWidget->hide();
-        m_locationListView->hide();
-    }
+    clearListsSelections();
 }
 
 void RoutingPanel::setRoute(Route &route)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    m_locationListHeaderWidget->hide();
-    m_locationListView->hide();
-    m_routeWaypointListView->show();
     m_routeWaypointListView->clearList();
 
     QList<RouteSegment> segments = route.segments();
@@ -190,12 +111,7 @@ void RoutingPanel::setRoute(Route &route)
 
     m_routeWaypointListView->scrollToTop();
 
-    emit showPanelRequested(this);
-}
-
-void RoutingPanel::setRouteButtonDisabled()
-{
-    qDebug() << __PRETTY_FUNCTION__;
+    m_clearRouteButton->setDisabled(false);
 
-    m_routeButton->setDisabled(m_locationListView->selectedItems().isEmpty());
+    emit openPanelRequested(this);
 }