summaryrefslogtreecommitdiffstats
path: root/src/location/declarativemaps/qgeomapobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/location/declarativemaps/qgeomapobject.cpp')
-rw-r--r--src/location/declarativemaps/qgeomapobject.cpp262
1 files changed, 262 insertions, 0 deletions
diff --git a/src/location/declarativemaps/qgeomapobject.cpp b/src/location/declarativemaps/qgeomapobject.cpp
new file mode 100644
index 00000000..7ccbbf16
--- /dev/null
+++ b/src/location/declarativemaps/qgeomapobject.cpp
@@ -0,0 +1,262 @@
+/****************************************************************************
+**
+** Copyright (C) 2018 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 "qdeclarativegeomap_p.h"
+#include "qgeomapobject_p.h"
+#include "qgeomapobject_p_p.h"
+
+QT_BEGIN_NAMESPACE
+
+/*!
+ \internal
+
+ \qmltype GeoMapObject
+ \instantiates QGeoMapObject
+ \inqmlmodule Qt.labs.location
+ \ingroup qml-QtLocation5-maps
+
+ \brief The GeoObject type is a base class for geographical objects that can be added to a map.
+
+ The difference between a GeoMapObject and a MapItem is twofold. First, GeoMapObject are always backed
+ by a plugin-specific implementation and do not come with a default implementation. If a plugin does
+ not support a specific GeoMapObject type, adding such a GeoMapObject will have no effect.
+ Second, GeoMapObject are not QQuickItems, thus being a much more lightweight way to add content to
+ a map.
+
+ GeoMapObject support is plugin-dependent, and is documented per plugin.
+*/
+
+template<>
+QGeoMapObjectPrivate *QExplicitlySharedDataPointer<QGeoMapObjectPrivate>::clone()
+{
+ return d->clone();
+}
+
+QGeoMapObject::~QGeoMapObject()
+{
+
+}
+
+/*!
+ Returns whether this geographical object and \a other are equal.
+*/
+bool QGeoMapObject::operator ==(const QGeoMapObject &other) const
+{
+ return ( (d_ptr.constData() == other.d_ptr.constData())
+ || (*d_ptr) == (*other.d_ptr));
+}
+
+/*!
+ Returns whether this geographical object and \a other are not equal.
+*/
+bool QGeoMapObject::operator !=(const QGeoMapObject &other) const
+{
+ return !(operator==(other));
+}
+
+/*!
+ \internal
+ Returns which features are supported by the geographical object
+*/
+QGeoMapObject::Features QGeoMapObject::features() const
+{
+ return d_ptr->features();
+}
+
+QGeoMapObjectPrivate *QGeoMapObject::implementation() const
+{
+ return d_ptr.data();
+}
+
+bool QGeoMapObject::setImplementation(QGeoMapObjectPrivate *pimpl)
+{
+ if (d_ptr->type() != pimpl->type())
+ return false;
+ d_ptr = QExplicitlySharedDataPointer<QGeoMapObjectPrivate>(pimpl);
+ return true;
+}
+
+bool QGeoMapObject::implemented() const
+{
+ return !d_ptr->engineName().isEmpty();
+}
+
+bool QGeoMapObject::visible() const
+{
+ return d_ptr->visible();
+}
+
+void QGeoMapObject::setVisible(bool visible)
+{
+ if (visible == d_ptr->visible())
+ return;
+
+ d_ptr->setVisible(visible);
+
+ if (d_ptr->m_componentCompleted)
+ setChildrenVisibility();
+ emit visibleChanged();
+}
+
+QGeoMapObject::Type QGeoMapObject::type() const
+{
+ return d_ptr->type();
+}
+
+QList<QGeoMapObject *> QGeoMapObject::geoMapObjectChildren() const
+{
+ return quickChildren<QGeoMapObject>();
+}
+
+QGeoMapObject::QGeoMapObject(const QExplicitlySharedDataPointer<QGeoMapObjectPrivate> &dd, QObject *parent)
+ : QParameterizableObject(parent), d_ptr(dd)
+{
+}
+
+void QGeoMapObject::setChildrenVisibility()
+{
+ const bool v = visible();
+ const QList<QGeoMapObject *> kids = geoMapObjectChildren();
+ for (auto kid : qAsConst(kids))
+ kid->setVisible(v);
+}
+
+void QGeoMapObject::classBegin()
+{
+
+}
+
+void QGeoMapObject::completeComponent()
+{
+ d_ptr->m_componentCompleted = true;
+ setChildrenVisibility();
+}
+
+void QGeoMapObject::componentComplete()
+{
+ completeComponent();
+ emit completed();
+}
+
+void QGeoMapObject::setMap(QGeoMap *map)
+{
+ if (d_ptr->m_map == map)
+ return;
+
+ d_ptr->m_map = map;
+ if (map) {
+ QGeoMapObjectPrivate *pimpl = d_ptr.data();
+ if (!map->createMapObjectImplementation(this))
+ qWarning() << "Unsupported type " << type();
+ else
+ delete pimpl; // delete old implementation
+ }
+
+ const QList<QGeoMapObject *> kids = geoMapObjectChildren();
+ for (auto kid : kids)
+ kid->setMap(map);
+}
+
+QGeoMap *QGeoMapObject::map() const
+{
+ return d_ptr->m_map;
+}
+
+
+//
+// QGeoMapObjectPrivate
+//
+
+QGeoMapObjectPrivate::QGeoMapObjectPrivate()
+{
+}
+
+QGeoMapObjectPrivate::QGeoMapObjectPrivate(QGeoMapObject *q) : q(q)
+{
+}
+
+QGeoMapObjectPrivate::QGeoMapObjectPrivate(const QGeoMapObjectPrivate &other)
+ :QSharedData(other)
+ ,q(other.q)
+ ,m_componentCompleted(other.m_componentCompleted)
+ ,m_visible(other.m_visible)
+{
+
+}
+
+QGeoMapObjectPrivate::~QGeoMapObjectPrivate()
+{
+}
+
+bool QGeoMapObjectPrivate::operator ==(const QGeoMapObjectPrivate &other) const
+{
+ return (type() == other.type() && engineName() == other.engineName()
+ && equals(other));
+}
+
+QByteArray QGeoMapObjectPrivate::engineName() const
+{
+ return QByteArray();
+}
+
+QGeoMapObject::Type QGeoMapObjectPrivate::type() const
+{
+ return QGeoMapObject::InvalidType;
+}
+
+QGeoMapObject::Features QGeoMapObjectPrivate::features() const
+{
+ return QGeoMapObject::NoFeature;
+}
+
+bool QGeoMapObjectPrivate::equals(const QGeoMapObjectPrivate &other) const
+{
+ return (visible() == other.visible() && type() == other.type()
+ && engineName() == other.engineName() && features() == other.features()
+ && m_map == other.m_map);
+}
+
+bool QGeoMapObjectPrivate::visible() const
+{
+ return m_visible;
+}
+
+void QGeoMapObjectPrivate::setVisible(bool visible)
+{
+ m_visible = visible;
+}
+
+QT_END_NAMESPACE