Added dialogs to change home and work locations.
[ptas] / zouba / location.h
1 #ifndef LOCATION_H
2 #define LOCATION_H
3
4 #include "location_p.h"
5
6 #include <QString>
7 #include <QObject>
8 #include <QNetworkAccessManager>
9 #include <QNetworkReply>
10 #include <QGeoPositionInfo>
11 #include <math.h>
12
13 QTM_USE_NAMESPACE
14
15 class Location : public QObject
16 {
17 Q_OBJECT
18
19 public:
20   Location( const QString &x, const QString &y, const QString &label=QString() );
21   Location( const QGeoPositionInfo &positionInfo, const QString &label=QString() );
22   Location( const Location &from );
23   Location &operator=( const Location &from );
24   Location( const QString &label=QString() );
25
26   ~Location();
27
28   QString x() const;
29
30   QString y() const;
31
32   void setAddress( const QString &address ) const;
33   QString address() const;
34
35   void setLabel( const QString &label ) const;
36   QString label() const;
37
38   bool isValid() const;
39
40 public Q_SLOTS:
41   void resolveAddress( const QString &address );
42
43 Q_SIGNALS:
44   void becomeValid();
45
46 private Q_SLOTS:
47   void replyFinished( QNetworkReply * reply );
48
49 private:
50   LocationPrivate *q;
51   QNetworkAccessManager *manager;
52
53   typedef uint KKJ;
54
55   /**
56    * Transformes WGS84 longitude/latitude coordinates to KKJ x/y coordinates.
57    * @param longitude the input longitude in degrees
58    * @param latitude the input latitude in degrees
59    * @param outX the result x (easting)
60    * @param outY the result y (northing)
61    */
62   void WGS84lola_to_KKJxy(double longitude, double latitude, KKJ *outX, KKJ *outY);
63
64   /**
65    * Transformes KKJ x/y coordinates to WGS84 longitude/latitude coordinates.
66    * @param x the input x (easting)
67    * @param y the input y (northing)
68    * @param outLongitude the result longitude in degrees
69    * @param outLatitude the result latitude in degrees
70    */
71   void KKJxy_to_WGS84lola(KKJ x, KKJ y, double *outLongitude, double *outLatitude);
72
73   // Degrees to radians
74   double radians(double deg);
75
76   // Radians to degrees
77   double degrees(double rad);
78
79   // Constants
80   // Longitude0 and Center meridian of KKJ bands
81   static const double KkjZoneInfo[][2];
82
83   // Function:  KKJ_Zone_I
84   int KKJ_Zone_I(KKJ easting);
85
86   // Function:  KKJ_Zone_Lo
87   int KKJ_Zone_Lo(double kkjlo);
88
89   // Function:  KKJlalo_to_WGS84lalo
90   void KKJlola_to_WGS84lola(double kkjlo, double kkjla, double *outLongitude, double *outLatitude);
91
92   // Function:  WGS84lalo_to_KKJlalo
93   void WGS84lola_to_KKJlola(double longitude, double latitude, double *outLongitude, double *outLatitude);
94
95   // Function:  KKJlalo_to_KKJxy
96   void KKJlola_to_KKJxy(double lon, double lat, int zoneNumber, KKJ *outX, KKJ *outY);
97
98   // Function:  KKJxy_to_KKJlalo
99   void KKJxy_to_KKJlola(KKJ x, KKJ y, double *outLongitude, double *outLatitude);
100
101 };
102
103 #endif // LOCATION_H