Home
last modified time | relevance | path

Searched refs:QDeclarativeGeoRoute (Results 1 – 21 of 21) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativegeoroute.cpp83 QDeclarativeGeoRoute::QDeclarativeGeoRoute(QObject *parent) in QDeclarativeGeoRoute() function in QDeclarativeGeoRoute
88 QDeclarativeGeoRoute::QDeclarativeGeoRoute(const QGeoRoute &route, QObject *parent) in QDeclarativeGeoRoute() function in QDeclarativeGeoRoute
93 QDeclarativeGeoRoute::~QDeclarativeGeoRoute() {} in ~QDeclarativeGeoRoute()
95 void QDeclarativeGeoRoute::initSegments(unsigned int lastIndex) // -1 turns it into unsigned int m… in initSegments()
100 const bool isLeg = qobject_cast<QDeclarativeGeoRoute *>(parent()); in initSegments()
125 QList<QGeoCoordinate> QDeclarativeGeoRoute::routePath() in routePath()
137 QGeoRectangle QDeclarativeGeoRoute::bounds() const in bounds()
150 int QDeclarativeGeoRoute::travelTime() const in travelTime()
161 qreal QDeclarativeGeoRoute::distance() const in distance()
180 QJSValue QDeclarativeGeoRoute::path() const in path()
[all …]
H A Dqdeclarativeroutemapitem_p.h60 class QDeclarativeGeoRoute; variable
66 Q_PROPERTY(QDeclarativeGeoRoute *route READ route WRITE setRoute NOTIFY routeChanged)
72 QDeclarativeGeoRoute *route() const;
73 void setRoute(QDeclarativeGeoRoute *route);
76 void routeChanged(const QDeclarativeGeoRoute *route);
85 QDeclarativeGeoRoute *route_;
H A Dqdeclarativegeoroute_p.h61 class Q_LOCATION_PRIVATE_EXPORT QDeclarativeGeoRoute : public QObject
75 explicit QDeclarativeGeoRoute(QObject *parent = 0);
76 QDeclarativeGeoRoute(const QGeoRoute &route, QObject *parent = 0);
77 ~QDeclarativeGeoRoute();
97 Q_INVOKABLE bool equals(QDeclarativeGeoRoute *other) const;
121 class Q_LOCATION_PRIVATE_EXPORT QDeclarativeGeoRouteLeg : public QDeclarativeGeoRoute
H A Dqdeclarativeroutemapitem.cpp111 QDeclarativeGeoRoute *QDeclarativeRouteMapItem::route() const in route()
116 void QDeclarativeRouteMapItem::setRoute(QDeclarativeGeoRoute *route) in setRoute()
H A Dqdeclarativegeoroutemodel_p.h72 class QDeclarativeGeoRoute; variable
147 Q_INVOKABLE QDeclarativeGeoRoute *get(int index);
182 QList<QDeclarativeGeoRoute *> routes_;
H A Dqdeclarativegeoroutemodel.cpp255 QDeclarativeGeoRoute *QDeclarativeGeoRouteModel::get(int index) in get()
674 QDeclarativeGeoRoute *route = new QDeclarativeGeoRoute(reply->routes().at(i), this); in routingFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/
H A Dqmaprouteobject_p.h59 class QDeclarativeGeoRoute; variable
65 Q_PROPERTY(QDeclarativeGeoRoute *route READ route WRITE setRoute NOTIFY routeChanged)
71 QDeclarativeGeoRoute *route() const;
75 void setRoute(QDeclarativeGeoRoute * route);
78 void routeChanged(QDeclarativeGeoRoute * route);
81 QDeclarativeGeoRoute *m_route = nullptr;
H A Dqmaprouteobject.cpp82 QDeclarativeGeoRoute *QMapRouteObjectPrivate::declarativeGeoRoute() const in declarativeGeoRoute()
95 const QDeclarativeGeoRoute *r = declarativeGeoRoute(); in route()
101 void QMapRouteObjectPrivate::setRoute(const QDeclarativeGeoRoute *route) in setRoute()
149 QDeclarativeGeoRoute *QMapRouteObject::route() const in route()
161 void QMapRouteObject::setRoute(QDeclarativeGeoRoute *route) in setRoute()
H A Dqdeclarativenavigator_p_p.h65 class QDeclarativeGeoRoute; variable
128 Q_PROPERTY(QDeclarativeGeoRoute *currentRoute READ currentRoute NOTIFY currentRouteChanged)
146 QDeclarativeGeoRoute *currentRoute() const;
168 QPointer<QDeclarativeGeoRoute> m_currentRoute;
170 ReadOnlyListModel<QDeclarativeGeoRoute, QDeclarativeGeoRouteModel::RouteRole> m_routes;
179 QPointer<QDeclarativeGeoRoute> m_route;
H A Dqdeclarativenavigator_p.h62 class QDeclarativeGeoRoute; variable
79 Q_PROPERTY(QDeclarativeGeoRoute *route READ route WRITE setRoute NOTIFY routeChanged)
128 void setRoute(QDeclarativeGeoRoute *route);
129 QDeclarativeGeoRoute *route() const;
H A Dqdeclarativenavigator.cpp259 void QDeclarativeNavigator::setRoute(QDeclarativeGeoRoute *route) in setRoute()
283 QDeclarativeGeoRoute *QDeclarativeNavigator::route() const in route()
713 QDeclarativeGeoRoute *QDeclarativeNavigationBasicDirections::currentRoute() const in currentRoute()
749 … m_currentRoute = new QDeclarativeGeoRoute(m_navigatorPrivate->m_navigator->currentRoute(), this); in onCurrentRouteChanged()
764 QList<QDeclarativeGeoRoute *> declarativeRoutes; in onAlternativeRoutesChanged()
766 QDeclarativeGeoRoute *route = new QDeclarativeGeoRoute(routes.at(i), &m_routes); in onAlternativeRoutesChanged()
H A Dqmaprouteobject_p_p.h67 QDeclarativeGeoRoute *declarativeGeoRoute() const;
70 virtual void setRoute(const QDeclarativeGeoRoute *route);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/location/
H A Dlocation.cpp114 …qmlRegisterType<QDeclarativeGeoRoute >(uri, major, minor, "Route"); // data type in registerTypes()
186 qmlRegisterType<QDeclarativeGeoRoute, 11>(uri, major, minor, "Route"); in registerTypes()
196 qmlRegisterType<QDeclarativeGeoRoute, 12>(uri, major, minor, "Route"); in registerTypes()
201 qmlRegisterType<QDeclarativeGeoRoute, 13>(uri, major, minor, "Route"); in registerTypes()
H A Dplugins.qmltypes747 name: "QDeclarativeGeoRoute"
779 Parameter { name: "other"; type: "QDeclarativeGeoRoute"; isPointer: true }
784 prototype: "QDeclarativeGeoRoute"
830 type: "QDeclarativeGeoRoute*"
1561 Property { name: "route"; type: "QDeclarativeGeoRoute"; isPointer: true }
1564 Parameter { name: "route"; type: "const QDeclarativeGeoRoute"; isPointer: true }
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeoroute.h103 friend class QDeclarativeGeoRoute; variable
124 friend class QDeclarativeGeoRoute; variable
H A Dqnavigationmanagerengine_p.h69 class QDeclarativeGeoRoute; variable
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/locationlabs/
H A Dplugins.qmltypes63 … Property { name: "currentRoute"; type: "QDeclarativeGeoRoute"; isReadonly: true; isPointer: true }
92 Property { name: "route"; type: "QDeclarativeGeoRoute"; isPointer: true }
240 Property { name: "route"; type: "QDeclarativeGeoRoute"; isPointer: true }
243 Parameter { name: "route"; type: "QDeclarativeGeoRoute"; isPointer: true }
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativeplaces/
H A Dqdeclarativesearchmodelbase.cpp107 QDeclarativeGeoRoute *route = nullptr; in setSearchArea()
116 route = searchArea.value<QDeclarativeGeoRoute *>(); in setSearchArea()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/qsg/
H A Dqmaprouteobjectqsg_p_p.h77 void setRoute(const QDeclarativeGeoRoute *route) override;
H A Dqmaprouteobjectqsg.cpp77 void QMapRouteObjectPrivateQSG::setRoute(const QDeclarativeGeoRoute *route) in setRoute()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/
H A Dchanges-5.12.023 - Added QDeclarativeGeoRoute::equals to perform deep comparisons in QML.