2017-04-27 18:18:03 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
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
|
|
|
|
|
2014-06-26 17:01:31 +00:00
|
|
|
#include "units.h"
|
2015-07-01 19:32:46 +00:00
|
|
|
#include "taxonomy.h"
|
2014-06-26 17:01:31 +00:00
|
|
|
|
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;
|
2017-03-24 18:11:31 +00:00
|
|
|
double po2_threshold_min;
|
|
|
|
double po2_threshold_max;
|
2013-01-11 01:26:10 +00:00
|
|
|
double pn2_threshold;
|
|
|
|
double phe_threshold;
|
|
|
|
} partial_pressure_graphs_t;
|
|
|
|
|
2014-12-23 23:45:06 +00:00
|
|
|
typedef struct {
|
|
|
|
char *access_token;
|
2014-12-24 23:34:23 +00:00
|
|
|
char *user_id;
|
|
|
|
char *album_id;
|
2014-12-23 23:45:06 +00:00
|
|
|
} facebook_prefs_t;
|
|
|
|
|
2015-06-22 21:44:05 +00:00
|
|
|
typedef struct {
|
|
|
|
bool enable_geocoding;
|
|
|
|
bool parse_dive_without_gps;
|
|
|
|
bool tag_existing_dives;
|
2015-07-01 19:32:46 +00:00
|
|
|
enum taxonomy_category category[3];
|
2015-06-22 21:44:05 +00:00
|
|
|
} geocoding_prefs_t;
|
|
|
|
|
2016-01-22 18:55:03 +00:00
|
|
|
typedef struct {
|
|
|
|
const char *language;
|
2016-09-20 19:35:49 +00:00
|
|
|
const char *lang_locale;
|
2016-01-22 18:55:03 +00:00
|
|
|
bool use_system_language;
|
|
|
|
} locale_prefs_t;
|
|
|
|
|
2015-07-03 21:07:58 +00:00
|
|
|
enum deco_mode {
|
|
|
|
BUEHLMANN,
|
|
|
|
RECREATIONAL,
|
|
|
|
VPMB
|
|
|
|
};
|
|
|
|
|
2016-08-10 18:50:00 +00:00
|
|
|
typedef struct {
|
|
|
|
bool dont_check_for_updates;
|
2016-08-27 19:26:13 +00:00
|
|
|
bool dont_check_exists;
|
2016-08-10 18:50:00 +00:00
|
|
|
char *last_version_used;
|
|
|
|
char *next_check;
|
|
|
|
} update_manager_prefs_t;
|
|
|
|
|
2016-08-10 21:10:15 +00:00
|
|
|
typedef struct {
|
|
|
|
char *vendor;
|
|
|
|
char *product;
|
|
|
|
char *device;
|
|
|
|
int download_mode;
|
|
|
|
} dive_computer_prefs_t;
|
|
|
|
|
2013-01-11 01:26:10 +00:00
|
|
|
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;
|
2015-06-15 12:52:12 +00:00
|
|
|
const char *cloud_base_url;
|
|
|
|
const char *cloud_git_url;
|
2015-10-29 23:57:43 +00:00
|
|
|
const char *time_format;
|
|
|
|
const char *date_format;
|
|
|
|
const char *date_format_short;
|
|
|
|
bool time_format_override;
|
|
|
|
bool date_format_override;
|
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-06-22 14:41:44 +00:00
|
|
|
double modpO2;
|
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-07-21 22:10:31 +00:00
|
|
|
int animation_speed;
|
2013-11-20 15:11:22 +00:00
|
|
|
bool gf_low_at_maxdepth;
|
2015-01-05 07:20:26 +00:00
|
|
|
bool show_ccr_setpoint;
|
2015-01-20 18:13:53 +00:00
|
|
|
bool show_ccr_sensors;
|
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;
|
2015-05-20 10:25:46 +00:00
|
|
|
bool coordinates_traditional;
|
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;
|
2014-09-15 12:09:00 +00:00
|
|
|
short percentagegraph;
|
2014-05-05 22:53:46 +00:00
|
|
|
short rulergraph;
|
2014-08-15 14:11:14 +00:00
|
|
|
short tankbar;
|
2014-04-17 14:34:21 +00:00
|
|
|
short save_userid_local;
|
|
|
|
char *userid;
|
2015-08-23 14:00:02 +00:00
|
|
|
int ascrate75; // All rates in mm / sec
|
2014-06-24 22:08:36 +00:00
|
|
|
int ascrate50;
|
|
|
|
int ascratestops;
|
|
|
|
int ascratelast6m;
|
|
|
|
int descrate;
|
2017-02-11 19:24:18 +00:00
|
|
|
int sacfactor;
|
|
|
|
int problemsolvingtime;
|
2014-06-24 22:08:36 +00:00
|
|
|
int bottompo2;
|
|
|
|
int decopo2;
|
2016-11-01 16:00:06 +00:00
|
|
|
enum deco_mode display_deco_mode;
|
2016-07-06 12:40:31 +00:00
|
|
|
depth_t bestmixend;
|
2014-06-26 16:16:55 +00:00
|
|
|
int proxy_type;
|
|
|
|
char *proxy_host;
|
|
|
|
int proxy_port;
|
|
|
|
short proxy_auth;
|
|
|
|
char *proxy_user;
|
|
|
|
char *proxy_pass;
|
2014-07-02 20:07:38 +00:00
|
|
|
bool doo2breaks;
|
2014-07-09 21:37:30 +00:00
|
|
|
bool drop_stone_mode;
|
2015-08-23 14:00:02 +00:00
|
|
|
bool last_stop; // At 6m?
|
2015-03-24 21:57:22 +00:00
|
|
|
bool verbatim_plan;
|
|
|
|
bool display_runtime;
|
|
|
|
bool display_duration;
|
|
|
|
bool display_transitions;
|
2015-04-02 08:32:14 +00:00
|
|
|
bool safetystop;
|
2015-06-22 11:48:42 +00:00
|
|
|
bool switch_at_req_stop;
|
2015-04-09 15:41:41 +00:00
|
|
|
int reserve_gas;
|
2015-06-19 10:25:03 +00:00
|
|
|
int min_switch_duration; // seconds
|
2014-07-17 03:32:06 +00:00
|
|
|
int bottomsac;
|
|
|
|
int decosac;
|
2014-10-24 14:40:21 +00:00
|
|
|
int o2consumption; // ml per min
|
|
|
|
int pscr_ratio; // dump ratio times 1000
|
2015-01-01 16:00:46 +00:00
|
|
|
int defaultsetpoint; // default setpoint in mbar
|
2014-07-10 16:50:49 +00:00
|
|
|
bool show_pictures_in_profile;
|
2014-07-16 21:40:49 +00:00
|
|
|
bool use_default_file;
|
2015-06-14 15:17:06 +00:00
|
|
|
short default_file_behavior;
|
2014-12-23 23:45:06 +00:00
|
|
|
facebook_prefs_t facebook;
|
2015-06-01 00:42:12 +00:00
|
|
|
char *cloud_storage_password;
|
2015-07-22 22:06:57 +00:00
|
|
|
char *cloud_storage_newpassword;
|
2015-06-01 00:42:12 +00:00
|
|
|
char *cloud_storage_email;
|
2015-06-01 05:11:27 +00:00
|
|
|
char *cloud_storage_email_encoded;
|
2015-06-01 00:42:12 +00:00
|
|
|
bool save_password_local;
|
2015-06-14 20:50:13 +00:00
|
|
|
short cloud_verification_status;
|
2015-06-12 18:48:56 +00:00
|
|
|
bool cloud_background_sync;
|
2015-06-22 21:44:05 +00:00
|
|
|
geocoding_prefs_t geocoding;
|
2017-01-07 02:11:19 +00:00
|
|
|
enum deco_mode planner_deco_mode;
|
2016-09-24 08:02:07 +00:00
|
|
|
short vpmb_conservatism;
|
2015-11-14 17:10:06 +00:00
|
|
|
int time_threshold;
|
|
|
|
int distance_threshold;
|
2015-12-27 16:31:08 +00:00
|
|
|
bool git_local_only;
|
2016-07-23 03:54:30 +00:00
|
|
|
short cloud_timeout;
|
2016-01-22 18:55:03 +00:00
|
|
|
locale_prefs_t locale; //: TODO: move the rest of locale based info here.
|
2016-08-10 18:50:00 +00:00
|
|
|
update_manager_prefs_t update_manager;
|
2016-08-10 21:10:15 +00:00
|
|
|
dive_computer_prefs_t dive_computer;
|
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
|
|
|
|
2015-06-14 15:17:06 +00:00
|
|
|
enum def_file_behavior {
|
|
|
|
UNDEFINED_DEFAULT_FILE,
|
|
|
|
LOCAL_DEFAULT_FILE,
|
|
|
|
NO_DEFAULT_FILE,
|
|
|
|
CLOUD_DEFAULT_FILE
|
|
|
|
};
|
|
|
|
|
2015-06-14 20:50:13 +00:00
|
|
|
enum cloud_status {
|
|
|
|
CS_UNKNOWN,
|
|
|
|
CS_INCORRECT_USER_PASSWD,
|
|
|
|
CS_NEED_TO_VERIFY,
|
|
|
|
CS_VERIFIED
|
|
|
|
};
|
|
|
|
|
2017-02-04 16:55:25 +00:00
|
|
|
extern struct preferences prefs, default_prefs, git_prefs;
|
2013-01-11 01:26:10 +00:00
|
|
|
|
|
|
|
#define PP_GRAPHS_ENABLED (prefs.pp_graphs.po2 || prefs.pp_graphs.pn2 || prefs.pp_graphs.phe)
|
|
|
|
|
2014-08-22 22:22:02 +00:00
|
|
|
extern const char *system_divelist_default_font;
|
2014-08-27 13:00:10 +00:00
|
|
|
extern double system_divelist_default_font_size;
|
2015-02-08 19:35:50 +00:00
|
|
|
|
|
|
|
extern const char *system_default_directory(void);
|
2013-01-12 01:07:22 +00:00
|
|
|
extern const char *system_default_filename();
|
2014-08-27 13:00:10 +00:00
|
|
|
extern bool subsurface_ignore_font(const char *font);
|
2014-08-22 22:22:02 +00:00
|
|
|
extern void subsurface_OS_pref_setup();
|
2013-01-11 18:14:10 +00:00
|
|
|
|
2013-04-01 10:51:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // PREF_H
|