Initial import of version 0.3
[gpsdata] / src / satelliteviewwindow.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 SATELLITEVIEWWINDOW_H
21 #define SATELLITEVIEWWINDOW_H
22
23 #include <QMainWindow>
24 #include <QWidget>
25
26 #include <QGeoSatelliteInfoSource>
27
28 #include "satelliteview.h"
29
30 QTM_USE_NAMESPACE
31
32 class SatelliteViewWindow : public QMainWindow
33 {
34     Q_OBJECT
35
36 public:
37     SatelliteViewWindow(QWidget *parent = 0);
38
39     void setSatelliteInfoSource(QGeoSatelliteInfoSource *satelliteInfoSource);
40
41 private slots:
42     void onScreenLocked(bool locked);
43     void onSatellitesInViewUpdated(const QList<QGeoSatelliteInfo> &satellites);
44     void onSatellitesInUseUpdated(const QList<QGeoSatelliteInfo> &satellites);
45
46 private:
47     void createUi();
48
49 private:
50     bool m_screenLocked;
51
52     QGeoSatelliteInfoSource *m_satellite;
53
54     SatelliteView *m_satelliteView;
55 };
56
57 #endif // SATELLITEVIEWWINDOW_H