Changed search to retry automatically couple of times before failing.
[jenirok] / src / gui / ovimaps.h
1 /*
2  * This file is part of Jenirok.
3  *
4  * Jenirok is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * Jenirok is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Jenirok.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #ifndef OVIMAPS_H
20 #define OVIMAPS_H
21
22 #include <QtCore/QObject>
23 #include <QtCore/QString>
24 #include <QtCore/QList>
25 #include <QtCore/QStringList>
26
27 class OviMaps : public QObject
28 {
29     Q_OBJECT
30
31 public:
32
33     struct Address
34     {
35         QString street;
36         QString number;
37         QString zipCode;
38         QString city;
39         QString country;
40     };
41
42     struct Location
43     {
44         double latitude;
45         double longitude;
46     };
47
48     static int const TIMEOUT = 10000;
49
50     OviMaps(QObject* parent = 0);
51     bool addressToLocations(Address const& address, QList<Location>& locations);
52     bool locationToAddresses(Location const& location, QList<Address>& address);
53     bool openMaps(Address const& address);
54     bool openMaps(Location const& location);
55
56 protected:
57     virtual void timerEvent(QTimerEvent* event);
58
59 private slots:
60     void handleAddressToLocationsReply(QList<OviMaps::Location>);
61     void handleLocationToAddressesReply(QList<QStringList> addresses);
62
63 private:
64     bool waitSignal();
65     QList<Location>* locationsTarget_;
66     QList<Address>* addressesTarget_;
67     bool ready_;
68     int timer_;
69
70 };
71
72 #endif