Added missing build dependency to Qt Mobility development files.
[gpsdata] / src / satellitesignalstrength.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 SATELLITESIGNALSTRENGTH_H
21 #define SATELLITESIGNALSTRENGTH_H
22
23 #include <QWidget>
24
25 #include <QGeoSatelliteInfo>
26
27 QTM_USE_NAMESPACE
28
29 class SatelliteSignalStrength : public QWidget
30 {
31   Q_OBJECT
32
33 public:
34     SatelliteSignalStrength(QWidget *parent = 0);
35
36     void updateWidget(const QList<QGeoSatelliteInfo> &satellites, bool inUseList);
37     void showTitle(bool show);
38
39 private:
40     bool m_showTitle;
41     static const int m_margin = 8;
42     static const int m_spacing = 8;
43     static const int m_numOfSatellites = 32;
44     static const int m_numOfRows = 2;
45     static const int m_numOfSatellitesInRow = m_numOfSatellites / m_numOfRows;
46
47     QColor m_barGraphBorderColor;
48     QColor m_barGraphBackgroundColor;
49     QColor m_barGraphInViewColor;
50     QColor m_barGraphInUseColor;
51
52     QList<QGeoSatelliteInfo> m_satellitesInView;
53     QList<QGeoSatelliteInfo> m_satellitesInUse;
54
55     void paintTitle(QPainter &painter, const QRectF &area);
56     void paintBarGraph(QPainter &painter, const QRectF &area, int index);
57
58 protected:
59     void paintEvent(QPaintEvent *event);
60 };
61
62 #endif // SATELLITESIGNALSTRENGTH_H