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
qplacematchreply.h
Go to the documentation of this file.
1// Copyright (C) 2015 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// Qt-Security score:significant reason:default
4
5#ifndef QPLACEMATCHREPLY_H
6#define QPLACEMATCHREPLY_H
7
8#include <QtLocation/QPlaceReply>
9
11
12class QPlace;
13class QPlaceMatchRequest;
15class Q_LOCATION_EXPORT QPlaceMatchReply : public QPlaceReply
16{
17 Q_OBJECT
18public:
19 explicit QPlaceMatchReply(QObject *parent = nullptr);
20 ~QPlaceMatchReply();
21
22 QPlaceReply::Type type() const override;
23
24 QList<QPlace> places() const;
25 QPlaceMatchRequest request() const;
26
27protected:
28 void setPlaces(const QList<QPlace> &results);
29 void setRequest(const QPlaceMatchRequest &request);
30private:
31 Q_DISABLE_COPY(QPlaceMatchReply)
32 Q_DECLARE_PRIVATE(QPlaceMatchReply)
33};
34
35QT_END_NAMESPACE
36
37#endif
\inmodule QtLocation
\inmodule QtLocation
Combined button and popup list for selecting options.