Simplified event handling so that the whole screen responds to gestures.
[speedometer] / ui.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 <gtk/gtk.h>
20 #include <glib/gprintf.h>
21 #include <gdk-pixbuf/gdk-pixbuf.h>
22 #include <math.h>
23 #include <gconf/gconf-client.h>
24
25 #include "ui.h"
26 #include "callbacks.h"
27
28 #define GCONF_KEY "/apps/Maemo/speedometer/disclaimer"
29
30 /* This is used when converting to other units
31  * number represents a multiplier which is used
32  * when converting the base unit to other units.
33  * Base unit is m/s thus the first multiplier is
34  * one. Units are in following order:
35  *
36  * m/s, km/h, mph, f/s, knot
37  */
38 gdouble conversion[] = { 1, 3.6, 2.237, 3.281, 1.944 };
39 guint unit = 1;
40 #define UNIT_COUNT 4
41 // TODO: wrap this mess up somewhere
42 // TODO: knot graphics are missing
43
44 static GdkPixbuf* big_graphics[14];
45 static GdkPixbuf* small_graphics[14];
46 static GtkWidget* digits[5];
47 static GtkWidget* unit_graphic;
48
49 #define IMAGE_PATH "/usr/share/speedometer/%d.png"
50
51 static void set_widget_bg_black(GtkWidget* widget) {
52         g_assert(widget);
53         GdkColor black;
54         black.red = 0x0000;
55         black.blue = 0x0000;
56         black.green = 0x0000;
57         gtk_widget_modify_bg(GTK_WIDGET(widget), GTK_STATE_NORMAL, &black);
58 }
59
60
61 /* Loads all the graphics from the disk and
62  * scales the images down to be used in several
63  * places. Might block for few seconds depending
64  * on the load.
65  */
66 void load_graphics() {
67         g_print("Loading and scaling images\n");
68         guint i = 0;
69
70         /* This loop will load all the images from the disk
71          * and store the pixbufs to the array. Pixbufs are
72          * correct size to be used in the big digits.
73          */
74         while(i < 14) {
75                 char* path = g_malloc(30);
76                 g_sprintf(path, IMAGE_PATH, i);
77                 g_print(path);
78                 g_print("\n");
79                 GError* error = NULL;
80                 big_graphics[i] = gdk_pixbuf_new_from_file_at_scale(path,
81                                 160,
82                                 160,
83                                 FALSE,
84                                 &error);
85                 if(error) {
86                         g_print("Error loading big graphics: %s\n", error->message);
87                         g_error_free(error);
88                         error = NULL;
89                 }
90                 small_graphics[i] = gdk_pixbuf_new_from_file_at_scale(path,
91                                                 120,
92                                                 120,
93                                                 FALSE,
94                                                 &error);
95                 if(error) {
96                         g_print("Error loading small graphics: %s\n", error->message);
97                         g_error_free(error);
98                         error = NULL;
99                 }
100                 g_free(path);
101                 i++;
102         }
103         g_print("Done\n");
104 }
105
106 void set_digits_to_zero() {
107         digits[0] = gtk_image_new_from_pixbuf(big_graphics[0]);
108         digits[1] = gtk_image_new_from_pixbuf(big_graphics[0]);
109         digits[2] = gtk_image_new_from_pixbuf(big_graphics[0]);
110         digits[3] = gtk_image_new_from_pixbuf(small_graphics[0]);
111         digits[4] = gtk_image_new_from_pixbuf(small_graphics[0]);
112         // TODO: load this from GConf
113         unit_graphic = gtk_image_new_from_pixbuf(small_graphics[11]);
114 }
115
116 static void set_nth_digit(guint n, guint value) {
117         g_assert(value < 10);
118         g_assert(n < 5);
119
120         if(n < 3) {
121                 GtkWidget* image = digits[n];
122                 GdkPixbuf* buf = big_graphics[value];
123                 gtk_image_set_from_pixbuf(GTK_IMAGE(image), buf);
124         }
125         else {
126                 GtkWidget* image = digits[n];
127                 GdkPixbuf* buf = small_graphics[value];
128                 gtk_image_set_from_pixbuf(GTK_IMAGE(image), buf);
129         }
130 }
131
132 static void repaint_all_digits() {
133         gtk_widget_queue_draw(GTK_WIDGET(digits[0]));
134         gtk_widget_queue_draw(GTK_WIDGET(digits[1]));
135         gtk_widget_queue_draw(GTK_WIDGET(digits[2]));
136 }
137
138 void create_ui(AppData* appdata) {
139         g_assert(appdata);
140
141         GtkWidget *top_hbox;
142         GtkWidget *bottom_hbox;
143         GtkWidget *vbox;
144
145         vbox = gtk_vbox_new(FALSE, 0);
146         top_hbox = gtk_hbox_new(TRUE, 0);
147         bottom_hbox = gtk_hbox_new(TRUE, 0);
148
149         GtkWidget* event_box = gtk_event_box_new();
150
151         g_signal_connect(G_OBJECT(event_box),
152                         "tap_and_hold",
153                         G_CALLBACK(long_tap),
154                         appdata);
155         gtk_widget_tap_and_hold_setup(event_box, NULL, NULL, 0);
156
157         g_signal_connect(G_OBJECT(event_box),
158                         "button_press_event",
159                         G_CALLBACK(short_tap),
160                         appdata);
161
162         g_signal_connect(G_OBJECT(appdata->window),
163                         "delete_event",
164                         G_CALLBACK(gtk_main_quit),
165                         NULL);
166
167         g_signal_connect(G_OBJECT(appdata->window),
168                         "key_press_event",
169                         G_CALLBACK(key_press_cb),
170                         appdata->window);
171
172         // add three big digits to the hbox
173         // creates the top row where big digits are placed
174         gtk_box_pack_start(GTK_BOX(top_hbox), GTK_WIDGET(digits[0]), FALSE, FALSE, 0);
175         gtk_box_pack_start(GTK_BOX(top_hbox), GTK_WIDGET(digits[1]), FALSE, FALSE, 0);
176         gtk_box_pack_start(GTK_BOX(top_hbox), GTK_WIDGET(digits[2]), FALSE, FALSE, 0);
177
178         // add small digits to another hbox
179         // creates the bottom row with decimals and unit graphic
180         gtk_box_pack_start(GTK_BOX(bottom_hbox), GTK_WIDGET(unit_graphic), FALSE, FALSE, 0);
181         gtk_box_pack_start(GTK_BOX(bottom_hbox), GTK_WIDGET(digits[3]), FALSE, FALSE, 0);
182         gtk_box_pack_start(GTK_BOX(bottom_hbox), GTK_WIDGET(digits[4]), FALSE, FALSE, 0);
183
184         // add event boxes to the vbox
185         gtk_box_pack_start_defaults(GTK_BOX(vbox), top_hbox);
186         gtk_box_pack_start_defaults(GTK_BOX(vbox), bottom_hbox);
187
188         // add vertival box to the event box
189         gtk_container_add(GTK_CONTAINER(event_box), GTK_WIDGET(vbox));
190
191         // finally add the event box with all the children to the window
192         gtk_container_add(GTK_CONTAINER(appdata->window), GTK_WIDGET(event_box));
193
194         // set backgrounds black
195         set_widget_bg_black(GTK_WIDGET(appdata->window));
196         set_widget_bg_black(event_box);
197
198         gtk_window_fullscreen(GTK_WINDOW(appdata->window));
199         gtk_widget_show_all(GTK_WIDGET(appdata->window));
200 }
201
202 void change_unit() {
203         unit++;
204
205         if(unit >= UNIT_COUNT) {
206                 unit = 0;
207         }
208         g_print("Unit used in conversion: %f\n", conversion[unit]);
209
210         GdkPixbuf* buf = small_graphics[10 + unit];
211         gtk_image_set_from_pixbuf(GTK_IMAGE(unit_graphic), buf);
212 }
213
214 void interpret_and_set_speed(gdouble speed) {
215         g_assert(!isnan(speed));
216
217         /* speed is in m/s so let's convert
218          * it to the unit that we are using
219          */
220         speed *= conversion[unit];
221
222         /* Convert float to a 6 digits (including dot) wide
223          * string with leading zeros. After conversion
224          * the speed looks like:
225          *
226          * 009.20 (9,20 km/h) or
227          * 010.90 (10,90 km/h) or
228          * 120.10 (120,10 km/h)
229          *
230          * Now, regardless of speed we know the position
231          * of the digits and can access the array directly.
232          */
233         gchar* charspeed = g_malloc(10); // alloc
234         g_sprintf(charspeed, "%0*.2f", 6, speed);
235
236         g_print("Speed is %s km/h\n", charspeed);
237
238         // these three lines will set the big digits
239         set_nth_digit(0, g_ascii_digit_value(charspeed[0]));
240         set_nth_digit(1, g_ascii_digit_value(charspeed[1]));
241         set_nth_digit(2, g_ascii_digit_value(charspeed[2]));
242
243         // these two lines will set the small digits
244         set_nth_digit(3, g_ascii_digit_value(charspeed[4]));
245         set_nth_digit(4, g_ascii_digit_value(charspeed[5]));
246
247         repaint_all_digits();
248
249         g_free(charspeed);
250 }
251
252 static void show_dialog() {
253         GtkWidget *dialog = gtk_message_dialog_new(
254                         NULL,
255                         GTK_DIALOG_MODAL,
256                         GTK_MESSAGE_INFO,
257                         GTK_BUTTONS_OK,
258                         "This program is licensed under GNU General Public License, "
259                         "which means (among other things) that you don't have to pay "
260                         "a dime for it. "
261                         "If you think, however, that this software is worth it, you "
262                         "can always drop me a postcard.\n\n"
263                         "Wellu Mäkinen\n"
264                         "Poste restante\n"
265                         "33580 Tampere\n"
266                         "FINLAND\n\n"
267                         "PS. Long-tapping on the screen will quit the program.");
268         gtk_dialog_run(GTK_DIALOG(dialog));
269         gtk_widget_destroy(dialog);
270 }
271
272 void show_cardware_dialog() {
273         GConfClient* client = gconf_client_get_default();
274         g_assert(GCONF_IS_CLIENT(client));
275
276         GConfValue* gcvalue = NULL;
277         gcvalue = gconf_client_get_without_default(client, GCONF_KEY, NULL);
278
279         if(gcvalue == NULL) {
280                 g_print("GConf key not found so show dialog.\n");
281                 show_dialog();
282                 gconf_client_set_bool(client, GCONF_KEY, TRUE, NULL);
283         }
284         g_object_unref(client);
285 }
286