Alpha release.
[speedometer] / main.c
1 /****
2         Speedometer, shows your current speed using GPS
3         Copyright (C) 2008 Wellu Mäkinen <wellu@wellu.org>
4
5         This program is free software: you can redistribute it and/or modify
6         it under the terms of the GNU General Public License as published by
7         the Free Software Foundation, either version 3 of the License, or
8         (at your option) any later version.
9
10         This program is distributed in the hope that it will be useful,
11         but WITHOUT ANY WARRANTY; without even the implied warranty of
12         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13         GNU General Public License for more details.
14
15         You should have received a copy of the GNU General Public License
16         along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  ****/
18
19 #include <hildon/hildon-program.h>
20 #include <hildon/hildon-window.h>
21 #include <stdlib.h>
22 #include <gtk/gtk.h>
23
24 #include "callbacks.h"
25 #include "appdata.h"
26 #include "ui.h"
27 #include "util.h"
28
29 int main(int argc, char** argv) {
30
31         AppData *appdata = g_new0(AppData, 1);
32
33         gtk_init(&argc, &argv);
34
35         appdata->program = HILDON_PROGRAM(hildon_program_get_instance());
36         appdata->window = HILDON_WINDOW(hildon_window_new());
37         hildon_program_add_window(appdata->program, appdata->window);
38
39         // loads images from the disk to the image array
40         load_images(appdata);
41
42         // set display to 000
43         reset_speed(appdata);
44
45         // create ui structure
46         create_ui(appdata);
47
48         // set the window fullscreen
49         gtk_window_fullscreen(GTK_WINDOW(appdata->window));
50
51         gtk_widget_show_all(GTK_WIDGET(appdata->window));
52
53         g_thread_init(NULL);
54
55         //g_idle_add(randomize, appdata);
56
57         start_gps(appdata);
58
59         gtk_main();
60
61         return EXIT_SUCCESS;
62 }
63