2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-05-09 22:29:48 -04:00
|
|
|
* preferences.c
|
|
|
|
*
|
2013-01-10 21:05:29 -05:00
|
|
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-05-09 22:29:48 -04:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity 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 Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-05-09 22:37:24 -04:00
|
|
|
#include <stdlib.h>
|
2012-05-10 17:18:08 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
2012-05-09 22:29:48 -04:00
|
|
|
#include <glib.h>
|
2013-01-02 15:27:37 -05:00
|
|
|
#ifdef HAVE_NCURSESW_NCURSES_H
|
|
|
|
#include <ncursesw/ncurses.h>
|
2013-01-03 19:35:54 -05:00
|
|
|
#elif HAVE_NCURSES_H
|
|
|
|
#include <ncurses.h>
|
2012-09-08 11:51:09 -04:00
|
|
|
#endif
|
2012-05-09 22:29:48 -04:00
|
|
|
|
2013-02-02 17:18:08 -05:00
|
|
|
#include "common.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "log.h"
|
2013-02-02 17:18:08 -05:00
|
|
|
#include "preferences.h"
|
2013-02-02 16:43:59 -05:00
|
|
|
#include "tools/autocomplete.h"
|
2012-05-10 18:51:06 -04:00
|
|
|
|
2013-02-02 21:35:04 -05:00
|
|
|
#define PREF_GROUP_LOGGING "logging"
|
|
|
|
#define PREF_GROUP_CHATSTATES "chatstates"
|
|
|
|
#define PREF_GROUP_UI "ui"
|
|
|
|
#define PREF_GROUP_NOTIFICATIONS "notifications"
|
|
|
|
#define PREF_GROUP_PRESENCE "presence"
|
|
|
|
#define PREF_GROUP_CONNECTION "connection"
|
|
|
|
|
2012-11-25 16:40:49 -05:00
|
|
|
static gchar *prefs_loc;
|
2012-05-10 04:55:55 -04:00
|
|
|
static GKeyFile *prefs;
|
2012-11-12 04:13:03 -05:00
|
|
|
gint log_maxsize = 0;
|
2012-05-09 22:29:48 -04:00
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
static Autocomplete boolean_choice_ac;
|
2012-05-10 17:44:23 -04:00
|
|
|
|
2012-05-10 05:12:02 -04:00
|
|
|
static void _save_prefs(void);
|
2013-02-02 17:18:08 -05:00
|
|
|
static gchar * _get_preferences_file(void);
|
2012-05-10 05:02:03 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_load(void)
|
2012-05-09 22:29:48 -04:00
|
|
|
{
|
2012-11-12 04:13:03 -05:00
|
|
|
GError *err;
|
|
|
|
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Loading preferences");
|
2013-02-02 17:18:08 -05:00
|
|
|
prefs_loc = _get_preferences_file();
|
2012-05-09 22:29:48 -04:00
|
|
|
|
2012-05-10 04:55:55 -04:00
|
|
|
prefs = g_key_file_new();
|
2012-11-25 16:40:49 -05:00
|
|
|
g_key_file_load_from_file(prefs, prefs_loc, G_KEY_FILE_KEEP_COMMENTS,
|
2012-09-09 17:32:39 -04:00
|
|
|
NULL);
|
2012-05-10 17:44:23 -04:00
|
|
|
|
2012-11-12 04:13:03 -05:00
|
|
|
err = NULL;
|
2013-02-02 21:35:04 -05:00
|
|
|
log_maxsize = g_key_file_get_integer(prefs, PREF_GROUP_LOGGING, "maxsize", &err);
|
2012-11-12 04:13:03 -05:00
|
|
|
if (err != NULL) {
|
|
|
|
log_maxsize = 0;
|
|
|
|
g_error_free(err);
|
|
|
|
}
|
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
boolean_choice_ac = autocomplete_new();
|
|
|
|
autocomplete_add(boolean_choice_ac, strdup("on"));
|
|
|
|
autocomplete_add(boolean_choice_ac, strdup("off"));
|
2012-06-18 17:16:57 -04:00
|
|
|
}
|
|
|
|
|
2012-07-31 18:01:15 -04:00
|
|
|
void
|
|
|
|
prefs_close(void)
|
|
|
|
{
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_free(boolean_choice_ac);
|
2012-07-31 18:01:15 -04:00
|
|
|
g_key_file_free(prefs);
|
|
|
|
}
|
|
|
|
|
2012-10-22 17:15:06 -04:00
|
|
|
char *
|
|
|
|
prefs_autocomplete_boolean_choice(char *prefix)
|
|
|
|
{
|
2013-01-24 20:11:49 -05:00
|
|
|
return autocomplete_complete(boolean_choice_ac, prefix);
|
2012-10-22 17:15:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_reset_boolean_choice(void)
|
|
|
|
{
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_reset(boolean_choice_ac);
|
2012-05-09 22:29:48 -04:00
|
|
|
}
|
2012-05-10 04:55:55 -04:00
|
|
|
|
2013-02-02 21:35:04 -05:00
|
|
|
static const char *
|
|
|
|
_get_group(preference_t pref)
|
|
|
|
{
|
|
|
|
switch (pref)
|
|
|
|
{
|
|
|
|
case PREF_SPLASH:
|
|
|
|
case PREF_BEEP:
|
|
|
|
case PREF_THEME:
|
|
|
|
case PREF_VERCHECK:
|
|
|
|
case PREF_TITLEBARVERSION:
|
|
|
|
case PREF_FLASH:
|
|
|
|
case PREF_INTYPE:
|
|
|
|
case PREF_HISTORY:
|
|
|
|
case PREF_MOUSE:
|
|
|
|
case PREF_STATUSES:
|
|
|
|
return "ui";
|
|
|
|
case PREF_STATES:
|
|
|
|
case PREF_OUTTYPE:
|
|
|
|
return "chatstates";
|
|
|
|
case PREF_NOTIFY_TYPING:
|
|
|
|
case PREF_NOTIFY_MESSAGE:
|
|
|
|
return "notifications";
|
|
|
|
case PREF_CHLOG:
|
|
|
|
return "logging";
|
|
|
|
case PREF_AUTOAWAY_CHECK:
|
|
|
|
return "presence";
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
_get_key(preference_t pref)
|
|
|
|
{
|
|
|
|
switch (pref)
|
|
|
|
{
|
|
|
|
case PREF_SPLASH:
|
|
|
|
return "splash";
|
|
|
|
case PREF_BEEP:
|
|
|
|
return "beep";
|
|
|
|
case PREF_THEME:
|
|
|
|
return "theme";
|
|
|
|
case PREF_VERCHECK:
|
|
|
|
return "vercheck";
|
|
|
|
case PREF_TITLEBARVERSION:
|
|
|
|
return "titlebar.version";
|
|
|
|
case PREF_FLASH:
|
|
|
|
return "flash";
|
|
|
|
case PREF_INTYPE:
|
|
|
|
return "intype";
|
|
|
|
case PREF_HISTORY:
|
|
|
|
return "history";
|
|
|
|
case PREF_MOUSE:
|
|
|
|
return "mouse";
|
|
|
|
case PREF_STATUSES:
|
|
|
|
return "statuses";
|
|
|
|
case PREF_STATES:
|
|
|
|
return "enabled";
|
|
|
|
case PREF_OUTTYPE:
|
|
|
|
return "outtype";
|
|
|
|
case PREF_NOTIFY_TYPING:
|
|
|
|
return "typing";
|
|
|
|
case PREF_NOTIFY_MESSAGE:
|
|
|
|
return "message";
|
|
|
|
case PREF_CHLOG:
|
|
|
|
return "chlog";
|
|
|
|
case PREF_AUTOAWAY_CHECK:
|
|
|
|
return "autoaway.check";
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_get_default_boolean(preference_t pref)
|
|
|
|
{
|
|
|
|
switch (pref)
|
|
|
|
{
|
|
|
|
case PREF_MOUSE:
|
|
|
|
case PREF_STATUSES:
|
|
|
|
case PREF_AUTOAWAY_CHECK:
|
|
|
|
return TRUE;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
gboolean
|
2013-02-02 21:35:04 -05:00
|
|
|
prefs_get_boolean(preference_t pref)
|
2012-05-10 04:55:55 -04:00
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
const char *group = _get_group(pref);
|
|
|
|
const char *key = _get_key(pref);
|
|
|
|
gboolean def = _get_default_boolean(pref);
|
|
|
|
|
|
|
|
if (!g_key_file_has_key(prefs, group, key, NULL)) {
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_key_file_get_boolean(prefs, group, key, NULL);
|
2012-05-10 04:55:55 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_set_beep(gboolean value)
|
2012-05-10 04:55:55 -04:00
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_UI, "beep", value);
|
2012-05-10 05:02:03 -04:00
|
|
|
_save_prefs();
|
2012-05-10 04:55:55 -04:00
|
|
|
}
|
|
|
|
|
2012-11-21 16:24:10 -05:00
|
|
|
gchar *
|
|
|
|
prefs_get_theme(void)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
return g_key_file_get_string(prefs, PREF_GROUP_UI, "theme", NULL);
|
2012-11-21 16:24:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_theme(gchar *value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_string(prefs, PREF_GROUP_UI, "theme", value);
|
2012-11-21 16:24:10 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-10-31 17:41:00 -04:00
|
|
|
void
|
|
|
|
prefs_set_states(gboolean value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_CHATSTATES, "enabled", value);
|
2012-10-31 17:41:00 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-10-31 20:12:35 -04:00
|
|
|
void
|
|
|
|
prefs_set_outtype(gboolean value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_CHATSTATES, "outtype", value);
|
2012-10-31 20:12:35 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-12-19 18:31:25 -05:00
|
|
|
gint
|
|
|
|
prefs_get_gone(void)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
return g_key_file_get_integer(prefs, PREF_GROUP_CHATSTATES, "gone", NULL);
|
2012-12-19 18:31:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_gone(gint value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_integer(prefs, PREF_GROUP_CHATSTATES, "gone", value);
|
2012-12-19 18:31:25 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-10-27 17:05:08 -04:00
|
|
|
prefs_set_notify_typing(gboolean value)
|
2012-06-28 18:45:37 -04:00
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_NOTIFICATIONS, "typing", value);
|
2012-06-28 18:45:37 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-08-15 19:50:32 -04:00
|
|
|
void
|
2012-10-27 17:05:08 -04:00
|
|
|
prefs_set_notify_message(gboolean value)
|
2012-08-15 19:50:32 -04:00
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_NOTIFICATIONS, "message", value);
|
2012-10-27 17:05:08 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
prefs_get_notify_remind(void)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
return g_key_file_get_integer(prefs, PREF_GROUP_NOTIFICATIONS, "remind", NULL);
|
2012-10-27 17:05:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_notify_remind(gint value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_integer(prefs, PREF_GROUP_NOTIFICATIONS, "remind", value);
|
2012-08-15 19:50:32 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-11-11 16:44:55 -05:00
|
|
|
gint
|
|
|
|
prefs_get_max_log_size(void)
|
|
|
|
{
|
2012-11-12 04:13:03 -05:00
|
|
|
if (log_maxsize < PREFS_MIN_LOG_SIZE)
|
|
|
|
return PREFS_MAX_LOG_SIZE;
|
|
|
|
else
|
|
|
|
return log_maxsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_max_log_size(gint value)
|
|
|
|
{
|
|
|
|
log_maxsize = value;
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_integer(prefs, PREF_GROUP_LOGGING, "maxsize", value);
|
2012-11-12 04:13:03 -05:00
|
|
|
_save_prefs();
|
2012-11-11 16:44:55 -05:00
|
|
|
}
|
|
|
|
|
2012-11-13 05:51:28 -05:00
|
|
|
gint
|
|
|
|
prefs_get_priority(void)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
return g_key_file_get_integer(prefs, PREF_GROUP_PRESENCE, "priority", NULL);
|
2012-11-13 05:51:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_priority(gint value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_integer(prefs, PREF_GROUP_PRESENCE, "priority", value);
|
2012-11-13 05:51:28 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-11-24 21:14:38 -05:00
|
|
|
gint
|
|
|
|
prefs_get_reconnect(void)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
return g_key_file_get_integer(prefs, PREF_GROUP_CONNECTION, "reconnect", NULL);
|
2012-11-24 21:14:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_reconnect(gint value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_integer(prefs, PREF_GROUP_CONNECTION, "reconnect", value);
|
2012-11-24 21:14:38 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 -05:00
|
|
|
gint
|
|
|
|
prefs_get_autoping(void)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
return g_key_file_get_integer(prefs, PREF_GROUP_CONNECTION, "autoping", NULL);
|
2012-11-26 18:58:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_autoping(gint value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_integer(prefs, PREF_GROUP_CONNECTION, "autoping", value);
|
2012-11-26 18:58:24 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-10-23 20:35:36 -04:00
|
|
|
void
|
|
|
|
prefs_set_vercheck(gboolean value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_UI, "vercheck", value);
|
2012-10-23 20:35:36 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-11-29 15:34:52 -05:00
|
|
|
void
|
|
|
|
prefs_set_titlebarversion(gboolean value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_UI, "titlebar.version", value);
|
2012-11-29 15:34:52 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_set_flash(gboolean value)
|
2012-05-10 04:55:55 -04:00
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_UI, "flash", value);
|
2012-05-10 05:02:03 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-10-27 19:33:20 -04:00
|
|
|
void
|
|
|
|
prefs_set_intype(gboolean value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_UI, "intype", value);
|
2012-10-27 19:33:20 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_set_chlog(gboolean value)
|
2012-07-22 18:07:34 -04:00
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_LOGGING, "chlog", value);
|
2012-07-22 18:07:34 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-10-14 13:26:08 -04:00
|
|
|
void
|
|
|
|
prefs_set_history(gboolean value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_UI, "history", value);
|
2012-10-14 13:26:08 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-11-30 18:34:14 -05:00
|
|
|
gchar *
|
|
|
|
prefs_get_autoaway_mode(void)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
gchar *result = g_key_file_get_string(prefs, PREF_GROUP_PRESENCE, "autoaway.mode", NULL);
|
2012-11-30 18:34:14 -05:00
|
|
|
if (result == NULL) {
|
|
|
|
return strdup("off");
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_autoaway_mode(gchar *value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_string(prefs, PREF_GROUP_PRESENCE, "autoaway.mode", value);
|
2012-11-30 18:34:14 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
prefs_get_autoaway_time(void)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
gint result = g_key_file_get_integer(prefs, PREF_GROUP_PRESENCE, "autoaway.time", NULL);
|
2012-11-30 18:34:14 -05:00
|
|
|
|
|
|
|
if (result == 0) {
|
|
|
|
return 15;
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_autoaway_time(gint value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_integer(prefs, PREF_GROUP_PRESENCE, "autoaway.time", value);
|
2012-11-30 18:34:14 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar *
|
|
|
|
prefs_get_autoaway_message(void)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
return g_key_file_get_string(prefs, PREF_GROUP_PRESENCE, "autoaway.message", NULL);
|
2012-11-30 18:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_autoaway_message(gchar *value)
|
|
|
|
{
|
2012-12-01 12:46:25 -05:00
|
|
|
if (value == NULL) {
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_remove_key(prefs, PREF_GROUP_PRESENCE, "autoaway.message", NULL);
|
2012-12-01 12:46:25 -05:00
|
|
|
} else {
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_string(prefs, PREF_GROUP_PRESENCE, "autoaway.message", value);
|
2012-12-01 12:46:25 -05:00
|
|
|
}
|
2012-11-30 18:34:14 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prefs_set_autoaway_check(gboolean value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_PRESENCE, "autoaway.check", value);
|
2012-11-30 18:34:14 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-12-01 21:21:59 -05:00
|
|
|
prefs_set_splash(gboolean value)
|
2012-06-03 18:02:13 -04:00
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_UI, "splash", value);
|
2012-06-03 18:02:13 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:40:55 -05:00
|
|
|
void
|
|
|
|
prefs_set_mouse(gboolean value)
|
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_UI, "mouse", value);
|
2013-01-17 14:40:55 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
2013-01-21 20:33:32 -05:00
|
|
|
|
2013-01-14 04:51:37 -05:00
|
|
|
void
|
2013-01-20 20:26:09 -05:00
|
|
|
prefs_set_statuses(gboolean value)
|
2013-01-14 04:51:37 -05:00
|
|
|
{
|
2013-02-02 21:35:04 -05:00
|
|
|
g_key_file_set_boolean(prefs, PREF_GROUP_UI, "statuses", value);
|
2013-01-14 04:51:37 -05:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_save_prefs(void)
|
2012-05-10 05:02:03 -04:00
|
|
|
{
|
|
|
|
gsize g_data_size;
|
|
|
|
char *g_prefs_data = g_key_file_to_data(prefs, &g_data_size, NULL);
|
2012-11-25 16:40:49 -05:00
|
|
|
g_file_set_contents(prefs_loc, g_prefs_data, g_data_size, NULL);
|
2012-05-10 04:55:55 -04:00
|
|
|
}
|
2013-02-02 17:18:08 -05:00
|
|
|
|
|
|
|
static gchar *
|
|
|
|
_get_preferences_file(void)
|
|
|
|
{
|
|
|
|
gchar *xdg_config = xdg_get_config_home();
|
|
|
|
GString *prefs_file = g_string_new(xdg_config);
|
|
|
|
g_string_append(prefs_file, "/profanity/profrc");
|
|
|
|
gchar *result = strdup(prefs_file->str);
|
|
|
|
g_free(xdg_config);
|
|
|
|
g_string_free(prefs_file, TRUE);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|