tox-weechat/src/twc-profile.h

152 lines
5.1 KiB
C
Raw Normal View History

2014-09-28 01:29:34 +00:00
/*
2018-04-12 21:42:34 +00:00
* Copyright (c) 2018 Håvard Pettersson <mail@haavard.me>
2014-09-28 01:29:34 +00:00
*
* This file is part of Tox-WeeChat.
*
* Tox-WeeChat 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.
*
* Tox-WeeChat 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 Tox-WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TOX_WEECHAT_PROFILE_H
#define TOX_WEECHAT_PROFILE_H
#include <stdbool.h>
#include <tox/tox.h>
#include <weechat/weechat-plugin.h>
2014-09-28 01:29:34 +00:00
#include "twc-tfer.h"
2014-09-28 01:29:34 +00:00
enum t_twc_profile_option
{
TWC_PROFILE_OPTION_SAVEFILE = 0,
TWC_PROFILE_OPTION_AUTOLOAD,
2016-12-03 11:33:05 +00:00
TWC_PROFILE_OPTION_AUTOJOIN,
2018-04-12 13:45:17 +00:00
TWC_PROFILE_OPTION_AUTOJOIN_DELAY,
2014-09-28 01:29:34 +00:00
TWC_PROFILE_OPTION_MAX_FRIEND_REQUESTS,
2014-10-11 06:28:41 +00:00
TWC_PROFILE_OPTION_PROXY_ADDRESS,
TWC_PROFILE_OPTION_PROXY_PORT,
TWC_PROFILE_OPTION_PROXY_TYPE,
2014-10-11 08:28:59 +00:00
TWC_PROFILE_OPTION_UDP,
TWC_PROFILE_OPTION_IPV6,
TWC_PROFILE_OPTION_PASSPHRASE,
2017-02-09 07:15:12 +00:00
TWC_PROFILE_OPTION_LOGGING,
TWC_PROFILE_OPTION_DOWNLOADING_PATH,
2014-09-28 01:29:34 +00:00
TWC_PROFILE_NUM_OPTIONS,
};
struct t_twc_profile
{
char *name;
struct t_config_option *options[TWC_PROFILE_NUM_OPTIONS];
struct Tox *tox;
int tox_online;
struct t_gui_buffer *buffer;
struct t_gui_nick_group *nicklist_group;
2014-09-28 01:29:34 +00:00
struct t_hook *tox_do_timer;
struct t_twc_list *chats;
2015-01-06 15:11:55 +00:00
struct t_twc_list *friend_requests;
2014-10-04 19:42:30 +00:00
struct t_twc_list *group_chat_invites;
2014-09-28 01:29:34 +00:00
struct t_hashtable *message_queues;
struct t_twc_tfer *tfer;
2014-09-28 01:29:34 +00:00
};
extern struct t_twc_list *twc_profiles;
extern struct t_config_option
*twc_config_profile_default[TWC_PROFILE_NUM_OPTIONS];
#define TWC_PROFILE_OPTION_BOOLEAN(profile, index) \
(!weechat_config_option_is_null(profile->options[index]) \
? weechat_config_boolean(profile->options[index]) \
: (!weechat_config_option_is_null(twc_config_profile_default[index]) \
? weechat_config_boolean(twc_config_profile_default[index]) \
: (!weechat_config_option_default_is_null( \
twc_config_profile_default[index]) \
? weechat_config_boolean_default( \
twc_config_profile_default[index]) \
: 0)))
#define TWC_PROFILE_OPTION_INTEGER(profile, index) \
(!weechat_config_option_is_null(profile->options[index]) \
? weechat_config_integer(profile->options[index]) \
: (!weechat_config_option_is_null(twc_config_profile_default[index]) \
? weechat_config_integer(twc_config_profile_default[index]) \
: (!weechat_config_option_default_is_null( \
twc_config_profile_default[index]) \
? weechat_config_integer_default( \
twc_config_profile_default[index]) \
: 0)))
#define TWC_PROFILE_OPTION_STRING(profile, index) \
(!weechat_config_option_is_null(profile->options[index]) \
? weechat_config_string(profile->options[index]) \
: (!weechat_config_option_is_null(twc_config_profile_default[index]) \
? weechat_config_string(twc_config_profile_default[index]) \
: (!weechat_config_option_default_is_null( \
twc_config_profile_default[index]) \
? weechat_config_string_default( \
twc_config_profile_default[index]) \
: NULL)))
2014-10-11 08:24:25 +00:00
2014-09-28 01:29:34 +00:00
void
twc_profile_init();
struct t_twc_profile *
twc_profile_new(const char *name);
2015-04-09 22:08:40 +00:00
enum t_twc_rc
2014-09-28 01:29:34 +00:00
twc_profile_load(struct t_twc_profile *profile);
void
twc_profile_unload(struct t_twc_profile *profile);
void
twc_profile_autoload();
int
twc_profile_save_data_file(struct t_twc_profile *profile);
2014-09-28 01:29:34 +00:00
void
twc_profile_refresh_online_status(struct t_twc_profile *profile);
void
twc_profile_set_online_status(struct t_twc_profile *profile, bool online);
struct t_twc_profile *
twc_profile_search_name(const char *name);
struct t_twc_profile *
twc_profile_search_buffer(struct t_gui_buffer *buffer);
struct t_twc_profile *
twc_profile_search_tox(struct Tox *tox);
2017-02-09 07:15:12 +00:00
enum t_twc_rc
twc_profile_set_logging(struct t_twc_profile *profile, bool logging);
2014-09-28 01:29:34 +00:00
void
twc_profile_delete(struct t_twc_profile *profile, bool delete_data);
void
twc_profile_free(struct t_twc_profile *profile);
void
twc_profile_free_all();
#endif /* TOX_WEECHAT_PROFILE_H */