]> git.tdb.fi Git - ext/subsurface.git/blob - gtk-gui.c
Remove weightsystem entry with no description
[ext/subsurface.git] / gtk-gui.c
1 /* gtk-gui.c */
2 /* gtk UI implementation */
3 /* creates the window and overall layout
4  * divelist, dive info, equipment and printing are handled in their own source files
5  */
6 #include <stdio.h>
7 #include <string.h>
8 #include <stdlib.h>
9 #include <time.h>
10 #include <unistd.h>
11
12 #include "dive.h"
13 #include "divelist.h"
14 #include "display.h"
15 #include "display-gtk.h"
16
17 #include "libdivecomputer.h"
18
19 GtkWidget *main_window;
20 GtkWidget *main_vbox;
21 GtkWidget *error_info_bar;
22 GtkWidget *error_label;
23 GtkWidget *vpane, *hpane;
24 int        error_count;
25
26 const char *divelist_font;
27
28 struct units output_units;
29
30 static GtkWidget *dive_profile;
31
32 visible_cols_t visible_cols = {TRUE, FALSE};
33
34 static const char *default_dive_computer_vendor;
35 static const char *default_dive_computer_product;
36 static const char *default_dive_computer_device;
37
38 static int is_default_dive_computer(const char *vendor, const char *product)
39 {
40         return default_dive_computer_vendor && !strcmp(vendor, default_dive_computer_vendor) &&
41                 default_dive_computer_product && !strcmp(product, default_dive_computer_product);
42 }
43
44 static int is_default_dive_computer_device(const char *name)
45 {
46         return default_dive_computer_device && !strcmp(name, default_dive_computer_device);
47 }
48
49 static void set_default_dive_computer(const char *vendor, const char *product)
50 {
51         if (!vendor || !*vendor)
52                 return;
53         if (!product || !*product)
54                 return;
55         if (is_default_dive_computer(vendor, product))
56                 return;
57         default_dive_computer_vendor = vendor;
58         default_dive_computer_product = product;
59         subsurface_set_conf("dive_computer_vendor", PREF_STRING, vendor);
60         subsurface_set_conf("dive_computer_product", PREF_STRING, product);
61 }
62
63 static void set_default_dive_computer_device(const char *name)
64 {
65         if (!name || !*name)
66                 return;
67         if (is_default_dive_computer_device(name))
68                 return;
69         default_dive_computer_device = name;
70         subsurface_set_conf("dive_computer_device", PREF_STRING, name);
71 }
72
73 void repaint_dive(void)
74 {
75         update_dive(current_dive);
76         if (dive_profile)
77                 gtk_widget_queue_draw(dive_profile);
78 }
79
80 static char *existing_filename;
81 static gboolean need_icon = TRUE;
82
83 static void on_info_bar_response(GtkWidget *widget, gint response,
84                                  gpointer data)
85 {
86         if (response == GTK_RESPONSE_OK)
87         {
88                 gtk_widget_destroy(widget);
89                 error_info_bar = NULL;
90         }
91 }
92
93 void report_error(GError* error)
94 {
95         if (error == NULL)
96         {
97                 return;
98         }
99         
100         if (error_info_bar == NULL)
101         {
102                 error_count = 1;
103                 error_info_bar = gtk_info_bar_new_with_buttons(GTK_STOCK_OK,
104                                                                GTK_RESPONSE_OK,
105                                                                NULL);
106                 g_signal_connect(error_info_bar, "response", G_CALLBACK(on_info_bar_response), NULL);
107                 gtk_info_bar_set_message_type(GTK_INFO_BAR(error_info_bar),
108                                               GTK_MESSAGE_ERROR);
109                 
110                 error_label = gtk_label_new(error->message);
111                 GtkWidget *container = gtk_info_bar_get_content_area(GTK_INFO_BAR(error_info_bar));
112                 gtk_container_add(GTK_CONTAINER(container), error_label);
113                 
114                 gtk_box_pack_start(GTK_BOX(main_vbox), error_info_bar, FALSE, FALSE, 0);
115                 gtk_widget_show_all(main_vbox);
116         }
117         else
118         {
119                 error_count++;
120                 char buffer[256];
121                 snprintf(buffer, sizeof(buffer), "Failed to open %i files.", error_count);
122                 gtk_label_set(GTK_LABEL(error_label), buffer);
123         }
124 }
125
126 static void file_open(GtkWidget *w, gpointer data)
127 {
128         GtkWidget *dialog;
129         GtkFileFilter *filter;
130
131         dialog = gtk_file_chooser_dialog_new("Open File",
132                 GTK_WINDOW(main_window),
133                 GTK_FILE_CHOOSER_ACTION_OPEN,
134                 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
135                 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
136                 NULL);
137         gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), TRUE);
138
139         filter = gtk_file_filter_new();
140         gtk_file_filter_add_pattern(filter, "*.xml");
141         gtk_file_filter_add_pattern(filter, "*.XML");
142         gtk_file_filter_add_pattern(filter, "*.sda");
143         gtk_file_filter_add_pattern(filter, "*.SDA");
144         gtk_file_filter_add_mime_type(filter, "text/xml");
145         gtk_file_filter_set_name(filter, "XML file");
146         gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog), filter);
147
148         if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
149                 GSList *filenames, *fn_glist;
150                 char *filename;
151                 filenames = fn_glist = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog));
152                 
153                 GError *error = NULL;
154                 while(filenames != NULL) {
155                         filename = filenames->data;
156                         parse_file(filename, &error);
157                         if (error != NULL)
158                         {
159                                 report_error(error);
160                                 g_error_free(error);
161                                 error = NULL;
162                         }
163                         
164                         g_free(filename);
165                         filenames = g_slist_next(filenames);
166                 }
167                 g_slist_free(fn_glist);
168                 report_dives(FALSE);
169         }
170         gtk_widget_destroy(dialog);
171 }
172
173 static void file_save(GtkWidget *w, gpointer data)
174 {
175         GtkWidget *dialog;
176         dialog = gtk_file_chooser_dialog_new("Save File",
177                 GTK_WINDOW(main_window),
178                 GTK_FILE_CHOOSER_ACTION_SAVE,
179                 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
180                 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
181                 NULL);
182         gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(dialog), TRUE);
183         if (!existing_filename) {
184                 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), "Untitled document");
185         } else
186                 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), existing_filename);
187
188         if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
189                 char *filename;
190                 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
191                 save_dives(filename);
192                 g_free(filename);
193                 mark_divelist_changed(FALSE);
194         }
195         gtk_widget_destroy(dialog);
196 }
197
198 static void ask_save_changes()
199 {
200         GtkWidget *dialog, *label, *content;
201         dialog = gtk_dialog_new_with_buttons("Save Changes?",
202                 GTK_WINDOW(main_window), GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
203                 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
204                 GTK_STOCK_NO, GTK_RESPONSE_NO,
205                 NULL);
206         content = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
207         label = gtk_label_new ("You have unsaved changes\nWould you like to save those before exiting the program?");
208         gtk_container_add (GTK_CONTAINER (content), label);
209         gtk_widget_show_all (dialog);
210         gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
211         if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
212                 file_save(NULL,NULL);
213         }
214         gtk_widget_destroy(dialog);
215 }
216
217 static gboolean on_delete(GtkWidget* w, gpointer data)
218 {
219         /* Make sure to flush any modified dive data */
220         update_dive(NULL);
221
222         if (unsaved_changes())
223                 ask_save_changes();
224
225         return FALSE; /* go ahead, kill the program, we're good now */
226 }
227
228 static void on_destroy(GtkWidget* w, gpointer data)
229 {
230         gtk_main_quit();
231 }
232
233 static void quit(GtkWidget *w, gpointer data)
234 {
235         /* Make sure to flush any modified dive data */
236         update_dive(NULL);
237
238         if (unsaved_changes())
239                 ask_save_changes();
240         gtk_main_quit();
241 }
242
243 GtkTreeViewColumn *tree_view_column(GtkWidget *tree_view, int index, const char *title,
244                                 data_func_t data_func, unsigned int flags)
245 {
246         GtkCellRenderer *renderer;
247         GtkTreeViewColumn *col;
248         double xalign = 0.0; /* left as default */
249         PangoAlignment align;
250         gboolean visible;
251
252         align = (flags & ALIGN_LEFT) ? PANGO_ALIGN_LEFT :
253                 (flags & ALIGN_RIGHT) ? PANGO_ALIGN_RIGHT :
254                 PANGO_ALIGN_CENTER;
255         visible = !(flags & INVISIBLE);
256
257         renderer = gtk_cell_renderer_text_new();
258         col = gtk_tree_view_column_new();
259
260         gtk_tree_view_column_set_title(col, title);
261         if (!(flags & UNSORTABLE))
262                 gtk_tree_view_column_set_sort_column_id(col, index);
263         gtk_tree_view_column_set_resizable(col, TRUE);
264         gtk_tree_view_column_pack_start(col, renderer, TRUE);
265         if (data_func)
266                 gtk_tree_view_column_set_cell_data_func(col, renderer, data_func, (void *)(long)index, NULL);
267         else
268                 gtk_tree_view_column_add_attribute(col, renderer, "text", index);
269         gtk_object_set(GTK_OBJECT(renderer), "alignment", align, NULL);
270         switch (align) {
271         case PANGO_ALIGN_LEFT:
272                 xalign = 0.0;
273                 break;
274         case PANGO_ALIGN_CENTER:
275                 xalign = 0.5;
276                 break;
277         case PANGO_ALIGN_RIGHT:
278                 xalign = 1.0;
279                 break;
280         }
281         gtk_cell_renderer_set_alignment(GTK_CELL_RENDERER(renderer), xalign, 0.5);
282         gtk_tree_view_column_set_visible(col, visible);
283         gtk_tree_view_append_column(GTK_TREE_VIEW(tree_view), col);
284         return col;
285 }
286
287 static void create_radio(GtkWidget *vbox, const char *w_name, ...)
288 {
289         va_list args;
290         GtkRadioButton *group = NULL;
291         GtkWidget *box, *label;
292
293         box = gtk_hbox_new(TRUE, 10);
294         gtk_box_pack_start(GTK_BOX(vbox), box, FALSE, FALSE, 0);
295
296         label = gtk_label_new(w_name);
297         gtk_box_pack_start(GTK_BOX(box), label, TRUE, TRUE, 0);
298
299         va_start(args, w_name);
300         for (;;) {
301                 int enabled;
302                 const char *name;
303                 GtkWidget *button;
304                 void *callback_fn;
305
306                 name = va_arg(args, char *);
307                 if (!name)
308                         break;
309                 callback_fn = va_arg(args, void *);
310                 enabled = va_arg(args, int);
311
312                 button = gtk_radio_button_new_with_label_from_widget(group, name);
313                 group = GTK_RADIO_BUTTON(button);
314                 gtk_box_pack_start(GTK_BOX(box), button, TRUE, TRUE, 0);
315                 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), enabled);
316                 g_signal_connect(button, "toggled", G_CALLBACK(callback_fn), NULL);
317         }
318         va_end(args);
319 }
320
321 #define UNITCALLBACK(name, type, value)                         \
322 static void name(GtkWidget *w, gpointer data)                   \
323 {                                                               \
324         if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w))) \
325                 menu_units.type = value;                        \
326 }
327
328 static struct units menu_units;
329
330 UNITCALLBACK(set_meter, length, METERS)
331 UNITCALLBACK(set_feet, length, FEET)
332 UNITCALLBACK(set_bar, pressure, BAR)
333 UNITCALLBACK(set_psi, pressure, PSI)
334 UNITCALLBACK(set_liter, volume, LITER)
335 UNITCALLBACK(set_cuft, volume, CUFT)
336 UNITCALLBACK(set_celsius, temperature, CELSIUS)
337 UNITCALLBACK(set_fahrenheit, temperature, FAHRENHEIT)
338 UNITCALLBACK(set_kg, weight, KG)
339 UNITCALLBACK(set_lbs, weight, LBS)
340
341 #define OPTIONCALLBACK(name, option) \
342 static void name(GtkWidget *w, gpointer data) \
343 { \
344         option = GTK_TOGGLE_BUTTON(w)->active; \
345 }
346
347 OPTIONCALLBACK(otu_toggle, visible_cols.otu)
348 OPTIONCALLBACK(sac_toggle, visible_cols.sac)
349 OPTIONCALLBACK(nitrox_toggle, visible_cols.nitrox)
350 OPTIONCALLBACK(temperature_toggle, visible_cols.temperature)
351 OPTIONCALLBACK(cylinder_toggle, visible_cols.cylinder)
352
353 static void event_toggle(GtkWidget *w, gpointer _data)
354 {
355         gboolean *plot_ev = _data;
356
357         *plot_ev = GTK_TOGGLE_BUTTON(w)->active;
358 }
359
360 static void preferences_dialog(GtkWidget *w, gpointer data)
361 {
362         int result;
363         GtkWidget *dialog, *font, *frame, *box, *vbox, *button;
364
365         menu_units = output_units;
366
367         dialog = gtk_dialog_new_with_buttons("Preferences",
368                 GTK_WINDOW(main_window),
369                 GTK_DIALOG_DESTROY_WITH_PARENT,
370                 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
371                 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
372                 NULL);
373
374         frame = gtk_frame_new("Units");
375         vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
376         gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
377
378         box = gtk_vbox_new(FALSE, 6);
379         gtk_container_add(GTK_CONTAINER(frame), box);
380
381         create_radio(box, "Depth:",
382                 "Meter", set_meter, (output_units.length == METERS),
383                 "Feet",  set_feet, (output_units.length == FEET),
384                 NULL);
385
386         create_radio(box, "Pressure:",
387                 "Bar", set_bar, (output_units.pressure == BAR),
388                 "PSI",  set_psi, (output_units.pressure == PSI),
389                 NULL);
390
391         create_radio(box, "Volume:",
392                 "Liter",  set_liter, (output_units.volume == LITER),
393                 "CuFt", set_cuft, (output_units.volume == CUFT),
394                 NULL);
395
396         create_radio(box, "Temperature:",
397                 "Celsius", set_celsius, (output_units.temperature == CELSIUS),
398                 "Fahrenheit",  set_fahrenheit, (output_units.temperature == FAHRENHEIT),
399                 NULL);
400
401         create_radio(box, "Weight:",
402                 "kg", set_kg, (output_units.weight == KG),
403                 "lbs",  set_lbs, (output_units.weight == LBS),
404                 NULL);
405
406         frame = gtk_frame_new("Columns");
407         gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), frame, FALSE, FALSE, 5);
408
409         box = gtk_hbox_new(FALSE, 6);
410         gtk_container_add(GTK_CONTAINER(frame), box);
411
412         button = gtk_check_button_new_with_label("Show Temp");
413         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), visible_cols.temperature);
414         gtk_box_pack_start(GTK_BOX(box), button, FALSE, FALSE, 6);
415         g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(temperature_toggle), NULL);
416
417         button = gtk_check_button_new_with_label("Show Cyl");
418         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), visible_cols.cylinder);
419         gtk_box_pack_start(GTK_BOX(box), button, FALSE, FALSE, 6);
420         g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(cylinder_toggle), NULL);
421
422         button = gtk_check_button_new_with_label("Show O" UTF8_SUBSCRIPT_2 "%");
423         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), visible_cols.nitrox);
424         gtk_box_pack_start(GTK_BOX(box), button, FALSE, FALSE, 6);
425         g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(nitrox_toggle), NULL);
426
427         button = gtk_check_button_new_with_label("Show SAC");
428         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), visible_cols.sac);
429         gtk_box_pack_start(GTK_BOX(box), button, FALSE, FALSE, 6);
430         g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(sac_toggle), NULL);
431
432         button = gtk_check_button_new_with_label("Show OTU");
433         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), visible_cols.otu);
434         gtk_box_pack_start(GTK_BOX(box), button, FALSE, FALSE, 6);
435         g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(otu_toggle), NULL);
436
437         font = gtk_font_button_new_with_font(divelist_font);
438         gtk_box_pack_start(GTK_BOX(vbox), font, FALSE, FALSE, 5);
439
440         gtk_widget_show_all(dialog);
441         result = gtk_dialog_run(GTK_DIALOG(dialog));
442         if (result == GTK_RESPONSE_ACCEPT) {
443                 /* Make sure to flush any modified old dive data with old units */
444                 update_dive(NULL);
445
446                 divelist_font = strdup(gtk_font_button_get_font_name(GTK_FONT_BUTTON(font)));
447                 set_divelist_font(divelist_font);
448
449                 output_units = menu_units;
450                 update_dive_list_units();
451                 repaint_dive();
452                 update_dive_list_col_visibility();
453
454                 subsurface_set_conf("feet", PREF_BOOL, BOOL_TO_PTR(output_units.length == FEET));
455                 subsurface_set_conf("psi", PREF_BOOL, BOOL_TO_PTR(output_units.pressure == PSI));
456                 subsurface_set_conf("cuft", PREF_BOOL, BOOL_TO_PTR(output_units.volume == CUFT));
457                 subsurface_set_conf("fahrenheit", PREF_BOOL, BOOL_TO_PTR(output_units.temperature == FAHRENHEIT));
458                 subsurface_set_conf("lbs", PREF_BOOL, BOOL_TO_PTR(output_units.weight == LBS));
459                 subsurface_set_conf("TEMPERATURE", PREF_BOOL, BOOL_TO_PTR(visible_cols.temperature));
460                 subsurface_set_conf("CYLINDER", PREF_BOOL, BOOL_TO_PTR(visible_cols.cylinder));
461                 subsurface_set_conf("NITROX", PREF_BOOL, BOOL_TO_PTR(visible_cols.nitrox));
462                 subsurface_set_conf("SAC", PREF_BOOL, BOOL_TO_PTR(visible_cols.sac));
463                 subsurface_set_conf("OTU", PREF_BOOL, BOOL_TO_PTR(visible_cols.otu));
464                 subsurface_set_conf("divelist_font", PREF_STRING, divelist_font);
465
466                 /* Flush the changes out to the system */
467                 subsurface_flush_conf();
468         }
469         gtk_widget_destroy(dialog);
470 }
471
472 static void create_toggle(const char* label, int *on, void *_data)
473 {
474         GtkWidget *button, *table = _data;
475         int rows, cols, x, y;
476         static int count;
477
478         if (table == NULL) {
479                 /* magic way to reset the number of toggle buttons
480                  * that we have already added - call this before you
481                  * create the dialog */
482                 count = 0;
483                 return;
484         }
485         g_object_get(G_OBJECT(table), "n-columns", &cols, "n-rows", &rows, NULL);
486         if (count > rows * cols) {
487                 gtk_table_resize(GTK_TABLE(table),rows+1,cols);
488                 rows++;
489         }
490         x = count % cols;
491         y = count / cols;
492         button = gtk_check_button_new_with_label(label);
493         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), *on);
494         gtk_table_attach_defaults(GTK_TABLE(table), button, x, x+1, y, y+1);
495         g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(event_toggle), on);
496         count++;
497 }
498
499 static void selectevents_dialog(GtkWidget *w, gpointer data)
500 {
501         int result;
502         GtkWidget *dialog, *frame, *vbox, *table;
503
504         dialog = gtk_dialog_new_with_buttons("SelectEvents",
505                 GTK_WINDOW(main_window),
506                 GTK_DIALOG_DESTROY_WITH_PARENT,
507                 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
508                 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
509                 NULL);
510         /* initialize the function that fills the table */
511         create_toggle(NULL, NULL, NULL);
512
513         frame = gtk_frame_new("Enable / Disable Events");
514         vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
515         gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
516
517         table = gtk_table_new(1, 4, TRUE);
518         gtk_container_add(GTK_CONTAINER(frame), table);
519
520         evn_foreach(&create_toggle, table);
521
522         gtk_widget_show_all(dialog);
523         result = gtk_dialog_run(GTK_DIALOG(dialog));
524         if (result == GTK_RESPONSE_ACCEPT) {
525                 repaint_dive();
526         }
527         gtk_widget_destroy(dialog);
528 }
529
530 static void renumber_dialog(GtkWidget *w, gpointer data)
531 {
532         int result;
533         struct dive *dive;
534         GtkWidget *dialog, *frame, *button, *vbox;
535
536         dialog = gtk_dialog_new_with_buttons("Renumber",
537                 GTK_WINDOW(main_window),
538                 GTK_DIALOG_DESTROY_WITH_PARENT,
539                 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
540                 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
541                 NULL);
542
543         vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
544
545         frame = gtk_frame_new("New starting number");
546         gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 5);
547
548         button = gtk_spin_button_new_with_range(1, 50000, 1);
549         gtk_container_add(GTK_CONTAINER(frame), button);
550
551         /*
552          * Do we have a number for the first dive already? Use that
553          * as the default.
554          */
555         dive = get_dive(0);
556         if (dive && dive->number)
557                 gtk_spin_button_set_value(GTK_SPIN_BUTTON(button), dive->number);
558
559         gtk_widget_show_all(dialog);
560         result = gtk_dialog_run(GTK_DIALOG(dialog));
561         if (result == GTK_RESPONSE_ACCEPT) {
562                 int nr = gtk_spin_button_get_value(GTK_SPIN_BUTTON(button));
563                 renumber_dives(nr);
564                 repaint_dive();
565         }
566         gtk_widget_destroy(dialog);
567 }
568
569 static void about_dialog(GtkWidget *w, gpointer data)
570 {
571         const char *logo_property = NULL;
572         GdkPixbuf *logo = NULL;
573
574         if (need_icon) {
575                 GtkWidget *image = gtk_image_new_from_file(subsurface_icon_name());
576
577                 if (image) {
578                         logo = gtk_image_get_pixbuf(GTK_IMAGE(image));
579                         logo_property = "logo";
580                 }
581         }
582
583         gtk_show_about_dialog(NULL,
584                 "program-name", "SubSurface",
585                 "comments", "Half-arsed divelog software in C",
586                 "license", "GPLv2",
587                 "version", VERSION_STRING,
588                 "copyright", "Linus Torvalds 2011",
589                 "logo-icon-name", "subsurface",
590                 /* Must be last: */
591                 logo_property, logo,
592                 NULL);
593 }
594
595 static void view_list(GtkWidget *w, gpointer data)
596 {
597         gtk_paned_set_position(GTK_PANED(vpane), 0);
598 }
599
600 static void view_profile(GtkWidget *w, gpointer data)
601 {
602         gtk_paned_set_position(GTK_PANED(hpane), 0);
603         gtk_paned_set_position(GTK_PANED(vpane), 65535);
604 }
605
606 static void view_info(GtkWidget *w, gpointer data)
607 {
608         gtk_paned_set_position(GTK_PANED(vpane), 65535);
609         gtk_paned_set_position(GTK_PANED(hpane), 65535);
610 }
611
612 /* Ooh. I don't know how to get the half-way size. So I'm just using random numbers */
613 static void view_three(GtkWidget *w, gpointer data)
614 {
615         gtk_paned_set_position(GTK_PANED(hpane), 400);
616         gtk_paned_set_position(GTK_PANED(vpane), 200);
617 }
618
619 static GtkActionEntry menu_items[] = {
620         { "FileMenuAction", GTK_STOCK_FILE, "File", NULL, NULL, NULL},
621         { "LogMenuAction",  GTK_STOCK_FILE, "Log", NULL, NULL, NULL},
622         { "ViewMenuAction",  GTK_STOCK_FILE, "View", NULL, NULL, NULL},
623         { "FilterMenuAction",  GTK_STOCK_FILE, "Filter", NULL, NULL, NULL},
624         { "HelpMenuAction", GTK_STOCK_HELP, "Help", NULL, NULL, NULL},
625         { "OpenFile",       GTK_STOCK_OPEN, NULL,   CTRLCHAR "O", NULL, G_CALLBACK(file_open) },
626         { "SaveFile",       GTK_STOCK_SAVE, NULL,   CTRLCHAR "S", NULL, G_CALLBACK(file_save) },
627         { "Print",          GTK_STOCK_PRINT, NULL,  CTRLCHAR "P", NULL, G_CALLBACK(do_print) },
628         { "Import",         NULL, "Import", NULL, NULL, G_CALLBACK(import_dialog) },
629         { "AddDive",        NULL, "Add Dive", NULL, NULL, G_CALLBACK(add_dive_cb) },
630         { "Preferences",    NULL, "Preferences", PREFERENCE_ACCEL, NULL, G_CALLBACK(preferences_dialog) },
631         { "Renumber",       NULL, "Renumber", NULL, NULL, G_CALLBACK(renumber_dialog) },
632         { "SelectEvents",   NULL, "SelectEvents", NULL, NULL, G_CALLBACK(selectevents_dialog) },
633         { "Quit",           GTK_STOCK_QUIT, NULL,   CTRLCHAR "Q", NULL, G_CALLBACK(quit) },
634         { "About",          GTK_STOCK_ABOUT, NULL,  NULL, NULL, G_CALLBACK(about_dialog) },
635         { "ViewList",       NULL, "List",  CTRLCHAR "1", NULL, G_CALLBACK(view_list) },
636         { "ViewProfile",    NULL, "Profile", CTRLCHAR "2", NULL, G_CALLBACK(view_profile) },
637         { "ViewInfo",       NULL, "Info", CTRLCHAR "3", NULL, G_CALLBACK(view_info) },
638         { "ViewThree",       NULL, "Three", CTRLCHAR "4", NULL, G_CALLBACK(view_three) },
639 };
640 static gint nmenu_items = sizeof (menu_items) / sizeof (menu_items[0]);
641
642 static const gchar* ui_string = " \
643         <ui> \
644                 <menubar name=\"MainMenu\"> \
645                         <menu name=\"FileMenu\" action=\"FileMenuAction\"> \
646                                 <menuitem name=\"Open\" action=\"OpenFile\" /> \
647                                 <menuitem name=\"Save\" action=\"SaveFile\" /> \
648                                 <menuitem name=\"Print\" action=\"Print\" /> \
649                                 <separator name=\"Separator1\"/> \
650                                 <menuitem name=\"Preferences\" action=\"Preferences\" /> \
651                                 <separator name=\"Separator2\"/> \
652                                 <menuitem name=\"Quit\" action=\"Quit\" /> \
653                         </menu> \
654                         <menu name=\"LogMenu\" action=\"LogMenuAction\"> \
655                                 <menuitem name=\"Import\" action=\"Import\" /> \
656                                 <menuitem name=\"Add Dive\" action=\"AddDive\" /> \
657                                 <separator name=\"Separator\"/> \
658                                 <menuitem name=\"Renumber\" action=\"Renumber\" /> \
659                                 <menu name=\"View\" action=\"ViewMenuAction\"> \
660                                         <menuitem name=\"List\" action=\"ViewList\" /> \
661                                         <menuitem name=\"Profile\" action=\"ViewProfile\" /> \
662                                         <menuitem name=\"Info\" action=\"ViewInfo\" /> \
663                                         <menuitem name=\"Paned\" action=\"ViewThree\" /> \
664                                 </menu> \
665                         </menu> \
666                         <menu name=\"FilterMenu\" action=\"FilterMenuAction\"> \
667                                 <menuitem name=\"SelectEvents\" action=\"SelectEvents\" /> \
668                         </menu> \
669                         <menu name=\"Help\" action=\"HelpMenuAction\"> \
670                                 <menuitem name=\"About\" action=\"About\" /> \
671                         </menu> \
672                 </menubar> \
673         </ui> \
674 ";
675
676 static GtkWidget *get_menubar_menu(GtkWidget *window, GtkUIManager *ui_manager)
677 {
678         GtkActionGroup *action_group = gtk_action_group_new("Menu");
679         gtk_action_group_add_actions(action_group, menu_items, nmenu_items, 0);
680
681         gtk_ui_manager_insert_action_group(ui_manager, action_group, 0);
682         GError* error = 0;
683         gtk_ui_manager_add_ui_from_string(GTK_UI_MANAGER(ui_manager), ui_string, -1, &error);
684
685         gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(ui_manager));
686         GtkWidget* menu = gtk_ui_manager_get_widget(ui_manager, "/MainMenu");
687
688         return menu;
689 }
690
691 static void switch_page(GtkNotebook *notebook, gint arg1, gpointer user_data)
692 {
693         repaint_dive();
694 }
695
696 void init_ui(int *argcp, char ***argvp)
697 {
698         GtkWidget *win;
699         GtkWidget *notebook;
700         GtkWidget *nb_page;
701         GtkWidget *dive_list;
702         GtkWidget *menubar;
703         GtkWidget *vbox;
704         GdkScreen *screen;
705         GtkIconTheme *icon_theme=NULL;
706         GtkSettings *settings;
707         GtkUIManager *ui_manager;
708
709         gtk_init(argcp, argvp);
710         settings = gtk_settings_get_default();
711         gtk_settings_set_long_property(settings, "gtk_tooltip_timeout", 10, "subsurface setting");
712
713         g_type_init();
714
715         subsurface_open_conf();
716         if (subsurface_get_conf("feet", PREF_BOOL))
717                 output_units.length = FEET;
718         if (subsurface_get_conf("psi", PREF_BOOL))
719                 output_units.pressure = PSI;
720         if (subsurface_get_conf("cuft", PREF_BOOL))
721                 output_units.volume = CUFT;
722         if (subsurface_get_conf("fahrenheit", PREF_BOOL))
723                 output_units.temperature = FAHRENHEIT;
724         if (subsurface_get_conf("lbs", PREF_BOOL))
725                 output_units.weight = LBS;
726         /* an unset key is FALSE - all these are hidden by default */
727         visible_cols.cylinder = PTR_TO_BOOL(subsurface_get_conf("CYLINDER", PREF_BOOL));
728         visible_cols.temperature = PTR_TO_BOOL(subsurface_get_conf("TEMPERATURE", PREF_BOOL));
729         visible_cols.nitrox = PTR_TO_BOOL(subsurface_get_conf("NITROX", PREF_BOOL));
730         visible_cols.otu = PTR_TO_BOOL(subsurface_get_conf("OTU", PREF_BOOL));
731         visible_cols.sac = PTR_TO_BOOL(subsurface_get_conf("SAC", PREF_BOOL));
732
733         divelist_font = subsurface_get_conf("divelist_font", PREF_STRING);
734
735         default_dive_computer_vendor = subsurface_get_conf("dive_computer_vendor", PREF_STRING);
736         default_dive_computer_product = subsurface_get_conf("dive_computer_product", PREF_STRING);
737         default_dive_computer_device = subsurface_get_conf("dive_computer_device", PREF_STRING);
738
739         error_info_bar = NULL;
740         win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
741         g_set_application_name ("subsurface");
742         /* Let's check if the subsurface icon has been installed or if
743          * we need to try to load it from the current directory */
744         screen = gdk_screen_get_default();
745         if (screen)
746                 icon_theme = gtk_icon_theme_get_for_screen(screen);
747         if (icon_theme) {
748                 if (gtk_icon_theme_has_icon(icon_theme, "subsurface")) {
749                         need_icon = FALSE;
750                         gtk_window_set_default_icon_name ("subsurface");
751                 }
752         }
753         if (need_icon) {
754                 const char *icon_name = subsurface_icon_name();
755                 if (!access(icon_name, R_OK))
756                         gtk_window_set_icon_from_file(GTK_WINDOW(win), icon_name, NULL);
757         }
758         g_signal_connect(G_OBJECT(win), "delete-event", G_CALLBACK(on_delete), NULL);
759         g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(on_destroy), NULL);
760         main_window = win;
761
762         vbox = gtk_vbox_new(FALSE, 0);
763         gtk_container_add(GTK_CONTAINER(win), vbox);
764         main_vbox = vbox;
765
766         ui_manager = gtk_ui_manager_new();
767         menubar = get_menubar_menu(win, ui_manager);
768
769         subsurface_ui_setup(settings, menubar, vbox, ui_manager);
770
771         vpane = gtk_vpaned_new();
772         gtk_box_pack_start(GTK_BOX(vbox), vpane, TRUE, TRUE, 3);
773
774         hpane = gtk_hpaned_new();
775         gtk_paned_add1(GTK_PANED(vpane), hpane);
776
777         /* Notebook for dive info vs profile vs .. */
778         notebook = gtk_notebook_new();
779         gtk_paned_add1(GTK_PANED(hpane), notebook);
780         g_signal_connect(notebook, "switch-page", G_CALLBACK(switch_page), NULL);
781
782         /* Create the actual divelist */
783         dive_list = dive_list_create();
784         gtk_widget_set_name(dive_list, "Dive List");
785         gtk_paned_add2(GTK_PANED(vpane), dive_list);
786
787         /* Frame for dive profile */
788         dive_profile = dive_profile_widget();
789         gtk_widget_set_name(dive_profile, "Dive Profile");
790         gtk_paned_add2(GTK_PANED(hpane), dive_profile);
791
792         /* Frame for extended dive info */
793         nb_page = extended_dive_info_widget();
794         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), nb_page, gtk_label_new("Dive Notes"));
795
796         /* Frame for dive equipment */
797         nb_page = equipment_widget();
798         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), nb_page, gtk_label_new("Equipment"));
799
800         /* Frame for single dive statistics */
801         nb_page = single_stats_widget();
802         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), nb_page, gtk_label_new("Dive Info"));
803
804         /* Frame for total dive statistics */
805         nb_page = total_stats_widget();
806         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), nb_page, gtk_label_new("Stats"));
807
808         gtk_widget_set_app_paintable(win, TRUE);
809         gtk_widget_show_all(win);
810
811         return;
812 }
813
814 void run_ui(void)
815 {
816         gtk_main();
817 }
818
819 void exit_ui(void)
820 {
821         subsurface_close_conf();
822 }
823
824 typedef struct {
825         cairo_rectangle_int_t rect;
826         const char *text;
827 } tooltip_record_t;
828
829 static tooltip_record_t *tooltip_rects;
830 static int tooltips;
831
832 void attach_tooltip(int x, int y, int w, int h, const char *text)
833 {
834         cairo_rectangle_int_t *rect;
835         tooltip_rects = realloc(tooltip_rects, (tooltips + 1) * sizeof(tooltip_record_t));
836         rect = &tooltip_rects[tooltips].rect;
837         rect->x = x;
838         rect->y = y;
839         rect->width = w;
840         rect->height = h;
841         tooltip_rects[tooltips].text = text;
842         tooltips++;
843 }
844
845 #define INSIDE_RECT(_r,_x,_y)   ((_r.x <= _x) && (_r.x + _r.width >= _x) && \
846                                 (_r.y <= _y) && (_r.y + _r.height >= _y))
847
848 static gboolean profile_tooltip (GtkWidget *widget, gint x, gint y,
849                         gboolean keyboard_mode, GtkTooltip *tooltip, gpointer user_data)
850 {
851         int i;
852         cairo_rectangle_int_t *drawing_area = user_data;
853         gint tx = x - drawing_area->x; /* get transformed coordinates */
854         gint ty = y - drawing_area->y;
855
856         /* are we over an event marker ? */
857         for (i = 0; i < tooltips; i++) {
858                 if (INSIDE_RECT(tooltip_rects[i].rect, tx, ty)) {
859                         gtk_tooltip_set_text(tooltip,tooltip_rects[i].text);
860                         return TRUE; /* show tooltip */
861                 }
862         }
863         return FALSE; /* don't show tooltip */
864 }
865
866 static gboolean expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data)
867 {
868         struct dive *dive = current_dive;
869         struct graphics_context gc = { .printer = 0 };
870         static cairo_rectangle_int_t drawing_area;
871
872         /* the drawing area gives TOTAL width * height - x,y is used as the topx/topy offset
873          * so effective drawing area is width-2x * height-2y */
874         drawing_area.width = widget->allocation.width;
875         drawing_area.height = widget->allocation.height;
876         drawing_area.x = drawing_area.width / 20.0;
877         drawing_area.y = drawing_area.height / 20.0;
878
879         gc.cr = gdk_cairo_create(widget->window);
880         g_object_set(widget, "has-tooltip", TRUE, NULL);
881         g_signal_connect(widget, "query-tooltip", G_CALLBACK(profile_tooltip), &drawing_area);
882         init_profile_background(&gc);
883         cairo_paint(gc.cr);
884
885         if (dive) {
886                 if (tooltip_rects) {
887                         free(tooltip_rects);
888                         tooltip_rects = NULL;
889                 }
890                 tooltips = 0;
891                 plot(&gc, &drawing_area, dive);
892         }
893         cairo_destroy(gc.cr);
894
895         return FALSE;
896 }
897
898 GtkWidget *dive_profile_widget(void)
899 {
900         GtkWidget *da;
901
902         da = gtk_drawing_area_new();
903         gtk_widget_set_size_request(da, 350, 250);
904         g_signal_connect(da, "expose_event", G_CALLBACK(expose_event), NULL);
905
906         return da;
907 }
908
909 int process_ui_events(void)
910 {
911         int ret=0;
912
913         while (gtk_events_pending()) {
914                 if (gtk_main_iteration_do(0)) {
915                         ret = 1;
916                         break;
917                 }
918         }
919         return ret;
920 }
921
922 static int fill_computer_list(GtkListStore *store)
923 {
924         int index = -1, i;
925         GtkTreeIter iter;
926         dc_iterator_t *iterator = NULL;
927         dc_descriptor_t *descriptor = NULL;
928
929         i = 0;
930         dc_descriptor_iterator(&iterator);
931         while (dc_iterator_next (iterator, &descriptor) == DC_STATUS_SUCCESS) {
932                 const char *vendor = dc_descriptor_get_vendor(descriptor);
933                 const char *product = dc_descriptor_get_product(descriptor);
934
935                 gtk_list_store_append(store, &iter);
936                 gtk_list_store_set(store, &iter,
937                         0, descriptor,
938                         -1);
939                 if (is_default_dive_computer(vendor, product))
940                         index = i;
941                 i++;
942         }
943         dc_iterator_free(iterator);
944         return index;
945 }
946
947 void render_dive_computer(GtkCellLayout *cell,
948                 GtkCellRenderer *renderer,
949                 GtkTreeModel *model,
950                 GtkTreeIter *iter,
951                 gpointer data)
952 {
953         char buffer[40];
954         dc_descriptor_t *descriptor = NULL;
955         const char *vendor, *product;
956
957         gtk_tree_model_get(model, iter, 0, &descriptor, -1);
958         vendor = dc_descriptor_get_vendor(descriptor);
959         product = dc_descriptor_get_product(descriptor);
960         snprintf(buffer, sizeof(buffer), "%s %s", vendor, product);
961         g_object_set(renderer, "text", buffer, NULL);
962 }
963
964
965 static GtkComboBox *dive_computer_selector(GtkWidget *vbox)
966 {
967         GtkWidget *hbox, *combo_box, *frame;
968         GtkListStore *model;
969         GtkCellRenderer *renderer;
970         int default_index;
971
972         hbox = gtk_hbox_new(FALSE, 6);
973         gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 3);
974
975         model = gtk_list_store_new(1, G_TYPE_POINTER);
976         default_index = fill_computer_list(model);
977
978         frame = gtk_frame_new("Dive computer");
979         gtk_box_pack_start(GTK_BOX(hbox), frame, FALSE, TRUE, 3);
980
981         combo_box = gtk_combo_box_new_with_model(GTK_TREE_MODEL(model));
982         gtk_container_add(GTK_CONTAINER(frame), combo_box);
983
984         renderer = gtk_cell_renderer_text_new();
985         gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combo_box), renderer, TRUE);
986         gtk_cell_layout_set_cell_data_func(GTK_CELL_LAYOUT(combo_box), renderer, render_dive_computer, NULL, NULL);
987
988         gtk_combo_box_set_active(GTK_COMBO_BOX(combo_box), default_index);
989
990         return GTK_COMBO_BOX(combo_box);
991 }
992
993 const char *subsurface_device_name()
994 {
995         if (!default_dive_computer_device || !*default_dive_computer_device)
996                 return subsurface_USB_name();
997         else
998                 return default_dive_computer_device;
999 }
1000
1001 static GtkEntry *dive_computer_device(GtkWidget *vbox)
1002 {
1003         GtkWidget *hbox, *entry, *frame;
1004
1005         hbox = gtk_hbox_new(FALSE, 6);
1006         gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 3);
1007
1008         frame = gtk_frame_new("Device name");
1009         gtk_box_pack_start(GTK_BOX(hbox), frame, FALSE, TRUE, 3);
1010
1011         entry = gtk_entry_new();
1012         gtk_container_add(GTK_CONTAINER(frame), entry);
1013         gtk_entry_set_text(GTK_ENTRY(entry), subsurface_device_name());
1014
1015         return GTK_ENTRY(entry);
1016 }
1017
1018 /* once a file is selected in the FileChooserButton we want to exit the import dialog */
1019 static void on_file_set(GtkFileChooserButton *widget, gpointer _data)
1020 {
1021         GtkDialog *main_dialog = _data;
1022
1023         gtk_dialog_response(main_dialog, GTK_RESPONSE_ACCEPT);
1024 }
1025
1026 static GtkWidget *xml_file_selector(GtkWidget *vbox, GtkWidget *main_dialog)
1027 {
1028         GtkWidget *hbox, *frame, *chooser, *dialog;
1029         GtkFileFilter *filter;
1030
1031         hbox = gtk_hbox_new(FALSE, 6);
1032         gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 3);
1033
1034         frame = gtk_frame_new("XML file name");
1035         gtk_box_pack_start(GTK_BOX(hbox), frame, FALSE, TRUE, 3);
1036         dialog = gtk_file_chooser_dialog_new("Open XML File",
1037                 GTK_WINDOW(main_window),
1038                 GTK_FILE_CHOOSER_ACTION_OPEN,
1039                 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1040                 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
1041                 NULL);
1042         gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), FALSE);
1043
1044         filter = gtk_file_filter_new();
1045         gtk_file_filter_add_pattern(filter, "*.xml");
1046         gtk_file_filter_add_pattern(filter, "*.XML");
1047         gtk_file_filter_add_pattern(filter, "*.sda");
1048         gtk_file_filter_add_pattern(filter, "*.SDA");
1049         gtk_file_filter_add_mime_type(filter, "text/xml");
1050         gtk_file_filter_set_name(filter, "XML file");
1051         gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog), filter);
1052
1053         chooser = gtk_file_chooser_button_new_with_dialog(dialog);
1054         g_signal_connect(G_OBJECT(chooser), "file-set", G_CALLBACK(on_file_set), main_dialog);
1055
1056         gtk_file_chooser_button_set_width_chars(GTK_FILE_CHOOSER_BUTTON(chooser), 30);
1057         gtk_container_add(GTK_CONTAINER(frame), chooser);
1058
1059         return chooser;
1060 }
1061
1062 static void do_import_file(gpointer data, gpointer user_data)
1063 {
1064         GError *error = NULL;
1065         parse_file(data, &error);
1066
1067         if (error != NULL)
1068         {
1069                 report_error(error);
1070                 g_error_free(error);
1071                 error = NULL;
1072         }
1073 }
1074
1075 static GtkWidget *import_dive_computer(device_data_t *data, GtkDialog *dialog)
1076 {
1077         GError *error;
1078         GtkWidget *vbox, *info, *container, *label, *button;
1079
1080         error = do_import(data);
1081         if (!error)
1082                 return NULL;
1083
1084         button = gtk_dialog_get_widget_for_response(dialog, GTK_RESPONSE_ACCEPT);
1085         gtk_button_set_use_stock(GTK_BUTTON(button), 0);
1086         gtk_button_set_label(GTK_BUTTON(button), "Retry");
1087
1088         vbox = gtk_dialog_get_content_area(dialog);
1089
1090         info = gtk_info_bar_new();
1091         container = gtk_info_bar_get_content_area(GTK_INFO_BAR(info));
1092         label = gtk_label_new(error->message);
1093         gtk_container_add(GTK_CONTAINER(container), label);
1094         gtk_box_pack_start(GTK_BOX(vbox), info, FALSE, FALSE, 0);
1095         return info;
1096 }
1097
1098 void import_dialog(GtkWidget *w, gpointer data)
1099 {
1100         int result;
1101         GtkWidget *dialog, *hbox, *vbox, *label, *info = NULL;
1102         GtkComboBox *computer;
1103         GtkEntry *device;
1104         GtkWidget *XMLchooser;
1105         device_data_t devicedata = {
1106                 .devname = NULL,
1107         };
1108
1109         dialog = gtk_dialog_new_with_buttons("Import from dive computer",
1110                 GTK_WINDOW(main_window),
1111                 GTK_DIALOG_DESTROY_WITH_PARENT,
1112                 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1113                 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1114                 NULL);
1115
1116         vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
1117         label = gtk_label_new("Import: \nLoad XML file or import directly from dive computer");
1118         gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, TRUE, 3);
1119         XMLchooser = xml_file_selector(vbox, dialog);
1120         computer = dive_computer_selector(vbox);
1121         device = dive_computer_device(vbox);
1122         hbox = gtk_hbox_new(FALSE, 6);
1123         gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 3);
1124         devicedata.progress.bar = gtk_progress_bar_new();
1125         gtk_container_add(GTK_CONTAINER(hbox), devicedata.progress.bar);
1126
1127 repeat:
1128         gtk_widget_show_all(dialog);
1129         result = gtk_dialog_run(GTK_DIALOG(dialog));
1130         switch (result) {
1131                 dc_descriptor_t *descriptor;
1132                 GtkTreeIter iter;
1133                 GtkTreeModel *model;
1134                 GSList *list;
1135         case GTK_RESPONSE_ACCEPT:
1136                 /* what happened - did the user pick a file? In that case
1137                  * we ignore whether a dive computer model was picked */
1138                 if (info)
1139                         gtk_widget_destroy(info);
1140                 list = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(XMLchooser));
1141                 if (g_slist_length(list) == 0) {
1142                         const char *vendor, *product;
1143
1144                         if (!gtk_combo_box_get_active_iter(computer, &iter))
1145                                 break;
1146                         model = gtk_combo_box_get_model(computer);
1147                         gtk_tree_model_get(model, &iter,
1148                                         0, &descriptor,
1149                                         -1);
1150
1151                         vendor = dc_descriptor_get_vendor(descriptor);
1152                         product = dc_descriptor_get_product(descriptor);
1153
1154                         devicedata.descriptor = descriptor;
1155                         devicedata.vendor = vendor;
1156                         devicedata.product = product;
1157                         devicedata.devname = gtk_entry_get_text(device);
1158                         set_default_dive_computer(vendor, product);
1159                         set_default_dive_computer_device(devicedata.devname);
1160                         info = import_dive_computer(&devicedata, GTK_DIALOG(dialog));
1161                         if (info)
1162                                 goto repeat;
1163                 } else {
1164                         g_slist_foreach(list,do_import_file,NULL);
1165                         g_slist_free(list);
1166                 }
1167                 break;
1168         default:
1169                 break;
1170         }
1171         gtk_widget_destroy(dialog);
1172
1173         report_dives(TRUE);
1174 }
1175
1176 void update_progressbar(progressbar_t *progress, double value)
1177 {
1178         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(progress->bar), value);
1179 }
1180
1181 void update_progressbar_text(progressbar_t *progress, const char *text)
1182 {
1183         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progress->bar), text);
1184 }
1185
1186 void set_filename(const char *filename)
1187 {
1188         if (!existing_filename && filename)
1189                 existing_filename = strdup(filename);
1190         return;
1191 }