Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
positionfactory_ohos.cpp
Go to the documentation of this file.
1// Copyright (C) 2025 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
7#include <QtCore/private/qohoslogger_p.h>
8
10
11QGeoPositionInfoSource *QOhosGeoPositionInfoSourceFactory::positionInfoSource(
12 QObject *parent, const QVariantMap &parameters)
13{
14 Q_UNUSED(parameters);
15 qOhosDebug(QtForOhos) << Q_FUNC_INFO << parent;
16
17 return tryMakeQOhosGeoPositionInfoSource(parent);
18}
19
20QGeoSatelliteInfoSource *QOhosGeoPositionInfoSourceFactory::satelliteInfoSource(
21 QObject *parent, const QVariantMap &parameters)
22{
23 Q_UNUSED(parameters);
24 qOhosDebug(QtForOhos) << Q_FUNC_INFO << parent;
25
26 return makeQOhosGeoSatelliteInfoSource(parent);
27}
28
29QGeoAreaMonitorSource *QOhosGeoPositionInfoSourceFactory::areaMonitor(
30 QObject *parent, const QVariantMap &parameters)
31{
32 Q_UNUSED(parameters);
33 qOhosDebug(QtForOhos) << Q_FUNC_INFO << parent;
34
35 return nullptr;
36}
37
38QT_END_NAMESPACE
Combined button and popup list for selecting options.