Home
last modified time | relevance | path

Searched refs:route_ (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativegeoroute.cpp89 : QObject(parent), route_(route) in QDeclarativeGeoRoute()
101 QGeoRouteSegment segment = route_.firstRouteSegment(); in initSegments()
127 return route_.path(); in routePath()
139 return route_.bounds(); in bounds()
152 return route_.travelTime(); in travelTime()
163 return route_.distance(); in distance()
187 QV4::Scoped<QV4::ArrayObject> pathArray(scope, v4->newArrayObject(route_.path().length())); in path()
188 for (int i = 0; i < route_.path().length(); ++i) { in path()
189 const QGeoCoordinate &c = route_.path().at(i); in path()
217 if (route_.path() == pathList) in setPath()
[all …]
H A Dqdeclarativeroutemapitem.cpp96 : QDeclarativePolylineMapItem(parent), route_(0) in QDeclarativeRouteMapItem()
113 return route_; in route()
118 if (route_ == route) in setRoute()
121 route_ = route; in setRoute()
123 connect(route_, SIGNAL(pathChanged()), this, SLOT(updateRoutePath())); in setRoute()
125 if (route_) in setRoute()
126 setPathFromGeoList(route_->routePath()); in setRoute()
128 emit routeChanged(route_); in setRoute()
133 setPathFromGeoList(route_->routePath()); in updateRoutePath()
H A Dqdeclarativeroutemapitem_p.h85 QDeclarativeGeoRoute *route_;
H A Dqdeclarativegeoroute_p.h111 QGeoRoute route_; variable