1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/*
* typing-bar-item.c - bar items for typing plugin
*
* Copyright (C) 2021 Sébastien Helleu <flashcode@flashtux.org>
*
* 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/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "../weechat-plugin.h"
#include "typing.h"
#include "typing-bar-item.h"
#include "typing-config.h"
#include "typing-status.h"
/*
* Callback used to build a string with the list of nicks typing on the buffer.
*/
void
typing_bar_item_nicks_map_cb (void *data,
struct t_hashtable *hashtable,
const void *key, const void *value)
{
char **str_nicks_typing;
const char *ptr_nick;
struct t_typing_status *ptr_typing_status;
/* make C compiler happy */
(void) hashtable;
str_nicks_typing = (char **)data;
ptr_nick = (const char *)key;
ptr_typing_status = (struct t_typing_status *)value;
if ((ptr_typing_status->state == TYPING_STATUS_STATE_TYPING)
|| (ptr_typing_status->state == TYPING_STATUS_STATE_PAUSED))
{
if (*str_nicks_typing[0])
weechat_string_dyn_concat (str_nicks_typing, ", ", -1);
if (ptr_typing_status->state == TYPING_STATUS_STATE_PAUSED)
weechat_string_dyn_concat (str_nicks_typing, "(", -1);
weechat_string_dyn_concat (str_nicks_typing, ptr_nick, -1);
if (ptr_typing_status->state == TYPING_STATUS_STATE_PAUSED)
weechat_string_dyn_concat (str_nicks_typing, ")", -1);
}
}
/*
* Returns content of bar item "typing": users currently typing on the buffer.
*/
char *
typing_bar_item_typing (const void *pointer, void *data,
struct t_gui_bar_item *item,
struct t_gui_window *window,
struct t_gui_buffer *buffer,
struct t_hashtable *extra_info)
{
struct t_hashtable *ptr_nicks;
char **str_nicks_typing, **str_typing;
/* make C compiler happy */
(void) pointer;
(void) data;
(void) item;
(void) window;
(void) extra_info;
if (!weechat_config_boolean (typing_config_look_enabled_nicks))
return NULL;
ptr_nicks = weechat_hashtable_get (typing_status_nicks, buffer);
if (!ptr_nicks)
return NULL;
if (weechat_hashtable_get_integer (ptr_nicks, "items_count") == 0)
return NULL;
str_nicks_typing = weechat_string_dyn_alloc (128);
weechat_hashtable_map (ptr_nicks,
&typing_bar_item_nicks_map_cb, str_nicks_typing);
str_typing = weechat_string_dyn_alloc (256);
/* TRANSLATORS: this text is displayed before the list of nicks typing in the bar item "typing", it must be as short as possible */
weechat_string_dyn_concat (str_typing, _("Typing: "), -1);
weechat_string_dyn_concat (str_typing, *str_nicks_typing, -1);
weechat_string_dyn_free (str_nicks_typing, 1);
return weechat_string_dyn_free (str_typing, 0);
}
/*
* Initializes typing bar items.
*/
void
typing_bar_item_init ()
{
weechat_bar_item_new (TYPING_BAR_ITEM_NAME,
&typing_bar_item_typing, NULL, NULL);
}
|