diff options
author | Alexandru Croitor <alexandru.croitor@qt.io> | 2019-07-25 11:01:35 +0200 |
---|---|---|
committer | Alexandru Croitor <alexandru.croitor@qt.io> | 2019-07-25 11:02:09 +0200 |
commit | cd84a8cac6a43cfeede4d098ed72c9bd3ce4f111 (patch) | |
tree | 05e10e315cc208aa83e6d34a262717e245330d5e /src/location/maps/qnavigationmanagerengine_p.h | |
parent | 57d50ee43efd8e3c3e1c04f1aad3e0043e79096a (diff) | |
parent | f8694e1f3430b7851fc90e26c6d778a86219379a (diff) | |
download | qtlocation-cd84a8cac6a43cfeede4d098ed72c9bd3ce4f111.tar.gz |
Merge remote-tracking branch 'origin/dev' into wip/qt6
Change-Id: Ifb3e30bbad659239e28f4aa79e769e7b429fb9e4
Diffstat (limited to 'src/location/maps/qnavigationmanagerengine_p.h')
-rw-r--r-- | src/location/maps/qnavigationmanagerengine_p.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/location/maps/qnavigationmanagerengine_p.h b/src/location/maps/qnavigationmanagerengine_p.h index 9089316f..8d2c9a99 100644 --- a/src/location/maps/qnavigationmanagerengine_p.h +++ b/src/location/maps/qnavigationmanagerengine_p.h @@ -98,10 +98,12 @@ public: virtual int traveledTime() const; virtual QGeoRoute currentRoute() const; virtual QGeoRouteLeg currentRouteLeg() const; + virtual QList<QGeoRoute> alternativeRoutes() const = 0; virtual int currentSegment() const; virtual void setAutomaticReroutingEnabled(bool autoRerouting) = 0; virtual bool automaticReroutingEnabled() const = 0; // configured via navigation params at construction time virtual bool isOnRoute() = 0; + virtual void recalculateRoutes() = 0; public slots: virtual bool start() = 0; @@ -120,6 +122,7 @@ signals: void nextManeuverIconChanged(); void progressInformationChanged(); void isOnRouteChanged(); + void alternativeRoutesChanged(); private: QScopedPointer<QAbstractNavigatorPrivate> d; |