summaryrefslogtreecommitdiffstats
path: root/pref.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2015-06-22 18:44:05 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-22 17:11:51 -0700
commit21c46b8c2d17fa03596d9334710d75d8cba44d8c (patch)
tree4fd36a29971baf6510de48388291fd16a76f4eb7 /pref.h
parentce4333e8fdb36645697ceaaf603bf5f0d5d16425 (diff)
downloadsubsurface-21c46b8c2d17fa03596d9334710d75d8cba44d8c.tar.gz
Preferences infrastructure for GeoManagement
Simple preferences infrastructure with default prefs, prefs and hooks for the Qt Settings system and our preferences ui. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'pref.h')
-rw-r--r--pref.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/pref.h b/pref.h
index ff5fd3dd8..d70e009ce 100644
--- a/pref.h
+++ b/pref.h
@@ -24,6 +24,15 @@ typedef struct {
char *album_id;
} facebook_prefs_t;
+typedef struct {
+ bool enable_geocoding;
+ bool parse_dive_without_gps;
+ bool tag_existing_dives;
+ char *first_item;
+ char *second_item;
+ char *third_item;
+} geocoding_prefs_t;
+
struct preferences {
const char *divelist_font;
const char *default_filename;
@@ -100,6 +109,7 @@ struct preferences {
bool save_password_local;
short cloud_verification_status;
bool cloud_background_sync;
+ geocoding_prefs_t geocoding;
};
enum unit_system_values {
METRIC,