summaryrefslogtreecommitdiff
path: root/navit/vehicle/qt5/vehicle_qt5.h
blob: 5e37297950c918723ca8366e76e053e1d933019c (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/** @file vehicle_null.c
 * @brief null uses dbus signals
 *
 * Navit, a modular navigation system.
 * Copyright (C) 2005-2017 Navit Team
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 *
 * @Author Tim Niemeyer <reddog@mastersword.de>
 * @date 2008-2009
 */
// style with: clang-format -style=WebKit -i *

#ifndef __vehicle_qt5_h
#define __vehicle_qt5_h

#include <QGeoPositionInfoSource>
#include <QGeoSatelliteInfoSource>
#include <QObject>
#include <QStringList>
extern "C" {
#include "item.h" /* needs to be on to as attr.h depends on it */

#include "attr.h"
#include "callback.h"
#include "coord.h"
}

class QNavitGeoReceiver;
struct vehicle_priv {
    struct callback_list* cbl;
    struct coord_geo geo;
    double speed;
    double direction;
    double height;
    double radius;
    int fix_type;
    time_t fix_time;
    char fixiso8601[128];
    int sats;
    int sats_used;
    int have_coords;
    struct attr** attrs;

    QGeoPositionInfoSource* source;
    QGeoSatelliteInfoSource* satellites;
    QNavitGeoReceiver* receiver;
};

class QNavitGeoReceiver : public QObject {
    Q_OBJECT
public:
    QNavitGeoReceiver(QObject* parent, struct vehicle_priv* c);
public slots:
    void positionUpdated(const QGeoPositionInfo& info);
    void satellitesInUseUpdated(const QList<QGeoSatelliteInfo>& satellites);
    void satellitesInViewUpdated(const QList<QGeoSatelliteInfo>& satellites);

private:
    struct vehicle_priv* priv;
};
#endif