Added theme scheduler, poi support and speed alarm features.
[jspeed] / src / odometer.h
1 /*
2  * This file is part of jSpeed.
3  *
4  * jSpeed is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * jSpeed is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with jSpeed.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #ifndef ODOMETER_H
20 #define ODOMETER_H
21
22 #include <QtCore/QObject>
23 #include "location.h"
24
25 class QTime;
26 class QTimer;
27
28 class Odometer : public QObject
29 {
30     Q_OBJECT
31
32 public:
33     virtual ~Odometer();
34     static Odometer& instance();
35     void start();
36     void end();
37     double getTrip() const;
38     double getAverageSpeed() const;
39     double getTotal() const;
40     double getMaxSpeed() const;
41     qulonglong getTotalTime() const;
42     qulonglong getTripTime() const;
43     Location::Fix const& getLatestFix() const;
44     double getSignalStrength() const;
45     static QString const& getUnit();
46     static QString const& getSpeedUnit();
47     static double getUnitMultiplier();
48
49 signals:
50     void dataUpdated();
51     void timeUpdated();
52     void unitChanged();
53
54 public slots:
55     void update(Location::Fix const& fix);
56     void updateUnit();
57     void resetTrip();
58     void resetTotal();
59     void resetAll();
60     void store();
61
62 private slots:
63     void fixTimeout();
64
65 private:
66     Q_DISABLE_COPY(Odometer);
67     Odometer();
68     void startTiming();
69     void endTiming();
70     void resetTiming();
71     int timeAddition() const;
72     Location::Fix latestFix_;
73     double trip_;
74     double total_;
75     double maxSpeed_;
76     qulonglong totalTime_;
77     qulonglong tripTime_;
78     QTime* fixTimer_;
79     QTime* mainTimer_;
80     bool emitUpdate_;
81     Location* location_;
82     QTimer* signalTimer_;
83     QTimer* timeoutTimer_;
84 };
85
86 #endif