/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the QtLocation module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL3$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or later as published by the Free ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be ** met: http://www.gnu.org/licenses/gpl-2.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qmapiconobject_p.h" #include "qmapiconobject_p_p.h" #include #include QT_BEGIN_NAMESPACE /*! \qmltype MapIconObject \instantiates QMapIconObject \inqmlmodule Qt.labs.location \ingroup qml-QtLocation5-maps \inherits QGeoMapObject \brief The MapIconObject displays an icon on a Map. The MapIconObject displays an icon on a Map. The MapIconObject type only makes sense when contained in a Map or in a \l MapObjectView. */ QMapIconObjectPrivate::~QMapIconObjectPrivate() { } QMapIconObjectPrivate::QMapIconObjectPrivate(QGeoMapObject *q) : QGeoMapObjectPrivate(q) { } QGeoMapObject::Type QMapIconObjectPrivate::type() const { return QGeoMapObject::IconType; } bool QMapIconObjectPrivate::equals(const QGeoMapObjectPrivate &other) const { if (other.type() != type()) // This check might be unnecessary, depending on how equals gets used return false; const QMapIconObjectPrivate &o = static_cast(other); return (QGeoMapObjectPrivate::equals(o) && content() == o.content() && coordinate() == o.coordinate()); } // // QGeoMapIconPrivate default implementation // QMapIconObjectPrivateDefault::QMapIconObjectPrivateDefault(QGeoMapObject *q) : QMapIconObjectPrivate(q) { } QMapIconObjectPrivateDefault::QMapIconObjectPrivateDefault(const QMapIconObjectPrivate &other) : QMapIconObjectPrivate(other.q) { m_coordinate = other.coordinate(); m_content = other.content(); m_iconSize = other.iconSize(); qreal radius = QGeoCircle(other.geoShape()).radius(); m_radius = (qIsFinite(radius)) ? radius : 100.0; } QMapIconObjectPrivateDefault::~QMapIconObjectPrivateDefault() { } QGeoCoordinate QMapIconObjectPrivateDefault::coordinate() const { return m_coordinate; } void QMapIconObjectPrivateDefault::setCoordinate(const QGeoCoordinate &coordinate) { m_coordinate = coordinate; } QVariant QMapIconObjectPrivateDefault::content() const { return m_content; } void QMapIconObjectPrivateDefault::setContent(const QVariant &content) { m_content = content; } QSizeF QMapIconObjectPrivateDefault::iconSize() const { return m_iconSize; } void QMapIconObjectPrivateDefault::setIconSize(const QSizeF &size) { m_iconSize = size; } QGeoMapObjectPrivate *QMapIconObjectPrivateDefault::clone() { return new QMapIconObjectPrivateDefault(static_cast(*this)); } QGeoShape QMapIconObjectPrivateDefault::geoShape() const { return QGeoCircle(coordinate(), m_radius); // fixing the radius to 100 meters, as a meaningful size for // fitting the viewport to this icon without losing context completely } void QMapIconObjectPrivateDefault::setGeoShape(const QGeoShape &shape) { QGeoCoordinate crd; const QGeoCircle circle(shape); // if shape isn't a circle, circle will be created as a default-constructed circle if (circle.isValid()) { crd = circle.center(); m_radius = circle.radius(); } else { crd = shape.boundingGeoRectangle().center(); } if (crd == coordinate()) return; setCoordinate(crd); emit static_cast(q)->coordinateChanged(crd); } /* QGeoMapIconPrivate default implementation */ QMapIconObject::QMapIconObject(QObject *parent) : QGeoMapObject(QExplicitlySharedDataPointer(new QMapIconObjectPrivateDefault(this)), parent) {} QMapIconObject::~QMapIconObject() { } /*! \qmlproperty Variant Qt.labs.location::MapIconObject::content This property holds the content to be used for the icon. The actual content of this property is somehow backend-dependent. The implementation for the raster engine accepts local urls or paths. Other implementations may accept additional content types. */ QVariant QMapIconObject::content() const { const QMapIconObjectPrivate *d = static_cast(d_ptr.data()); return d->content(); } /*! \qmlproperty Variant Qt.labs.location::MapIconObject::coordinate The coordinate where the icon is going to be shown. What pixel of the icon matches the coordinate is somehow backend-dependent. For example, due to limitations, some backends might associate the center of the icon with the coordinate, others one of the corners. If there is a choice, backend developers should use the center of the icon as the default anchor point. The behavior is also intended to be customizable with a \l DynamicParameter, when using backends that support anchoring arbitrary points of the icon to the coordinate. What kind of parameter to use and how to achieve this behavior is intended to be documented per-backend. */ QGeoCoordinate QMapIconObject::coordinate() const { const QMapIconObjectPrivate *d = static_cast(d_ptr.data()); return d->coordinate(); } void QMapIconObject::setContent(QVariant content) { QMapIconObjectPrivate *d = static_cast(d_ptr.data()); if (d->content() == content) return; d->setContent(content); emit contentChanged(content); } void QMapIconObject::setCoordinate(const QGeoCoordinate ¢er) { QMapIconObjectPrivate *d = static_cast(d_ptr.data()); if (d->coordinate() == center) return; d->setCoordinate(center); emit coordinateChanged(center); } /*! \qmlproperty Variant Qt.labs.location::MapIconObject::iconSize The size of the icon as it will be shown on the map. */ QSizeF QMapIconObject::iconSize() const { const QMapIconObjectPrivate *d = static_cast(d_ptr.data()); return d->iconSize(); } void QMapIconObject::setIconSize(const QSizeF &size) { QMapIconObjectPrivate *d = static_cast(d_ptr.data()); if (d->iconSize() == size) return; d->setIconSize(size); emit iconSizeChanged(); } void QMapIconObject::setMap(QGeoMap *map) { QMapIconObjectPrivate *d = static_cast(d_ptr.data()); if (d->m_map == map) return; QGeoMapObject::setMap(map); // This is where the specialized pimpl gets created and injected if (!map) { // Map was set, now it has ben re-set to NULL, but not inside d_ptr. // so m_map inside d_ptr can still be used to remove itself, inside the destructor. d_ptr = new QMapIconObjectPrivateDefault(*d); // Old pimpl deleted implicitly by QExplicitlySharedDataPointer } } QT_END_NAMESPACE