/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* mateweather-prefs.c - Preference handling functions * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see * . */ #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE__NL_MEASUREMENT_MEASUREMENT #include #endif #define MATEWEATHER_I_KNOW_THIS_IS_UNSTABLE #include "mateweather-prefs.h" #include "weather-priv.h" void mateweather_prefs_load (MateWeatherPrefs *prefs, GSettings *settings) { g_return_if_fail (prefs != NULL); g_return_if_fail (settings != NULL); if (prefs->location) { weather_location_free (prefs->location); } gchar *name, *code, *zone, *radar, *coordinates; name = g_settings_get_string (settings, "location4"); code = g_settings_get_string (settings, "location1"); zone = g_settings_get_string (settings, "location2"); radar = g_settings_get_string (settings, "location3"); coordinates = g_settings_get_string (settings, "coordinates"); prefs->location = weather_location_new (name, code, zone, radar, coordinates, NULL, NULL); g_free (name); g_free (code); g_free (zone); g_free (radar); g_free (coordinates); prefs->update_interval = g_settings_get_int (settings, "auto-update-interval"); prefs->update_interval = MAX (prefs->update_interval, 60); prefs->update_enabled = g_settings_get_boolean (settings, "auto-update"); prefs->detailed = g_settings_get_boolean (settings, "enable-detailed-forecast"); prefs->radar_enabled = g_settings_get_boolean (settings, "enable-radar-map"); prefs->use_custom_radar_url = g_settings_get_boolean (settings, "use-custom-radar-url"); if (prefs->radar) { g_free (prefs->radar); prefs->radar = NULL; } prefs->radar = g_settings_get_string (settings, "radar"); prefs->temperature_unit = g_settings_get_enum (settings, GSETTINGS_TEMP_UNIT); prefs->speed_unit = g_settings_get_enum (settings, GSETTINGS_SPEED_UNIT); prefs->pressure_unit = g_settings_get_enum (settings, GSETTINGS_PRESSURE_UNIT); prefs->distance_unit = g_settings_get_enum (settings, GSETTINGS_DISTANCE_UNIT); return; }