Lines Matching refs:QGeoPath
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 =()
169 bool QGeoPath::operator==(const QGeoPath &other) const in operator ==()
171 Q_D(const QGeoPath); in operator ==()
178 bool QGeoPath::operator!=(const QGeoPath &other) const in operator !=()
180 Q_D(const QGeoPath); in operator !=()
187 void QGeoPath::setPath(const QList<QGeoCoordinate> &path) in setPath()
189 Q_D(QGeoPath); in setPath()
196 const QList<QGeoCoordinate> &QGeoPath::path() const in path()
198 Q_D(const QGeoPath); in path()
207 void QGeoPath::clearPath() in clearPath()
209 Q_D(QGeoPath); in clearPath()
218 void QGeoPath::setVariantPath(const QVariantList &path) in setVariantPath()
220 Q_D(QGeoPath); in setVariantPath()
233 QVariantList QGeoPath::variantPath() const in variantPath()
235 Q_D(const QGeoPath); in variantPath()
248 void QGeoPath::setWidth(const qreal &width) in setWidth()
250 Q_D(QGeoPath); in setWidth()
258 qreal QGeoPath::width() const in width()
260 Q_D(const QGeoPath); in width()
270 void QGeoPath::translate(double degreesLatitude, double degreesLongitude) in translate()
272 Q_D(QGeoPath); in translate()
285 QGeoPath QGeoPath::translated(double degreesLatitude, double degreesLongitude) const in translated()
287 QGeoPath result(*this); in translated()
300 double QGeoPath::length(int indexFrom, int indexTo) const in length()
302 Q_D(const QGeoPath); in length()
311 int QGeoPath::size() const in size()
313 Q_D(const QGeoPath); in size()
320 void QGeoPath::addCoordinate(const QGeoCoordinate &coordinate) in addCoordinate()
322 Q_D(QGeoPath); in addCoordinate()
329 void QGeoPath::insertCoordinate(int index, const QGeoCoordinate &coordinate) in insertCoordinate()
331 Q_D(QGeoPath); in insertCoordinate()
338 void QGeoPath::replaceCoordinate(int index, const QGeoCoordinate &coordinate) in replaceCoordinate()
340 Q_D(QGeoPath); in replaceCoordinate()
347 QGeoCoordinate QGeoPath::coordinateAt(int index) const in coordinateAt()
349 Q_D(const QGeoPath); in coordinateAt()
356 bool QGeoPath::containsCoordinate(const QGeoCoordinate &coordinate) const in containsCoordinate()
358 Q_D(const QGeoPath); in containsCoordinate()
365 void QGeoPath::removeCoordinate(const QGeoCoordinate &coordinate) in removeCoordinate()
367 Q_D(QGeoPath); in removeCoordinate()
374 void QGeoPath::removeCoordinate(int index) in removeCoordinate()
376 Q_D(QGeoPath); in removeCoordinate()
383 QString QGeoPath::toString() const in toString()
745 QGeoPathEager::QGeoPathEager() : QGeoPath() in QGeoPathEager()
751 QGeoPathEager::QGeoPathEager(const QList<QGeoCoordinate> &path, const qreal &width) : QGeoPath() in QGeoPathEager()
757 QGeoPathEager::QGeoPathEager(const QGeoPath &other) : QGeoPath() in QGeoPathEager()
765 QGeoPathEager::QGeoPathEager(const QGeoShape &other) : QGeoPath() in QGeoPathEager()
769 *this = QGeoPathEager(QGeoPath(other)); in QGeoPathEager()