2012-05-09 22:29:48 -04:00
|
|
|
/*
|
|
|
|
* preferences.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-05-09 22:37:24 -04:00
|
|
|
#include <stdlib.h>
|
2012-05-10 17:18:08 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
2012-06-18 17:16:57 -04:00
|
|
|
#include <ncurses.h>
|
2012-05-09 22:29:48 -04:00
|
|
|
#include <glib.h>
|
|
|
|
|
2012-06-18 18:06:17 -04:00
|
|
|
#include "log.h"
|
2012-05-10 18:51:06 -04:00
|
|
|
#include "preferences.h"
|
2012-05-19 20:05:20 -04:00
|
|
|
#include "prof_autocomplete.h"
|
2012-05-10 18:51:06 -04:00
|
|
|
|
2012-05-10 05:02:03 -04:00
|
|
|
static GString *prefs_loc;
|
2012-05-10 04:55:55 -04:00
|
|
|
static GKeyFile *prefs;
|
2012-05-09 22:29:48 -04:00
|
|
|
|
2012-05-10 17:44:23 -04:00
|
|
|
// search logins list
|
2012-05-19 20:05:20 -04:00
|
|
|
static PAutocomplete ac;
|
2012-05-10 17:44:23 -04:00
|
|
|
|
2012-06-18 17:16:57 -04:00
|
|
|
struct colour_string_t {
|
|
|
|
char *str;
|
|
|
|
NCURSES_COLOR_T colour;
|
|
|
|
};
|
2012-06-18 18:06:17 -04:00
|
|
|
|
2012-06-18 18:38:34 -04:00
|
|
|
static int num_colours = 9;
|
2012-06-18 17:16:57 -04:00
|
|
|
static struct colour_string_t colours[] = {
|
2012-06-18 18:06:17 -04:00
|
|
|
{ "default", -1 },
|
2012-06-18 17:16:57 -04:00
|
|
|
{ "white", COLOR_WHITE },
|
|
|
|
{ "green", COLOR_GREEN },
|
|
|
|
{ "red", COLOR_RED },
|
|
|
|
{ "yellow", COLOR_YELLOW },
|
|
|
|
{ "blue", COLOR_BLUE },
|
|
|
|
{ "cyan", COLOR_CYAN },
|
2012-06-18 18:38:34 -04:00
|
|
|
{ "black", COLOR_BLACK },
|
|
|
|
{ "magenta", COLOR_MAGENTA },
|
2012-06-18 17:16:57 -04:00
|
|
|
};
|
2012-06-18 18:06:17 -04:00
|
|
|
|
2012-06-18 17:16:57 -04:00
|
|
|
// colour preferences
|
|
|
|
static struct colours_t {
|
|
|
|
NCURSES_COLOR_T bkgnd;
|
|
|
|
NCURSES_COLOR_T text;
|
|
|
|
NCURSES_COLOR_T online;
|
2012-06-18 18:23:06 -04:00
|
|
|
NCURSES_COLOR_T offline;
|
2012-06-18 17:16:57 -04:00
|
|
|
NCURSES_COLOR_T err;
|
|
|
|
NCURSES_COLOR_T inc;
|
|
|
|
NCURSES_COLOR_T bar;
|
2012-06-18 18:23:06 -04:00
|
|
|
NCURSES_COLOR_T bar_draw;
|
2012-06-18 18:38:34 -04:00
|
|
|
NCURSES_COLOR_T bar_text;
|
2012-06-18 17:16:57 -04:00
|
|
|
} colour_prefs;
|
|
|
|
|
2012-06-18 18:06:17 -04:00
|
|
|
static NCURSES_COLOR_T _lookup_colour(const char * const colour);
|
2012-06-18 18:14:36 -04:00
|
|
|
static void _set_colour(gchar *val, NCURSES_COLOR_T *pref,
|
|
|
|
NCURSES_COLOR_T def);
|
2012-06-18 17:16:57 -04:00
|
|
|
static void _load_colours(void);
|
2012-05-10 05:12:02 -04:00
|
|
|
static void _save_prefs(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-05-19 20:05:20 -04:00
|
|
|
ac = p_autocomplete_new();
|
2012-05-10 05:02:03 -04:00
|
|
|
prefs_loc = g_string_new(getenv("HOME"));
|
2012-07-19 16:43:41 -04:00
|
|
|
g_string_append(prefs_loc, "/.profanity/config");
|
2012-05-09 22:29:48 -04:00
|
|
|
|
2012-05-10 04:55:55 -04:00
|
|
|
prefs = g_key_file_new();
|
|
|
|
g_key_file_load_from_file(prefs, prefs_loc->str, G_KEY_FILE_NONE, NULL);
|
2012-05-10 17:44:23 -04:00
|
|
|
|
|
|
|
// create the logins searchable list for autocompletion
|
|
|
|
gsize njids;
|
|
|
|
gchar **jids =
|
|
|
|
g_key_file_get_string_list(prefs, "connections", "logins", &njids, NULL);
|
|
|
|
|
|
|
|
gsize i;
|
|
|
|
for (i = 0; i < njids; i++) {
|
2012-05-19 20:05:20 -04:00
|
|
|
p_autocomplete_add(ac, jids[i]);
|
2012-05-10 17:44:23 -04:00
|
|
|
}
|
2012-06-18 17:16:57 -04:00
|
|
|
|
2012-07-31 18:20:11 -04:00
|
|
|
for (i = 0; i < njids; i++) {
|
|
|
|
free(jids[i]);
|
|
|
|
}
|
|
|
|
free(jids);
|
|
|
|
|
|
|
|
|
2012-06-18 17:16:57 -04:00
|
|
|
_load_colours();
|
|
|
|
}
|
|
|
|
|
2012-07-31 18:01:15 -04:00
|
|
|
void
|
|
|
|
prefs_close(void)
|
|
|
|
{
|
|
|
|
g_key_file_free(prefs);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static NCURSES_COLOR_T
|
|
|
|
_lookup_colour(const char * const colour)
|
2012-06-18 18:06:17 -04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < num_colours; i++) {
|
|
|
|
if (strcmp(colours[i].str, colour) == 0) {
|
|
|
|
return colours[i].colour;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -99;
|
|
|
|
}
|
2012-06-18 18:14:36 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_set_colour(gchar *val, NCURSES_COLOR_T *pref,
|
2012-06-18 18:06:17 -04:00
|
|
|
NCURSES_COLOR_T def)
|
|
|
|
{
|
|
|
|
if(!val) {
|
|
|
|
*pref = def;
|
|
|
|
} else {
|
|
|
|
NCURSES_COLOR_T col = _lookup_colour(val);
|
|
|
|
if (col == -99) {
|
|
|
|
*pref = def;
|
|
|
|
} else {
|
|
|
|
*pref = col;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-06-18 18:14:36 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_load_colours(void)
|
2012-06-18 17:16:57 -04:00
|
|
|
{
|
2012-06-18 18:06:17 -04:00
|
|
|
gchar *bkgnd_val = g_key_file_get_string(prefs, "colours", "bkgnd", NULL);
|
2012-06-18 18:14:36 -04:00
|
|
|
_set_colour(bkgnd_val, &colour_prefs.bkgnd, -1);
|
2012-06-18 18:06:17 -04:00
|
|
|
|
|
|
|
gchar *text_val = g_key_file_get_string(prefs, "colours", "text", NULL);
|
2012-06-18 18:14:36 -04:00
|
|
|
_set_colour(text_val, &colour_prefs.text, COLOR_WHITE);
|
|
|
|
|
|
|
|
gchar *online_val = g_key_file_get_string(prefs, "colours", "online", NULL);
|
|
|
|
_set_colour(online_val, &colour_prefs.online, COLOR_GREEN);
|
2012-06-18 18:06:17 -04:00
|
|
|
|
2012-06-18 18:23:06 -04:00
|
|
|
gchar *offline_val = g_key_file_get_string(prefs, "colours", "offline", NULL);
|
|
|
|
_set_colour(offline_val, &colour_prefs.offline, COLOR_CYAN);
|
|
|
|
|
2012-06-18 18:14:36 -04:00
|
|
|
gchar *err_val = g_key_file_get_string(prefs, "colours", "err", NULL);
|
|
|
|
_set_colour(err_val, &colour_prefs.err, COLOR_RED);
|
2012-06-18 18:06:17 -04:00
|
|
|
|
2012-06-18 18:14:36 -04:00
|
|
|
gchar *inc_val = g_key_file_get_string(prefs, "colours", "inc", NULL);
|
|
|
|
_set_colour(inc_val, &colour_prefs.inc, COLOR_YELLOW);
|
|
|
|
|
|
|
|
gchar *bar_val = g_key_file_get_string(prefs, "colours", "bar", NULL);
|
|
|
|
_set_colour(bar_val, &colour_prefs.bar, COLOR_BLUE);
|
|
|
|
|
2012-06-18 18:23:06 -04:00
|
|
|
gchar *bar_draw_val = g_key_file_get_string(prefs, "colours", "bar_draw", NULL);
|
|
|
|
_set_colour(bar_draw_val, &colour_prefs.bar_draw, COLOR_CYAN);
|
2012-06-18 18:38:34 -04:00
|
|
|
|
|
|
|
gchar *bar_text_val = g_key_file_get_string(prefs, "colours", "bar_text", NULL);
|
|
|
|
_set_colour(bar_text_val, &colour_prefs.bar_text, COLOR_WHITE);
|
2012-05-10 17:44:23 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
char *
|
|
|
|
find_login(char *prefix)
|
2012-05-10 18:11:48 -04:00
|
|
|
{
|
2012-05-19 20:05:20 -04:00
|
|
|
return p_autocomplete_complete(ac, prefix);
|
2012-05-10 18:11:48 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
reset_login_search(void)
|
2012-05-10 18:11:48 -04:00
|
|
|
{
|
2012-05-19 20:05:20 -04:00
|
|
|
p_autocomplete_reset(ac);
|
2012-05-09 22:29:48 -04:00
|
|
|
}
|
2012-05-10 04:55:55 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
gboolean
|
|
|
|
prefs_get_beep(void)
|
2012-05-10 04:55:55 -04:00
|
|
|
{
|
|
|
|
return g_key_file_get_boolean(prefs, "ui", "beep", NULL);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_set_beep(gboolean value)
|
2012-05-10 04:55:55 -04:00
|
|
|
{
|
|
|
|
g_key_file_set_boolean(prefs, "ui", "beep", value);
|
2012-05-10 05:02:03 -04:00
|
|
|
_save_prefs();
|
2012-05-10 04:55:55 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
gboolean
|
|
|
|
prefs_get_notify(void)
|
2012-06-28 18:45:37 -04:00
|
|
|
{
|
|
|
|
return g_key_file_get_boolean(prefs, "ui", "notify", NULL);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_set_notify(gboolean value)
|
2012-06-28 18:45:37 -04:00
|
|
|
{
|
|
|
|
g_key_file_set_boolean(prefs, "ui", "notify", value);
|
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
gboolean
|
|
|
|
prefs_get_flash(void)
|
2012-05-10 04:55:55 -04:00
|
|
|
{
|
|
|
|
return g_key_file_get_boolean(prefs, "ui", "flash", NULL);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_set_flash(gboolean value)
|
2012-05-10 04:55:55 -04:00
|
|
|
{
|
|
|
|
g_key_file_set_boolean(prefs, "ui", "flash", value);
|
2012-05-10 05:02:03 -04:00
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
gboolean
|
|
|
|
prefs_get_chlog(void)
|
2012-07-22 18:07:34 -04:00
|
|
|
{
|
|
|
|
return g_key_file_get_boolean(prefs, "ui", "chlog", NULL);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_set_chlog(gboolean value)
|
2012-07-22 18:07:34 -04:00
|
|
|
{
|
|
|
|
g_key_file_set_boolean(prefs, "ui", "chlog", value);
|
|
|
|
_save_prefs();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_add_login(const char *jid)
|
2012-05-10 17:18:08 -04:00
|
|
|
{
|
|
|
|
gsize njids;
|
|
|
|
gchar **jids =
|
|
|
|
g_key_file_get_string_list(prefs, "connections", "logins", &njids, NULL);
|
|
|
|
|
|
|
|
// no logins remembered yet
|
|
|
|
if (jids == NULL) {
|
|
|
|
njids = 1;
|
|
|
|
jids = (gchar**) g_malloc(sizeof(gchar *) * 2);
|
|
|
|
jids[0] = g_strdup(jid);
|
|
|
|
jids[1] = NULL;
|
|
|
|
g_key_file_set_string_list(prefs, "connections", "logins",
|
|
|
|
(const gchar * const *)jids, njids);
|
|
|
|
_save_prefs();
|
|
|
|
g_strfreev(jids);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
gsize i;
|
|
|
|
for (i = 0; i < njids; i++) {
|
|
|
|
if (strcmp(jid, jids[i]) == 0) {
|
|
|
|
g_strfreev(jids);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// jid not found, add to the list
|
|
|
|
jids = (gchar **) g_realloc(jids, (sizeof(gchar *) * (njids+2)));
|
|
|
|
jids[njids] = g_strdup(jid);
|
|
|
|
njids++;
|
|
|
|
jids[njids] = NULL;
|
|
|
|
g_key_file_set_string_list(prefs, "connections", "logins",
|
|
|
|
(const gchar * const *)jids, njids);
|
|
|
|
_save_prefs();
|
|
|
|
g_strfreev(jids);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
gboolean
|
|
|
|
prefs_get_showsplash(void)
|
2012-06-03 18:02:13 -04:00
|
|
|
{
|
|
|
|
return g_key_file_get_boolean(prefs, "ui", "showsplash", NULL);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
prefs_set_showsplash(gboolean value)
|
2012-06-03 18:02:13 -04:00
|
|
|
{
|
|
|
|
g_key_file_set_boolean(prefs, "ui", "showsplash", value);
|
|
|
|
_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);
|
|
|
|
g_file_set_contents(prefs_loc->str, g_prefs_data, g_data_size, NULL);
|
2012-05-10 04:55:55 -04:00
|
|
|
}
|
2012-06-18 17:16:57 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
NCURSES_COLOR_T
|
|
|
|
prefs_get_bkgnd()
|
2012-06-18 17:16:57 -04:00
|
|
|
{
|
|
|
|
return colour_prefs.bkgnd;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
NCURSES_COLOR_T
|
|
|
|
prefs_get_text()
|
2012-06-18 17:16:57 -04:00
|
|
|
{
|
|
|
|
return colour_prefs.text;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
NCURSES_COLOR_T
|
|
|
|
prefs_get_online()
|
2012-06-18 17:16:57 -04:00
|
|
|
{
|
|
|
|
return colour_prefs.online;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
NCURSES_COLOR_T
|
|
|
|
prefs_get_offline()
|
2012-06-18 18:23:06 -04:00
|
|
|
{
|
|
|
|
return colour_prefs.offline;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
NCURSES_COLOR_T
|
|
|
|
prefs_get_err()
|
2012-06-18 17:16:57 -04:00
|
|
|
{
|
|
|
|
return colour_prefs.err;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
NCURSES_COLOR_T
|
|
|
|
prefs_get_inc()
|
2012-06-18 17:16:57 -04:00
|
|
|
{
|
|
|
|
return colour_prefs.inc;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
NCURSES_COLOR_T
|
|
|
|
prefs_get_bar()
|
2012-06-18 17:16:57 -04:00
|
|
|
{
|
|
|
|
return colour_prefs.bar;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
NCURSES_COLOR_T
|
|
|
|
prefs_get_bar_draw()
|
2012-06-18 17:16:57 -04:00
|
|
|
{
|
2012-06-18 18:23:06 -04:00
|
|
|
return colour_prefs.bar_draw;
|
2012-06-18 17:16:57 -04:00
|
|
|
}
|
2012-06-18 18:38:34 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
NCURSES_COLOR_T
|
|
|
|
prefs_get_bar_text()
|
2012-06-18 18:38:34 -04:00
|
|
|
{
|
|
|
|
return colour_prefs.bar_text;
|
|
|
|
}
|