2014-04-07 10:42:10 +02:00
|
|
|
/* settings.c
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Toxic All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This file is part of Toxic.
|
|
|
|
*
|
|
|
|
* Toxic 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.
|
|
|
|
*
|
|
|
|
* Toxic 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 Toxic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-07-21 01:12:13 +02:00
|
|
|
#include <libconfig.h>
|
2014-07-30 08:46:08 +02:00
|
|
|
#include <ctype.h>
|
|
|
|
|
2014-06-22 02:18:23 +02:00
|
|
|
#include "toxic.h"
|
|
|
|
#include "windows.h"
|
|
|
|
#include "configdir.h"
|
2014-07-21 01:12:13 +02:00
|
|
|
#include "notify.h"
|
2014-08-28 04:45:11 +02:00
|
|
|
#include "misc_tools.h"
|
2014-05-29 23:25:09 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-06-21 01:58:00 +02:00
|
|
|
#include "device.h"
|
2014-09-23 03:24:45 +02:00
|
|
|
#endif /* AUDIO */
|
2014-05-29 23:25:09 +02:00
|
|
|
|
2014-04-07 10:42:10 +02:00
|
|
|
#include "settings.h"
|
2014-06-22 02:18:23 +02:00
|
|
|
#include "line_info.h"
|
2014-04-07 10:42:10 +02:00
|
|
|
|
2014-07-23 11:25:38 +02:00
|
|
|
#ifndef PACKAGE_DATADIR
|
|
|
|
#define PACKAGE_DATADIR "."
|
|
|
|
#endif
|
|
|
|
|
2014-08-27 05:21:32 +02:00
|
|
|
#define NO_SOUND "silent"
|
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
static struct ui_strings {
|
2014-07-21 01:12:13 +02:00
|
|
|
const char* self;
|
|
|
|
const char* timestamps;
|
|
|
|
const char* alerts;
|
|
|
|
const char* native_colors;
|
|
|
|
const char* autolog;
|
|
|
|
const char* time_format;
|
|
|
|
const char* history_size;
|
2014-07-30 02:10:28 +02:00
|
|
|
const char* show_typing_self;
|
|
|
|
const char* show_typing_other;
|
2014-09-19 07:06:18 +02:00
|
|
|
const char* show_welcome_msg;
|
2014-07-21 01:12:13 +02:00
|
|
|
} ui_strings = {
|
|
|
|
"ui",
|
|
|
|
"timestamps",
|
|
|
|
"alerts",
|
|
|
|
"native_colors",
|
|
|
|
"autolog",
|
|
|
|
"time_format",
|
2014-07-30 02:10:28 +02:00
|
|
|
"history_size",
|
|
|
|
"show_typing_self",
|
|
|
|
"show_typing_other",
|
2014-09-19 07:06:18 +02:00
|
|
|
"show_welcome_msg",
|
2014-04-07 10:42:10 +02:00
|
|
|
};
|
2014-07-29 03:40:06 +02:00
|
|
|
|
2014-07-21 01:12:13 +02:00
|
|
|
static void ui_defaults(struct user_settings* settings)
|
2014-04-08 23:20:21 +02:00
|
|
|
{
|
2014-07-21 01:12:13 +02:00
|
|
|
settings->timestamps = TIMESTAMPS_ON;
|
|
|
|
settings->time = TIME_24;
|
|
|
|
settings->autolog = AUTOLOG_OFF;
|
|
|
|
settings->alerts = ALERTS_ENABLED;
|
|
|
|
settings->colour_theme = DFLT_COLS;
|
|
|
|
settings->history_size = 700;
|
2014-07-30 02:10:28 +02:00
|
|
|
settings->show_typing_self = SHOW_TYPING_ON;
|
|
|
|
settings->show_typing_other = SHOW_TYPING_ON;
|
2014-09-19 07:06:18 +02:00
|
|
|
settings->show_welcome_msg = SHOW_WELCOME_MSG_ON;
|
2014-04-07 10:42:10 +02:00
|
|
|
}
|
2014-07-29 03:40:06 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
static const struct keys_strings {
|
2014-10-08 20:53:09 +02:00
|
|
|
const char* self;
|
|
|
|
const char* next_tab;
|
|
|
|
const char* prev_tab;
|
|
|
|
const char* scroll_line_up;
|
|
|
|
const char* scroll_line_down;
|
|
|
|
const char* half_page_up;
|
|
|
|
const char* half_page_down;
|
|
|
|
const char* page_bottom;
|
|
|
|
const char* peer_list_up;
|
|
|
|
const char* peer_list_down;
|
2014-10-08 08:56:54 +02:00
|
|
|
const char* toggle_peerlist;
|
2014-07-28 01:06:25 +02:00
|
|
|
} key_strings = {
|
2014-10-08 20:53:09 +02:00
|
|
|
"keys",
|
|
|
|
"next_tab",
|
|
|
|
"prev_tab",
|
|
|
|
"scroll_line_up",
|
|
|
|
"scroll_line_down",
|
|
|
|
"half_page_up",
|
|
|
|
"half_page_down",
|
|
|
|
"page_bottom",
|
|
|
|
"peer_list_up",
|
|
|
|
"peer_list_down",
|
2014-10-08 08:56:54 +02:00
|
|
|
"toggle_peerlist",
|
2014-07-28 01:06:25 +02:00
|
|
|
};
|
2014-07-29 03:40:06 +02:00
|
|
|
|
|
|
|
/* defines from toxic.h */
|
2014-07-28 01:06:25 +02:00
|
|
|
static void key_defaults(struct user_settings* settings)
|
|
|
|
{
|
2014-07-29 03:40:06 +02:00
|
|
|
settings->key_next_tab = T_KEY_NEXT;
|
|
|
|
settings->key_prev_tab = T_KEY_PREV;
|
|
|
|
settings->key_scroll_line_up = KEY_PPAGE;
|
|
|
|
settings->key_scroll_line_down = KEY_NPAGE;
|
|
|
|
settings->key_half_page_up = T_KEY_C_F;
|
|
|
|
settings->key_half_page_down = T_KEY_C_V;
|
|
|
|
settings->key_page_bottom = T_KEY_C_H;
|
|
|
|
settings->key_peer_list_up = T_KEY_C_LB;
|
|
|
|
settings->key_peer_list_down = T_KEY_C_RB;
|
2014-10-08 08:56:54 +02:00
|
|
|
settings->key_toggle_peerlist = T_KEY_C_B;
|
2014-07-28 01:06:25 +02:00
|
|
|
}
|
2014-07-29 03:40:06 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
static const struct tox_strings {
|
2014-07-21 01:12:13 +02:00
|
|
|
const char* self;
|
|
|
|
const char* download_path;
|
2014-08-27 05:21:32 +02:00
|
|
|
const char* chatlogs_path;
|
2014-09-26 09:10:44 +02:00
|
|
|
const char* avatar_path;
|
2014-07-21 01:12:13 +02:00
|
|
|
} tox_strings = {
|
|
|
|
"tox",
|
|
|
|
"download_path",
|
2014-08-27 05:21:32 +02:00
|
|
|
"chatlogs_path",
|
2014-09-26 09:10:44 +02:00
|
|
|
"avatar_path",
|
2014-07-21 01:12:13 +02:00
|
|
|
};
|
2014-04-12 09:10:01 +02:00
|
|
|
|
2014-07-21 01:12:13 +02:00
|
|
|
static void tox_defaults(struct user_settings* settings)
|
2014-04-07 10:42:10 +02:00
|
|
|
{
|
2014-08-27 05:21:32 +02:00
|
|
|
strcpy(settings->download_path, "");
|
|
|
|
strcpy(settings->chatlogs_path, "");
|
2014-09-26 09:10:44 +02:00
|
|
|
strcpy(settings->avatar_path, "");
|
2014-04-07 10:42:10 +02:00
|
|
|
}
|
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
|
|
|
static const struct audio_strings {
|
2014-07-21 01:12:13 +02:00
|
|
|
const char* self;
|
|
|
|
const char* input_device;
|
|
|
|
const char* output_device;
|
|
|
|
const char* VAD_treshold;
|
|
|
|
} audio_strings = {
|
|
|
|
"audio",
|
|
|
|
"input_device",
|
|
|
|
"output_device",
|
|
|
|
"VAD_treshold",
|
|
|
|
};
|
2014-07-29 03:40:06 +02:00
|
|
|
|
2014-07-21 01:12:13 +02:00
|
|
|
static void audio_defaults(struct user_settings* settings)
|
2014-06-22 02:18:23 +02:00
|
|
|
{
|
2014-07-21 01:12:13 +02:00
|
|
|
settings->audio_in_dev = 0;
|
|
|
|
settings->audio_out_dev = 0;
|
|
|
|
settings->VAD_treshold = 40.0;
|
2014-06-22 02:18:23 +02:00
|
|
|
}
|
2014-07-21 01:12:13 +02:00
|
|
|
#endif
|
2014-06-22 02:18:23 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef SOUND_NOTIFY
|
|
|
|
static const struct sound_strings {
|
2014-07-21 01:12:13 +02:00
|
|
|
const char* self;
|
|
|
|
const char* error;
|
|
|
|
const char* self_log_in;
|
|
|
|
const char* self_log_out;
|
|
|
|
const char* user_log_in;
|
|
|
|
const char* user_log_out;
|
|
|
|
const char* call_incoming;
|
|
|
|
const char* call_outgoing;
|
|
|
|
const char* generic_message;
|
|
|
|
const char* transfer_pending;
|
|
|
|
const char* transfer_completed;
|
|
|
|
} sound_strings = {
|
|
|
|
"sounds",
|
|
|
|
"error",
|
|
|
|
"self_log_in",
|
|
|
|
"self_log_out",
|
|
|
|
"user_log_in",
|
|
|
|
"user_log_out",
|
|
|
|
"call_incoming",
|
|
|
|
"call_outgoing",
|
|
|
|
"generic_message",
|
|
|
|
"transfer_pending",
|
|
|
|
"transfer_completed",
|
|
|
|
};
|
2014-06-22 02:18:23 +02:00
|
|
|
#endif
|
|
|
|
|
2014-07-29 03:40:06 +02:00
|
|
|
static int key_parse(const char** bind){
|
|
|
|
int len = strlen(*bind);
|
|
|
|
|
|
|
|
if (len > 5) {
|
|
|
|
if(strncasecmp(*bind, "ctrl+", 5) == 0)
|
2014-07-30 08:46:08 +02:00
|
|
|
return toupper(bind[0][5]) - 'A' + 1;
|
2014-07-29 03:40:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strncasecmp(*bind, "tab", 3) == 0)
|
|
|
|
return T_KEY_TAB;
|
|
|
|
|
|
|
|
if (strncasecmp(*bind, "page", 4) == 0)
|
|
|
|
return len == 6 ? KEY_PPAGE : KEY_NPAGE;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-07-22 00:14:06 +02:00
|
|
|
int settings_load(struct user_settings *s, const char *patharg)
|
2014-04-07 10:42:10 +02:00
|
|
|
{
|
2014-07-21 01:12:13 +02:00
|
|
|
config_t cfg[1];
|
|
|
|
config_setting_t *setting;
|
2014-08-27 20:30:06 +02:00
|
|
|
const char *str = NULL;
|
2014-07-21 01:12:13 +02:00
|
|
|
|
|
|
|
/* Load default settings */
|
|
|
|
ui_defaults(s);
|
|
|
|
tox_defaults(s);
|
2014-07-29 03:40:06 +02:00
|
|
|
key_defaults(s);
|
2014-08-31 20:17:33 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-07-21 01:12:13 +02:00
|
|
|
audio_defaults(s);
|
|
|
|
#endif
|
2014-07-29 03:40:06 +02:00
|
|
|
|
2014-07-21 01:12:13 +02:00
|
|
|
config_init(cfg);
|
2014-07-22 00:14:06 +02:00
|
|
|
|
|
|
|
char path[MAX_STR_SIZE];
|
|
|
|
|
|
|
|
/* use default config file path */
|
|
|
|
if (patharg == NULL) {
|
|
|
|
char *user_config_dir = get_user_config_dir();
|
|
|
|
snprintf(path, sizeof(path), "%s%stoxic.conf", user_config_dir, CONFIGDIR);
|
|
|
|
free(user_config_dir);
|
|
|
|
|
|
|
|
/* make sure path exists or is created on first time running */
|
2014-08-28 04:45:11 +02:00
|
|
|
if (!file_exists(path)) {
|
|
|
|
FILE *fp = fopen(path, "w");
|
|
|
|
|
|
|
|
if (fp == NULL)
|
2014-07-22 00:14:06 +02:00
|
|
|
return -1;
|
|
|
|
|
2014-08-28 04:45:11 +02:00
|
|
|
fclose(fp);
|
|
|
|
}
|
2014-07-22 00:14:06 +02:00
|
|
|
} else {
|
|
|
|
snprintf(path, sizeof(path), "%s", patharg);
|
|
|
|
}
|
2014-07-29 03:40:06 +02:00
|
|
|
|
2014-07-22 00:14:06 +02:00
|
|
|
if (!config_read_file(cfg, path)) {
|
2014-07-21 01:12:13 +02:00
|
|
|
config_destroy(cfg);
|
2014-04-20 22:42:37 +02:00
|
|
|
return -1;
|
2014-04-08 00:16:38 +02:00
|
|
|
}
|
2014-07-29 03:40:06 +02:00
|
|
|
|
2014-07-21 01:12:13 +02:00
|
|
|
/* ui */
|
|
|
|
if ((setting = config_lookup(cfg, ui_strings.self)) != NULL) {
|
|
|
|
config_setting_lookup_bool(setting, ui_strings.timestamps, &s->timestamps);
|
|
|
|
config_setting_lookup_bool(setting, ui_strings.alerts, &s->alerts);
|
|
|
|
config_setting_lookup_bool(setting, ui_strings.autolog, &s->autolog);
|
|
|
|
config_setting_lookup_bool(setting, ui_strings.native_colors, &s->colour_theme);
|
|
|
|
config_setting_lookup_int(setting, ui_strings.history_size, &s->history_size);
|
2014-07-30 02:10:28 +02:00
|
|
|
config_setting_lookup_bool(setting, ui_strings.show_typing_self, &s->show_typing_self);
|
|
|
|
config_setting_lookup_bool(setting, ui_strings.show_typing_other, &s->show_typing_other);
|
2014-09-19 07:06:18 +02:00
|
|
|
config_setting_lookup_bool(setting, ui_strings.show_welcome_msg, &s->show_welcome_msg);
|
2014-07-21 01:12:13 +02:00
|
|
|
config_setting_lookup_int(setting, ui_strings.time_format, &s->time);
|
|
|
|
s->time = s->time == TIME_24 || s->time == TIME_12 ? s->time : TIME_24; /* Check defaults */
|
|
|
|
}
|
2014-07-29 03:40:06 +02:00
|
|
|
|
2014-08-27 05:21:32 +02:00
|
|
|
/* paths */
|
2014-07-21 01:12:13 +02:00
|
|
|
if ((setting = config_lookup(cfg, tox_strings.self)) != NULL) {
|
|
|
|
if ( config_setting_lookup_string(setting, tox_strings.download_path, &str) ) {
|
2014-08-27 05:21:32 +02:00
|
|
|
snprintf(s->download_path, sizeof(s->download_path), "%s", str);
|
|
|
|
int len = strlen(s->download_path);
|
|
|
|
|
|
|
|
/* make sure path ends with a '/' */
|
|
|
|
if (len >= sizeof(s->download_path) - 2)
|
|
|
|
s->download_path[0] = '\0';
|
|
|
|
else if (s->download_path[len - 1] != '/')
|
|
|
|
strcat(&s->download_path[len - 1], "/");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( config_setting_lookup_string(setting, tox_strings.chatlogs_path, &str) ) {
|
|
|
|
snprintf(s->chatlogs_path, sizeof(s->chatlogs_path), "%s", str);
|
|
|
|
int len = strlen(s->chatlogs_path);
|
|
|
|
|
|
|
|
if (len >= sizeof(s->chatlogs_path) - 2)
|
|
|
|
s->chatlogs_path[0] = '\0';
|
|
|
|
else if (s->chatlogs_path[len - 1] != '/')
|
|
|
|
strcat(&s->chatlogs_path[len - 1], "/");
|
2014-04-07 10:42:10 +02:00
|
|
|
}
|
2014-09-26 09:10:44 +02:00
|
|
|
|
|
|
|
if ( config_setting_lookup_string(setting, tox_strings.avatar_path, &str) ) {
|
|
|
|
snprintf(s->avatar_path, sizeof(s->avatar_path), "%s", str);
|
2015-01-25 20:17:32 +01:00
|
|
|
int len = strlen(str);
|
2014-09-26 09:10:44 +02:00
|
|
|
|
|
|
|
if (len >= sizeof(s->avatar_path))
|
|
|
|
s->avatar_path[0] = '\0';
|
|
|
|
}
|
2014-06-22 02:18:23 +02:00
|
|
|
}
|
2014-07-30 02:10:28 +02:00
|
|
|
|
2014-07-28 01:06:25 +02:00
|
|
|
/* keys */
|
2014-08-27 05:21:32 +02:00
|
|
|
if ((setting = config_lookup(cfg, key_strings.self)) != NULL) {
|
2014-07-28 23:47:33 +02:00
|
|
|
const char* tmp = NULL;
|
2014-12-17 18:15:18 +01:00
|
|
|
if (config_setting_lookup_string(setting, key_strings.next_tab, &tmp))
|
|
|
|
s->key_next_tab = key_parse(&tmp);
|
|
|
|
if (config_setting_lookup_string(setting, key_strings.prev_tab, &tmp))
|
|
|
|
s->key_prev_tab = key_parse(&tmp);
|
|
|
|
if (config_setting_lookup_string(setting, key_strings.scroll_line_up, &tmp))
|
|
|
|
s->key_scroll_line_up = key_parse(&tmp);
|
|
|
|
if (config_setting_lookup_string(setting, key_strings.scroll_line_down, &tmp))
|
|
|
|
s->key_scroll_line_down= key_parse(&tmp);
|
|
|
|
if (config_setting_lookup_string(setting, key_strings.half_page_up, &tmp))
|
|
|
|
s->key_half_page_up = key_parse(&tmp);
|
|
|
|
if (config_setting_lookup_string(setting, key_strings.half_page_down, &tmp))
|
|
|
|
s->key_half_page_down = key_parse(&tmp);
|
|
|
|
if (config_setting_lookup_string(setting, key_strings.page_bottom, &tmp))
|
|
|
|
s->key_page_bottom = key_parse(&tmp);
|
|
|
|
if (config_setting_lookup_string(setting, key_strings.peer_list_up, &tmp))
|
|
|
|
s->key_peer_list_up = key_parse(&tmp);
|
|
|
|
if (config_setting_lookup_string(setting, key_strings.peer_list_down, &tmp))
|
|
|
|
s->key_peer_list_down = key_parse(&tmp);
|
|
|
|
if (config_setting_lookup_string(setting, key_strings.toggle_peerlist, &tmp))
|
|
|
|
s->key_toggle_peerlist = key_parse(&tmp);
|
2014-07-28 01:06:25 +02:00
|
|
|
}
|
2014-07-29 03:40:06 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-07-21 01:12:13 +02:00
|
|
|
if ((setting = config_lookup(cfg, audio_strings.self)) != NULL) {
|
|
|
|
config_setting_lookup_int(setting, audio_strings.input_device, &s->audio_in_dev);
|
|
|
|
s->audio_in_dev = s->audio_in_dev < 0 || s->audio_in_dev > MAX_DEVICES ? 0 : s->audio_in_dev;
|
|
|
|
|
|
|
|
config_setting_lookup_int(setting, audio_strings.output_device, &s->audio_out_dev);
|
|
|
|
s->audio_out_dev = s->audio_out_dev < 0 || s->audio_out_dev > MAX_DEVICES ? 0 : s->audio_out_dev;
|
|
|
|
|
|
|
|
config_setting_lookup_float(setting, audio_strings.VAD_treshold, &s->VAD_treshold);
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-22 02:18:23 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef SOUND_NOTIFY
|
2014-07-21 01:12:13 +02:00
|
|
|
if ((setting = config_lookup(cfg, sound_strings.self)) != NULL) {
|
2014-07-23 11:25:38 +02:00
|
|
|
if ( (config_setting_lookup_string(setting, sound_strings.error, &str) != CONFIG_TRUE) ||
|
2014-07-23 20:59:36 +02:00
|
|
|
!set_sound(error, str) ) {
|
2014-08-27 19:54:02 +02:00
|
|
|
if (str && strcasecmp(str, NO_SOUND) != 0)
|
2014-10-01 06:53:45 +02:00
|
|
|
set_sound(error, PACKAGE_DATADIR "/sounds/ToxicError.wav");
|
2014-07-23 20:59:36 +02:00
|
|
|
}
|
2014-07-23 11:25:38 +02:00
|
|
|
|
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.user_log_in, &str) ||
|
2014-07-23 20:59:36 +02:00
|
|
|
!set_sound(user_log_in, str) ) {
|
2014-08-27 19:54:02 +02:00
|
|
|
if (str && strcasecmp(str, NO_SOUND) != 0)
|
2014-10-01 06:53:45 +02:00
|
|
|
set_sound(user_log_in, PACKAGE_DATADIR "/sounds/ToxicContactOnline.wav");
|
2014-07-23 20:59:36 +02:00
|
|
|
}
|
|
|
|
|
2014-07-23 11:25:38 +02:00
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.user_log_out, &str) ||
|
2014-07-23 20:59:36 +02:00
|
|
|
!set_sound(user_log_out, str) ) {
|
2014-08-27 19:54:02 +02:00
|
|
|
if (str && strcasecmp(str, NO_SOUND) != 0)
|
2014-10-01 06:53:45 +02:00
|
|
|
set_sound(user_log_out, PACKAGE_DATADIR "/sounds/ToxicContactOffline.wav");
|
2014-07-23 20:59:36 +02:00
|
|
|
}
|
|
|
|
|
2014-07-23 11:25:38 +02:00
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.call_incoming, &str) ||
|
2014-07-23 20:59:36 +02:00
|
|
|
!set_sound(call_incoming, str) ) {
|
2014-08-27 19:54:02 +02:00
|
|
|
if (str && strcasecmp(str, NO_SOUND) != 0)
|
2014-10-02 01:38:09 +02:00
|
|
|
set_sound(call_incoming, PACKAGE_DATADIR "/sounds/ToxicIncomingCall.wav");
|
2014-07-23 20:59:36 +02:00
|
|
|
}
|
2014-07-21 01:12:13 +02:00
|
|
|
|
2014-07-23 11:25:38 +02:00
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.call_outgoing, &str) ||
|
2014-07-23 20:59:36 +02:00
|
|
|
!set_sound(call_outgoing, str) ) {
|
2014-08-27 19:54:02 +02:00
|
|
|
if (str && strcasecmp(str, NO_SOUND) != 0)
|
2014-10-02 01:38:09 +02:00
|
|
|
set_sound(call_outgoing, PACKAGE_DATADIR "/sounds/ToxicOutgoingCall.wav");
|
2014-07-23 20:59:36 +02:00
|
|
|
}
|
2014-07-21 01:12:13 +02:00
|
|
|
|
2014-07-25 02:12:32 +02:00
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.generic_message, &str) ||
|
2014-07-23 20:59:36 +02:00
|
|
|
!set_sound(generic_message, str) ) {
|
2014-08-27 19:54:02 +02:00
|
|
|
if (str && strcasecmp(str, NO_SOUND) != 0)
|
2014-10-01 06:53:45 +02:00
|
|
|
set_sound(generic_message, PACKAGE_DATADIR "/sounds/ToxicRecvMessage.wav");
|
2014-07-23 20:59:36 +02:00
|
|
|
}
|
2014-07-21 01:12:13 +02:00
|
|
|
|
2014-07-23 11:25:38 +02:00
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.transfer_pending, &str) ||
|
2014-07-23 20:59:36 +02:00
|
|
|
!set_sound(transfer_pending, str) ) {
|
2014-08-27 19:54:02 +02:00
|
|
|
if (str && strcasecmp(str, NO_SOUND) != 0)
|
2014-10-01 06:53:45 +02:00
|
|
|
set_sound(transfer_pending, PACKAGE_DATADIR "/sounds/ToxicTransferStart.wav");
|
2014-07-23 20:59:36 +02:00
|
|
|
}
|
2014-07-21 01:12:13 +02:00
|
|
|
|
2014-07-23 11:25:38 +02:00
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.transfer_completed, &str) ||
|
2014-07-23 20:59:36 +02:00
|
|
|
!set_sound(transfer_completed, str) ) {
|
2014-08-27 19:54:02 +02:00
|
|
|
if (str && strcasecmp(str, NO_SOUND) != 0)
|
2014-10-01 06:53:45 +02:00
|
|
|
set_sound(transfer_completed, PACKAGE_DATADIR "/sounds/ToxicTransferComplete.wav");
|
2014-07-23 20:59:36 +02:00
|
|
|
}
|
2014-07-23 11:25:38 +02:00
|
|
|
}
|
|
|
|
else {
|
2014-10-01 06:53:45 +02:00
|
|
|
set_sound(error, PACKAGE_DATADIR "/sounds/ToxicError.wav");
|
|
|
|
set_sound(user_log_in, PACKAGE_DATADIR "/sounds/ToxicContactOnline.wav");
|
|
|
|
set_sound(user_log_out, PACKAGE_DATADIR "/sounds/ToxicContactOffline.wav");
|
2014-10-02 01:38:09 +02:00
|
|
|
set_sound(call_incoming, PACKAGE_DATADIR "/sounds/ToxicIncomingCall.wav");
|
|
|
|
set_sound(call_outgoing, PACKAGE_DATADIR "/sounds/ToxicOutgoingCall.wav");
|
2014-10-01 06:53:45 +02:00
|
|
|
set_sound(generic_message, PACKAGE_DATADIR "/sounds/ToxicRecvMessage.wav");
|
|
|
|
set_sound(transfer_pending, PACKAGE_DATADIR "/sounds/ToxicTransferStart.wav");
|
|
|
|
set_sound(transfer_completed, PACKAGE_DATADIR "/sounds/ToxicTransferComplete.wav");
|
2014-07-21 01:12:13 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
config_destroy(cfg);
|
2014-04-07 10:42:10 +02:00
|
|
|
return 0;
|
2014-07-23 11:25:38 +02:00
|
|
|
}
|