Changes: changed UI, walking speed, time format
[ptas] / zouba / uicontroller.h
1 #ifndef UICONTROLLER_H
2 #define UICONTROLLER_H
3
4 #include "routedata.h"
5
6 #include <QObject>
7
8 class Ui;
9
10 class UiController : public QObject
11 {
12   Q_OBJECT
13
14 public:
15   UiController( Ui *ui );
16   ~UiController();
17
18 public Q_SLOTS:
19   void displayRoute( const RouteData &routeData );
20
21 Q_SIGNALS:
22   void homePressed();
23
24 private:
25   Ui *ui;
26 };
27 #endif // UICONTROLLER_H
28