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
|
// Copyright (C) 2021 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 QNMEASATELLITEINFOSOURCE_H
#define QNMEASATELLITEINFOSOURCE_H
#include <QtPositioning/QGeoSatelliteInfoSource>
QT_BEGIN_NAMESPACE
class QIODevice;
class QNmeaSatelliteInfoSourcePrivate;
class Q_POSITIONING_EXPORT QNmeaSatelliteInfoSource : public QGeoSatelliteInfoSource
{
Q_OBJECT
public:
enum class UpdateMode {
RealTimeMode = 1,
SimulationMode
};
static QString SimulationUpdateInterval;
explicit QNmeaSatelliteInfoSource(UpdateMode mode, QObject *parent = nullptr);
~QNmeaSatelliteInfoSource() override;
UpdateMode updateMode() const;
void setDevice(QIODevice *source);
QIODevice *device() const;
void setUpdateInterval(int msec) override;
int minimumUpdateInterval() const override;
Error error() const override;
bool setBackendProperty(const QString &name, const QVariant &value) override;
QVariant backendProperty(const QString &name) const override;
public Q_SLOTS:
void startUpdates() override;
void stopUpdates() override;
void requestUpdate(int timeout = 0) override;
protected:
#if QT_DEPRECATED_SINCE(7, 0)
QT6_ONLY(virtual)
QGeoSatelliteInfo::SatelliteSystem
parseSatellitesInUseFromNmea(const char *data, int size, QList<int> &pnrsInUse);
#endif
QT7_ONLY(virtual)
QGeoSatelliteInfo::SatelliteSystem
parseSatellitesInUseFromNmea(QByteArrayView data, QList<int> &pnrsInUse);
enum SatelliteInfoParseStatus {
NotParsed = 0,
PartiallyParsed,
FullyParsed
};
#if QT_DEPRECATED_SINCE(7, 0)
QT6_ONLY(virtual)
SatelliteInfoParseStatus parseSatelliteInfoFromNmea(const char *data, int size,
QList<QGeoSatelliteInfo> &infos,
QGeoSatelliteInfo::SatelliteSystem &system);
#endif
QT7_ONLY(virtual)
SatelliteInfoParseStatus parseSatelliteInfoFromNmea(QByteArrayView data,
QList<QGeoSatelliteInfo> &infos,
QGeoSatelliteInfo::SatelliteSystem &system);
QNmeaSatelliteInfoSourcePrivate *d;
void setError(QGeoSatelliteInfoSource::Error satelliteError);
friend class QNmeaSatelliteInfoSourcePrivate;
Q_DISABLE_COPY(QNmeaSatelliteInfoSource)
// for using the SatelliteInfoParseStatus enum
friend class QLocationUtils;
};
QT_END_NAMESPACE
#endif // QNMEASATELLITEINFOSOURCE_H
|