2013-01-11 01:26:10 +00:00
|
|
|
#ifndef PREF_H
|
|
|
|
#define PREF_H
|
|
|
|
|
2013-04-01 10:51:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-05-28 18:21:27 +00:00
|
|
|
/* can't use 'bool' for the boolean values - different size in C and C++ */
|
2014-02-28 04:09:57 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2013-05-28 18:21:27 +00:00
|
|
|
short po2;
|
|
|
|
short pn2;
|
|
|
|
short phe;
|
2013-01-11 01:26:10 +00:00
|
|
|
double po2_threshold;
|
|
|
|
double pn2_threshold;
|
|
|
|
double phe_threshold;
|
|
|
|
} partial_pressure_graphs_t;
|
|
|
|
|
|
|
|
struct preferences {
|
2013-05-28 18:21:27 +00:00
|
|
|
const char *divelist_font;
|
|
|
|
const char *default_filename;
|
2013-11-23 23:34:17 +00:00
|
|
|
const char *default_cylinder;
|
2013-05-28 18:21:27 +00:00
|
|
|
double font_size;
|
2013-01-11 01:26:10 +00:00
|
|
|
partial_pressure_graphs_t pp_graphs;
|
2013-05-28 18:21:27 +00:00
|
|
|
short mod;
|
2014-04-16 20:03:44 +00:00
|
|
|
double modppO2;
|
2013-05-28 18:21:27 +00:00
|
|
|
short ead;
|
2014-04-16 20:03:44 +00:00
|
|
|
short dcceiling;
|
|
|
|
short redceiling;
|
|
|
|
short calcceiling;
|
|
|
|
short calcceiling3m;
|
|
|
|
short calcalltissues;
|
|
|
|
short calcndltts;
|
2013-05-28 18:21:27 +00:00
|
|
|
short gflow;
|
|
|
|
short gfhigh;
|
2014-04-07 17:12:34 +00:00
|
|
|
short animation;
|
2013-11-20 15:11:22 +00:00
|
|
|
bool gf_low_at_maxdepth;
|
2013-05-28 18:21:27 +00:00
|
|
|
short display_invalid_dives;
|
2013-06-03 12:08:49 +00:00
|
|
|
short unit_system;
|
2013-05-28 18:21:27 +00:00
|
|
|
struct units units;
|
2013-10-14 21:48:44 +00:00
|
|
|
short show_sac;
|
2014-04-16 20:03:44 +00:00
|
|
|
short display_unused_tanks;
|
|
|
|
short show_average_depth;
|
|
|
|
short zoomed_plot;
|
|
|
|
short hrgraph;
|
2013-01-11 01:26:10 +00:00
|
|
|
};
|
2014-02-28 04:09:57 +00:00
|
|
|
enum unit_system_values {
|
|
|
|
METRIC,
|
|
|
|
IMPERIAL,
|
|
|
|
PERSONALIZE
|
|
|
|
};
|
2013-01-11 01:26:10 +00:00
|
|
|
|
|
|
|
extern struct preferences prefs, default_prefs;
|
|
|
|
|
|
|
|
#define PP_GRAPHS_ENABLED (prefs.pp_graphs.po2 || prefs.pp_graphs.pn2 || prefs.pp_graphs.phe)
|
|
|
|
|
2013-04-01 10:51:49 +00:00
|
|
|
extern void subsurface_set_conf(const char *name, const char *value);
|
2013-05-28 18:21:27 +00:00
|
|
|
extern void subsurface_set_conf_bool(const char *name, bool value);
|
2013-04-01 10:51:49 +00:00
|
|
|
extern void subsurface_set_conf_int(const char *name, int value);
|
2013-01-11 01:26:10 +00:00
|
|
|
|
2013-01-12 01:07:22 +00:00
|
|
|
extern const char system_divelist_default_font[];
|
2014-03-21 17:56:10 +00:00
|
|
|
extern const int system_divelist_default_font_size;
|
2013-01-12 01:07:22 +00:00
|
|
|
extern const char *system_default_filename();
|
2013-01-11 18:14:10 +00:00
|
|
|
|
|
|
|
extern void load_preferences(void);
|
|
|
|
extern void save_preferences(void);
|
|
|
|
|
2013-04-01 10:51:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // PREF_H
|