Add Info & Stats page to the notebook

This provides the relevant information for the currently selected dive
plus a bunch of statistics over all dives in the dive_table.

The visual design has lots of room for improvement
- right now the different fields change size
- it might be nice to have a more modern look for the entries
- the O2/He field is odd - for most divers the He value will
  always be 0, so maybe we should only show He if there's at least one
  dive that uses He? Also, we simply do a comma separated list of gases
  for all the tanks used

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2011-11-02 09:10:57 -07:00
parent 485b02937d
commit 619ab9e828
6 changed files with 290 additions and 1 deletions

1
main.c
View file

@ -193,6 +193,7 @@ void update_dive(struct dive *new_dive)
if (new_dive) {
show_dive_info(new_dive);
show_dive_equipment(new_dive);
show_dive_stats(new_dive);
}
buffered_dive = new_dive;
}