Lines Matching refs:QGeoPolygon

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 =()
217 bool QGeoPolygon::operator==(const QGeoPolygon &other) const in operator ==()
219 Q_D(const QGeoPolygon); in operator ==()
226 bool QGeoPolygon::operator!=(const QGeoPolygon &other) const in operator !=()
228 Q_D(const QGeoPolygon); in operator !=()
235 void QGeoPolygon::setPath(const QList<QGeoCoordinate> &path) in setPath()
237 Q_D(QGeoPolygon); in setPath()
244 const QList<QGeoCoordinate> &QGeoPolygon::path() const in path()
246 Q_D(const QGeoPolygon); in path()
257 void QGeoPolygon::setPerimeter(const QVariantList &path) in setPerimeter()
259 Q_D(QGeoPolygon); in setPerimeter()
273 QVariantList QGeoPolygon::perimeter() const in perimeter()
275 Q_D(const QGeoPolygon); in perimeter()
288 void QGeoPolygon::translate(double degreesLatitude, double degreesLongitude) in translate()
290 Q_D(QGeoPolygon); in translate()
303 QGeoPolygon QGeoPolygon::translated(double degreesLatitude, double degreesLongitude) const in translated()
305 QGeoPolygon result(*this); in translated()
314 double QGeoPolygon::length(int indexFrom, int indexTo) const in length()
316 Q_D(const QGeoPolygon); in length()
325 int QGeoPolygon::size() const in size()
327 Q_D(const QGeoPolygon); in size()
334 void QGeoPolygon::addCoordinate(const QGeoCoordinate &coordinate) in addCoordinate()
336 Q_D(QGeoPolygon); in addCoordinate()
343 void QGeoPolygon::insertCoordinate(int index, const QGeoCoordinate &coordinate) in insertCoordinate()
345 Q_D(QGeoPolygon); in insertCoordinate()
352 void QGeoPolygon::replaceCoordinate(int index, const QGeoCoordinate &coordinate) in replaceCoordinate()
354 Q_D(QGeoPolygon); in replaceCoordinate()
361 QGeoCoordinate QGeoPolygon::coordinateAt(int index) const in coordinateAt()
363 Q_D(const QGeoPolygon); in coordinateAt()
370 bool QGeoPolygon::containsCoordinate(const QGeoCoordinate &coordinate) const in containsCoordinate()
372 Q_D(const QGeoPolygon); in containsCoordinate()
379 void QGeoPolygon::removeCoordinate(const QGeoCoordinate &coordinate) in removeCoordinate()
381 Q_D(QGeoPolygon); in removeCoordinate()
388 void QGeoPolygon::removeCoordinate(int index) in removeCoordinate()
390 Q_D(QGeoPolygon); in removeCoordinate()
397 QString QGeoPolygon::toString() const in toString()
417 void QGeoPolygon::addHole(const QVariant &holePath) in addHole()
419 Q_D(QGeoPolygon); in addHole()
437 void QGeoPolygon::addHole(const QList<QGeoCoordinate> &holePath) in addHole()
439 Q_D(QGeoPolygon); in addHole()
449 const QVariantList QGeoPolygon::hole(int index) const in hole()
451 Q_D(const QGeoPolygon); in hole()
463 const QList<QGeoCoordinate> QGeoPolygon::holePath(int index) const in holePath()
465 Q_D(const QGeoPolygon); in holePath()
474 void QGeoPolygon::removeHole(int index) in removeHole()
476 Q_D(QGeoPolygon); in removeHole()
485 int QGeoPolygon::holesCount() const in holesCount()
487 Q_D(const QGeoPolygon); in holesCount()
624 QGeoPolygon holePolygon; in polygonContains()
706 QGeoPolygonEager::QGeoPolygonEager() : QGeoPolygon() in QGeoPolygonEager()
712 QGeoPolygonEager::QGeoPolygonEager(const QList<QGeoCoordinate> &path) : QGeoPolygon() in QGeoPolygonEager()
718 QGeoPolygonEager::QGeoPolygonEager(const QGeoPolygon &other) : QGeoPolygon() in QGeoPolygonEager()
728 QGeoPolygonEager::QGeoPolygonEager(const QGeoShape &other) : QGeoPolygon() in QGeoPolygonEager()
732 *this = QGeoPolygonEager(QGeoPolygon(other)); in QGeoPolygonEager()