| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/ |
| H A D | qgeopath.cpp | 92 inline QGeoPathPrivate *QGeoPath::d_func() in d_func() 97 inline const QGeoPathPrivate *QGeoPath::d_func() const in d_func() 106 QMetaType::registerConverter<QGeoShape, QGeoPath>(); in PathVariantConversions() 107 QMetaType::registerConverter<QGeoPath, QGeoShape>(); in PathVariantConversions() 116 QGeoPath::QGeoPath() in Q_GLOBAL_STATIC() 126 QGeoPath::QGeoPath(const QList<QGeoCoordinate> &path, const qreal &width) in QGeoPath() function in QGeoPath 135 QGeoPath::QGeoPath(const QGeoPath &other) in QGeoPath() function in QGeoPath 144 QGeoPath::QGeoPath(const QGeoShape &other) in QGeoPath() function in QGeoPath 155 QGeoPath::~QGeoPath() {} in ~QGeoPath() 160 QGeoPath &QGeoPath::operator=(const QGeoPath &other) in operator =() [all …]
|
| H A D | qgeopath.h | 51 class Q_POSITIONING_EXPORT QGeoPath : public QGeoShape 58 QGeoPath(); 59 QGeoPath(const QList<QGeoCoordinate> &path, const qreal &width = 0.0); 60 QGeoPath(const QGeoPath &other); 61 QGeoPath(const QGeoShape &other); 63 ~QGeoPath(); 65 QGeoPath &operator=(const QGeoPath &other); 68 bool operator==(const QGeoPath &other) const; 71 bool operator!=(const QGeoPath &other) const; 83 Q_INVOKABLE QGeoPath translated(double degreesLatitude, double degreesLongitude) const; [all …]
|
| H A D | qgeoshape.cpp | 381 QGeoPath p = shape; in operator <<() 431 shape = QGeoPath(l); in operator >>()
|
| H A D | qgeopath_p.h | 255 class Q_POSITIONING_PRIVATE_EXPORT QGeoPathEager : public QGeoPath 262 QGeoPathEager(const QGeoPath &other);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopath/ |
| H A D | tst_qgeopath.cpp | 70 QGeoPath p; in defaultConstructor() 83 QGeoPath p(coords, 1.0); in listConstructor() 94 QGeoPath p1; in assignment() 99 QGeoPath p2(coords, 1.0); in assignment() 114 QGeoPath p3 = area; in assignment() 134 QGeoPath c1(coords, qreal(50.0)); in comparison() 135 QGeoPath c2(coords, qreal(50.0)); in comparison() 136 QGeoPath c3(coords, qreal(35.0)); in comparison() 137 QGeoPath c4(coords2, qreal(50.0)); in comparison() 166 QGeoPath c; in type() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/positioning/ |
| H A D | locationsingleton.cpp | 212 QGeoPath LocationSingleton::path() const in path() 214 return QGeoPath(); in path() 225 QGeoPath LocationSingleton::path(const QJSValue &value, qreal width) const in path() 244 return QGeoPath(pathList, width); in path() 345 QGeoPath LocationSingleton::shapeToPath(const QGeoShape &shape) const in shapeToPath() 347 return QGeoPath(shape); in shapeToPath()
|
| H A D | locationsingleton.h | 89 Q_INVOKABLE QGeoPath path() const; 90 Q_INVOKABLE QGeoPath path(const QJSValue &value, qreal width = 0.0) const; 98 Q_INVOKABLE QGeoPath shapeToPath(const QGeoShape &shape) const;
|
| H A D | positioning.cpp | 585 qRegisterMetaType<QGeoPath>(); in registerTypes() 586 QMetaType::registerEqualsComparator<QGeoPath>(); in registerTypes()
|
| H A D | plugins.qmltypes | 64 Method { name: "path"; type: "QGeoPath" } 67 type: "QGeoPath" 73 type: "QGeoPath" 100 type: "QGeoPath"
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/ |
| H A D | changes-5.10.0 | 35 * Added setPath overload taking a QGeoPath. 57 - QGeoPath: 58 * Add ::size() to QGeoPath to retrieve the number of coordinates in the
|
| H A D | changes-5.11.3 | 28 - [QTBUG-71355] Fixed crash when calling QGeoPath::length() on empty 29 QGeoPath instance.
|
| H A D | changes-5.12.3 | 24 - Documented QGeoPath::length behavior properly.
|
| H A D | changes-5.9.0 | 37 - Added QGeoPath as a new geo shape. 55 - QDeclarativeGeoMap::setVisibleRegion now handles QGeoPath as well.
|
| H A D | changes-5.12.0 | 46 - [QTBUG-62875] QGeoPath can now be cleared directly using clearPath.
|
| H A D | changes-5.11.0 | 51 - QGeoPath
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/ |
| H A D | qgeojson.cpp | 573 static QGeoPath importLineString(const QVariantMap &inputMap) in importLineString() 575 QGeoPath returnedObject; in importLineString() 615 QGeoPath parsedLineString; in importMultiLineString() 806 …oCoordinate> linestringPath = lineStringMap.value(QStringLiteral("data")).value<QGeoPath>().path(); in exportLineString() 851 …<< multiPathList.at(i).value<QVariantMap>().value(QStringLiteral("data")).value<QGeoPath>().path(); in exportMultiLineString() 1016 QGeoPath lineString = importLineString(rootGeoJsonObject); in importGeoJson() 1150 QGeoPath path(shape); in operator <<() 1217 QGeoPath path = v.value<QGeoPath>(); in printQvariant()
|
| H A D | qmappolylineobject.cpp | 133 return QGeoPath(path()); in geoShape() 138 const QGeoPath p(shape); in setGeoShape()
|
| H A D | qgeotiledmaplabs.cpp | 111 QGeoPath path = o->geoShape(); in mapObjectsAt() 116 QGeoPath path = o->geoShape(); in mapObjectsAt()
|
| H A D | qmappolylineobject_p_p.h | 99 QGeoPath m_path; // small overhead compared to plain QList<QGeoCoordinate>
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/ |
| H A D | qdeclarativepolylinemapitem_p.h | 124 Q_INVOKABLE void setPath(const QGeoPath &path); 155 QGeoPath m_geopath;
|
| H A D | qdeclarativepolylinemapitem.cpp | 777 QGeoPath p(poly.path()); in updateSourcePoints() 783 void QGeoMapPolylineGeometryOpenGL::updateSourcePoints(const QGeoMap &map, const QGeoPath &poly) in updateSourcePoints() 841 const QGeoPath path(QDeclarativeRectangleMapItemPrivateCPU::perimeter(rect)); in updateSourcePoints() 1026 void QDeclarativePolylineMapItem::setPath(const QGeoPath &path) in setPath() 1391 …const QGeoPath geopath(shape); // if shape isn't a path, path will be created as a default-constru… in setGeoShape()
|
| H A D | qdeclarativepolylinemapitem_p_p.h | 289 const QGeoPath &poly);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/itemsoverlay/ |
| H A D | qgeomapitemsoverlay.cpp | 217 QGeoPath path = o->geoShape(); in mapObjectsAt() 222 QGeoPath path = o->geoShape(); in mapObjectsAt()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/ |
| H A D | qmapboxglstylechange.cpp | 151 const QGeoPath *path = static_cast<const QGeoPath *>(&mapItem->geoShape()); in featureFromMapPolyline()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/ |
| H A D | qgeoroutexmlparser.cpp | 309 m_legs[i].setBounds(QGeoPath(path).boundingGeoRectangle()); in postProcessRoute()
|