summaryrefslogtreecommitdiffstats
path: root/examples/maps/navigator.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/maps/navigator.h')
-rw-r--r--examples/maps/navigator.h96
1 files changed, 96 insertions, 0 deletions
diff --git a/examples/maps/navigator.h b/examples/maps/navigator.h
new file mode 100644
index 00000000..b48e6c25
--- /dev/null
+++ b/examples/maps/navigator.h
@@ -0,0 +1,96 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Mobility Components.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef NAVIGATOR_H
+#define NAVIGATOR_H
+
+#include <qgeoroutingmanager.h>
+#include <qgeosearchmanager.h>
+
+#include <qgeoroutereply.h>
+#include <qgeoroutereply.h>
+#include <qgeosearchreply.h>
+#include <qgeomaprouteobject.h>
+
+#include "marker.h"
+
+class MapsWidget;
+
+class Navigator : public QObject
+{
+ Q_OBJECT
+public:
+ Navigator(QGeoRoutingManager *routingManager, QGeoSearchManager *searchManager,
+ MapsWidget *mapsWidget, const QString &address,
+ const QGeoRouteRequest &requestTemplate);
+ ~Navigator();
+
+ void start();
+ QGeoRoute route() const;
+
+signals:
+ void finished();
+ void searchError(QGeoSearchReply::Error error, QString errorString);
+ void routingError(QGeoRouteReply::Error error, QString errorString);
+
+private slots:
+ void on_addressSearchFinished();
+ void on_routingFinished();
+
+private:
+ QString address;
+ QGeoRouteRequest request;
+
+ QGeoRoutingManager *routingManager;
+ QGeoSearchManager *searchManager;
+ MapsWidget *mapsWidget;
+
+ QGeoSearchReply *addressReply;
+ QGeoRouteReply *routeReply;
+
+ QGeoMapRouteObject *routeObject;
+ Marker *endMarker;
+ Marker *startMarker;
+
+ QGeoRoute firstRoute;
+};
+
+#endif // NAVIGATOR_H