auto update, test stop criteria
[googlelatitude] / src / latitude.h
index 68094f1..bfb5067 100644 (file)
@@ -4,19 +4,23 @@
 #include <QtGui>
 #include <QtWebKit>
 #include "glatitude.h"
+#include "gps.h"
+#include "gpsfake.h"
 
 class LatitudeGUI : public QMainWindow {
     Q_OBJECT
 
-public slots:
+signals:
+    void newpos();
 
 public:
     LatitudeGUI(QMainWindow *parent = 0);
 
 private slots:
     void get_loc();
-    void get_cell();
-    void get_gps();
+    void get_acwp();
+    void get_agnss();
+    void get_maemo5();
     void set();
     void set_OK();
     void set_ERROR();
@@ -27,6 +31,7 @@ private slots:
 
 private:
     GoogleLatitude *glatitude;
+    GpsMaemo5 *gps;
     QSettings *setting;
     QWebView *maps;
     QWidget *location;
@@ -37,6 +42,8 @@ private:
     QLineEdit *location_lat;
     QLineEdit *location_lon;
     QLineEdit *location_acc;
+
+    QLineEdit *status;
 };
 
 #endif // LATITUDE_H