/* * Copyright (C) 2010-2012 Sebastien Helleu * * This file is part of WeeChat, the extensible chat client. * * 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. * * 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 WeeChat. If not, see . */ #ifndef __WEECHAT_IRC_NOTIFY_H #define __WEECHAT_IRC_NOTIFY_H 1 struct t_irc_server; struct t_irc_notify { struct t_irc_server *server; /* server */ char *nick; /* nick */ int check_away; /* check away status (with whois) */ /* current state of nick */ int is_on_server; /* 1 if nick is currently on server */ /* (using answer of ison command) */ char *away_message; /* current away message, NULL if */ /* nick is not away (using answer of */ /* whois command) */ /* internal stuff */ int ison_received; /* used when receiving ison answer */ struct t_irc_notify *prev_notify; /* link to previous notify */ struct t_irc_notify *next_notify; /* link to next notify */ }; extern int irc_notify_valid (struct t_irc_server *server, struct t_irc_notify *notify); extern struct t_irc_notify *irc_notify_search (struct t_irc_server *server, const char *nick); extern void irc_notify_set_server_option (struct t_irc_server *server); extern struct t_irc_notify *irc_notify_new (struct t_irc_server *server, const char *nick, int check_away); extern void irc_notify_new_for_server (struct t_irc_server *server); extern void irc_notify_new_for_all_servers (); extern void irc_notify_free (struct t_irc_server *server, struct t_irc_notify *notify); extern void irc_notify_free_all (struct t_irc_server *server); extern void irc_notify_display_list (struct t_irc_server *server); extern int irc_notify_timer_ison_cb (void *data, int remaining_calls); extern int irc_notify_timer_whois_cb (void *data, int remaining_calls); extern struct t_hdata *irc_notify_hdata_notify_cb (void *data, const char *hdata_name); extern int irc_notify_add_to_infolist (struct t_infolist *infolist, struct t_irc_notify *notify); extern void irc_notify_print_log (struct t_irc_server *server); extern void irc_notify_hook_timer_ison (); extern void irc_notify_hook_timer_whois (); extern void irc_notify_init (); extern void irc_notify_end (); #endif /* __WEECHAT_IRC_NOTIFY_H */