/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the examples of the Qt Mobility Components. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** ** "Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names ** of its contributors may be used to endorse or promote products derived ** from this software without specific prior written permission. ** ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "directionstab.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include DirectionsInputDialog::DirectionsInputDialog(QString& start, QString& end, QGeoRouteRequest::TravelModes& travel, QWidget *parent) : QDialog(parent), m_start(start), m_end(end), m_travel(travel) { setWindowTitle(tr("Directions")); m_startpoint = new QLineEdit(m_start); m_startpoint->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); m_startpoint->setCursorPosition(0); m_endpoint = new QLineEdit(m_end); m_endpoint->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); m_endpoint->setCursorPosition(0); m_transport = new QComboBox(); m_transport->addItem("Car"); m_transport->setItemData(0, QVariant(QGeoRouteRequest::CarTravel)); m_transport->addItem("Pedestrian"); m_transport->setItemData(1, QVariant(QGeoRouteRequest::PedestrianTravel)); m_transport->addItem("Bicycle"); m_transport->setItemData(2, QVariant(QGeoRouteRequest::BicycleTravel)); m_transport->addItem("Public Transport"); m_transport->setItemData(3, QVariant(QGeoRouteRequest::PublicTransitTravel)); m_transport->addItem("Truck"); m_transport->setItemData(4, QVariant(QGeoRouteRequest::TruckTravel)); m_transport->setCurrentIndex(m_transport->findData(QVariant(m_travel))); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal); connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept())); connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject())); QVBoxLayout *mainLayout = new QVBoxLayout; mainLayout->setSizeConstraint(QLayout::SetFixedSize); mainLayout->setSpacing(2); mainLayout->setContentsMargins(2, 1, 2, 1); mainLayout->addWidget(m_startpoint); mainLayout->addWidget(m_endpoint); mainLayout->addWidget(m_transport); mainLayout->addWidget(buttonBox); setLayout(mainLayout); } void DirectionsInputDialog::accept() { m_start = m_startpoint->text(); m_end = m_endpoint->text(); switch(m_transport->itemData(m_transport->currentIndex()).toInt()) { case 1: m_travel = QGeoRouteRequest::CarTravel; break; case 2: m_travel = QGeoRouteRequest::PedestrianTravel; break; case 4: m_travel = QGeoRouteRequest::BicycleTravel; break; case 8: m_travel = QGeoRouteRequest::PublicTransitTravel; break; case 16: m_travel = QGeoRouteRequest::TruckTravel; break; default: m_travel = QGeoRouteRequest::CarTravel; break; } if (m_start.isEmpty() || m_start.startsWith("Start Point:")) { QMessageBox::warning(this, tr("Directions"), tr("Please provide a starting point")); return; } if (m_end.isEmpty() || m_end.startsWith("End Point:")) { QMessageBox::warning(this, tr("Directions"), tr("Please provide an end point")); return; } QDialog::accept(); } DirectionsTab::DirectionsTab(QWidget *parent) : QWidget(parent), m_routingManager(0), m_searchManager(0), m_startReply(0), m_endReply(0) { m_startpoint = "53 Brandl St, Eight Mile Plains, Australia"; //m_startpoint = "Start Point:"; m_endpoint = "End Point:"; m_requestTravelModes = QGeoRouteRequest::CarTravel; m_requestRouteOptimizations = QGeoRouteRequest::FastestRoute; m_requestBtn = new QPushButton(tr("Request Route")); m_requestBtn->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); m_requestBtn->setDisabled(true); QObject::connect(m_requestBtn, SIGNAL(clicked(bool)), this, SLOT(on_btnRequest_clicked())); m_updateBtn = new QPushButton(tr("Update Route")); m_updateBtn->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); m_updateBtn->setDisabled(true); QObject::connect(m_updateBtn, SIGNAL(clicked(bool)), this, SLOT(on_btnUpdate_clicked())); m_resultList = new QListWidget(); m_resultList->setWordWrap(true); m_resultList->setIconSize(QSize(30, 30)); QHBoxLayout *firstrow = new QHBoxLayout; firstrow->setSpacing(2); firstrow->setContentsMargins(2, 1, 2, 1); firstrow->addWidget(m_requestBtn); firstrow->addWidget(m_updateBtn); QVBoxLayout *mainLayout = new QVBoxLayout; mainLayout->setSpacing(2); mainLayout->setContentsMargins(2, 1, 2, 1); mainLayout->addLayout(firstrow); mainLayout->addWidget(m_resultList); setLayout(mainLayout); } DirectionsTab::~DirectionsTab() { } void DirectionsTab::initialize(QGeoRoutingManager *routingManager, QGeoSearchManager *searchManager) { m_resultList->clear(); directionsRequest = false; m_updateBtn->setDisabled(true); m_routingManager = routingManager; if (m_routingManager) { QObject::connect(m_routingManager, SIGNAL(finished(QGeoRouteReply*)), this, SLOT(routeReplyFinished(QGeoRouteReply*))); QObject::connect(m_routingManager, SIGNAL(error(QGeoRouteReply*, QGeoRouteReply::Error, QString)), this, SLOT(routeResultsError(QGeoRouteReply*, QGeoRouteReply::Error, QString))); m_requestBtn->setDisabled(false); } else { m_requestBtn->setDisabled(true); m_resultList->addItem("\nNo routing manager available.\n"); return; } m_searchManager = searchManager; if (m_searchManager) { QObject::connect(m_searchManager, SIGNAL(error(QGeoSearchReply*, QGeoSearchReply::Error, QString)), this, SLOT(searchResultsError(QGeoSearchReply*, QGeoSearchReply::Error, QString))); if (m_searchManager->supportsGeocoding()) m_requestBtn->setDisabled(false); } else { m_requestBtn->setDisabled(true); m_resultList->addItem("\nNo search manager available.\n"); } } void DirectionsTab::on_btnRequest_clicked() { if (!m_routingManager) QMessageBox::warning(this, tr("Directions"), tr("No routing manager available.")); if (!m_searchManager) QMessageBox::warning(this, tr("Directions"), tr("No search manager available.")); DirectionsInputDialog dialog(m_startpoint, m_endpoint, m_requestTravelModes, this); if (dialog.exec() == QDialog::Accepted) { m_resultList->clear(); m_updateBtn->setDisabled(true); m_startReply = m_searchManager->search(m_startpoint, QGeoSearchManager::SearchGeocode); QObject::connect(m_startReply, SIGNAL(finished()), this, SLOT(searchStartFinished())); m_endReply = m_searchManager->search(m_endpoint, QGeoSearchManager::SearchGeocode); QObject::connect(m_endReply, SIGNAL(finished()), this, SLOT(searchEndFinished())); m_resultList->addItem("\nRequesting directions...\n"); } } void DirectionsTab::on_btnUpdate_clicked() { if (m_routingManager && m_routes.count() > 0) { m_resultList->clear(); m_resultList->addItem("\nUpdating directions...\n"); m_updateBtn->setDisabled(true); m_routingManager->updateRoute(m_routes[0], m_start.coordinate()); } else { QMessageBox::warning(this, tr("Directions"), tr("Route update not available.")); } } void DirectionsTab::getDirections() { if (m_startReply) m_startReply->deleteLater(); m_startReply = 0; if (m_endReply) m_endReply->deleteLater(); m_endReply = 0; QGeoRouteRequest request(m_start.coordinate(), m_end.coordinate()); request.setTravelModes(m_requestTravelModes); request.setRouteOptimization(m_requestRouteOptimizations); if ((m_routingManager->supportedSegmentDetails() & QGeoRouteRequest::BasicSegmentData) != 0) request.setSegmentDetail(QGeoRouteRequest::BasicSegmentData); if ((m_routingManager->supportedManeuverDetails() & QGeoRouteRequest::BasicManeuvers) != 0) request.setManeuverDetail(QGeoRouteRequest::BasicManeuvers); directionsRequest = true; m_routingManager->calculateRoute(request); } void DirectionsTab::searchStartFinished() { if (m_endReply && m_endReply->isFinished() && (m_startReply->places().isEmpty() || m_endReply->places().isEmpty())) { m_resultList->clear(); if (m_startReply->places().isEmpty()) m_resultList->addItem("\nError! Start place search returned 0 results\n"); if (m_endReply->places().isEmpty()) m_resultList->addItem("\nError! End place search returned 0 results\n"); m_startReply->deleteLater(); m_startReply = 0; m_endReply->deleteLater(); m_endReply = 0; return; } if (m_startReply->error() == QGeoSearchReply::NoError) { if (!m_startReply->places().isEmpty()) { QList places = m_startReply->places(); m_start = places[0]; if (m_endReply && m_endReply->isFinished()) getDirections(); } } else { m_startReply->deleteLater(); m_startReply = 0; } } void DirectionsTab::searchEndFinished() { if (m_startReply && m_startReply->isFinished() && (m_startReply->places().isEmpty() || m_endReply->places().isEmpty())) { m_resultList->clear(); if (m_startReply->places().isEmpty()) m_resultList->addItem("\nError! Start place search returned 0 results\n"); if (m_endReply->places().isEmpty()) m_resultList->addItem("\nError! End place search returned 0 results\n"); m_startReply->deleteLater(); m_startReply = 0; m_endReply->deleteLater(); m_endReply = 0; return; } if (m_endReply->error() == QGeoSearchReply::NoError) { if (!m_endReply->places().isEmpty()) { QList places = m_endReply->places(); m_end = places[0]; if (m_startReply && m_startReply->isFinished()) getDirections(); } } else { m_endReply->deleteLater(); m_endReply = 0; } } void DirectionsTab::addDirection(const QString& icon, const QString& text, const QColor& color) { QListWidgetItem *item = new QListWidgetItem('\n' + text + '\n'); item->setBackground(QBrush(color)); if (icon.isEmpty()) { QPixmap blank(23,1); blank.fill(Qt::transparent); item->setIcon(QIcon(blank)); } else { item->setIcon(QIcon(icon)); } m_resultList->addItem(item); } void DirectionsTab::routeReplyFinished(QGeoRouteReply* reply) { if (!directionsRequest) return; if (reply->error() == QGeoRouteReply::NoError) { m_resultList->clear(); m_routes = reply->routes(); for (int i=0; i 0) addDirection(":/icons/pathmarker.png", instruction, QColor("white")); else addDirection(":/icons/pathmarker.png", instruction, QColor("lightgray")); segment = segment.nextRouteSegment(); } if (++count%2 > 0) addDirection(":/icons/endmarker.png", endAddress, QColor("white")); else addDirection(":/icons/endmarker.png", endAddress, QColor("lightgray")); } reply->deleteLater(); if (m_routes.count() > 0 && m_routingManager->supportsRouteUpdates()) m_updateBtn->setDisabled(false); } } void DirectionsTab::routeResultsError(QGeoRouteReply* reply, QGeoRouteReply::Error error, QString errorString) { Q_UNUSED(error) m_resultList->clear(); m_resultList->addItem("\nError! " + errorString + "\n"); reply->deleteLater(); } void DirectionsTab::searchResultsError(QGeoSearchReply* reply, QGeoSearchReply::Error error, QString errorString) { Q_UNUSED(error) m_resultList->clear(); m_resultList->addItem("\nError! " + errorString + "\n"); reply->deleteLater(); } QString DirectionsTab::address(const QGeoPlace& place) const { QGeoAddress addr = place.address(); QString addrStr = addr.street() + ",\n" + addr.city() + " " + addr.postcode() + ",\n" + addr.country(); return addrStr; }