| 1 | /**************************************************************************** |
| 2 | ** |
| 3 | ** Copyright (C) 2016 The Qt Company Ltd. |
| 4 | ** Contact: http://www.qt.io/licensing/ |
| 5 | ** |
| 6 | ** This file is part of the QtLocation module of the Qt Toolkit. |
| 7 | ** |
| 8 | ** $QT_BEGIN_LICENSE:LGPL3$ |
| 9 | ** Commercial License Usage |
| 10 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 11 | ** accordance with the commercial license agreement provided with the |
| 12 | ** Software or, alternatively, in accordance with the terms contained in |
| 13 | ** a written agreement between you and The Qt Company. For licensing terms |
| 14 | ** and conditions see http://www.qt.io/terms-conditions. For further |
| 15 | ** information use the contact form at http://www.qt.io/contact-us. |
| 16 | ** |
| 17 | ** GNU Lesser General Public License Usage |
| 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 19 | ** General Public License version 3 as published by the Free Software |
| 20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the |
| 21 | ** packaging of this file. Please review the following information to |
| 22 | ** ensure the GNU Lesser General Public License version 3 requirements |
| 23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. |
| 24 | ** |
| 25 | ** GNU General Public License Usage |
| 26 | ** Alternatively, this file may be used under the terms of the GNU |
| 27 | ** General Public License version 2.0 or later as published by the Free |
| 28 | ** Software Foundation and appearing in the file LICENSE.GPL included in |
| 29 | ** the packaging of this file. Please review the following information to |
| 30 | ** ensure the GNU General Public License version 2.0 requirements will be |
| 31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. |
| 32 | ** |
| 33 | ** $QT_END_LICENSE$ |
| 34 | ** |
| 35 | ****************************************************************************/ |
| 36 | |
| 37 | |
| 38 | #include "qgeomapparameter_p.h" |
| 39 | #include <QtCore/QVariant> |
| 40 | #include <QDebug> |
| 41 | #include <QMetaProperty> |
| 42 | |
| 43 | QT_BEGIN_NAMESPACE |
| 44 | |
| 45 | QGeoMapParameter::QGeoMapParameter(QObject *parent) : QObject(parent) |
| 46 | { |
| 47 | |
| 48 | } |
| 49 | |
| 50 | QGeoMapParameter::QGeoMapParameter(const QList<QPair<QLatin1String, QVariant> > &properties, QObject *parent) : QObject(parent) |
| 51 | { |
| 52 | for (const auto &p: properties) { |
| 53 | if (p.first == QLatin1String("type" )) |
| 54 | setType(p.second.toString()); |
| 55 | else |
| 56 | updateProperty(propertyName: p.first.data(), value: p.second); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | QGeoMapParameter::~QGeoMapParameter() |
| 61 | { |
| 62 | } |
| 63 | |
| 64 | bool QGeoMapParameter::operator==(const QGeoMapParameter &other) const |
| 65 | { |
| 66 | return (other.toVariantMap() == toVariantMap()); |
| 67 | } |
| 68 | |
| 69 | QString QGeoMapParameter::type() const |
| 70 | { |
| 71 | return m_type; |
| 72 | } |
| 73 | |
| 74 | void QGeoMapParameter::setType(const QString &type) |
| 75 | { |
| 76 | if (m_type.isEmpty()) |
| 77 | m_type = type; |
| 78 | } |
| 79 | |
| 80 | // DO NOT USE to set "type" |
| 81 | void QGeoMapParameter::updateProperty(const char *propertyName, QVariant value) |
| 82 | { |
| 83 | setProperty(name: propertyName, value); |
| 84 | // This should technically be emitted only for dynamically added properties. |
| 85 | // Since this object has only type defined as Q_PROPERTY() which is a set-once |
| 86 | // no check is really needed here. |
| 87 | emit propertyUpdated(param: this, propertyName); |
| 88 | } |
| 89 | |
| 90 | QVariantMap QGeoMapParameter::toVariantMap() const |
| 91 | { |
| 92 | QVariantMap res; |
| 93 | const QMetaObject *metaObj = metaObject(); |
| 94 | for (int i = 2; i < metaObj->propertyCount(); ++i) { // 0 is objectName, 1 is type, we want to skip both of them here. |
| 95 | const char *propName = metaObj->property(index: i).name(); |
| 96 | res[QLatin1String(propName)] = property(name: propName); |
| 97 | } |
| 98 | return res; |
| 99 | } |
| 100 | |
| 101 | bool QGeoMapParameter::hasProperty(const char *propertyName) |
| 102 | { |
| 103 | return metaObject()->indexOfProperty(name: propertyName) != -1 |
| 104 | || dynamicPropertyNames().indexOf(t: QByteArray(propertyName)) != -1; |
| 105 | } |
| 106 | |
| 107 | QT_END_NAMESPACE |
| 108 | |
| 109 | |