Renamed src/nemo to src/sailfish
[harmattan/cameraplus] / src / sailfish / geocode.h
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #ifndef GEOCODE_H
24 #define GEOCODE_H
25
26 #include <QObject>
27 #include <QGeocodeReply>
28 #include <QGeoServiceProvider>
29 #include <QGeocodingManager>
30
31 class Geocode : public QObject {
32   Q_OBJECT
33   Q_PROPERTY(bool active READ isActive WRITE setActive NOTIFY activeChanged);
34   Q_PROPERTY(QString country READ country NOTIFY countryChanged);
35   Q_PROPERTY(QString city READ city NOTIFY cityChanged);
36   Q_PROPERTY(QString suburb READ suburb NOTIFY suburbChanged);
37
38 public:
39   Geocode(QObject *parent = 0);
40   ~Geocode();
41
42   bool isActive() const;
43   void setActive(bool active);
44
45   QString country() const;
46   QString city() const;
47   QString suburb() const;
48
49 public slots:
50   void search(double longitude, double latitude);
51
52 signals:
53   void activeChanged();
54   void countryChanged();
55   void cityChanged();
56   void suburbChanged();
57
58 private slots:
59   void finished(QGeocodeReply *reply);
60   void error(QGeocodeReply *reply, const QGeocodeReply::Error& error,
61              const QString& errorString = QString());
62
63 private:
64   void clear();
65
66   QGeoServiceProvider *m_provider;
67   QGeocodingManager *m_manager;
68   QGeocodeReply *m_reply;
69
70   bool m_active;
71   QString m_country;
72   QString m_city;
73   QString m_suburb;
74 };
75
76 #endif /* GEOCODE_H */