Fixed build for Symbian target.
[gpsdata] / src / satellitesignalstrengthwindow.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 SATELLITESIGNALSTRENGTHWINDOW_H
21 #define SATELLITESIGNALSTRENGTHWINDOW_H
22
23 #include <QMainWindow>
24 #include <QWidget>
25
26 #include <QGeoSatelliteInfoSource>
27
28 #include "satellitesignalstrength.h"
29
30 QTM_USE_NAMESPACE
31
32 #ifdef Q_OS_SYMBIAN
33
34 class SatelliteSignalStrengthWindow : public QMainWindow
35 {
36     Q_OBJECT
37
38 public:
39     SatelliteSignalStrengthWindow(QWidget *parent = 0);
40
41     void setSatelliteInfoSource(QGeoSatelliteInfoSource *satelliteInfoSource);
42
43 private slots:
44     void onScreenLocked(bool locked);
45     void onSatellitesInViewUpdated(const QList<QGeoSatelliteInfo> &satellites);
46     void onSatellitesInUseUpdated(const QList<QGeoSatelliteInfo> &satellites);
47
48 private:
49     void createUi();
50
51 private:
52     bool m_screenLocked;
53
54     QGeoSatelliteInfoSource *m_satellite;
55
56     SatelliteSignalStrength *m_satelliteSignalStrength;
57 };
58
59 #endif
60
61 #endif // SATELLITESIGNALSTRENGTHWINDOW_H