6 #include <gconf/gconf-client.h>
12 GtkWidget *main_window;
14 GtkWidget *error_info_bar;
15 GtkWidget *error_label;
17 struct DiveList dive_list;
20 struct units output_units;
22 #define GCONF_NAME(x) "/apps/diveclog/" #x
24 static int sortfn(const void *_a, const void *_b)
26 const struct dive *a = *(void **)_a;
27 const struct dive *b = *(void **)_b;
29 if (a->when < b->when)
31 if (a->when > b->when)
37 * This doesn't really report anything at all. We just sort the
38 * dives, the GUI does the reporting
40 void report_dives(void)
44 qsort(dive_table.dives, dive_table.nr, sizeof(struct dive *), sortfn);
46 for (i = 1; i < dive_table.nr; i++) {
47 struct dive **pp = &dive_table.dives[i-1];
48 struct dive *prev = pp[0];
49 struct dive *dive = pp[1];
52 if (prev->when + prev->duration.seconds < dive->when)
55 merged = try_to_merge(prev, dive);
63 memmove(pp+1, pp+2, sizeof(*pp)*(dive_table.nr - i));
65 /* Redo the new 'i'th dive */
70 static void parse_argument(const char *arg)
72 const char *p = arg+1;
80 fprintf(stderr, "Bad argument '%s'\n", arg);
86 static void on_destroy(GtkWidget* w, gpointer data)
91 static GtkWidget *dive_profile;
93 void update_dive(struct dive *new_dive)
95 static struct dive *buffered_dive;
96 struct dive *old_dive = buffered_dive;
99 flush_dive_info_changes(old_dive);
100 flush_dive_equipment_changes(old_dive);
103 show_dive_info(new_dive);
104 show_dive_equipment(new_dive);
106 buffered_dive = new_dive;
109 void repaint_dive(void)
111 update_dive(current_dive);
112 gtk_widget_queue_draw(dive_profile);
115 static char *existing_filename;
117 static void on_info_bar_response(GtkWidget *widget, gint response,
120 if (response == GTK_RESPONSE_OK)
122 gtk_widget_destroy(widget);
123 error_info_bar = NULL;
127 void report_error(GError* error)
134 if (error_info_bar == NULL)
137 error_info_bar = gtk_info_bar_new_with_buttons(GTK_STOCK_OK,
140 g_signal_connect(error_info_bar, "response", G_CALLBACK(on_info_bar_response), NULL);
141 gtk_info_bar_set_message_type(GTK_INFO_BAR(error_info_bar),
144 error_label = gtk_label_new(error->message);
145 GtkWidget *container = gtk_info_bar_get_content_area(GTK_INFO_BAR(error_info_bar));
146 gtk_container_add(GTK_CONTAINER(container), error_label);
148 gtk_box_pack_start(GTK_BOX(main_vbox), error_info_bar, FALSE, FALSE, 0);
149 gtk_widget_show_all(main_vbox);
155 snprintf(buffer, sizeof(buffer), "Failed to open %i files.", error_count);
156 gtk_label_set(GTK_LABEL(error_label), buffer);
160 static void file_open(GtkWidget *w, gpointer data)
163 dialog = gtk_file_chooser_dialog_new("Open File",
164 GTK_WINDOW(main_window),
165 GTK_FILE_CHOOSER_ACTION_OPEN,
166 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
167 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
169 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), TRUE);
171 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
174 filenames = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog));
176 GError *error = NULL;
177 while(filenames != NULL) {
178 filename = (char *)filenames->data;
179 parse_xml_file(filename, &error);
188 filenames = g_slist_next(filenames);
190 g_slist_free(filenames);
192 dive_list_update_dives(dive_list);
194 gtk_widget_destroy(dialog);
197 static void file_save(GtkWidget *w, gpointer data)
200 dialog = gtk_file_chooser_dialog_new("Save File",
201 GTK_WINDOW(main_window),
202 GTK_FILE_CHOOSER_ACTION_SAVE,
203 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
204 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
206 gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(dialog), TRUE);
207 if (!existing_filename) {
208 gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), "Untitled document");
210 gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), existing_filename);
212 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
214 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
215 save_dives(filename);
218 gtk_widget_destroy(dialog);
221 static void quit(GtkWidget *w, gpointer data)
226 static void create_radio(GtkWidget *dialog, const char *name, ...)
229 GtkRadioButton *group = NULL;
230 GtkWidget *box, *label;
232 box = gtk_hbox_new(TRUE, 10);
233 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), box);
235 label = gtk_label_new(name);
236 gtk_box_pack_start(GTK_BOX(box), label, TRUE, TRUE, 0);
238 va_start(args, name);
245 name = va_arg(args, char *);
248 callback_fn = va_arg(args, void *);
249 enabled = va_arg(args, int);
251 button = gtk_radio_button_new_with_label_from_widget(group, name);
252 group = GTK_RADIO_BUTTON(button);
253 gtk_box_pack_start(GTK_BOX(box), button, TRUE, TRUE, 0);
254 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), enabled);
255 g_signal_connect(button, "toggled", G_CALLBACK(callback_fn), NULL);
260 #define UNITCALLBACK(name, type, value) \
261 static void name(GtkWidget *w, gpointer data) \
263 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w))) \
264 menu_units.type = value; \
267 static struct units menu_units;
269 UNITCALLBACK(set_meter, length, METERS)
270 UNITCALLBACK(set_feet, length, FEET)
271 UNITCALLBACK(set_bar, pressure, BAR)
272 UNITCALLBACK(set_psi, pressure, PSI)
273 UNITCALLBACK(set_liter, volume, LITER)
274 UNITCALLBACK(set_cuft, volume, CUFT)
275 UNITCALLBACK(set_celsius, temperature, CELSIUS)
276 UNITCALLBACK(set_fahrenheit, temperature, FAHRENHEIT)
278 static void unit_dialog(GtkWidget *w, gpointer data)
283 menu_units = output_units;
285 dialog = gtk_dialog_new_with_buttons("Units",
286 GTK_WINDOW(main_window),
287 GTK_DIALOG_DESTROY_WITH_PARENT,
288 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
289 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
292 create_radio(dialog, "Depth:",
293 "Meter", set_meter, (output_units.length == METERS),
294 "Feet", set_feet, (output_units.length == FEET),
297 create_radio(dialog, "Pressure:",
298 "Bar", set_bar, (output_units.pressure == BAR),
299 "PSI", set_psi, (output_units.pressure == PSI),
302 create_radio(dialog, "Volume:",
303 "Liter", set_liter, (output_units.volume == LITER),
304 "CuFt", set_cuft, (output_units.volume == CUFT),
307 create_radio(dialog, "Temperature:",
308 "Celsius", set_celsius, (output_units.temperature == CELSIUS),
309 "Fahrenheit", set_fahrenheit, (output_units.temperature == FAHRENHEIT),
312 gtk_widget_show_all(dialog);
313 result = gtk_dialog_run(GTK_DIALOG(dialog));
314 if (result == GTK_RESPONSE_ACCEPT) {
315 /* Make sure to flush any modified old dive data with old units */
317 output_units = menu_units;
318 update_dive_list_units(&dive_list);
320 gconf_client_set_bool(gconf, GCONF_NAME(feet), output_units.length == FEET, NULL);
321 gconf_client_set_bool(gconf, GCONF_NAME(psi), output_units.pressure == PSI, NULL);
322 gconf_client_set_bool(gconf, GCONF_NAME(cuft), output_units.volume == CUFT, NULL);
323 gconf_client_set_bool(gconf, GCONF_NAME(fahrenheit), output_units.temperature == FAHRENHEIT, NULL);
325 gtk_widget_destroy(dialog);
328 static void renumber_dives(int nr)
332 for (i = 0; i < dive_table.nr; i++) {
333 struct dive *dive = dive_table.dives[i];
334 dive->number = nr + i;
338 static void renumber_dialog(GtkWidget *w, gpointer data)
341 GtkWidget *dialog, *frame, *button;
343 dialog = gtk_dialog_new_with_buttons("Renumber",
344 GTK_WINDOW(main_window),
345 GTK_DIALOG_DESTROY_WITH_PARENT,
346 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
347 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
350 frame = gtk_frame_new("New starting number");
351 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), frame);
353 button = gtk_spin_button_new_with_range(1, 50000, 1);
354 gtk_container_add(GTK_CONTAINER(frame), button);
356 gtk_widget_show_all(dialog);
357 result = gtk_dialog_run(GTK_DIALOG(dialog));
358 if (result == GTK_RESPONSE_ACCEPT) {
359 int nr = gtk_spin_button_get_value(GTK_SPIN_BUTTON(button));
363 gtk_widget_destroy(dialog);
366 static GtkActionEntry menu_items[] = {
367 { "FileMenuAction", GTK_STOCK_FILE, "Log", NULL, NULL, NULL},
368 { "OpenFile", GTK_STOCK_OPEN, NULL, "<control>O", NULL, G_CALLBACK(file_open) },
369 { "SaveFile", GTK_STOCK_SAVE, NULL, "<control>S", NULL, G_CALLBACK(file_save) },
370 { "Print", GTK_STOCK_PRINT, NULL, "<control>P", NULL, G_CALLBACK(do_print) },
371 { "Import", NULL, "Import", NULL, NULL, G_CALLBACK(import_dialog) },
372 { "Units", NULL, "Units", NULL, NULL, G_CALLBACK(unit_dialog) },
373 { "Renumber", NULL, "Renumber", NULL, NULL, G_CALLBACK(renumber_dialog) },
374 { "Quit", GTK_STOCK_QUIT, NULL, "<control>Q", NULL, G_CALLBACK(quit) },
376 static gint nmenu_items = sizeof (menu_items) / sizeof (menu_items[0]);
378 static const gchar* ui_string = " \
380 <menubar name=\"MainMenu\"> \
381 <menu name=\"FileMenu\" action=\"FileMenuAction\"> \
382 <menuitem name=\"Open\" action=\"OpenFile\" /> \
383 <menuitem name=\"Save\" action=\"SaveFile\" /> \
384 <menuitem name=\"Print\" action=\"Print\" /> \
385 <separator name=\"Separator1\"/> \
386 <menuitem name=\"Import\" action=\"Import\" /> \
387 <separator name=\"Separator2\"/> \
388 <menuitem name=\"Units\" action=\"Units\" /> \
389 <menuitem name=\"Renumber\" action=\"Renumber\" /> \
390 <separator name=\"Separator3\"/> \
391 <menuitem name=\"Quit\" action=\"Quit\" /> \
397 static GtkWidget *get_menubar_menu(GtkWidget *window)
399 GtkActionGroup *action_group = gtk_action_group_new("Menu");
400 gtk_action_group_add_actions(action_group, menu_items, nmenu_items, 0);
402 GtkUIManager *ui_manager = gtk_ui_manager_new();
403 gtk_ui_manager_insert_action_group(ui_manager, action_group, 0);
405 gtk_ui_manager_add_ui_from_string(GTK_UI_MANAGER(ui_manager), ui_string, -1, &error);
407 gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(ui_manager));
408 GtkWidget* menu = gtk_ui_manager_get_widget(ui_manager, "/MainMenu");
413 static void switch_page(GtkNotebook *notebook, gint arg1, gpointer user_data)
418 int main(int argc, char **argv)
426 GtkWidget *dive_info;
427 GtkWidget *equipment;
431 output_units = SI_units;
434 gtk_init(&argc, &argv);
437 gconf = gconf_client_get_default();
439 if (gconf_client_get_bool(gconf, GCONF_NAME(feet), NULL))
440 output_units.length = FEET;
441 if (gconf_client_get_bool(gconf, GCONF_NAME(psi), NULL))
442 output_units.pressure = PSI;
443 if (gconf_client_get_bool(gconf, GCONF_NAME(cuft), NULL))
444 output_units.volume = CUFT;
445 if (gconf_client_get_bool(gconf, GCONF_NAME(fahrenheit), NULL))
446 output_units.temperature = FAHRENHEIT;
448 error_info_bar = NULL;
449 win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
450 g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(on_destroy), NULL);
453 vbox = gtk_vbox_new(FALSE, 0);
454 gtk_container_add(GTK_CONTAINER(win), vbox);
457 menubar = get_menubar_menu(win);
458 gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
460 /* HPane for left the dive list, and right the dive info */
461 paned = gtk_hpaned_new();
462 gtk_box_pack_end(GTK_BOX(vbox), paned, TRUE, TRUE, 0);
464 /* Create the actual divelist */
465 dive_list = dive_list_create();
466 gtk_paned_add1(GTK_PANED(paned), dive_list.container_widget);
468 /* VBox for dive info, and tabs */
469 info_box = gtk_vbox_new(FALSE, 6);
470 gtk_paned_add2(GTK_PANED(paned), info_box);
472 /* Frame for minimal dive info */
473 frame = dive_info_frame();
474 gtk_box_pack_start(GTK_BOX(info_box), frame, FALSE, TRUE, 6);
476 /* Notebook for dive info vs profile vs .. */
477 notebook = gtk_notebook_new();
478 g_signal_connect(notebook, "switch-page", G_CALLBACK(switch_page), NULL);
479 gtk_box_pack_start(GTK_BOX(info_box), notebook, TRUE, TRUE, 6);
481 /* Frame for dive profile */
482 dive_profile = dive_profile_widget();
483 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), dive_profile, gtk_label_new("Dive Profile"));
485 /* Frame for extended dive info */
486 dive_info = extended_dive_info_widget();
487 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), dive_info, gtk_label_new("Dive Notes"));
489 /* Frame for dive equipment */
490 equipment = equipment_widget();
491 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), equipment, gtk_label_new("Equipment"));
493 gtk_widget_set_app_paintable(win, TRUE);
494 gtk_widget_show_all(win);
496 for (i = 1; i < argc; i++) {
497 const char *a = argv[i];
503 GError *error = NULL;
504 parse_xml_file(a, &error);
515 dive_list_update_dives(dive_list);