diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-12-06 22:57:21 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-12-06 22:57:21 +0100 |
commit | 00a3f990b3e512a7dc14343dd522a3a8497c4762 (patch) | |
tree | 4ab71d4301254e1f8dbf62355a86c2e2ec926eba /doc/en/weechat_plugin_api.en.txt | |
parent | 23c70b013bef27399911f14dae918afc702a3937 (diff) | |
download | weechat-00a3f990b3e512a7dc14343dd522a3a8497c4762.zip |
api: add new function nicklist_get_next_item
Diffstat (limited to 'doc/en/weechat_plugin_api.en.txt')
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 51 |
1 files changed, 51 insertions, 0 deletions
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 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |