mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-23 21:26:21 +00:00
Separated colours from main preferences
This commit is contained in:
@@ -44,56 +44,6 @@ gint log_maxsize = 0;
|
||||
static PAutocomplete login_ac;
|
||||
static PAutocomplete boolean_choice_ac;
|
||||
|
||||
struct colour_string_t {
|
||||
char *str;
|
||||
NCURSES_COLOR_T colour;
|
||||
};
|
||||
|
||||
static int num_colours = 9;
|
||||
static struct colour_string_t colours[] = {
|
||||
{ "default", -1 },
|
||||
{ "white", COLOR_WHITE },
|
||||
{ "green", COLOR_GREEN },
|
||||
{ "red", COLOR_RED },
|
||||
{ "yellow", COLOR_YELLOW },
|
||||
{ "blue", COLOR_BLUE },
|
||||
{ "cyan", COLOR_CYAN },
|
||||
{ "black", COLOR_BLACK },
|
||||
{ "magenta", COLOR_MAGENTA },
|
||||
};
|
||||
|
||||
// colour preferences
|
||||
static struct colours_t {
|
||||
NCURSES_COLOR_T bkgnd;
|
||||
NCURSES_COLOR_T titlebar;
|
||||
NCURSES_COLOR_T statusbar;
|
||||
NCURSES_COLOR_T titlebartext;
|
||||
NCURSES_COLOR_T titlebarbrackets;
|
||||
NCURSES_COLOR_T statusbartext;
|
||||
NCURSES_COLOR_T statusbarbrackets;
|
||||
NCURSES_COLOR_T statusbaractive;
|
||||
NCURSES_COLOR_T statusbarnew;
|
||||
NCURSES_COLOR_T maintext;
|
||||
NCURSES_COLOR_T splashtext;
|
||||
NCURSES_COLOR_T online;
|
||||
NCURSES_COLOR_T away;
|
||||
NCURSES_COLOR_T xa;
|
||||
NCURSES_COLOR_T dnd;
|
||||
NCURSES_COLOR_T chat;
|
||||
NCURSES_COLOR_T offline;
|
||||
NCURSES_COLOR_T typing;
|
||||
NCURSES_COLOR_T gone;
|
||||
NCURSES_COLOR_T error;
|
||||
NCURSES_COLOR_T incoming;
|
||||
NCURSES_COLOR_T roominfo;
|
||||
NCURSES_COLOR_T me;
|
||||
NCURSES_COLOR_T them;
|
||||
} colour_prefs;
|
||||
|
||||
static NCURSES_COLOR_T _lookup_colour(const char * const colour);
|
||||
static void _set_colour(gchar *val, NCURSES_COLOR_T *pref,
|
||||
NCURSES_COLOR_T def);
|
||||
static void _load_colours(void);
|
||||
static void _save_prefs(void);
|
||||
|
||||
void
|
||||
@@ -125,8 +75,6 @@ prefs_load(void)
|
||||
}
|
||||
free(jids);
|
||||
|
||||
_load_colours();
|
||||
|
||||
err = NULL;
|
||||
log_maxsize = g_key_file_get_integer(prefs, "log", "maxsize", &err);
|
||||
if (err != NULL) {
|
||||
@@ -147,111 +95,6 @@ prefs_close(void)
|
||||
g_key_file_free(prefs);
|
||||
}
|
||||
|
||||
static NCURSES_COLOR_T
|
||||
_lookup_colour(const char * const colour)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < num_colours; i++) {
|
||||
if (strcmp(colours[i].str, colour) == 0) {
|
||||
return colours[i].colour;
|
||||
}
|
||||
}
|
||||
|
||||
return -99;
|
||||
}
|
||||
|
||||
static void
|
||||
_set_colour(gchar *val, NCURSES_COLOR_T *pref,
|
||||
NCURSES_COLOR_T def)
|
||||
{
|
||||
if(!val) {
|
||||
*pref = def;
|
||||
} else {
|
||||
NCURSES_COLOR_T col = _lookup_colour(val);
|
||||
if (col == -99) {
|
||||
*pref = def;
|
||||
} else {
|
||||
*pref = col;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
_load_colours(void)
|
||||
{
|
||||
gchar *bkgnd_val = g_key_file_get_string(prefs, "colours", "bkgnd", NULL);
|
||||
_set_colour(bkgnd_val, &colour_prefs.bkgnd, -1);
|
||||
|
||||
gchar *titlebar_val = g_key_file_get_string(prefs, "colours", "titlebar", NULL);
|
||||
_set_colour(titlebar_val, &colour_prefs.titlebar, COLOR_BLUE);
|
||||
|
||||
gchar *statusbar_val = g_key_file_get_string(prefs, "colours", "statusbar", NULL);
|
||||
_set_colour(statusbar_val, &colour_prefs.statusbar, COLOR_BLUE);
|
||||
|
||||
gchar *titlebartext_val = g_key_file_get_string(prefs, "colours", "titlebartext", NULL);
|
||||
_set_colour(titlebartext_val, &colour_prefs.titlebartext, COLOR_WHITE);
|
||||
|
||||
gchar *titlebarbrackets_val = g_key_file_get_string(prefs, "colours", "titlebarbrackets", NULL);
|
||||
_set_colour(titlebarbrackets_val, &colour_prefs.titlebarbrackets, COLOR_CYAN);
|
||||
|
||||
gchar *statusbartext_val = g_key_file_get_string(prefs, "colours", "statusbartext", NULL);
|
||||
_set_colour(statusbartext_val, &colour_prefs.statusbartext, COLOR_WHITE);
|
||||
|
||||
gchar *statusbarbrackets_val = g_key_file_get_string(prefs, "colours", "statusbarbrackets", NULL);
|
||||
_set_colour(statusbarbrackets_val, &colour_prefs.statusbarbrackets, COLOR_CYAN);
|
||||
|
||||
gchar *statusbaractive_val = g_key_file_get_string(prefs, "colours", "statusbaractive", NULL);
|
||||
_set_colour(statusbaractive_val, &colour_prefs.statusbaractive, COLOR_CYAN);
|
||||
|
||||
gchar *statusbarnew_val = g_key_file_get_string(prefs, "colours", "statusbarnew", NULL);
|
||||
_set_colour(statusbarnew_val, &colour_prefs.statusbarnew, COLOR_WHITE);
|
||||
|
||||
gchar *maintext_val = g_key_file_get_string(prefs, "colours", "maintext", NULL);
|
||||
_set_colour(maintext_val, &colour_prefs.maintext, COLOR_WHITE);
|
||||
|
||||
gchar *splashtext_val = g_key_file_get_string(prefs, "colours", "splashtext", NULL);
|
||||
_set_colour(splashtext_val, &colour_prefs.splashtext, COLOR_CYAN);
|
||||
|
||||
gchar *online_val = g_key_file_get_string(prefs, "colours", "online", NULL);
|
||||
_set_colour(online_val, &colour_prefs.online, COLOR_GREEN);
|
||||
|
||||
gchar *away_val = g_key_file_get_string(prefs, "colours", "away", NULL);
|
||||
_set_colour(away_val, &colour_prefs.away, COLOR_CYAN);
|
||||
|
||||
gchar *chat_val = g_key_file_get_string(prefs, "colours", "chat", NULL);
|
||||
_set_colour(chat_val, &colour_prefs.chat, COLOR_GREEN);
|
||||
|
||||
gchar *dnd_val = g_key_file_get_string(prefs, "colours", "dnd", NULL);
|
||||
_set_colour(dnd_val, &colour_prefs.dnd, COLOR_RED);
|
||||
|
||||
gchar *xa_val = g_key_file_get_string(prefs, "colours", "xa", NULL);
|
||||
_set_colour(xa_val, &colour_prefs.xa, COLOR_CYAN);
|
||||
|
||||
gchar *offline_val = g_key_file_get_string(prefs, "colours", "offline", NULL);
|
||||
_set_colour(offline_val, &colour_prefs.offline, COLOR_RED);
|
||||
|
||||
gchar *typing_val = g_key_file_get_string(prefs, "colours", "typing", NULL);
|
||||
_set_colour(typing_val, &colour_prefs.typing, COLOR_YELLOW);
|
||||
|
||||
gchar *gone_val = g_key_file_get_string(prefs, "colours", "gone", NULL);
|
||||
_set_colour(gone_val, &colour_prefs.gone, COLOR_RED);
|
||||
|
||||
gchar *error_val = g_key_file_get_string(prefs, "colours", "error", NULL);
|
||||
_set_colour(error_val, &colour_prefs.error, COLOR_RED);
|
||||
|
||||
gchar *incoming_val = g_key_file_get_string(prefs, "colours", "incoming", NULL);
|
||||
_set_colour(incoming_val, &colour_prefs.incoming, COLOR_YELLOW);
|
||||
|
||||
gchar *roominfo_val = g_key_file_get_string(prefs, "colours", "roominfo", NULL);
|
||||
_set_colour(roominfo_val, &colour_prefs.roominfo, COLOR_YELLOW);
|
||||
|
||||
gchar *me_val = g_key_file_get_string(prefs, "colours", "me", NULL);
|
||||
_set_colour(me_val, &colour_prefs.me, COLOR_YELLOW);
|
||||
|
||||
gchar *them_val = g_key_file_get_string(prefs, "colours", "them", NULL);
|
||||
_set_colour(them_val, &colour_prefs.them, COLOR_GREEN);
|
||||
}
|
||||
|
||||
char *
|
||||
prefs_find_login(char *prefix)
|
||||
{
|
||||
@@ -289,6 +132,19 @@ prefs_set_beep(gboolean value)
|
||||
_save_prefs();
|
||||
}
|
||||
|
||||
gchar *
|
||||
prefs_get_theme(void)
|
||||
{
|
||||
return g_key_file_get_string(prefs, "ui", "theme", NULL);
|
||||
}
|
||||
|
||||
void
|
||||
prefs_set_theme(gchar *value)
|
||||
{
|
||||
g_key_file_set_string(prefs, "ui", "theme", value);
|
||||
_save_prefs();
|
||||
}
|
||||
|
||||
gboolean
|
||||
prefs_get_states(void)
|
||||
{
|
||||
@@ -511,147 +367,3 @@ _save_prefs(void)
|
||||
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);
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_bkgnd()
|
||||
{
|
||||
return colour_prefs.bkgnd;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_titlebar()
|
||||
{
|
||||
return colour_prefs.titlebar;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_statusbar()
|
||||
{
|
||||
return colour_prefs.statusbar;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_titlebartext()
|
||||
{
|
||||
return colour_prefs.titlebartext;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_titlebarbrackets()
|
||||
{
|
||||
return colour_prefs.titlebarbrackets;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_statusbartext()
|
||||
{
|
||||
return colour_prefs.statusbartext;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_statusbarbrackets()
|
||||
{
|
||||
return colour_prefs.statusbarbrackets;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_statusbaractive()
|
||||
{
|
||||
return colour_prefs.statusbaractive;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_statusbarnew()
|
||||
{
|
||||
return colour_prefs.statusbarnew;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_maintext()
|
||||
{
|
||||
return colour_prefs.maintext;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_splashtext()
|
||||
{
|
||||
return colour_prefs.splashtext;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_online()
|
||||
{
|
||||
return colour_prefs.online;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_away()
|
||||
{
|
||||
return colour_prefs.away;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_chat()
|
||||
{
|
||||
return colour_prefs.chat;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_dnd()
|
||||
{
|
||||
return colour_prefs.dnd;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_xa()
|
||||
{
|
||||
return colour_prefs.xa;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_offline()
|
||||
{
|
||||
return colour_prefs.offline;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_typing()
|
||||
{
|
||||
return colour_prefs.typing;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_gone()
|
||||
{
|
||||
return colour_prefs.gone;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_error()
|
||||
{
|
||||
return colour_prefs.error;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_incoming()
|
||||
{
|
||||
return colour_prefs.incoming;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_roominfo()
|
||||
{
|
||||
return colour_prefs.roominfo;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_me()
|
||||
{
|
||||
return colour_prefs.me;
|
||||
}
|
||||
|
||||
NCURSES_COLOR_T
|
||||
prefs_get_them()
|
||||
{
|
||||
return colour_prefs.them;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user