2011-09-20 19:40:34 +00:00
|
|
|
/* divelist.c */
|
2011-09-22 15:21:32 +00:00
|
|
|
/* this creates the UI for the dive list -
|
2011-09-20 19:40:34 +00:00
|
|
|
* controlled through the following interfaces:
|
2011-09-22 15:21:32 +00:00
|
|
|
*
|
2011-09-20 19:40:34 +00:00
|
|
|
* void flush_divelist(struct dive *dive)
|
|
|
|
* GtkWidget dive_list_create(void)
|
|
|
|
* void dive_list_update_dives(void)
|
|
|
|
* void update_dive_list_units(void)
|
|
|
|
* void set_divelist_font(const char *font)
|
2011-09-21 04:29:09 +00:00
|
|
|
* void mark_divelist_changed(int changed)
|
|
|
|
* int unsaved_changes()
|
2011-09-20 19:40:34 +00:00
|
|
|
*/
|
2011-08-31 17:27:58 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2011-09-04 18:14:33 +00:00
|
|
|
#include <string.h>
|
2011-08-31 17:27:58 +00:00
|
|
|
#include <time.h>
|
2011-09-22 20:45:53 +00:00
|
|
|
#include <math.h>
|
2011-08-31 17:27:58 +00:00
|
|
|
|
2011-09-05 19:12:58 +00:00
|
|
|
#include "divelist.h"
|
2011-08-31 17:27:58 +00:00
|
|
|
#include "dive.h"
|
|
|
|
#include "display.h"
|
2011-09-20 19:40:34 +00:00
|
|
|
#include "display-gtk.h"
|
2011-08-31 17:27:58 +00:00
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
struct DiveList {
|
|
|
|
GtkWidget *tree_view;
|
|
|
|
GtkWidget *container_widget;
|
|
|
|
GtkListStore *model;
|
|
|
|
GtkTreeViewColumn *date, *depth, *duration, *location;
|
2011-09-27 17:16:40 +00:00
|
|
|
GtkTreeViewColumn *temperature, *cylinder, *nitrox, *sac, *otu;
|
2011-09-21 04:29:09 +00:00
|
|
|
int changed;
|
2011-09-20 17:06:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct DiveList dive_list;
|
|
|
|
|
2011-09-19 19:25:16 +00:00
|
|
|
/*
|
|
|
|
* The dive list has the dive data in both string format (for showing)
|
|
|
|
* and in "raw" format (for sorting purposes)
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
DIVE_INDEX = 0,
|
|
|
|
DIVE_DATE, /* time_t: dive->when */
|
|
|
|
DIVE_DEPTH, /* int: dive->maxdepth in mm */
|
|
|
|
DIVE_DURATION, /* int: in seconds */
|
2011-09-20 02:13:36 +00:00
|
|
|
DIVE_TEMPERATURE, /* int: in mkelvin */
|
2011-09-20 03:06:54 +00:00
|
|
|
DIVE_CYLINDER,
|
2011-09-19 19:56:37 +00:00
|
|
|
DIVE_NITROX, /* int: in permille */
|
2011-09-20 02:13:36 +00:00
|
|
|
DIVE_SAC, /* int: in ml/min */
|
2011-09-22 21:02:26 +00:00
|
|
|
DIVE_OTU, /* int: in OTUs */
|
2011-09-22 18:02:28 +00:00
|
|
|
DIVE_LOCATION, /* "2nd Cathedral, Lanai" */
|
2011-09-19 19:56:37 +00:00
|
|
|
DIVELIST_COLUMNS
|
2011-09-19 19:25:16 +00:00
|
|
|
};
|
|
|
|
|
2011-08-31 17:46:28 +00:00
|
|
|
static void selection_cb(GtkTreeSelection *selection, GtkTreeModel *model)
|
2011-08-31 17:27:58 +00:00
|
|
|
{
|
|
|
|
GtkTreeIter iter;
|
2011-08-31 17:46:28 +00:00
|
|
|
GValue value = {0, };
|
|
|
|
|
|
|
|
if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
|
|
|
|
return;
|
2011-08-31 17:27:58 +00:00
|
|
|
|
2011-09-19 19:25:16 +00:00
|
|
|
gtk_tree_model_get_value(model, &iter, DIVE_INDEX, &value);
|
2011-08-31 18:07:31 +00:00
|
|
|
selected_dive = g_value_get_int(&value);
|
|
|
|
repaint_dive();
|
2011-08-31 17:46:28 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 01:44:47 +00:00
|
|
|
static void date_data_func(GtkTreeViewColumn *col,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gpointer data)
|
2011-09-19 22:39:29 +00:00
|
|
|
{
|
2011-09-20 01:44:47 +00:00
|
|
|
int val;
|
2011-09-19 22:39:29 +00:00
|
|
|
struct tm *tm;
|
2011-09-20 01:44:47 +00:00
|
|
|
time_t when;
|
2011-09-19 22:39:29 +00:00
|
|
|
char buffer[40];
|
|
|
|
|
2011-09-20 01:44:47 +00:00
|
|
|
gtk_tree_model_get(model, iter, DIVE_DATE, &val, -1);
|
|
|
|
|
2011-09-19 22:39:29 +00:00
|
|
|
/* 2038 problem */
|
2011-09-20 01:44:47 +00:00
|
|
|
when = val;
|
2011-09-19 22:39:29 +00:00
|
|
|
|
2011-09-20 01:44:47 +00:00
|
|
|
tm = gmtime(&when);
|
2011-09-19 22:39:29 +00:00
|
|
|
snprintf(buffer, sizeof(buffer),
|
|
|
|
"%s, %s %d, %d %02d:%02d",
|
|
|
|
weekday(tm->tm_wday),
|
|
|
|
monthname(tm->tm_mon),
|
|
|
|
tm->tm_mday, tm->tm_year + 1900,
|
|
|
|
tm->tm_hour, tm->tm_min);
|
2011-09-20 01:44:47 +00:00
|
|
|
g_object_set(renderer, "text", buffer, NULL);
|
2011-09-19 22:39:29 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 01:52:23 +00:00
|
|
|
static void depth_data_func(GtkTreeViewColumn *col,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gpointer data)
|
2011-09-19 22:39:29 +00:00
|
|
|
{
|
2011-09-20 01:52:23 +00:00
|
|
|
int depth, integer, frac, len;
|
|
|
|
char buffer[40];
|
|
|
|
|
|
|
|
gtk_tree_model_get(model, iter, DIVE_DEPTH, &depth, -1);
|
2011-09-19 22:39:29 +00:00
|
|
|
|
|
|
|
switch (output_units.length) {
|
|
|
|
case METERS:
|
|
|
|
/* To tenths of meters */
|
|
|
|
depth = (depth + 49) / 100;
|
|
|
|
integer = depth / 10;
|
|
|
|
frac = depth % 10;
|
|
|
|
if (integer < 20)
|
|
|
|
break;
|
|
|
|
frac = -1;
|
|
|
|
/* Rounding? */
|
|
|
|
break;
|
|
|
|
case FEET:
|
2011-09-20 01:52:23 +00:00
|
|
|
integer = mm_to_feet(depth) + 0.5;
|
2011-09-19 22:39:29 +00:00
|
|
|
frac = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
2011-09-20 01:52:23 +00:00
|
|
|
len = snprintf(buffer, sizeof(buffer), "%d", integer);
|
2011-09-19 22:39:29 +00:00
|
|
|
if (frac >= 0)
|
2011-09-20 01:52:23 +00:00
|
|
|
len += snprintf(buffer+len, sizeof(buffer)-len, ".%d", frac);
|
|
|
|
|
|
|
|
g_object_set(renderer, "text", buffer, NULL);
|
2011-09-19 22:39:29 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 02:13:36 +00:00
|
|
|
static void duration_data_func(GtkTreeViewColumn *col,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gpointer data)
|
2011-09-19 22:39:29 +00:00
|
|
|
{
|
2011-09-20 02:13:36 +00:00
|
|
|
unsigned int sec;
|
2011-09-19 22:39:29 +00:00
|
|
|
char buffer[16];
|
|
|
|
|
2011-09-20 02:13:36 +00:00
|
|
|
gtk_tree_model_get(model, iter, DIVE_DURATION, &sec, -1);
|
2011-09-19 22:39:29 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%d:%02d", sec / 60, sec % 60);
|
|
|
|
|
2011-09-20 02:13:36 +00:00
|
|
|
g_object_set(renderer, "text", buffer, NULL);
|
2011-09-19 22:52:42 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 02:13:36 +00:00
|
|
|
static void temperature_data_func(GtkTreeViewColumn *col,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gpointer data)
|
2011-09-19 20:32:10 +00:00
|
|
|
{
|
2011-09-20 02:13:36 +00:00
|
|
|
int value;
|
2011-09-19 20:32:10 +00:00
|
|
|
char buffer[80];
|
|
|
|
|
2011-09-20 02:13:36 +00:00
|
|
|
gtk_tree_model_get(model, iter, DIVE_TEMPERATURE, &value, -1);
|
|
|
|
|
|
|
|
*buffer = 0;
|
2011-09-19 20:32:10 +00:00
|
|
|
if (value) {
|
|
|
|
double deg;
|
|
|
|
switch (output_units.temperature) {
|
|
|
|
case CELSIUS:
|
|
|
|
deg = mkelvin_to_C(value);
|
|
|
|
break;
|
|
|
|
case FAHRENHEIT:
|
|
|
|
deg = mkelvin_to_F(value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
snprintf(buffer, sizeof(buffer), "%.1f", deg);
|
|
|
|
}
|
2011-09-20 02:13:36 +00:00
|
|
|
|
|
|
|
g_object_set(renderer, "text", buffer, NULL);
|
2011-09-19 20:32:10 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 02:13:36 +00:00
|
|
|
static void nitrox_data_func(GtkTreeViewColumn *col,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gpointer data)
|
2011-09-19 20:32:10 +00:00
|
|
|
{
|
2011-09-20 02:13:36 +00:00
|
|
|
int value;
|
2011-09-19 20:32:10 +00:00
|
|
|
char buffer[80];
|
|
|
|
|
2011-09-20 02:13:36 +00:00
|
|
|
gtk_tree_model_get(model, iter, DIVE_NITROX, &value, -1);
|
|
|
|
|
|
|
|
if (value)
|
2011-09-19 20:32:10 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%.1f", value/10.0);
|
2011-09-20 02:13:36 +00:00
|
|
|
else
|
|
|
|
strcpy(buffer, "air");
|
|
|
|
|
|
|
|
g_object_set(renderer, "text", buffer, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Render the SAC data (integer value of "ml / min") */
|
|
|
|
static void sac_data_func(GtkTreeViewColumn *col,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
int value;
|
|
|
|
const double liters_per_cuft = 28.317;
|
|
|
|
const char *fmt;
|
|
|
|
char buffer[16];
|
|
|
|
double sac;
|
|
|
|
|
|
|
|
gtk_tree_model_get(model, iter, DIVE_SAC, &value, -1);
|
|
|
|
|
|
|
|
if (!value) {
|
|
|
|
g_object_set(renderer, "text", "", NULL);
|
|
|
|
return;
|
2011-09-19 20:32:10 +00:00
|
|
|
}
|
2011-09-20 02:13:36 +00:00
|
|
|
|
|
|
|
sac = value / 1000.0;
|
|
|
|
switch (output_units.volume) {
|
|
|
|
case LITER:
|
2011-09-20 16:56:46 +00:00
|
|
|
fmt = "%4.1f";
|
2011-09-20 02:13:36 +00:00
|
|
|
break;
|
|
|
|
case CUFT:
|
|
|
|
fmt = "%4.2f";
|
|
|
|
sac /= liters_per_cuft;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
snprintf(buffer, sizeof(buffer), fmt, sac);
|
|
|
|
|
|
|
|
g_object_set(renderer, "text", buffer, NULL);
|
2011-09-19 20:32:10 +00:00
|
|
|
}
|
|
|
|
|
2011-09-22 21:02:26 +00:00
|
|
|
/* Render the OTU data (integer value of "OTU") */
|
|
|
|
static void otu_data_func(GtkTreeViewColumn *col,
|
|
|
|
GtkCellRenderer *renderer,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
int value;
|
|
|
|
char buffer[16];
|
|
|
|
|
|
|
|
gtk_tree_model_get(model, iter, DIVE_OTU, &value, -1);
|
|
|
|
|
|
|
|
if (!value) {
|
|
|
|
g_object_set(renderer, "text", "", NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer), "%d", value);
|
|
|
|
|
|
|
|
g_object_set(renderer, "text", buffer, NULL);
|
|
|
|
}
|
|
|
|
|
2011-09-22 20:45:53 +00:00
|
|
|
/* calculate OTU for a dive */
|
2011-09-22 21:02:26 +00:00
|
|
|
static int calculate_otu(struct dive *dive)
|
2011-09-22 20:45:53 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
double otu = 0.0;
|
|
|
|
|
|
|
|
for (i = 1; i < dive->samples; i++) {
|
|
|
|
int t;
|
|
|
|
double po2;
|
|
|
|
struct sample *sample = dive->sample + i;
|
|
|
|
struct sample *psample = sample - 1;
|
|
|
|
t = sample->time.seconds - psample->time.seconds;
|
|
|
|
po2 = dive->cylinder[sample->cylinderindex].gasmix.o2.permille / 1000.0 *
|
|
|
|
(sample->depth.mm + 10000) / 10000.0;
|
|
|
|
if (po2 >= 0.5)
|
|
|
|
otu += pow(po2 - 0.5, 0.83) * t / 30.0;
|
|
|
|
}
|
2011-09-22 21:02:26 +00:00
|
|
|
return otu + 0.5;
|
2011-09-22 20:45:53 +00:00
|
|
|
}
|
2011-09-19 23:11:38 +00:00
|
|
|
/*
|
|
|
|
* Return air usage (in liters).
|
|
|
|
*/
|
|
|
|
static double calculate_airuse(struct dive *dive)
|
|
|
|
{
|
|
|
|
double airuse = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_CYLINDERS; i++) {
|
|
|
|
cylinder_t *cyl = dive->cylinder + i;
|
|
|
|
int size = cyl->type.size.mliter;
|
|
|
|
double kilo_atm;
|
|
|
|
|
|
|
|
if (!size)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
kilo_atm = (cyl->start.mbar - cyl->end.mbar) / 1013250.0;
|
|
|
|
|
|
|
|
/* Liters of air at 1 atm == milliliters at 1k atm*/
|
|
|
|
airuse += kilo_atm * size;
|
|
|
|
}
|
|
|
|
return airuse;
|
|
|
|
}
|
|
|
|
|
2011-09-20 02:13:36 +00:00
|
|
|
static void get_sac(struct dive *dive, int *val)
|
2011-09-19 20:32:10 +00:00
|
|
|
{
|
2011-09-19 23:11:38 +00:00
|
|
|
double airuse, pressure, sac;
|
|
|
|
|
2011-09-19 20:32:10 +00:00
|
|
|
*val = 0;
|
2011-09-19 23:11:38 +00:00
|
|
|
airuse = calculate_airuse(dive);
|
|
|
|
if (!airuse)
|
|
|
|
return;
|
|
|
|
if (!dive->duration.seconds)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Mean pressure in atm: 1 atm per 10m */
|
|
|
|
pressure = 1 + (dive->meandepth.mm / 10000.0);
|
|
|
|
sac = airuse / pressure * 60 / dive->duration.seconds;
|
|
|
|
|
|
|
|
/* milliliters per minute.. */
|
|
|
|
*val = sac * 1000;
|
2011-09-20 02:13:36 +00:00
|
|
|
}
|
2011-09-19 23:11:38 +00:00
|
|
|
|
2011-09-20 03:06:54 +00:00
|
|
|
static void get_string(char **str, const char *s)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char *n;
|
|
|
|
|
|
|
|
if (!s)
|
|
|
|
s = "";
|
|
|
|
len = strlen(s);
|
2011-09-20 16:57:38 +00:00
|
|
|
if (len > 40)
|
|
|
|
len = 40;
|
2011-09-20 03:06:54 +00:00
|
|
|
n = malloc(len+1);
|
|
|
|
memcpy(n, s, len);
|
|
|
|
n[len] = 0;
|
|
|
|
*str = n;
|
|
|
|
}
|
|
|
|
|
2011-09-20 02:13:36 +00:00
|
|
|
static void get_location(struct dive *dive, char **str)
|
|
|
|
{
|
2011-09-20 03:06:54 +00:00
|
|
|
get_string(str, dive->location);
|
|
|
|
}
|
2011-09-19 23:11:38 +00:00
|
|
|
|
2011-09-20 03:06:54 +00:00
|
|
|
static void get_cylinder(struct dive *dive, char **str)
|
|
|
|
{
|
|
|
|
get_string(str, dive->cylinder[0].type.description);
|
2011-09-19 20:32:10 +00:00
|
|
|
}
|
|
|
|
|
2011-09-19 23:41:56 +00:00
|
|
|
static void fill_one_dive(struct dive *dive,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter)
|
2011-09-07 19:01:37 +00:00
|
|
|
{
|
2011-09-20 02:13:36 +00:00
|
|
|
int sac;
|
2011-09-20 03:06:54 +00:00
|
|
|
char *location, *cylinder;
|
2011-09-07 19:01:37 +00:00
|
|
|
|
2011-09-20 03:06:54 +00:00
|
|
|
get_cylinder(dive, &cylinder);
|
2011-09-19 22:52:42 +00:00
|
|
|
get_location(dive, &location);
|
2011-09-20 02:13:36 +00:00
|
|
|
get_sac(dive, &sac);
|
2011-09-19 20:32:10 +00:00
|
|
|
|
2011-09-19 19:25:16 +00:00
|
|
|
/*
|
|
|
|
* We only set the fields that changed: the strings.
|
|
|
|
* The core data itself is unaffected by units
|
|
|
|
*/
|
2011-09-07 19:01:37 +00:00
|
|
|
gtk_list_store_set(GTK_LIST_STORE(model), iter,
|
2011-09-19 22:52:42 +00:00
|
|
|
DIVE_LOCATION, location,
|
2011-09-20 03:06:54 +00:00
|
|
|
DIVE_CYLINDER, cylinder,
|
2011-09-19 23:11:38 +00:00
|
|
|
DIVE_SAC, sac,
|
2011-09-22 21:02:26 +00:00
|
|
|
DIVE_OTU, dive->otu,
|
2011-09-07 19:01:37 +00:00
|
|
|
-1);
|
2011-09-19 23:41:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean set_one_dive(GtkTreeModel *model,
|
|
|
|
GtkTreePath *path,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GValue value = {0, };
|
|
|
|
struct dive *dive;
|
|
|
|
|
|
|
|
/* Get the dive number */
|
|
|
|
gtk_tree_model_get_value(model, iter, DIVE_INDEX, &value);
|
|
|
|
dive = get_dive(g_value_get_int(&value));
|
|
|
|
if (!dive)
|
|
|
|
return TRUE;
|
|
|
|
if (data && dive != data)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
fill_one_dive(dive, model, iter);
|
|
|
|
return dive == data;
|
|
|
|
}
|
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
void flush_divelist(struct dive *dive)
|
2011-09-19 23:41:56 +00:00
|
|
|
{
|
2011-09-20 17:06:24 +00:00
|
|
|
GtkTreeModel *model = GTK_TREE_MODEL(dive_list.model);
|
2011-09-07 19:01:37 +00:00
|
|
|
|
2011-09-19 23:41:56 +00:00
|
|
|
gtk_tree_model_foreach(model, set_one_dive, dive);
|
2011-09-07 19:01:37 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 18:24:15 +00:00
|
|
|
void set_divelist_font(const char *font)
|
|
|
|
{
|
|
|
|
PangoFontDescription *font_desc = pango_font_description_from_string(font);
|
|
|
|
gtk_widget_modify_font(dive_list.tree_view, font_desc);
|
|
|
|
pango_font_description_free(font_desc);
|
|
|
|
}
|
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
void update_dive_list_units(void)
|
2011-08-31 17:46:28 +00:00
|
|
|
{
|
2011-09-07 15:56:47 +00:00
|
|
|
const char *unit;
|
2011-09-20 17:06:24 +00:00
|
|
|
GtkTreeModel *model = GTK_TREE_MODEL(dive_list.model);
|
2011-09-07 15:56:47 +00:00
|
|
|
|
|
|
|
switch (output_units.length) {
|
|
|
|
case METERS:
|
2011-09-22 15:11:12 +00:00
|
|
|
unit = "m";
|
2011-09-07 15:56:47 +00:00
|
|
|
break;
|
|
|
|
case FEET:
|
2011-09-22 15:11:12 +00:00
|
|
|
unit = "ft";
|
2011-09-07 15:56:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-09-20 17:06:24 +00:00
|
|
|
gtk_tree_view_column_set_title(dive_list.depth, unit);
|
2011-08-31 17:27:58 +00:00
|
|
|
|
2011-09-20 16:56:46 +00:00
|
|
|
switch (output_units.temperature) {
|
|
|
|
case CELSIUS:
|
2011-09-21 00:52:04 +00:00
|
|
|
unit = UTF8_DEGREE "C";
|
2011-09-20 16:56:46 +00:00
|
|
|
break;
|
|
|
|
case FAHRENHEIT:
|
2011-09-21 00:52:04 +00:00
|
|
|
unit = UTF8_DEGREE "F";
|
2011-09-20 16:56:46 +00:00
|
|
|
break;
|
|
|
|
case KELVIN:
|
|
|
|
unit = "Kelvin";
|
|
|
|
break;
|
|
|
|
}
|
2011-09-20 17:08:27 +00:00
|
|
|
gtk_tree_view_column_set_title(dive_list.temperature, unit);
|
2011-09-20 16:56:46 +00:00
|
|
|
|
2011-09-07 19:01:37 +00:00
|
|
|
gtk_tree_model_foreach(model, set_one_dive, NULL);
|
|
|
|
}
|
|
|
|
|
2011-09-27 17:16:40 +00:00
|
|
|
void update_dive_list_col_visibility(void)
|
|
|
|
{
|
2011-10-02 20:05:12 +00:00
|
|
|
gtk_tree_view_column_set_visible(dive_list.sac, visible_cols.sac);
|
|
|
|
gtk_tree_view_column_set_visible(dive_list.otu, visible_cols.otu);
|
|
|
|
return;
|
2011-09-27 17:16:40 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
static void fill_dive_list(void)
|
2011-09-07 19:01:37 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
GtkTreeIter iter;
|
|
|
|
GtkListStore *store;
|
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
store = GTK_LIST_STORE(dive_list.model);
|
2011-09-07 19:01:37 +00:00
|
|
|
|
2011-08-31 17:27:58 +00:00
|
|
|
for (i = 0; i < dive_table.nr; i++) {
|
|
|
|
struct dive *dive = dive_table.dives[i];
|
|
|
|
|
2011-09-22 20:45:53 +00:00
|
|
|
dive->otu = calculate_otu(dive);
|
2011-08-31 17:27:58 +00:00
|
|
|
gtk_list_store_append(store, &iter);
|
|
|
|
gtk_list_store_set(store, &iter,
|
2011-09-19 19:25:16 +00:00
|
|
|
DIVE_INDEX, i,
|
|
|
|
DIVE_DATE, dive->when,
|
|
|
|
DIVE_DEPTH, dive->maxdepth,
|
|
|
|
DIVE_DURATION, dive->duration.seconds,
|
2011-09-19 22:52:42 +00:00
|
|
|
DIVE_LOCATION, "location",
|
2011-09-20 02:13:36 +00:00
|
|
|
DIVE_TEMPERATURE, dive->watertemp.mkelvin,
|
2011-09-19 20:32:10 +00:00
|
|
|
DIVE_NITROX, dive->cylinder[0].gasmix.o2,
|
|
|
|
DIVE_SAC, 0,
|
2011-08-31 17:27:58 +00:00
|
|
|
-1);
|
|
|
|
}
|
2011-09-07 19:01:37 +00:00
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
update_dive_list_units();
|
2011-09-22 15:19:34 +00:00
|
|
|
if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(dive_list.model), &iter)) {
|
|
|
|
GtkTreeSelection *selection;
|
|
|
|
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(dive_list.tree_view));
|
|
|
|
gtk_tree_selection_select_iter(selection, &iter);
|
|
|
|
}
|
2011-08-31 17:27:58 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
void dive_list_update_dives(void)
|
2011-08-31 17:27:58 +00:00
|
|
|
{
|
2011-09-05 19:12:58 +00:00
|
|
|
gtk_list_store_clear(GTK_LIST_STORE(dive_list.model));
|
2011-09-20 17:06:24 +00:00
|
|
|
fill_dive_list();
|
2011-09-06 03:50:52 +00:00
|
|
|
repaint_dive();
|
2011-09-05 19:12:58 +00:00
|
|
|
}
|
|
|
|
|
2011-09-20 04:39:15 +00:00
|
|
|
static GtkTreeViewColumn *divelist_column(struct DiveList *dl, int index, const char *title,
|
2011-10-02 20:05:12 +00:00
|
|
|
data_func_t data_func, PangoAlignment align, gboolean visible)
|
2011-09-20 04:39:15 +00:00
|
|
|
{
|
2011-10-02 20:05:12 +00:00
|
|
|
return tree_view_column(dl->tree_view, index, title, data_func, align, visible);
|
2011-09-20 04:39:15 +00:00
|
|
|
}
|
|
|
|
|
2011-09-22 17:28:57 +00:00
|
|
|
/*
|
|
|
|
* This is some crazy crap. The only way to get default focus seems
|
|
|
|
* to be to grab focus as the widget is being shown the first time.
|
|
|
|
*/
|
|
|
|
static void realize_cb(GtkWidget *tree_view, gpointer userdata)
|
|
|
|
{
|
|
|
|
gtk_widget_grab_focus(tree_view);
|
|
|
|
}
|
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
GtkWidget *dive_list_create(void)
|
2011-09-05 19:12:58 +00:00
|
|
|
{
|
2011-08-31 17:46:28 +00:00
|
|
|
GtkTreeSelection *selection;
|
|
|
|
|
2011-09-19 19:56:37 +00:00
|
|
|
dive_list.model = gtk_list_store_new(DIVELIST_COLUMNS,
|
2011-09-19 19:25:16 +00:00
|
|
|
G_TYPE_INT, /* index */
|
2011-09-20 01:44:47 +00:00
|
|
|
G_TYPE_INT, /* Date */
|
2011-09-20 01:52:23 +00:00
|
|
|
G_TYPE_INT, /* Depth */
|
2011-09-20 02:13:36 +00:00
|
|
|
G_TYPE_INT, /* Duration */
|
|
|
|
G_TYPE_INT, /* Temperature */
|
2011-09-20 03:06:54 +00:00
|
|
|
G_TYPE_STRING, /* Cylinder */
|
2011-09-20 02:13:36 +00:00
|
|
|
G_TYPE_INT, /* Nitrox */
|
2011-09-22 18:02:28 +00:00
|
|
|
G_TYPE_INT, /* SAC */
|
2011-09-22 21:02:26 +00:00
|
|
|
G_TYPE_INT, /* OTU */
|
2011-09-22 18:02:28 +00:00
|
|
|
G_TYPE_STRING /* Location */
|
2011-09-19 19:25:16 +00:00
|
|
|
);
|
2011-09-05 19:12:58 +00:00
|
|
|
dive_list.tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(dive_list.model));
|
2011-09-20 18:24:15 +00:00
|
|
|
set_divelist_font(divelist_font);
|
2011-09-20 05:01:55 +00:00
|
|
|
|
2011-09-05 19:12:58 +00:00
|
|
|
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(dive_list.tree_view));
|
2011-08-31 17:46:28 +00:00
|
|
|
|
|
|
|
gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
|
2011-09-20 03:06:54 +00:00
|
|
|
gtk_widget_set_size_request(dive_list.tree_view, 200, 200);
|
2011-08-31 17:27:58 +00:00
|
|
|
|
2011-09-22 21:02:26 +00:00
|
|
|
dive_list.date = divelist_column(&dive_list, DIVE_DATE, "Date", date_data_func, PANGO_ALIGN_LEFT, TRUE);
|
|
|
|
dive_list.depth = divelist_column(&dive_list, DIVE_DEPTH, "ft", depth_data_func, PANGO_ALIGN_RIGHT, TRUE);
|
|
|
|
dive_list.duration = divelist_column(&dive_list, DIVE_DURATION, "min", duration_data_func, PANGO_ALIGN_RIGHT, TRUE);
|
|
|
|
dive_list.temperature = divelist_column(&dive_list, DIVE_TEMPERATURE, UTF8_DEGREE "F", temperature_data_func, PANGO_ALIGN_RIGHT, TRUE);
|
|
|
|
dive_list.cylinder = divelist_column(&dive_list, DIVE_CYLINDER, "Cyl", NULL, PANGO_ALIGN_CENTER, TRUE);
|
|
|
|
dive_list.nitrox = divelist_column(&dive_list, DIVE_NITROX, "O" UTF8_SUBSCRIPT_2 "%", nitrox_data_func, PANGO_ALIGN_CENTER, TRUE);
|
2011-09-27 17:16:40 +00:00
|
|
|
dive_list.sac = divelist_column(&dive_list, DIVE_SAC, "SAC", sac_data_func, PANGO_ALIGN_CENTER, visible_cols.sac);
|
|
|
|
dive_list.otu = divelist_column(&dive_list, DIVE_OTU, "OTU", otu_data_func, PANGO_ALIGN_CENTER, visible_cols.otu);
|
2011-09-22 21:02:26 +00:00
|
|
|
dive_list.location = divelist_column(&dive_list, DIVE_LOCATION, "Location", NULL, PANGO_ALIGN_LEFT, TRUE);
|
2011-09-19 19:56:37 +00:00
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
fill_dive_list();
|
2011-09-07 15:56:47 +00:00
|
|
|
|
2011-09-05 19:12:58 +00:00
|
|
|
g_object_set(G_OBJECT(dive_list.tree_view), "headers-visible", TRUE,
|
2011-09-22 15:17:23 +00:00
|
|
|
"search-column", DIVE_LOCATION,
|
2011-09-04 22:18:58 +00:00
|
|
|
"rules-hint", TRUE,
|
2011-08-31 17:46:28 +00:00
|
|
|
NULL);
|
2011-08-31 17:27:58 +00:00
|
|
|
|
2011-09-22 17:28:57 +00:00
|
|
|
g_signal_connect_after(dive_list.tree_view, "realize", G_CALLBACK(realize_cb), NULL);
|
2011-09-05 19:12:58 +00:00
|
|
|
g_signal_connect(selection, "changed", G_CALLBACK(selection_cb), dive_list.model);
|
2011-08-31 17:27:58 +00:00
|
|
|
|
2011-09-05 19:12:58 +00:00
|
|
|
dive_list.container_widget = gtk_scrolled_window_new(NULL, NULL);
|
|
|
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(dive_list.container_widget),
|
2011-09-20 05:09:47 +00:00
|
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
|
2011-09-05 19:12:58 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(dive_list.container_widget), dive_list.tree_view);
|
2011-08-31 17:27:58 +00:00
|
|
|
|
2011-09-21 04:29:09 +00:00
|
|
|
dive_list.changed = 0;
|
|
|
|
|
2011-09-20 17:06:24 +00:00
|
|
|
return dive_list.container_widget;
|
2011-08-31 17:27:58 +00:00
|
|
|
}
|
2011-09-21 04:29:09 +00:00
|
|
|
|
|
|
|
void mark_divelist_changed(int changed)
|
|
|
|
{
|
|
|
|
dive_list.changed = changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
int unsaved_changes()
|
|
|
|
{
|
|
|
|
return dive_list.changed;
|
|
|
|
}
|