From 00a3f990b3e512a7dc14343dd522a3a8497c4762 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Tue, 6 Dec 2011 22:57:21 +0100 Subject: api: add new function nicklist_get_next_item --- doc/en/weechat_plugin_api.en.txt | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) (limited to 'doc/en/weechat_plugin_api.en.txt') diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index ca59b681e..3c5cb4c94 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -10129,6 +10129,57 @@ weechat.nicklist_remove_all(buffer) weechat.nicklist_remove_all(my_buffer) ---------------------------------------- +weechat_nicklist_get_next_item +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +_New in version 0.3.7._ + +Get next group or nick from nicklist (mainly used to display nicklist). + +Prototype: + +[source,C] +---------------------------------------- +void gui_nicklist_get_next_item (struct t_gui_buffer *buffer, + struct t_gui_nick_group **group, + struct t_gui_nick **nick); +---------------------------------------- + +Arguments: + +* 'buffer': buffer pointer +* 'group': pointer on pointer to group +* 'nick': pointer on pointer to nick + +C example: + +[source,C] +---------------------------------------- +struct t_gui_nick_group *ptr_group; +struct t_gui_nick *ptr_nick; + +ptr_group = NULL; +ptr_nick = NULL; +gui_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); +while (ptr_group || ptr_nick) +{ + if (ptr_nick) + { + /* nick */ + /* ... */ + } + else + { + /* group */ + /* ... */ + } + gui_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); +} +---------------------------------------- + +[NOTE] +This function is not available in scripting API. + weechat_nicklist_group_get_integer ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -- cgit v1.2.3