Improved special field handling in text element.
[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     static QString const& getUnit();
45     static QString const& getSpeedUnit();
46
47 public slots:
48     void update(Location::Fix const& fix);
49     void updateUnit();
50
51 signals:
52     void dataUpdated();
53     void timeUpdated();
54     void unitChanged();
55
56 public slots:
57     void resetTrip();
58     void resetTotal();
59     void resetAll();
60     void store();
61
62 private:
63     Q_DISABLE_COPY(Odometer);
64     Odometer();
65     void startTiming();
66     void endTiming();
67     void resetTiming();
68     int timeAddition() const;
69     Location::Fix latestFix_;
70     double trip_;
71     double total_;
72     double maxSpeed_;
73     qulonglong totalTime_;
74     qulonglong tripTime_;
75     QTime* fixTimer_;
76     QTime* mainTimer_;
77     bool emitUpdate_;
78     Location* location_;
79     QTimer* signalTimer_;
80 };
81
82 #endif