a082549e4eb8febf6ca1b33529b8b09a68e84a64
[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 <stdlib.h>
20 #include <gtk/gtk.h>
21 #include <location/location-gps-device.h>
22 #include <location/location-gpsd-control.h>
23
24 #include "callbacks.h"
25
26 int main(int argc, char** argv) {
27
28   /* We'll have two references to two GTK+ widgets. */
29   GtkWindow* window;
30   GtkLabel* label;
31
32   /* Initialize the GTK+ library. */
33   gtk_init(&argc, &argv);
34
35
36
37
38
39   /* Create a window with window border width of 12 pixels and a
40      title text. */
41   window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
42
43   /* Show all widgets that are contained by the window. */
44   gtk_widget_show_all(GTK_WIDGET(window));
45
46
47
48   g_thread_init(NULL);
49
50   // gps device
51   LocationGPSDevice *device;
52   device = g_object_new (LOCATION_TYPE_GPS_DEVICE, NULL);
53
54   g_signal_connect (device, "changed", G_CALLBACK (location_changed), NULL);
55
56
57   LocationGPSDControl *control;
58
59   control = location_gpsd_control_get_default();
60   location_gpsd_control_start(control);
61
62
63
64   /* Start the main event loop. */
65   gtk_main();
66
67
68
69   return EXIT_SUCCESS;
70 }
71