Lines Matching refs:QGeoPathPrivate
92 inline QGeoPathPrivate *QGeoPath::d_func() in d_func()
94 return static_cast<QGeoPathPrivate *>(d_ptr.data()); in d_func()
97 inline const QGeoPathPrivate *QGeoPath::d_func() const in d_func()
99 return static_cast<const QGeoPathPrivate *>(d_ptr.constData()); in d_func()
117 : QGeoShape(new QGeoPathPrivate()) in Q_GLOBAL_STATIC()
127 : QGeoShape(new QGeoPathPrivate(path, width)) in QGeoPath()
149 d_ptr = new QGeoPathPrivate(); in QGeoPath()
403 QGeoPathPrivate::QGeoPathPrivate() in QGeoPathPrivate() function in QGeoPathPrivate
409 QGeoPathPrivate::QGeoPathPrivate(const QList<QGeoCoordinate> &path, const qreal width) in QGeoPathPrivate() function in QGeoPathPrivate
416 QGeoPathPrivate::~QGeoPathPrivate() in ~QGeoPathPrivate()
421 QGeoShapePrivate *QGeoPathPrivate::clone() const in clone()
423 return new QGeoPathPrivate(*this); in clone()
426 bool QGeoPathPrivate::isValid() const in isValid()
431 bool QGeoPathPrivate::isEmpty() const in isEmpty()
436 QGeoCoordinate QGeoPathPrivate::center() const in center()
441 void QGeoPathPrivate::extendShape(const QGeoCoordinate &coordinate) in extendShape()
448 bool QGeoPathPrivate::operator==(const QGeoShapePrivate &other) const in operator ==()
453 const QGeoPathPrivate &otherPath = static_cast<const QGeoPathPrivate &>(other); in operator ==()
459 const QList<QGeoCoordinate> &QGeoPathPrivate::path() const in path()
464 bool QGeoPathPrivate::lineContains(const QGeoCoordinate &coordinate) const in lineContains()
479 const_cast<QGeoPathPrivate &>(*this).computeBoundingBox(); in lineContains()
534 bool QGeoPathPrivate::contains(const QGeoCoordinate &coordinate) const in contains()
539 qreal QGeoPathPrivate::width() const in width()
544 void QGeoPathPrivate::setWidth(const qreal &width) in setWidth()
551 double QGeoPathPrivate::length(int indexFrom, int indexTo) const in length()
569 int QGeoPathPrivate::size() const in size()
574 QGeoCoordinate QGeoPathPrivate::coordinateAt(int index) const in coordinateAt()
582 bool QGeoPathPrivate::containsCoordinate(const QGeoCoordinate &coordinate) const in containsCoordinate()
587 void QGeoPathPrivate::translate(double degreesLatitude, double degreesLongitude) in translate()
607 QGeoRectangle QGeoPathPrivate::boundingGeoRectangle() const in boundingGeoRectangle()
610 const_cast<QGeoPathPrivate &>(*this).computeBoundingBox(); in boundingGeoRectangle()
614 void QGeoPathPrivate::setPath(const QList<QGeoCoordinate> &path) in setPath()
623 void QGeoPathPrivate::clearPath() in clearPath()
629 void QGeoPathPrivate::addCoordinate(const QGeoCoordinate &coordinate) in addCoordinate()
637 void QGeoPathPrivate::insertCoordinate(int index, const QGeoCoordinate &coordinate) in insertCoordinate()
645 void QGeoPathPrivate::replaceCoordinate(int index, const QGeoCoordinate &coordinate) in replaceCoordinate()
653 void QGeoPathPrivate::removeCoordinate(const QGeoCoordinate &coordinate) in removeCoordinate()
659 void QGeoPathPrivate::removeCoordinate(int index) in removeCoordinate()
667 void QGeoPathPrivate::markDirty() in markDirty()
672 void QGeoPathPrivate::computeBoundingBox() in computeBoundingBox()
682 : QGeoPathPrivate() in QGeoPathPrivateEager()
688 : QGeoPathPrivate(path, width) in QGeoPathPrivateEager()