minor change in gui
[googlelatitude] / src / latitude.h
1 #ifndef LATITUDE_H
2 #define LATITUDE_H
3
4 #include <QtGui>
5 #include <QtWebKit>
6 #include "glatitude.h"
7
8 class LatitudeGUI : public QMainWindow {
9     Q_OBJECT
10
11 public slots:
12
13 public:
14     LatitudeGUI(QMainWindow *parent = 0);
15
16 private slots:
17     void get_loc();
18     void get_cell();
19     void get_gps();
20     void set();
21     void set_OK();
22     void set_ERROR();
23     void save();
24     void show_map();
25     void show_lat();
26     void maps_login();
27
28 private:
29     GoogleLatitude *glatitude;
30     QSettings *setting;
31     QWebView *maps;
32     QWidget *location;
33     QUrl urllogin;
34
35     QLineEdit *login_user;
36     QLineEdit *login_pass;
37     QLineEdit *location_lat;
38     QLineEdit *location_lon;
39     QLineEdit *location_acc;
40 };
41
42 #endif // LATITUDE_H