| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/ |
| H A D | qgeopolygon.cpp | 91 inline QGeoPolygonPrivate *QGeoPolygon::d_func() in d_func() 96 inline const QGeoPolygonPrivate *QGeoPolygon::d_func() const in d_func() 105 QMetaType::registerConverter<QGeoShape, QGeoPolygon>(); in PolygonVariantConversions() 106 QMetaType::registerConverter<QGeoPolygon, QGeoShape>(); in PolygonVariantConversions() 115 QGeoPolygon::QGeoPolygon() in Q_GLOBAL_STATIC() 125 QGeoPolygon::QGeoPolygon(const QList<QGeoCoordinate> &path) in QGeoPolygon() function in QGeoPolygon 134 QGeoPolygon::QGeoPolygon(const QGeoPolygon &other) in QGeoPolygon() function in QGeoPolygon 178 QGeoPolygon::QGeoPolygon(const QGeoShape &other) in QGeoPolygon() function in QGeoPolygon 203 QGeoPolygon::~QGeoPolygon() {} in ~QGeoPolygon() 208 QGeoPolygon &QGeoPolygon::operator=(const QGeoPolygon &other) in operator =() [all …]
|
| H A D | qgeopolygon.h | 51 class Q_POSITIONING_EXPORT QGeoPolygon : public QGeoShape 57 QGeoPolygon(); 58 QGeoPolygon(const QList<QGeoCoordinate> &path); 59 QGeoPolygon(const QGeoPolygon &other); 60 QGeoPolygon(const QGeoShape &other); 62 ~QGeoPolygon(); 64 QGeoPolygon &operator=(const QGeoPolygon &other); 67 bool operator==(const QGeoPolygon &other) const; 70 bool operator!=(const QGeoPolygon &other) const; 82 Q_INVOKABLE QGeoPolygon translated(double degreesLatitude, double degreesLongitude) const; [all …]
|
| H A D | qgeopolygon_p.h | 122 class Q_POSITIONING_PRIVATE_EXPORT QGeoPolygonEager : public QGeoPolygon 129 QGeoPolygonEager(const QGeoPolygon &other);
|
| H A D | qgeoshape.cpp | 388 QGeoPolygon p = shape; in operator <<() 443 shape = QGeoPolygon(l); in operator >>()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopolygon/ |
| H A D | tst_qgeopolygon.cpp | 69 QGeoPolygon p; in defaultConstructor() 81 QGeoPolygon p2(coords); in listConstructor() 89 QGeoPolygon p(coords); in listConstructor() 104 QGeoPolygon p1; in assignment() 109 QGeoPolygon p2(coords); in assignment() 123 QGeoPolygon p3 = area; in assignment() 142 QGeoPolygon c1(coords); in comparison() 143 QGeoPolygon c2(coords); in comparison() 144 QGeoPolygon c3(coords2); in comparison() 170 QGeoPolygon c; in type() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/positioning/ |
| H A D | locationsingleton.cpp | 255 QGeoPolygon LocationSingleton::polygon() const in polygon() 257 return QGeoPolygon(); in polygon() 268 QGeoPolygon LocationSingleton::polygon(const QVariantList &coordinates) const in polygon() 275 return QGeoPolygon(internalCoordinates); in polygon() 286 QGeoPolygon LocationSingleton::polygon(const QVariantList &perimeter, const QVariantList &holes) co… in polygon() 293 QGeoPolygon poly(internalCoordinates); in polygon() 358 QGeoPolygon LocationSingleton::shapeToPolygon(const QGeoShape &shape) const in shapeToPolygon() 360 return QGeoPolygon(shape); in shapeToPolygon()
|
| H A D | locationsingleton.h | 92 Q_INVOKABLE QGeoPolygon polygon() const; 93 Q_INVOKABLE QGeoPolygon polygon(const QVariantList &value) const; 94 Q_INVOKABLE QGeoPolygon polygon(const QVariantList &perimeter, const QVariantList &holes) const; 99 Q_INVOKABLE QGeoPolygon shapeToPolygon(const QGeoShape &shape) const;
|
| H A D | positioning.cpp | 587 qRegisterMetaType<QGeoPolygon>(); in registerTypes() 588 QMetaType::registerEqualsComparator<QGeoPolygon>(); in registerTypes()
|
| H A D | plugins.qmltypes | 76 Method { name: "polygon"; type: "QGeoPolygon" } 79 type: "QGeoPolygon" 84 type: "QGeoPolygon" 105 type: "QGeoPolygon"
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/ |
| H A D | qmappolygonobject.cpp | 74 QGeoPolygon poly(other.geoShape()); // to handle holes in QMapPolygonObjectPrivateDefault() 147 const QGeoPolygon poly(shape); in setGeoShape() 168 return QGeoPolygon(path()); in geoShape() 176 const QGeoPolygon poly(shape); in setGeoShape()
|
| H A D | qgeojson.cpp | 583 static QGeoPolygon importPolygon(const QVariantMap &inputMap) in importPolygon() 585 QGeoPolygon returnedObject; in importPolygon() 633 QGeoPolygon singlePoly; in importMultiPolygon() 818 QGeoPolygon parsedPoly = polygonVariant.value<QGeoPolygon>(); in exportPolygon() 870 …gonList.at(i).value<QVariantMap>().value(QStringLiteral("data")).value<QGeoPolygon>().path(); // E… in exportMultiPolygon() 871 …gonList.at(i).value<QVariantMap>().value(QStringLiteral("data")).value<QGeoPolygon>().holesCount(); in exportMultiPolygon() 874 …gonList.at(i).value<QVariantMap>().value(QStringLiteral("data")).value<QGeoPolygon>().holePath(cur… in exportMultiPolygon() 1030 QGeoPolygon poly = importPolygon(rootGeoJsonObject); in importGeoJson() 1158 QGeoPolygon poly(shape); in operator <<() 1220 QGeoPolygon polygon = v.value<QGeoPolygon>(); in printQvariant()
|
| H A D | qmappolygonobject_p_p.h | 105 QGeoPolygon m_path; // small overhead compared to plain QList<QGeoCoordinate>
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/ |
| H A D | changes-5.10.0 | 29 * Visible region now returns a QGeoPolygon. 61 - QGeoPolygon: 62 * Added QGeoPolygon shape.
|
| H A D | changes-5.12.0 | 47 - Added QGeoPolygon::perimeter property. 48 - Added holes support to QGeoPolygon. Currently visualized only when using
|
| H A D | changes-5.15.0 | 22 - QGeoPolygon:
|
| H A D | changes-5.13.0 | 44 - Added holes support to QGeoPolygon, currently rendered only when using the
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/ |
| H A D | qdeclarativepolygonmapitem.cpp | 352 static void wrapPath(const QGeoPolygon &poly in wrapPath() 481 QGeoPolygon bbox(QGeoPath(perimeter).boundingGeoRectangle()); in updateSourcePoints() 498 void QGeoMapPolygonGeometryOpenGL::updateSourcePoints(const QGeoMap &map, const QGeoPolygon &poly) in updateSourcePoints() 516 QGeoPolygon bbox(poly.boundingGeoRectangle()); in updateSourcePoints()
|
| H A D | qdeclarativepolygonmapitem_p.h | 118 QGeoPolygon m_geopoly;
|
| H A D | qdeclarativegeocodemodel.cpp | 380 return QVariant::fromValue(QGeoPolygon(boundingArea_)); in bounds()
|
| H A D | qdeclarativepolygonmapitem_p_p.h | 110 const QGeoPolygon &poly);
|
| H A D | qdeclarativepolylinemapitem.cpp | 773 void QGeoMapPolylineGeometryOpenGL::updateSourcePoints(const QGeoMap &map, const QGeoPolygon &poly) in updateSourcePoints() 822 QGeoPolygon bbox(QGeoRectangle(topLeft, bottomRight)); in updateSourcePoints()
|
| H A D | qdeclarativepolylinemapitem_p_p.h | 286 const QGeoPolygon &poly);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativeplaces/ |
| H A D | qdeclarativesearchmodelbase.cpp | 96 return QVariant::fromValue(QGeoPolygon(s)); in searchArea()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/ |
| H A D | qmapboxglstylechange.cpp | 134 const QGeoPolygon *polygon = static_cast<const QGeoPolygon *>(&mapItem->geoShape()); in featureFromMapPolygon()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeoprojection.cpp | 495 QGeoPolygon poly; in visibleRegion()
|