DeviceInfo and GeoCode are now harmattan specific
[harmattan/cameraplus] / src / harmattan / geocode.h
diff --git a/src/harmattan/geocode.h b/src/harmattan/geocode.h
new file mode 100644 (file)
index 0000000..27315f6
--- /dev/null
@@ -0,0 +1,78 @@
+// -*- c++ -*-
+
+/*!
+ * This file is part of CameraPlus.
+ *
+ * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifndef GEOCODE_H
+#define GEOCODE_H
+
+#include <QObject>
+#include <QGeoSearchReply>
+#include <QGeoServiceProvider>
+#include <QGeoSearchManager>
+
+using namespace QtMobility;
+
+class Geocode : public QObject {
+  Q_OBJECT
+  Q_PROPERTY(bool active READ isActive WRITE setActive NOTIFY activeChanged);
+  Q_PROPERTY(QString country READ country NOTIFY countryChanged);
+  Q_PROPERTY(QString city READ city NOTIFY cityChanged);
+  Q_PROPERTY(QString suburb READ suburb NOTIFY suburbChanged);
+
+public:
+  Geocode(QObject *parent = 0);
+  ~Geocode();
+
+  bool isActive() const;
+  void setActive(bool active);
+
+  QString country() const;
+  QString city() const;
+  QString suburb() const;
+
+public slots:
+  void search(double longitude, double latitude);
+
+signals:
+  void activeChanged();
+  void countryChanged();
+  void cityChanged();
+  void suburbChanged();
+
+private slots:
+  void finished(QGeoSearchReply *reply);
+  void error(QGeoSearchReply *reply, const QGeoSearchReply::Error& error,
+            const QString& errorString = QString());
+
+private:
+  void clear();
+
+  QGeoServiceProvider *m_provider;
+  QGeoSearchManager *m_manager;
+  QGeoSearchReply *m_reply;
+
+  bool m_active;
+  QString m_country;
+  QString m_city;
+  QString m_suburb;
+};
+
+#endif /* GEOCODE_H */