X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=main.c;h=14bf6e70834c946c6f963e412e30e0dd5ab80ab9;hb=c17300cfaa7dcc95b70112281491b8fb1a530f8e;hp=d3853faabd9aaba473f194d6b07462387aba1ac8;hpb=a11dbbdb1856a05b97e872fd732682d9bf8ef49b;p=ext%2Fsubsurface.git diff --git a/main.c b/main.c index d3853fa..14bf6e7 100644 --- a/main.c +++ b/main.c @@ -51,6 +51,7 @@ static GtkWidget *dive_profile; void repaint_dive(void) { + update_dive_info(current_dive); gtk_widget_queue_draw(dive_profile); } @@ -60,6 +61,7 @@ int main(int argc, char **argv) GtkWidget *win; GtkWidget *divelist; GtkWidget *table; + GtkWidget *notebook; GtkWidget *frame; parse_xml_init(); @@ -91,14 +93,18 @@ int main(int argc, char **argv) divelist = create_dive_list(); gtk_table_attach_defaults(GTK_TABLE(table), divelist, 0, 1, 0, 2); - /* Frame for dive profile */ - frame = dive_profile_frame(); - gtk_table_attach_defaults(GTK_TABLE(table), frame, 1, 2, 1, 2); - dive_profile = frame; + /* Notebook for dive info vs profile vs .. */ + notebook = gtk_notebook_new(); + gtk_table_attach_defaults(GTK_TABLE(table), notebook, 1, 2, 1, 2); /* Frame for dive info */ frame = dive_info_frame(); - gtk_table_attach_defaults(GTK_TABLE(table), frame, 1, 2, 0, 1); + 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; gtk_widget_set_app_paintable(win, TRUE); gtk_widget_show_all(win);