mirror of
https://github.com/weechat/weechat.git
synced 2026-07-03 08:13:14 +02:00
f854db17ff
New hooks: - hook - hook_command - hook_command_run - hook_completion - hook_config - hook_connect - hook_fd - hook_focus - hook_hdata - hook_hsignal - hook_info - hook_info_hashtable - hook_infolist - hook_line - hook_modifier - hook_print - hook_process - hook_signal - hook_timer - hook_url New lists (for hooks of type "hook"): - weechat_hooks_command, last_weechat_hook_command - weechat_hooks_command_run, last_weechat_hook_command_run - weechat_hooks_completion, last_weechat_hook_completion - weechat_hooks_config, last_weechat_hook_config - weechat_hooks_connect, last_weechat_hook_connect - weechat_hooks_fd, last_weechat_hook_fd - weechat_hooks_focus, last_weechat_hook_focus - weechat_hooks_hdata, last_weechat_hook_hdata - weechat_hooks_hsignal, last_weechat_hook_hsignal - weechat_hooks_info, last_weechat_hook_info - weechat_hooks_info_hashtable, last_weechat_hook_info_hashtable - weechat_hooks_infolist, last_weechat_hook_infolist - weechat_hooks_line, last_weechat_hook_line - weechat_hooks_modifier, last_weechat_hook_modifier - weechat_hooks_print, last_weechat_hook_print - weechat_hooks_process, last_weechat_hook_process - weechat_hooks_signal, last_weechat_hook_signal - weechat_hooks_timer, last_weechat_hook_timer - weechat_hooks_url, last_weechat_hook_url
70 lines
3.0 KiB
C
70 lines
3.0 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu <flashcode@flashtux.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef WEECHAT_HOOK_PRINT_H
|
|
#define WEECHAT_HOOK_PRINT_H
|
|
|
|
#include <time.h>
|
|
|
|
struct t_weechat_plugin;
|
|
struct t_infolist_item;
|
|
struct t_gui_buffer;
|
|
struct t_gui_line;
|
|
|
|
#define HOOK_PRINT(hook, var) (((struct t_hook_print *)hook->hook_data)->var)
|
|
|
|
typedef int (t_hook_callback_print)(const void *pointer, void *data,
|
|
struct t_gui_buffer *buffer,
|
|
time_t date, int date_usec,
|
|
int tags_count, const char **tags,
|
|
int displayed, int highlight,
|
|
const char *prefix, const char *message);
|
|
|
|
struct t_hook_print
|
|
{
|
|
t_hook_callback_print *callback; /* print callback */
|
|
struct t_gui_buffer *buffer; /* buffer selected (NULL = all) */
|
|
int tags_count; /* number of tags selected */
|
|
char ***tags_array; /* tags selected (NULL = any) */
|
|
char *message; /* part of message (NULL/empty = all)*/
|
|
int strip_colors; /* strip colors in msg for callback? */
|
|
};
|
|
|
|
extern char *hook_print_get_description (struct t_hook *hook);
|
|
extern struct t_hook *hook_print (struct t_weechat_plugin *plugin,
|
|
struct t_gui_buffer *buffer,
|
|
const char *tags, const char *message,
|
|
int strip_colors,
|
|
t_hook_callback_print *callback,
|
|
const void *callback_pointer,
|
|
void *callback_data);
|
|
extern void hook_print_exec (struct t_gui_buffer *buffer,
|
|
struct t_gui_line *line);
|
|
extern void hook_print_free_data (struct t_hook *hook);
|
|
extern struct t_hdata *hook_print_hdata_hook_print_cb (const void *pointer,
|
|
void *data,
|
|
const char *hdata_name);
|
|
extern int hook_print_add_to_infolist (struct t_infolist_item *item,
|
|
struct t_hook *hook);
|
|
extern void hook_print_print_log (struct t_hook *hook);
|
|
|
|
#endif /* WEECHAT_HOOK_PRINT_H */
|