blob: 408bcfa30fa289924585712a9f691b110149f2e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// Copyright (C) 2015 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QGEOTILESPEC_H
#define QGEOTILESPEC_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QtLocation/private/qlocationglobal_p.h>
#include <QtCore/QMetaType>
#include <QString>
#include <QSharedDataPointer>
QT_BEGIN_NAMESPACE
class QGeoTileSpecPrivate;
QT_DECLARE_QSDP_SPECIALIZATION_DTOR_WITH_EXPORT(QGeoTileSpecPrivate, Q_LOCATION_PRIVATE_EXPORT)
class Q_LOCATION_PRIVATE_EXPORT QGeoTileSpec
{
public:
QGeoTileSpec();
QGeoTileSpec(const QGeoTileSpec &other) noexcept;
QGeoTileSpec(QGeoTileSpec &&other) noexcept = default;
QGeoTileSpec(const QString &plugin, int mapId, int zoom, int x, int y, int version = -1);
~QGeoTileSpec();
QGeoTileSpec &operator=(const QGeoTileSpec &other) noexcept;
QT_MOVE_ASSIGNMENT_OPERATOR_IMPL_VIA_MOVE_AND_SWAP(QGeoTileSpec)
void swap(QGeoTileSpec &other) noexcept { d.swap(other.d); }
QString plugin() const;
void setZoom(int zoom);
int zoom() const;
void setX(int x);
int x() const;
void setY(int y);
int y() const;
void setMapId(int mapId);
int mapId() const;
void setVersion(int version);
int version() const;
friend inline bool operator==(const QGeoTileSpec &lhs, const QGeoTileSpec &rhs) noexcept
{ return lhs.isEqual(rhs); }
friend inline bool operator!=(const QGeoTileSpec &lhs, const QGeoTileSpec &rhs) noexcept
{ return !lhs.isEqual(rhs); }
friend inline bool operator < (const QGeoTileSpec &lhs, const QGeoTileSpec &rhs) noexcept
{ return lhs.isLess(rhs); }
private:
QSharedDataPointer<QGeoTileSpecPrivate> d;
bool isEqual(const QGeoTileSpec &rhs) const noexcept;
bool isLess(const QGeoTileSpec &rhs) const noexcept;
};
Q_LOCATION_PRIVATE_EXPORT unsigned int qHash(const QGeoTileSpec &spec);
Q_LOCATION_PRIVATE_EXPORT QDebug operator<<(QDebug, const QGeoTileSpec &);
QT_END_NAMESPACE
Q_DECLARE_METATYPE(QGeoTileSpec)
#endif // QGEOTILESPEC_H
|