Fixes to speed alarm and poi alerts. Added flicker effect. Some new fields to text...
[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     static double getMeterMultiplier();
49     static QString getMeterUnit();
50
51 signals:
52     void dataUpdated();
53     void timeUpdated();
54     void unitChanged();
55
56 public slots:
57     void update(Location::Fix const& fix);
58     void updateUnit();
59     void resetTrip();
60     void resetTotal();
61     void resetAll();
62     void store();
63
64 private slots:
65     void fixTimeout();
66
67 private:
68     Q_DISABLE_COPY(Odometer);
69     Odometer();
70     void startTiming();
71     void endTiming();
72     void resetTiming();
73     int timeAddition() const;
74     Location::Fix latestFix_;
75     double trip_;
76     double total_;
77     double maxSpeed_;
78     qulonglong totalTime_;
79     qulonglong tripTime_;
80     QTime* fixTimer_;
81     QTime* mainTimer_;
82     bool emitUpdate_;
83     Location* location_;
84     QTimer* signalTimer_;
85     QTimer* timeoutTimer_;
86 };
87
88 #endif