2011-08-31 01:40:25 +00:00
|
|
|
#include <stdio.h>
|
2011-09-02 23:40:28 +00:00
|
|
|
#include <string.h>
|
2011-08-31 01:40:25 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "dive.h"
|
2011-08-31 17:20:46 +00:00
|
|
|
#include "display.h"
|
2011-08-31 01:40:25 +00:00
|
|
|
|
2011-09-01 01:04:25 +00:00
|
|
|
GtkWidget *main_window;
|
|
|
|
|
2011-08-31 01:40:25 +00:00
|
|
|
static int sortfn(const void *_a, const void *_b)
|
|
|
|
{
|
|
|
|
const struct dive *a = *(void **)_a;
|
|
|
|
const struct dive *b = *(void **)_b;
|
|
|
|
|
|
|
|
if (a->when < b->when)
|
|
|
|
return -1;
|
|
|
|
if (a->when > b->when)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-31 02:48:00 +00:00
|
|
|
/*
|
|
|
|
* This doesn't really report anything at all. We just sort the
|
|
|
|
* dives, the GUI does the reporting
|
|
|
|
*/
|
2011-08-31 01:40:25 +00:00
|
|
|
static void report_dives(void)
|
|
|
|
{
|
2011-09-02 23:40:28 +00:00
|
|
|
int i;
|
|
|
|
|
2011-08-31 01:40:25 +00:00
|
|
|
qsort(dive_table.dives, dive_table.nr, sizeof(struct dive *), sortfn);
|
2011-09-02 23:40:28 +00:00
|
|
|
|
|
|
|
for (i = 1; i < dive_table.nr; i++) {
|
|
|
|
struct dive **pp = &dive_table.dives[i-1];
|
|
|
|
struct dive *prev = pp[0];
|
|
|
|
struct dive *dive = pp[1];
|
|
|
|
struct dive *merged;
|
|
|
|
|
|
|
|
if (prev->when + prev->duration.seconds < dive->when)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
merged = try_to_merge(prev, dive);
|
|
|
|
if (!merged)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
free(prev);
|
|
|
|
free(dive);
|
|
|
|
*pp = merged;
|
|
|
|
dive_table.nr--;
|
|
|
|
memmove(pp+1, pp+2, sizeof(*pp)*(dive_table.nr - i));
|
|
|
|
|
|
|
|
/* Redo the new 'i'th dive */
|
|
|
|
i--;
|
|
|
|
}
|
2011-08-31 01:40:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void parse_argument(const char *arg)
|
|
|
|
{
|
|
|
|
const char *p = arg+1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
switch (*p) {
|
|
|
|
case 'v':
|
|
|
|
verbose++;
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Bad argument '%s'\n", arg);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} while (*++p);
|
|
|
|
}
|
|
|
|
|
2011-08-31 02:48:00 +00:00
|
|
|
static void on_destroy(GtkWidget* w, gpointer data)
|
|
|
|
{
|
|
|
|
gtk_main_quit();
|
|
|
|
}
|
|
|
|
|
2011-08-31 18:07:31 +00:00
|
|
|
static GtkWidget *dive_profile;
|
|
|
|
|
|
|
|
void repaint_dive(void)
|
|
|
|
{
|
2011-08-31 22:35:28 +00:00
|
|
|
update_dive_info(current_dive);
|
2011-08-31 18:07:31 +00:00
|
|
|
gtk_widget_queue_draw(dive_profile);
|
|
|
|
}
|
|
|
|
|
2011-09-01 01:04:25 +00:00
|
|
|
static char *existing_filename;
|
|
|
|
|
2011-08-31 23:54:13 +00:00
|
|
|
static void file_open(GtkWidget *w, gpointer data)
|
|
|
|
{
|
2011-09-01 01:04:25 +00:00
|
|
|
GtkWidget *dialog;
|
|
|
|
dialog = gtk_file_chooser_dialog_new("Open File",
|
|
|
|
GTK_WINDOW(main_window),
|
|
|
|
GTK_FILE_CHOOSER_ACTION_OPEN,
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
|
|
|
|
char *filename;
|
|
|
|
filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
|
|
|
|
printf("Open: '%s'\n", filename);
|
|
|
|
g_free(filename);
|
|
|
|
}
|
|
|
|
gtk_widget_destroy(dialog);
|
2011-08-31 23:54:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void file_save(GtkWidget *w, gpointer data)
|
|
|
|
{
|
2011-09-01 01:04:25 +00:00
|
|
|
GtkWidget *dialog;
|
|
|
|
dialog = gtk_file_chooser_dialog_new("Save File",
|
|
|
|
GTK_WINDOW(main_window),
|
|
|
|
GTK_FILE_CHOOSER_ACTION_SAVE,
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
|
|
|
|
NULL);
|
|
|
|
gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(dialog), TRUE);
|
|
|
|
if (!existing_filename) {
|
|
|
|
gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), "Untitled document");
|
|
|
|
} else
|
|
|
|
gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), existing_filename);
|
|
|
|
|
|
|
|
if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
|
|
|
|
char *filename;
|
|
|
|
filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
|
2011-09-01 23:27:52 +00:00
|
|
|
save_dives(filename);
|
2011-09-01 01:04:25 +00:00
|
|
|
g_free(filename);
|
|
|
|
}
|
|
|
|
gtk_widget_destroy(dialog);
|
2011-08-31 23:54:13 +00:00
|
|
|
}
|
|
|
|
|
2011-09-04 04:38:07 +00:00
|
|
|
static void quit(GtkWidget *w, gpointer data)
|
|
|
|
{
|
|
|
|
gtk_main_quit();
|
|
|
|
}
|
|
|
|
|
2011-09-04 00:14:39 +00:00
|
|
|
static GtkActionEntry menu_items[] = {
|
2011-09-04 15:08:40 +00:00
|
|
|
{ "FileMenuAction", GTK_STOCK_FILE, "Log", NULL, NULL, NULL},
|
2011-09-04 04:38:07 +00:00
|
|
|
{ "OpenFile", GTK_STOCK_OPEN, NULL, "<control>O", NULL, G_CALLBACK(file_open) },
|
|
|
|
{ "SaveFile", GTK_STOCK_SAVE, NULL, "<control>S", NULL, G_CALLBACK(file_save) },
|
|
|
|
{ "Quit", GTK_STOCK_QUIT, NULL, "<control>Q", NULL, G_CALLBACK(quit) },
|
2011-08-31 23:54:13 +00:00
|
|
|
};
|
|
|
|
static gint nmenu_items = sizeof (menu_items) / sizeof (menu_items[0]);
|
|
|
|
|
2011-09-04 00:14:39 +00:00
|
|
|
static const gchar* ui_string = " \
|
|
|
|
<ui> \
|
|
|
|
<menubar name=\"MainMenu\"> \
|
|
|
|
<menu name=\"FileMenu\" action=\"FileMenuAction\"> \
|
|
|
|
<menuitem name=\"Open\" action=\"OpenFile\" /> \
|
|
|
|
<menuitem name=\"Save\" action=\"SaveFile\" /> \
|
2011-09-04 15:08:40 +00:00
|
|
|
<separator name=\"Seperator\"/> \
|
2011-09-04 04:38:07 +00:00
|
|
|
<menuitem name=\"Quit\" action=\"Quit\" /> \
|
2011-09-04 00:14:39 +00:00
|
|
|
</menu> \
|
|
|
|
</menubar> \
|
|
|
|
</ui> \
|
|
|
|
";
|
|
|
|
|
2011-08-31 23:54:13 +00:00
|
|
|
static GtkWidget *get_menubar_menu(GtkWidget *window)
|
|
|
|
{
|
2011-09-04 00:14:39 +00:00
|
|
|
GtkActionGroup *action_group = gtk_action_group_new("Menu");
|
|
|
|
gtk_action_group_add_actions(action_group, menu_items, nmenu_items, 0);
|
|
|
|
|
|
|
|
GtkUIManager *ui_manager = gtk_ui_manager_new();
|
|
|
|
gtk_ui_manager_insert_action_group(ui_manager, action_group, 0);
|
|
|
|
GError* error = 0;
|
|
|
|
gtk_ui_manager_add_ui_from_string(GTK_UI_MANAGER(ui_manager), ui_string, -1, &error);
|
2011-08-31 23:54:13 +00:00
|
|
|
|
2011-09-04 00:14:39 +00:00
|
|
|
gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(ui_manager));
|
|
|
|
GtkWidget* menu = gtk_ui_manager_get_widget(ui_manager, "/MainMenu");
|
2011-08-31 23:54:13 +00:00
|
|
|
|
2011-09-04 00:14:39 +00:00
|
|
|
return menu;
|
2011-08-31 23:54:13 +00:00
|
|
|
}
|
|
|
|
|
2011-08-31 01:40:25 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
2011-08-31 03:56:01 +00:00
|
|
|
GtkWidget *win;
|
|
|
|
GtkWidget *divelist;
|
2011-08-31 18:52:16 +00:00
|
|
|
GtkWidget *table;
|
2011-08-31 23:10:11 +00:00
|
|
|
GtkWidget *notebook;
|
2011-09-04 15:08:40 +00:00
|
|
|
GtkWidget *box;
|
2011-08-31 15:47:13 +00:00
|
|
|
GtkWidget *frame;
|
2011-08-31 23:54:13 +00:00
|
|
|
GtkWidget *menubar;
|
|
|
|
GtkWidget *vbox;
|
2011-08-31 01:40:25 +00:00
|
|
|
|
|
|
|
parse_xml_init();
|
|
|
|
|
2011-08-31 02:48:00 +00:00
|
|
|
gtk_init(&argc, &argv);
|
|
|
|
|
2011-08-31 01:40:25 +00:00
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
const char *a = argv[i];
|
|
|
|
|
|
|
|
if (a[0] == '-') {
|
|
|
|
parse_argument(a);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
parse_xml_file(a);
|
|
|
|
}
|
2011-08-31 02:48:00 +00:00
|
|
|
|
2011-08-31 01:40:25 +00:00
|
|
|
report_dives();
|
2011-08-31 02:48:00 +00:00
|
|
|
|
|
|
|
win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
2011-09-04 04:38:07 +00:00
|
|
|
g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(on_destroy), NULL);
|
2011-09-01 01:04:25 +00:00
|
|
|
main_window = win;
|
2011-08-31 03:56:01 +00:00
|
|
|
|
2011-09-01 01:30:42 +00:00
|
|
|
vbox = gtk_vbox_new(FALSE, 0);
|
2011-08-31 23:54:13 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(win), vbox);
|
|
|
|
|
|
|
|
menubar = get_menubar_menu(win);
|
2011-09-01 01:30:42 +00:00
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
|
2011-08-31 23:54:13 +00:00
|
|
|
|
2011-08-31 18:52:16 +00:00
|
|
|
/* Table for the list of dives, cairo window, and dive info */
|
|
|
|
table = gtk_table_new(2, 2, FALSE);
|
|
|
|
gtk_container_set_border_width(GTK_CONTAINER(table), 5);
|
2011-09-01 01:30:42 +00:00
|
|
|
gtk_box_pack_end(GTK_BOX(vbox), table, TRUE, TRUE, 0);
|
2011-09-04 15:08:40 +00:00
|
|
|
gtk_table_set_col_spacings(GTK_TABLE(table), 6);
|
2011-08-31 18:52:16 +00:00
|
|
|
gtk_widget_show(table);
|
2011-08-31 04:18:47 +00:00
|
|
|
|
2011-08-31 17:27:58 +00:00
|
|
|
/* Create the atual divelist */
|
|
|
|
divelist = create_dive_list();
|
2011-09-01 01:30:42 +00:00
|
|
|
gtk_table_attach(GTK_TABLE(table), divelist, 0, 1, 0, 2,
|
|
|
|
0, GTK_FILL | GTK_SHRINK | GTK_EXPAND, 0, 0);
|
|
|
|
|
|
|
|
/* Frame for minimal dive info */
|
|
|
|
frame = dive_info_frame();
|
2011-09-01 03:36:51 +00:00
|
|
|
gtk_table_attach(GTK_TABLE(table), frame, 1, 2, 0, 1,
|
2011-09-04 15:08:40 +00:00
|
|
|
GTK_FILL | GTK_SHRINK | GTK_EXPAND, 0, 6, 6);
|
2011-08-31 04:18:47 +00:00
|
|
|
|
2011-08-31 23:10:11 +00:00
|
|
|
/* Notebook for dive info vs profile vs .. */
|
|
|
|
notebook = gtk_notebook_new();
|
2011-09-04 15:08:40 +00:00
|
|
|
gtk_table_attach(GTK_TABLE(table), notebook, 1, 2, 1, 2,
|
|
|
|
GTK_FILL | GTK_EXPAND, GTK_FILL | GTK_EXPAND, 6, 6);
|
2011-08-31 15:47:13 +00:00
|
|
|
|
2011-08-31 23:10:11 +00:00
|
|
|
/* Frame for dive profile */
|
|
|
|
frame = dive_profile_frame();
|
|
|
|
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), frame, gtk_label_new("Dive Profile"));
|
|
|
|
dive_profile = frame;
|
2011-08-31 19:09:19 +00:00
|
|
|
|
2011-09-01 01:30:42 +00:00
|
|
|
/* Frame for extended dive info */
|
2011-09-04 15:08:40 +00:00
|
|
|
box = extended_dive_info_box();
|
|
|
|
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), box, gtk_label_new("Extended Dive Info"));
|
2011-09-01 01:30:42 +00:00
|
|
|
|
2011-08-31 02:48:00 +00:00
|
|
|
gtk_widget_set_app_paintable(win, TRUE);
|
|
|
|
gtk_widget_show_all(win);
|
|
|
|
|
|
|
|
gtk_main();
|
2011-08-31 01:40:25 +00:00
|
|
|
return 0;
|
|
|
|
}
|