Initial commit, partially working
[wai] / src / interface.h
1 #ifndef INTERFACE_H
2 #define INTERFACE_H
3
4 #include <hildon/hildon.h>
5
6 typedef struct
7 {
8     GtkWidget *window;
9     GtkLabel *latitude_value_label;
10     GtkLabel *longitude_value_label;
11     GtkLabel *altitude_value_label;
12     GtkLabel *speed_value_label;
13     GtkLabel *fix_status_label;
14     
15 } UserInterface;
16
17 UserInterface* create_ui(void);
18
19 #endif /* INTERFACE_H */