2011-08-31 01:40:25 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#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
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
qsort(dive_table.dives, dive_table.nr, sizeof(struct dive *), sortfn);
|
|
|
|
}
|
|
|
|
|
|
|
|
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-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-08-31 15:47:13 +00:00
|
|
|
GtkWidget *frame;
|
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);
|
|
|
|
g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(on_destroy), NULL);
|
2011-08-31 03:56:01 +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);
|
|
|
|
gtk_container_add(GTK_CONTAINER(win), table);
|
|
|
|
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-08-31 18:52:16 +00:00
|
|
|
gtk_table_attach_defaults(GTK_TABLE(table), divelist, 0, 1, 0, 2);
|
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();
|
|
|
|
gtk_table_attach_defaults(GTK_TABLE(table), notebook, 1, 2, 1, 2);
|
2011-08-31 15:47:13 +00:00
|
|
|
|
2011-08-31 19:09:19 +00:00
|
|
|
/* Frame for dive info */
|
|
|
|
frame = dive_info_frame();
|
2011-08-31 23:10:11 +00:00
|
|
|
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), frame, gtk_label_new("Dive Info"));
|
|
|
|
|
|
|
|
/* 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-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;
|
|
|
|
}
|