mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Convert the atmospheric pressure in the Information Tab to an editable field
The Information tab shows the atmospheric pressure. Make this value editable and also ensure that changes to it are undo-able. Signed-off-by: willemferguson <willemferguson@zoology.up.ac.za>
This commit is contained in:
parent
ca6aa38139
commit
1bdf00b2b4
19 changed files with 323 additions and 20 deletions
|
@ -76,6 +76,13 @@ static weight_t get_weight(const char *line)
|
|||
return w;
|
||||
}
|
||||
|
||||
static pressure_t get_airpressure(const char *line)
|
||||
{
|
||||
pressure_t p;
|
||||
p.mbar = lrint(ascii_strtod(line, NULL));
|
||||
return p;
|
||||
}
|
||||
|
||||
static pressure_t get_pressure(const char *line)
|
||||
{
|
||||
pressure_t p;
|
||||
|
@ -245,6 +252,9 @@ static void parse_dive_airtemp(char *line, struct membuffer *str, void *_dive)
|
|||
static void parse_dive_watertemp(char *line, struct membuffer *str, void *_dive)
|
||||
{ UNUSED(str); struct dive *dive = _dive; dive->watertemp = get_temperature(line); }
|
||||
|
||||
static void parse_dive_airpressure(char *line, struct membuffer *str, void *_dive)
|
||||
{ UNUSED(str); struct dive *dive = _dive; dive->surface_pressure = get_airpressure(line); }
|
||||
|
||||
static void parse_dive_duration(char *line, struct membuffer *str, void *_dive)
|
||||
{ UNUSED(str); struct dive *dive = _dive; dive->duration = get_duration(line); }
|
||||
|
||||
|
@ -980,7 +990,7 @@ static void divecomputer_parser(char *line, struct membuffer *str, void *_dc)
|
|||
struct keyword_action dive_action[] = {
|
||||
#undef D
|
||||
#define D(x) { #x, parse_dive_ ## x }
|
||||
D(airtemp), D(buddy), D(cylinder), D(divemaster), D(divesiteid), D(duration),
|
||||
D(airpressure), D(airtemp), D(buddy), D(cylinder), D(divemaster), D(divesiteid), D(duration),
|
||||
D(gps), D(location), D(notes), D(notrip), D(rating), D(suit),
|
||||
D(tags), D(visibility), D(watertemp), D(weightsystem)
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue