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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
// Copyright (C) 2016 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 QGEOSATELLITEINFO_H
#define QGEOSATELLITEINFO_H
#include <QtPositioning/qpositioningglobal.h>
#include <QtCore/QSharedData>
#include <QtCore/QMetaType>
#include <QtCore/QDebug>
QT_BEGIN_NAMESPACE
class QDebug;
class QDataStream;
class QGeoSatelliteInfo;
Q_POSITIONING_EXPORT size_t qHash(const QGeoSatelliteInfo &key, size_t seed = 0) noexcept;
namespace QTest
{
Q_POSITIONING_EXPORT char *toString(const QGeoSatelliteInfo &info);
} // namespace QTest
class QGeoSatelliteInfoPrivate;
QT_DECLARE_QESDP_SPECIALIZATION_DTOR_WITH_EXPORT(QGeoSatelliteInfoPrivate, Q_POSITIONING_EXPORT)
class Q_POSITIONING_EXPORT QGeoSatelliteInfo
{
Q_GADGET
Q_PROPERTY(SatelliteSystem satelliteSystem READ satelliteSystem FINAL)
Q_PROPERTY(int satelliteIdentifier READ satelliteIdentifier FINAL)
Q_PROPERTY(qreal signalStrength READ signalStrength FINAL)
public:
enum Attribute {
Elevation,
Azimuth
};
Q_ENUM(Attribute)
enum SatelliteSystem {
Undefined = 0x00,
GPS = 0x01,
GLONASS = 0x02,
GALILEO = 0x03,
BEIDOU = 0x04,
QZSS = 0x05,
Multiple = 0xFF,
CustomType = 0x100
};
Q_ENUM(SatelliteSystem)
QGeoSatelliteInfo();
QGeoSatelliteInfo(const QGeoSatelliteInfo &other);
QGeoSatelliteInfo(QGeoSatelliteInfoPrivate &dd);
QGeoSatelliteInfo(QGeoSatelliteInfo &&other) noexcept = default;
~QGeoSatelliteInfo();
QGeoSatelliteInfo &operator=(const QGeoSatelliteInfo &other);
QT_MOVE_ASSIGNMENT_OPERATOR_IMPL_VIA_PURE_SWAP(QGeoSatelliteInfo)
void swap(QGeoSatelliteInfo &other) noexcept { d.swap(other.d); }
friend bool operator==(const QGeoSatelliteInfo &lhs, const QGeoSatelliteInfo &rhs)
{
return equals(lhs, rhs);
}
friend bool operator!=(const QGeoSatelliteInfo &lhs, const QGeoSatelliteInfo &rhs)
{
return !equals(lhs, rhs);
}
void setSatelliteSystem(SatelliteSystem system);
SatelliteSystem satelliteSystem() const;
void setSatelliteIdentifier(int satId);
int satelliteIdentifier() const;
void setSignalStrength(int signalStrength);
int signalStrength() const;
void setAttribute(Attribute attribute, qreal value);
Q_INVOKABLE qreal attribute(Attribute attribute) const;
void removeAttribute(Attribute attribute);
Q_INVOKABLE bool hasAttribute(Attribute attribute) const;
void detach();
private:
static bool equals(const QGeoSatelliteInfo &lhs, const QGeoSatelliteInfo &rhs);
#ifndef QT_NO_DEBUG_STREAM
friend QDebug operator<<(QDebug dbg, const QGeoSatelliteInfo &info)
{
return debugStreaming(dbg, info);
}
static QDebug debugStreaming(QDebug dbg, const QGeoSatelliteInfo &info);
#endif
#ifndef QT_NO_DATASTREAM
friend QDataStream &operator<<(QDataStream &stream, const QGeoSatelliteInfo &info)
{
return dataStreamOut(stream, info);
}
friend QDataStream &operator>>(QDataStream &stream, QGeoSatelliteInfo &info)
{
return dataStreamIn(stream, info);
}
static QDataStream &dataStreamOut(QDataStream &stream, const QGeoSatelliteInfo &info);
static QDataStream &dataStreamIn(QDataStream &stream, QGeoSatelliteInfo &info);
#endif
QExplicitlySharedDataPointer<QGeoSatelliteInfoPrivate> d;
friend class QGeoSatelliteInfoPrivate;
friend Q_POSITIONING_EXPORT size_t qHash(const QGeoSatelliteInfo &key, size_t seed) noexcept;
friend Q_POSITIONING_EXPORT char *QTest::toString(const QGeoSatelliteInfo &info);
};
Q_DECLARE_SHARED(QGeoSatelliteInfo)
QT_END_NAMESPACE
QT_DECL_METATYPE_EXTERN(QGeoSatelliteInfo, Q_POSITIONING_EXPORT)
#endif
|