Home
last modified time | relevance | path

Searched refs:QGeoAreaMonitorInfo (Results 1 – 20 of 20) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeoareamonitorinfo.cpp115 QGeoAreaMonitorInfo::QGeoAreaMonitorInfo(const QString &name) in QGeoAreaMonitorInfo() function in QGeoAreaMonitorInfo
125 QGeoAreaMonitorInfo::QGeoAreaMonitorInfo(const QGeoAreaMonitorInfo &other) in QGeoAreaMonitorInfo() function in QGeoAreaMonitorInfo
133 QGeoAreaMonitorInfo::~QGeoAreaMonitorInfo() in ~QGeoAreaMonitorInfo()
141 QGeoAreaMonitorInfo &QGeoAreaMonitorInfo::operator=(const QGeoAreaMonitorInfo &other) in operator =()
151 bool QGeoAreaMonitorInfo::operator==(const QGeoAreaMonitorInfo &other) const in operator ==()
165 bool QGeoAreaMonitorInfo::operator!=(const QGeoAreaMonitorInfo &other) const in operator !=()
167 return !QGeoAreaMonitorInfo::operator ==(other); in operator !=()
174 QString QGeoAreaMonitorInfo::name() const in name()
182 void QGeoAreaMonitorInfo::setName(const QString &name) in setName()
194 QString QGeoAreaMonitorInfo::identifier() const in identifier()
[all …]
H A Dqgeoareamonitorinfo.h51 class QGeoAreaMonitorInfo; variable
54 Q_POSITIONING_EXPORT QDataStream &operator<<(QDataStream &, const QGeoAreaMonitorInfo &);
55 Q_POSITIONING_EXPORT QDataStream &operator>>(QDataStream &, QGeoAreaMonitorInfo &);
59 class Q_POSITIONING_EXPORT QGeoAreaMonitorInfo
62 explicit QGeoAreaMonitorInfo(const QString &name = QString());
63 QGeoAreaMonitorInfo(const QGeoAreaMonitorInfo &other);
64 ~QGeoAreaMonitorInfo();
66 QGeoAreaMonitorInfo &operator=(const QGeoAreaMonitorInfo &other);
68 bool operator==(const QGeoAreaMonitorInfo &other) const;
69 bool operator!=(const QGeoAreaMonitorInfo &other) const;
[all …]
H A Dqgeoareamonitorsource.h87 virtual bool startMonitoring(const QGeoAreaMonitorInfo &monitor) = 0;
88 virtual bool stopMonitoring(const QGeoAreaMonitorInfo &monitor) = 0;
89 virtual bool requestUpdate(const QGeoAreaMonitorInfo &monitor, const char *signal) = 0;
91 virtual QList<QGeoAreaMonitorInfo> activeMonitors() const = 0;
92 virtual QList<QGeoAreaMonitorInfo> activeMonitors(const QGeoShape &lookupArea) const = 0;
95 void areaEntered(const QGeoAreaMonitorInfo &monitor, const QGeoPositionInfo &update);
96 void areaExited(const QGeoAreaMonitorInfo &monitor, const QGeoPositionInfo &update);
97 void monitorExpired(const QGeoAreaMonitorInfo &monitor);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoareamonitor/
H A Dtst_qgeoareamonitor.cpp55 Q_DECLARE_METATYPE(QGeoAreaMonitorInfo)
91 qRegisterMetaType<QGeoAreaMonitorInfo>(); in initTestCase()
104 QList<QGeoAreaMonitorInfo> list = obj->activeMonitors(); in cleanup()
107 foreach (const QGeoAreaMonitorInfo& info, list) { in cleanup()
120 QGeoAreaMonitorInfo defaultMonitor; in tst_monitor()
139 QGeoAreaMonitorInfo copy(defaultMonitor); in tst_monitor()
179 QGeoAreaMonitorInfo assignmentCopy; in tst_monitor()
197 … QVERIFY(obj->requestUpdate(copy, SIGNAL(areaEntered(QGeoAreaMonitorInfo,QGeoPositionInfo)))); in tst_monitor()
200 QVERIFY(obj->requestUpdate(copy, SIGNAL(areaExited(QGeoAreaMonitorInfo,QGeoPositionInfo)))); in tst_monitor()
220 QGeoAreaMonitorInfo persistenceMonitor(copy); in tst_monitor()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/positionpoll/
H A Dqgeoareamonitor_polling.cpp54 typedef QHash<QString, QGeoAreaMonitorInfo> MonitorTable;
87 void startMonitoring(const QGeoAreaMonitorInfo &monitor) in startMonitoring()
98 void requestUpdate(const QGeoAreaMonitorInfo &monitor, int signalId) in requestUpdate()
109 QGeoAreaMonitorInfo stopMonitoring(const QGeoAreaMonitorInfo &monitor) in stopMonitoring()
113 QGeoAreaMonitorInfo mon = activeMonitorAreas.take(monitor.identifier()); in stopMonitoring()
125 connect(this, SIGNAL(timeout(QGeoAreaMonitorInfo)), in registerClient()
126 client, SLOT(timeout(QGeoAreaMonitorInfo))); in registerClient()
131 connect(this, SIGNAL(areaEventDetected(QGeoAreaMonitorInfo,QGeoPositionInfo,bool)), in registerClient()
132 client, SLOT(processAreaEvent(QGeoAreaMonitorInfo,QGeoPositionInfo,bool))); in registerClient()
216 foreach (const QGeoAreaMonitorInfo &info, activeMonitors()) { in setupNextExpiryTimeout()
[all …]
H A Dqgeoareamonitor_polling.h65 bool startMonitoring(const QGeoAreaMonitorInfo &monitor) override;
66 bool requestUpdate(const QGeoAreaMonitorInfo &monitor,
68 bool stopMonitoring(const QGeoAreaMonitorInfo &monitor) override;
70 QList<QGeoAreaMonitorInfo> activeMonitors() const override;
71 QList<QGeoAreaMonitorInfo> activeMonitors(const QGeoShape &region) const override;
81 void timeout(const QGeoAreaMonitorInfo &monitor);
82 …void processAreaEvent(const QGeoAreaMonitorInfo &minfo, const QGeoPositionInfo &pinfo, bool isEnte…
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/doc/snippets/cpp/
H A Dcppqml.cpp87 connect(monitor, SIGNAL(areaEntered(QGeoAreaMonitorInfo,QGeoPositionInfo)), in MyClass()
88 this, SLOT(areaEntered(QGeoAreaMonitorInfo,QGeoPositionInfo))); in MyClass()
89 connect(monitor, SIGNAL(areaExited(QGeoAreaMonitorInfo,QGeoPositionInfo)), in MyClass()
90 this, SLOT(areaExited(QGeoAreaMonitorInfo,QGeoPositionInfo))); in MyClass()
92 QGeoAreaMonitorInfo bigBen("Big Ben"); in MyClass()
104 void areaEntered(const QGeoAreaMonitorInfo &mon, const QGeoPositionInfo &update) in areaEntered()
111 void areaExited(const QGeoAreaMonitorInfo &mon, const QGeoPositionInfo &update) in areaExited()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/
H A Dchanges-5.5.030 - Fixed Debug stream operators for QGeoAreaMonitorInfo, QGeoCoordinate,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/bic/data/
H A DQtPositioning.5.4.0.linux-gcc-amd64.txt3651 Class QGeoAreaMonitorInfo
3654 QGeoAreaMonitorInfo (0x0x7fb60bfed360) 0
H A DQtPositioning.5.3.0.linux-gcc-amd64.txt3619 Class QGeoAreaMonitorInfo
3622 QGeoAreaMonitorInfo (0x0x7f95ed447060) 0
H A DQtPositioning.5.6.0.linux-gcc-amd64.txt3915 Class QGeoAreaMonitorInfo
3918 QGeoAreaMonitorInfo (0x0x7f757f118240) 0
H A DQtPositioning.5.9.0.linux-gcc-amd64.txt4237 Class QGeoAreaMonitorInfo
4240 QGeoAreaMonitorInfo (0x0x7fd63db527e0) 0
H A DQtPositioning.5.8.0.linux-gcc-amd64.txt4222 Class QGeoAreaMonitorInfo
4225 QGeoAreaMonitorInfo (0x0x7fe58d76acc0) 0
H A DQtPositioning.5.7.0.linux-gcc-amd64.txt4197 Class QGeoAreaMonitorInfo
4200 QGeoAreaMonitorInfo (0x0x7ff70f32b6c0) 0
H A DQtPositioning.5.10.0.linux-gcc-amd64.txt4558 Class QGeoAreaMonitorInfo
4561 QGeoAreaMonitorInfo (0x0x7f13de497360) 0
H A DQtPositioning.5.11.0.linux-gcc-amd64.txt4558 Class QGeoAreaMonitorInfo
4561 QGeoAreaMonitorInfo (0x0x7f1d763ce4e0) 0
H A DQtPositioning.5.12.0.linux-gcc-amd64.txt4623 Class QGeoAreaMonitorInfo
4626 QGeoAreaMonitorInfo (0x0x7f7e191ca540) 0
H A DQtPositioning.5.14.0.linux-gcc-amd64.txt4872 Class QGeoAreaMonitorInfo
4875 QGeoAreaMonitorInfo (0x0x7fe9f13dba80) 0
H A DQtPositioning.5.15.0.linux-gcc-amd64.txt4882 Class QGeoAreaMonitorInfo
4885 QGeoAreaMonitorInfo (0x0x7fd89e21cae0) 0
H A DQtPositioning.5.13.0.linux-gcc-amd64.txt4833 Class QGeoAreaMonitorInfo
4836 QGeoAreaMonitorInfo (0x0x7f34fd478d20) 0