summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeorouteparser_p.h
blob: a650495b8a5228250de4078eec743029d69c43c8 (plain)
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
// 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 QOSRMROUTEPARSER_P_H
#define QOSRMROUTEPARSER_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

#include <QtLocation/private/qlocationglobal_p.h>
#include <QtLocation/qgeoroutereply.h>

QT_BEGIN_NAMESPACE

class QByteArray;
class QUrl;
class QGeoRouteRequest;
class QGeoRouteParserPrivate;
class Q_LOCATION_PRIVATE_EXPORT QGeoRouteParser : public QObject
{
    Q_OBJECT
    Q_DECLARE_PRIVATE(QGeoRouteParser)
    Q_PROPERTY(TrafficSide trafficSide READ trafficSide WRITE setTrafficSide NOTIFY trafficSideChanged)
    Q_ENUMS(TrafficSide)
public:
    enum TrafficSide {
        RightHandTraffic,
        LeftHandTraffic
    };
    virtual ~QGeoRouteParser();
    QGeoRouteReply::Error parseReply(QList<QGeoRoute> &routes, QString &errorString, const QByteArray &reply) const;
    QUrl requestUrl(const QGeoRouteRequest &request, const QString &prefix) const;

    TrafficSide trafficSide() const;

public Q_SLOTS:
    void setTrafficSide(TrafficSide trafficSide);

Q_SIGNALS:
    void trafficSideChanged(TrafficSide trafficSide);

protected:
    QGeoRouteParser(QGeoRouteParserPrivate &dd, QObject *parent = nullptr);

private:
    Q_DISABLE_COPY(QGeoRouteParser)
};

QT_END_NAMESPACE

#endif // QOSRMROUTEPARSER_P_H