Version bump (0.3-2)
[gpsdata] / src / gpscompasswindow.h
1 /*
2  *  GPSData for Maemo.
3  *  Copyright (C) 2011 Roman Moravcik
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #ifndef GPSCOMPASSWINDOW_H
21 #define GPSCOMPASSWINDOW_H
22
23 #include <QMainWindow>
24 #include <QWidget>
25
26 #include <QGeoPositionInfoSource>
27
28 #include "compass.h"
29
30 QTM_USE_NAMESPACE
31
32 class GpsCompassWindow : public QMainWindow
33 {
34     Q_OBJECT
35
36 public:
37     GpsCompassWindow(QWidget *parent = 0);
38     ~GpsCompassWindow();
39
40     void setPositionInfoSource(QGeoPositionInfoSource *positionInfoSource);
41
42 private slots:
43     void onScreenLocked(bool locked);
44     void onPositionUpdated(const QGeoPositionInfo &position);
45
46 private:
47     void createUi();
48
49 private:
50     bool m_screenLocked;
51
52     QGeoPositionInfoSource *m_position;
53
54     Compass *m_compass;
55 };
56
57 #endif // GPSCOMPASSWINDOW_H