Home
last modified time | relevance | path

Searched refs:m_border (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativecirclemapitem_p_p.h192 m_geometry.updateScreenPoints(*m_circle.map(), m_circle.m_border.width()); in updatePolish()
199 if (m_circle.m_border.color() != Qt::transparent && m_circle.m_border.width() > 0) { in updatePolish()
223 m_borderGeometry.updateScreenPoints(*m_circle.map(), m_circle.m_border.width()); in updatePolish()
236 m_circle.setWidth(combined.width() + 2 * m_circle.m_border.width()); // ToDo: Fix this! in updatePolish()
237 m_circle.setHeight(combined.height() + 2 * m_circle.m_border.width()); in updatePolish()
259 … m_node->update(m_circle.m_color, m_circle.m_border.color(), &m_geometry, &m_borderGeometry); in updateMapItemPaintNode()
348 const qreal lineWidth = m_circle.m_border.width(); in updatePolish()
349 const QColor &lineColor = m_circle.m_border.color(); in updatePolish()
395 m_polylinenode->update(m_circle.m_border.color(), in updateMapItemPaintNode()
396 float(m_circle.m_border.width()), in updateMapItemPaintNode()
[all …]
H A Dqdeclarativerectanglemapitem_p_p.h148 m_geometry.updateScreenPoints(*m_rect.map(), m_rect.m_border.width()); in updatePolish()
154 if (m_rect.m_border.color().alpha() != 0 && m_rect.m_border.width() > 0) { in updatePolish()
169 m_borderGeometry.updateScreenPoints(*m_rect.map(), m_rect.m_border.width()); in updatePolish()
178 …m_rect.setWidth(combined.width() + 2 * m_rect.m_border.width()); // ToDo: fix this! 2 is incorrect in updatePolish()
179 m_rect.setHeight(combined.height() + 2 * m_rect.m_border.width()); in updatePolish()
199 m_node->update(m_rect.m_color, m_rect.m_border.color(), &m_geometry, &m_borderGeometry); in updateMapItemPaintNode()
315 const qreal lineWidth = m_rect.m_border.width(); in updatePolish()
316 const QColor &lineColor = m_rect.m_border.color(); in updatePolish()
362 m_polylinenode->update(m_rect.m_border.color(), in updateMapItemPaintNode()
363 float(m_rect.m_border.width()), in updateMapItemPaintNode()
[all …]
H A Dqdeclarativepolygonmapitem_p_p.h402 const qreal borderWidth = m_poly.m_border.width(); in updatePolish()
414 if (m_poly.m_border.color().alpha() != 0 && borderWidth > 0) { in updatePolish()
464 m_poly.m_border.color(), in updateMapItemPaintNode()
571 const qreal lineWidth = m_poly.m_border.width(); in updatePolish()
572 const QColor &lineColor = m_poly.m_border.color(); in updatePolish()
617 m_polylinenode->update(m_poly.m_border.color(), in updateMapItemPaintNode()
618 float(m_poly.m_border.width()), in updateMapItemPaintNode()
647 const qreal lineWidth = m_poly.m_border.width(); in contains()
648 const QColor &lineColor = m_poly.m_border.color(); in contains()
H A Dqdeclarativerectanglemapitem.cpp141 : QDeclarativeGeoMapItemBase(parent), m_border(this), m_color(Qt::transparent), m_dirtyMaterial(t… in Q_GLOBAL_STATIC()
148 QObject::connect(&m_border, SIGNAL(colorChanged(QColor)), in Q_GLOBAL_STATIC()
150 QObject::connect(&m_border, SIGNAL(widthChanged(qreal)), in Q_GLOBAL_STATIC()
230 return &m_border; in border()
H A Dqdeclarativecirclemapitem.cpp288 : QDeclarativeGeoMapItemBase(parent), m_border(this), m_color(Qt::transparent), m_dirtyMaterial(t… in Q_GLOBAL_STATIC()
295 QObject::connect(&m_border, SIGNAL(colorChanged(QColor)), in Q_GLOBAL_STATIC()
297 QObject::connect(&m_border, SIGNAL(widthChanged(qreal)), in Q_GLOBAL_STATIC()
326 return &m_border; in border()
H A Dqdeclarativepolygonmapitem.cpp628 : QDeclarativeGeoMapItemBase(parent), m_border(this), m_color(Qt::transparent), m_dirtyMaterial(t… in Q_GLOBAL_STATIC()
637 QObject::connect(&m_border, SIGNAL(colorChanged(QColor)), in Q_GLOBAL_STATIC()
639 QObject::connect(&m_border, SIGNAL(widthChanged(qreal)), in Q_GLOBAL_STATIC()
664 return &m_border; in border()
H A Dqdeclarativepolygonmapitem_p.h119 QDeclarativeMapLineProperties m_border; variable
H A Dqdeclarativerectanglemapitem_p.h123 QDeclarativeMapLineProperties m_border; variable
H A Dqdeclarativecirclemapitem_p.h123 QDeclarativeMapLineProperties m_border; variable
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/
H A Dqmappolylineobject.cpp193 if (!m_border) { in border()
194 m_border = new QDeclarativeMapLineProperties(this); in border()
195 … connect(m_border, &QDeclarativeMapLineProperties::colorChanged, this, [this](const QColor &color){ in border()
198 connect(m_border, &QDeclarativeMapLineProperties::widthChanged, this, [this](qreal width){ in border()
202 return m_border; in border()
H A Dqmapcircleobject.cpp252 if (!m_border) { in border()
253 m_border = new QDeclarativeMapLineProperties(this); in border()
254 … connect(m_border, &QDeclarativeMapLineProperties::colorChanged, this, [this](const QColor &color){ in border()
257 connect(m_border, &QDeclarativeMapLineProperties::widthChanged, this, [this](qreal width){ in border()
261 return m_border; in border()
H A Dqmappolygonobject.cpp251 if (!m_border) { in border()
252 m_border = new QDeclarativeMapLineProperties(this); in border()
253 … connect(m_border, &QDeclarativeMapLineProperties::colorChanged, this, [this](const QColor &color){ in border()
256 connect(m_border, &QDeclarativeMapLineProperties::widthChanged, this, [this](qreal width){ in border()
260 return m_border; in border()
H A Dqmappolylineobject_p.h80 QDeclarativeMapLineProperties *m_border = nullptr;
H A Dqmappolygonobject_p.h85 QDeclarativeMapLineProperties *m_border = nullptr;
H A Dqmapcircleobject_p.h88 QDeclarativeMapLineProperties *m_border = nullptr;