7099 lines
175 KiB
Plaintext
7099 lines
175 KiB
Plaintext
WeeChat Plugin API Reference
|
|
============================
|
|
FlashCode <flashcode@flashtux.org>
|
|
|
|
|
|
This manual documents WeeChat chat client, it is part of WeeChat.
|
|
|
|
Latest version of this document can be found on this page:
|
|
http://weechat.flashtux.org/doc.php
|
|
|
|
|
|
[[introduction]]
|
|
Introduction
|
|
------------
|
|
|
|
WeeChat (Wee Enhanced Environment for Chat) is a free chat client, fast and
|
|
light, designed for many operating systems.
|
|
|
|
This manual documents WeeChat plugins API, used by C plugins to interact with
|
|
WeeChat core.
|
|
|
|
[[plugins_in_weechat]]
|
|
Plugins in WeeChat
|
|
------------------
|
|
|
|
A plugin is a C program which can call WeeChat functions defined in an
|
|
interface.
|
|
|
|
This C program does not need WeeChat sources to compile and can be dynamically
|
|
loaded into WeeChat with command `/plugin`.
|
|
|
|
The plugin has to be a dynamic library, for dynamic loading by operating
|
|
system.
|
|
Under GNU/Linux, the file has ".so" extension, ".dll" under Windows.
|
|
|
|
The plugin has to include "weechat-plugin.h" file (available in WeeChat source
|
|
code).
|
|
This file defines structures and types used to communicate with WeeChat.
|
|
|
|
[[macros]]
|
|
Macros
|
|
~~~~~~
|
|
|
|
The plugin must use some macros (to define some variables):
|
|
|
|
WEECHAT_PLUGIN_NAME("name")::
|
|
plugin name
|
|
|
|
WEECHAT_PLUGIN_DESCRIPTION("description")::
|
|
short description of plugin
|
|
|
|
WEECHAT_PLUGIN_VERSION("1.0")::
|
|
plugin version
|
|
|
|
WEECHAT_PLUGIN_LICENSE("GPL3")::
|
|
plugin license
|
|
|
|
[[main_functions]]
|
|
Main functions
|
|
~~~~~~~~~~~~~~
|
|
|
|
The plugin must use two functions:
|
|
|
|
* weechat_plugin_init
|
|
* weechat_plugin_end
|
|
|
|
weechat_plugin_init
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
This function is called when plugin is loaded by WeeChat.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_plugin_init (struct t_weechat_plugin *plugin,
|
|
int argc, char *argv[]);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'plugin': pointer to WeeChat plugin structure
|
|
* 'argc': number of arguments for plugin (given on command line by user)
|
|
* 'argv': arguments for plugin
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_RC_OK' if successful (plugin will be loaded)
|
|
* 'WEECHAT_RC_ERROR' if error (plugin will NOT be loaded)
|
|
|
|
weechat_plugin_end
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
This function is called when plugin is unloaded by WeeChat.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_plugin_end (struct t_weechat_plugin *plugin);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'plugin': pointer to WeeChat plugin structure
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_RC_OK' if successful
|
|
* 'WEECHAT_RC_ERROR' if error
|
|
|
|
[[compile_plugin]]
|
|
Compile plugin
|
|
~~~~~~~~~~~~~~
|
|
|
|
Compile does not need WeeChat sources, only file 'weechat-plugin.h' is
|
|
required.
|
|
|
|
To compile a plugin which has one file "toto.c" (under GNU/Linux):
|
|
|
|
----------------------------------------
|
|
$ gcc -fPIC -Wall -c toto.c
|
|
$ gcc -shared -fPIC -o libtoto.so toto.o
|
|
----------------------------------------
|
|
|
|
[[load_plugin]]
|
|
Load plugin
|
|
~~~~~~~~~~~
|
|
|
|
Copy file 'libtoto.so' into system plugins directory (for example
|
|
'/usr/local/lib/weechat/plugins') or into user's plugins directory (for example
|
|
'/home/xxxxx/.weechat/plugins').
|
|
|
|
Under WeeChat:
|
|
|
|
----------------------------------------
|
|
/plugin load toto
|
|
----------------------------------------
|
|
|
|
[[plugin_example]]
|
|
Plugin example
|
|
~~~~~~~~~~~~~~
|
|
|
|
Full example of plugin, which adds a command '/double': displays two times
|
|
arguments on current buffer, or execute two times a command (ok that's not
|
|
very useful, but that's just an example!):
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
#include <stdlib.h>
|
|
|
|
#include "weechat-plugin.h"
|
|
|
|
WEECHAT_PLUGIN_NAME("double");
|
|
WEECHAT_PLUGIN_DESCRIPTION("Test plugin for WeeChat");
|
|
WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
|
|
WEECHAT_PLUGIN_VERSION("0.1");
|
|
WEECHAT_PLUGIN_LICENSE("GPL3");
|
|
|
|
struct t_weechat_plugin *weechat_plugin = NULL;
|
|
|
|
|
|
/* callback for command "/double" */
|
|
|
|
int
|
|
command_double_cb (void *data, struct t_gui_buffer *buffer, int argc,
|
|
char **argv, char **argv_eol)
|
|
{
|
|
/* make C compiler happy */
|
|
(void) data;
|
|
(void) buffer;
|
|
(void) argv;
|
|
|
|
if (argc > 1)
|
|
{
|
|
weechat_command (NULL, argv_eol[1]);
|
|
weechat_command (NULL, argv_eol[1]);
|
|
}
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
int
|
|
weechat_plugin_init (struct t_weechat_plugin *plugin,
|
|
int argc, char *argv[])
|
|
{
|
|
weechat_plugin = plugin;
|
|
|
|
weechat_hook_command ("double",
|
|
"Display two times a message "
|
|
"or execute two times a command",
|
|
"message | command",
|
|
"message: message to display two times\n"
|
|
"command: command to execute two times",
|
|
NULL,
|
|
&command_double_cb, NULL);
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
int
|
|
weechat_plugin_end (struct t_weechat_plugin *plugin)
|
|
{
|
|
/* make C compiler happy */
|
|
(void) plugin;
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
----------------------------------------
|
|
|
|
[[c_plugin_api]]
|
|
C plugin API
|
|
------------
|
|
|
|
[[plugins]]
|
|
Plugins
|
|
~~~~~~~
|
|
|
|
Functions to get infos about plugins.
|
|
|
|
weechat_plugin_get_name
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Get plugin name.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_plugin_get_name (struct t_weechat_plugin *plugin);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'plugin': pointer to WeeChat plugin structure (can be NULL)
|
|
|
|
Return value:
|
|
|
|
* name of plugin, "core" for WeeChat core (if plugin pointer is NULL)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *name = weechat_plugin_get_name (plugin);
|
|
----------------------------------------
|
|
|
|
[[strings]]
|
|
Strings
|
|
~~~~~~~
|
|
|
|
Many string functions below are already available thru standard C functions,
|
|
but it's recommended to use functions in this API because they are ok with
|
|
UTF-8 and locale.
|
|
|
|
weechat_charset_set
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Set new plugin charset (default charset is 'UTF-8', so if your plugin uses
|
|
'UTF-8', you don't need to call this function).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_charset_set (const char *charset);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'charset': new charset to use
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_charset_set (plugin, "iso-8859-1");
|
|
----------------------------------------
|
|
|
|
weechat_iconv_to_internal
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Convert string to WeeChat internal charset (UTF-8).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_iconv_to_internal (const char *charset, const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'charset': charset to convert
|
|
* 'string': string to convert
|
|
|
|
Return value:
|
|
|
|
* converted string (must be freed by calling "free" after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = weechat_iconv_to_internal (plugin, "iso-8859-1", "iso string: é à");
|
|
/* ... */
|
|
free (str);
|
|
----------------------------------------
|
|
|
|
weechat_iconv_from_internal
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Convert string from internal WeeChat charset (UTF-8) to another.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_iconv_from_internal (const char *charset, const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'charset': target charset
|
|
* 'string': string to convert
|
|
|
|
Return value:
|
|
|
|
* converted string (must be freed by calling "free" after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = weechat_iconv_from_internal ("iso-8859-1", "utf-8 string: é à");
|
|
/* ... */
|
|
free (str);
|
|
----------------------------------------
|
|
|
|
weechat_gettext
|
|
^^^^^^^^^^^^^^^
|
|
|
|
Return translated string (depends on local language).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_gettext (const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string to translate
|
|
|
|
Return value:
|
|
|
|
* translated string
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = weechat_gettext ("hello !");
|
|
----------------------------------------
|
|
|
|
weechat_ngettext
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
Return translated string, using single or plural form, according to 'count'
|
|
argument.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_ngettext (const char *string, const char *plural,
|
|
int count);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string to translate, single form
|
|
* 'plural': string to translate, plural form
|
|
* 'count': used to choose between single and plural form (choice is made
|
|
according to local language)
|
|
|
|
Return value:
|
|
|
|
* translated string
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = weechat_ngettext ("file", "files", num_files);
|
|
----------------------------------------
|
|
|
|
weechat_strndup
|
|
^^^^^^^^^^^^^^^
|
|
|
|
Return duplicated string, with 'length' chars max.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_strndup (const char *string, int length);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string to duplicate
|
|
* 'length': max chars to duplicate
|
|
|
|
Return value:
|
|
|
|
* duplicated string (must be freed by calling "free" after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = weechat_strndup ("abcdef", 3); /* result: "abc" */
|
|
/* ... */
|
|
free (str);
|
|
----------------------------------------
|
|
|
|
weechat_string_tolower
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Convert UTF-8 string to lower case.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_string_tolower (const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string to convert
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = "AbCdé";
|
|
weechat_string_tolower (str); /* str is now: "abcdé" */
|
|
----------------------------------------
|
|
|
|
weechat_string_toupper
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Convert UTF-8 string to upper case.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_string_toupper (const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string to convert
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = "AbCdé";
|
|
weechat_string_tolower (str); /* str is now: "ABCDé" */
|
|
----------------------------------------
|
|
|
|
weechat_strcasecmp
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Locale and case independent string comparison.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_strcasecmp (const char *string1, const char *string2);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string1': first string for comparison
|
|
* 'string2': second string for comparison
|
|
|
|
Return value:
|
|
|
|
* difference between two strings:
|
|
** negative if string1 < string2
|
|
** zero if string1 == string2
|
|
** positive if string1 > string2
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int diff = weechat_strcasecmp ("aaa", "CCC"); /* == -2 */
|
|
----------------------------------------
|
|
|
|
weechat_strcmp_ignore_chars
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Locale (and optionally case independent) string comparison, ignoring some
|
|
chars.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_strcmp_ignore_chars (const char *string1, const char *string2,
|
|
const char *chars_ignored,
|
|
int case_sensitive);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string1': first string for comparison
|
|
* 'string2': second string for comparison
|
|
* 'chars_ignored': string with chars to ignored
|
|
* 'case_sensitive': 1 for case sensitive comparison, otherwise 0
|
|
|
|
Return value:
|
|
|
|
* difference between two strings:
|
|
** negative if string1 < string2
|
|
** zero if string1 == string2
|
|
** positive if string1 > string2
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int diff = weechat_strcmp_ignore_chars ("a-b", "--a-e", "-", 1); /* == -3 */
|
|
----------------------------------------
|
|
|
|
weechat_strcasestr
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Locale and case independent string search.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_strcasestr (const char *string, const char *search);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'search': string to search in 'string'
|
|
|
|
Return value:
|
|
|
|
* pointer to string found, or NULL if not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *pos = weechat_strcasestr ("aBcDeF", "de"); /* result: pointer to "DeF" */
|
|
----------------------------------------
|
|
|
|
weechat_string_match
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Check if a string matches a mask.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_string_match (const char *string, const char *mask,
|
|
int case_sensitive);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'mask': mask, can begin or end with "`*`" (no other "`*`" are allowed inside
|
|
mask)
|
|
|
|
Return value:
|
|
|
|
* 1 if string matches mask, otherwise 0
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int match1 = weechat_string_match ("abcdef", "abc*", 0); /* == 1 */
|
|
int match2 = weechat_string_match ("abcdef", "*dd*", 0); /* == 0 */
|
|
int match3 = weechat_string_match ("abcdef", "*def", 0); /* == 1 */
|
|
int match4 = weechat_string_match ("abcdef", "*de*", 0); /* == 1 */
|
|
----------------------------------------
|
|
|
|
weechat_string_replace
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Replace all occurences of a string by another string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_string_replace (const char *string, const char *search,
|
|
const char *replace);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'search': string to replace
|
|
* 'replace': replacement for string 'search'
|
|
|
|
Return value:
|
|
|
|
* string with 'search' replaced by 'replace' (must be freed by calling "free"
|
|
after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = weechat_string_replace ("test", "s", "x"); /* result: "text" */
|
|
/* ... */
|
|
free (str);
|
|
----------------------------------------
|
|
|
|
weechat_string_remove_quotes
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Remove quotes at beginning and end of string (ignore spaces if there are before
|
|
first quote or after last quote).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_string_remove_quotes (const char *string, const char *quotes);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'quotes': string with list of quotes
|
|
|
|
Return value:
|
|
|
|
* string without quotes at beginning/end (must be freed by calling "free"
|
|
after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = weechat_string_remove_quotes (string, " 'abc' ", "'"); /* result: "abc" */
|
|
/* ... */
|
|
free (str);
|
|
----------------------------------------
|
|
|
|
weechat_string_strip
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Strip chars at beginning and/or end of string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_string_strip (const char *string, int left, int right,
|
|
const char *chars);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'left': strip left chars if different from 0
|
|
* 'right': strip right chars if different from 0
|
|
* 'chars': string with chars to strip
|
|
|
|
Return value:
|
|
|
|
* stripped string (must be freed by calling "free" after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = weechat_string_strip (".abc -", 0, 1, "- ."); /* result: ".abc" */
|
|
/* ... */
|
|
free (str);
|
|
----------------------------------------
|
|
|
|
weechat_string_has_highlight
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Check if a string has one or more highlights, using list of highlight words.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_string_has_highlight (const char *string,
|
|
const char highlight_words);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'highlight_words': list of highlight words, separated by comma
|
|
|
|
Return value:
|
|
|
|
* 1 if string has one or more highlights, otherwise 0
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int hl = weechat_string_has_highlight ("my test string", "test,word2"); /* == 1 */
|
|
----------------------------------------
|
|
|
|
weechat_string_mask_to_regex
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return a regex, built with a mask, where only special char is "`*`". All other
|
|
special chars for regex are escaped.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_string_mask_to_regex (const char *mask);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'mask': mask
|
|
|
|
Return value:
|
|
|
|
* regular expression, as string (must be freed by calling "free" after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str_regex = weechat_string_mask_to_regex ("test*mask");
|
|
/* result: "test.*mask" */
|
|
/* ... */
|
|
free (str_regex);
|
|
----------------------------------------
|
|
|
|
weechat_string_explode
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Explode a string according to one or more delimiter(s).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char **weechat_string_explode (const char *string, const char *separators,
|
|
int keep_eol, int num_items_max,
|
|
int *num_items);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string to explode
|
|
* 'separators': delimiters used for explosion
|
|
* 'keep_eol': if different from 0, then each argument will contain all string
|
|
until end of line (see example below)
|
|
* 'num_items_max': maximum number of items created (0 = no limit)
|
|
* 'num_items': pointer to int which will contain number of items created
|
|
|
|
Return value:
|
|
|
|
* array of strings, NULL if problem (must be freed by calling
|
|
<<_weechat_string_free_exploded>> after use)
|
|
|
|
Examples:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char **argv;
|
|
int argc;
|
|
argv = weechat_string_explode ("abc de fghi", " ", 0, 0, &argc);
|
|
/* result: argv[0] == "abc"
|
|
argv[1] == "de"
|
|
argv[2] == "fghi"
|
|
argv[3] == NULL
|
|
argc == 3
|
|
*/
|
|
weechat_string_free_exploded (argv);
|
|
|
|
argv = weechat_string_explode ("abc de fghi", " ", 1, 0, &argc);
|
|
/* result: argv[0] == "abc de fghi"
|
|
argv[1] == "de fghi"
|
|
argv[2] == "fghi"
|
|
argv[3] == NULL
|
|
argc == 3
|
|
*/
|
|
weechat_string_free_exploded (argv);
|
|
----------------------------------------
|
|
|
|
weechat_string_free_exploded
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Free memory used by a string explosion.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_string_free_exploded (char **exploded_string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'exploded_string': string exploded by function <<_weechat_string_explode>>
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *argv;
|
|
int argc;
|
|
argv = weechat_string_explode (string, " ", 0, 0, &argc);
|
|
/* ... */
|
|
weechat_string_free_exploded (argv);
|
|
----------------------------------------
|
|
|
|
weechat_string_build_with_exploded
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Build a string with exploded string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_string_build_with_exploded (char **exploded_string,
|
|
const char *separator);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'exploded_string': string exploded by function <<_weechat_string_explode>>
|
|
* 'separator': string used to separate strings
|
|
|
|
Return value:
|
|
|
|
* string built with exploded string (must be freed by calling "free" after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char **argv;
|
|
int argc;
|
|
argv = weechat_string_explode ("abc def ghi", " ", 0, 0, &argc);
|
|
char *str = weechat_string_build_with_exploded (argv, ";");
|
|
/* str == "abc;def;ghi" */
|
|
/* ... */
|
|
free (str);
|
|
----------------------------------------
|
|
|
|
weechat_string_split_command
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Split a list of commands separated by 'separator' (which can be escaped by "\"
|
|
in string).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char **weechat_string_split_command (const char *command, char separator);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'command': command to split
|
|
* 'separator': separator
|
|
|
|
Return value:
|
|
|
|
* array of strings, NULL if problem (must be freed by calling
|
|
<<_weechat_free_split_command>> after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char **argv = weechat_string_split_command ("/command1 arg;/command2", ';');
|
|
/* result: argv[0] == "/command1 arg"
|
|
argv[1] == "/command2"
|
|
*/
|
|
weechat_free_split_command (argv);
|
|
----------------------------------------
|
|
|
|
weechat_string_free_split_command
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Free memory used by a split command.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_string_free_split_command (char **split_command);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'split_command': command split by <<_weechat_string_split_command>>
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char **argv = weechat_string_split_command ("/command1 arg;/command2", ';');
|
|
/* ... */
|
|
weechat_free_split_command (argv);
|
|
----------------------------------------
|
|
|
|
weechat_string_format_size
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Build a string with formatted file size and a unit translated to local
|
|
language.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_string_format_size (unsigned long size);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'size': size (in bytes)
|
|
|
|
Return value:
|
|
|
|
* formatted string (must be freed by calling "free" after use)
|
|
|
|
Examples:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
/* examples with english locale */
|
|
|
|
char *str = weechat_string_format_size (0); /* str == "0 byte" */
|
|
/* ... */
|
|
free (str);
|
|
|
|
char *str = weechat_string_format_size (200); /* str == "200 bytes" */
|
|
/* ... */
|
|
free (str);
|
|
|
|
char *str = weechat_string_format_size (1536); /* str == "1.5 KB" */
|
|
/* ... */
|
|
free (str);
|
|
|
|
char *str = weechat_string_format_size (2097152); /* str == "2 MB" */
|
|
/* ... */
|
|
free (str);
|
|
----------------------------------------
|
|
|
|
weechat_string_remove_color
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Remove WeeChat colors from a string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_string_remove_color (const char *string,
|
|
const char *replacement);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'replacement': if not NULL and not empty, WeeChat color codes are replaced by
|
|
first char of this string, otherwise WeeChat color codes and following chars
|
|
(if related to color) are removed from string
|
|
|
|
Return value:
|
|
|
|
* string without color (must be freed by calling "free" after use)
|
|
|
|
Examples:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
/* remove color codes */
|
|
char *str = weechat_string_remove_color (my_string1, NULL);
|
|
/* ... */
|
|
free (str);
|
|
|
|
/* replace color codes by "?" */
|
|
char *str = weechat_string_remove_color (my_string2, "?");
|
|
/* ... */
|
|
free (str);
|
|
----------------------------------------
|
|
|
|
[[utf-8]]
|
|
UTF-8
|
|
~~~~~
|
|
|
|
Some UTF-8 string functions.
|
|
|
|
weechat_utf8_has_8bits
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Check if a string has 8-bits chars.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_has_8bits (const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
|
|
Return value:
|
|
|
|
* 1 if string has 8-bits chars, 0 if only 7-bits chars
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_utf8_has_8bits (string))
|
|
{
|
|
/* ... */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_utf8_is_valid
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Check if a string is UTF-8 valid.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_is_valid (const char *string, char **error);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'error': if not NULL, '*error*' is set with pointer to first non valid UTF-8
|
|
char in string, if any
|
|
|
|
Return value:
|
|
|
|
* 1 if UTF-8 string is valid, otherwise 0
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *error;
|
|
if (weechat_utf8_is_valid (string, &error))
|
|
{
|
|
/* ... */
|
|
}
|
|
else
|
|
{
|
|
/* "error" points to first invalid char */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_utf8_normalize
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Normalize UTF-8 string: remove non UTF-8 chars and replace them by a char.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_utf8_normalize (const char *string, char replacement);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'replacement': replacement char for invalid chars
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_utf8_normalize (string, '?');
|
|
----------------------------------------
|
|
|
|
weechat_utf8_prev_char
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return pointer to previous UTF-8 char in a string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_utf8_prev_char (const char *string_start, const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string_start': start of string (function will not return a char before this
|
|
pointer)
|
|
* 'string': pointer to string (must be > = 'string_start')
|
|
|
|
Return value:
|
|
|
|
* pointer to previous UTF-8 char, NULL if not found (start of string reached)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *prev_char = weechat_utf8_prev_char (string, ptr_in_string);
|
|
----------------------------------------
|
|
|
|
weechat_utf8_next_char
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return pointer to next UTF-8 char in a string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_utf8_next_char (const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
|
|
Return value:
|
|
|
|
* pointer to next UTF-8 char, NULL if not found (end of string reached)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *next_char = weechat_utf8_next_char (string);
|
|
----------------------------------------
|
|
|
|
weechat_utf8_char_size
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return UTF-8 char size (in bytes).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_char_size (const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
|
|
Return value:
|
|
|
|
* UTF-8 char size (in bytes)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int char_size = weechat_utf8_char_size ("être"); /* == 2 */
|
|
----------------------------------------
|
|
|
|
weechat_utf8_strlen
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return UTF-8 string length (in UTF-8 chars).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_strlen (const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
|
|
Return value:
|
|
|
|
* UTF-8 string length (number of UTF-8 chars)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int length = weechat_utf8_strlen ("chêne"); /* == 5 */
|
|
----------------------------------------
|
|
|
|
weechat_utf8_strnlen
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return UTF-8 string length (in UTF-8 chars), for max 'bytes' in string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_strnlen (const char *string, int bytes);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'bytes': max bytes
|
|
|
|
Return value:
|
|
|
|
* UTF-8 string length (number of UTF-8 chars)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int length = weechat_utf8_strnlen ("chêne", 4); /* == 3 */
|
|
----------------------------------------
|
|
|
|
weechat_utf8_strlen_screen
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return number of chars needed on screen to display UTF-8 string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_strlen_screen (const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
|
|
Return value:
|
|
|
|
* number of chars needed on screen to display UTF-8 string
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int length_on_screen = weechat_utf8_strlen_screen ("é"); /* == 1 */
|
|
----------------------------------------
|
|
|
|
weechat_utf8_charcasecmp
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Compare two UTF-8 chars, ignoring case.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_charcasecmp (const char *string1, const char *string2);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string1': first string for comparison
|
|
* 'string2': second string for comparison
|
|
|
|
Return value:
|
|
|
|
* difference between first char of each string:
|
|
** negative if char1 < char2
|
|
** zero if char1 == char2
|
|
** positive if char1 > char2
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int diff = weechat_utf8_charcasecmp ("aaa", "CCC"); /* == -2 */
|
|
----------------------------------------
|
|
|
|
weechat_utf8_char_size_screen
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return number of chars needed on screen to display UTF-8 char.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_char_size_screen (const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
|
|
Return value:
|
|
|
|
* number of chars needed on screen to display UTF-8 char
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int length_on_screen = weechat_utf8_char_size_screen ("é"); /* == 1 */
|
|
----------------------------------------
|
|
|
|
weechat_utf8_add_offset
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Move forward N chars in an UTF-8 string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_utf8_add_offset (const char *string, int offset);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'offset': number of chars
|
|
|
|
Return value:
|
|
|
|
* pointer to string, N chars after (NULL if it's not reachable)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *str = "chêne";
|
|
char *str2 = weechat_utf8_add_offset (str, 3); /* points to "ne" */
|
|
----------------------------------------
|
|
|
|
weechat_utf8_real_pos
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return real position in UTF-8 string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_real_pos (const char *string, int pos);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'pos': position (number of chars)
|
|
|
|
Return value:
|
|
|
|
* real potision (in bytes)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int pos = weechat_utf8_real_pos ("chêne", 3); /* == 4 */
|
|
----------------------------------------
|
|
|
|
weechat_utf8_pos
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
Return position in UTF-8 string.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_utf8_pos (const char *string, int real_pos);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'real_pos': position (bytes)
|
|
|
|
Return value:
|
|
|
|
* position (number of chars)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int pos = weechat_utf8_pos ("chêne", 4); /* == 3 */
|
|
----------------------------------------
|
|
|
|
weechat_utf8_strndup
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return duplicate string, with max N chars.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_utf8_strndup (const char *string, int max_chars);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'string': string
|
|
* 'max_chars': max chars
|
|
|
|
Return value:
|
|
|
|
* duplicated string (must be freed by calling "free" after use)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *string = weechat_utf8_strndup ("chêne", 3); /* returns "chê" */
|
|
/* ... */
|
|
free (string);
|
|
----------------------------------------
|
|
|
|
[[directories]]
|
|
Directories
|
|
~~~~~~~~~~~
|
|
|
|
Some functions related to directories.
|
|
|
|
weechat_mkdir_home
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Create a directory in WeeChat home.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_mkdir_home (char *directory, int mode);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'directory': name of directory to create
|
|
* 'mode': mode for directory
|
|
|
|
Return value:
|
|
|
|
* 1 if directory was successfully created, 0 if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (!weechat_mkdir_home ("temp"))
|
|
{
|
|
/* error */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_mkdir
|
|
^^^^^^^^^^^^^
|
|
|
|
Create a directory.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_mkdir (char *directory, int mode);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'directory': name of directory to create
|
|
* 'mode': mode for directory
|
|
|
|
Return value:
|
|
|
|
* 1 if directory was successfully created, 0 if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (!weechat_mkdir ("/tmp/mydir"))
|
|
{
|
|
/* error */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_mkdir_parents
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Create a directory and make parent directories as needed.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_mkdir_parents (char *directory, int mode);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'directory': name of directory to create
|
|
* 'mode': mode for directory
|
|
|
|
Return value:
|
|
|
|
* 1 if directory was successfully created, 0 if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (!weechat_mkdir_parents ("/tmp/my/dir"))
|
|
{
|
|
/* error */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_exec_on_files
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Find files in a directory and execute a callback on each file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_exec_on_files (const char *directory,
|
|
int hidden_files,
|
|
void *data,
|
|
void (*callback)(void *data,
|
|
const char *filename));
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'directory': directory for searching files
|
|
* 'hidden_files': 1 to include hidden files, otherwise 0
|
|
* 'data': pointer given to callback when it is called by WeeChat
|
|
* 'callback': function called for each file found, arguments:
|
|
** 'void *data': pointer
|
|
** 'const char *filename': filename found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void callback (void *data, const char *filename)
|
|
{
|
|
/* ... */
|
|
}
|
|
...
|
|
weechat_exec_on_files ("/tmp", 0, NULL, &callback);
|
|
----------------------------------------
|
|
|
|
[[util]]
|
|
Util
|
|
~~~~
|
|
|
|
Some useful functions.
|
|
|
|
weechat_timeval_cmp
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Compare two "timeval" structures.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_timeval_cmp (struct timeval *tv1, struct timeval *tv2);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'tv1': first "timeval" structure
|
|
* 'tv2': second "timeval" structure
|
|
|
|
Return value:
|
|
|
|
* -1 if tv1 < tv2
|
|
* zero if tv1 == tv2
|
|
* +1 if tv1 > tv2
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_timeval_cmp (&tv1, &tv2) > 0)
|
|
{
|
|
/* tv1 > tv2 */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_timeval_diff
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return difference (in milliseconds) between two "timeval" structures.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
long weechat_timeval_diff (struct timeval *tv1, struct timeval *tv2);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'tv1': first "timeval" structure
|
|
* 'tv2': second "timeval" structure
|
|
|
|
Return value:
|
|
|
|
* difference in milliseconds
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
long diff = weechat_timeval_diff (&tv1, &tv2);
|
|
----------------------------------------
|
|
|
|
weechat_timeval_add
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add interval (in milliseconds) to a timeval structure.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_timeval_add (struct timeval *tv, long interval);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'tv': timeval structure
|
|
* 'interval': interval (in milliseconds)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_timeval_add (&tv, 2000); /* add 2 seconds */
|
|
----------------------------------------
|
|
|
|
[[sorted_lists]]
|
|
Sorted lists
|
|
~~~~~~~~~~~~
|
|
|
|
Sorted list functions.
|
|
|
|
weechat_list_new
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
Create a new list.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist *weechat_list_new ();
|
|
----------------------------------------
|
|
|
|
Return value:
|
|
|
|
* pointer to new list
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist *list = weechat_list_new ();
|
|
----------------------------------------
|
|
|
|
weechat_list_add
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
Add an item in a list.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *weechat_list_add (struct t_weelist *weelist,
|
|
const char *data,
|
|
const char *where,
|
|
void *user_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'weelist': list pointer
|
|
* 'data': data to insert in list
|
|
* 'where': position in list:
|
|
** 'WEECHAT_LIST_POS_SORT': add in list, keeping list sorted
|
|
** 'WEECHAT_LIST_POS_BEGINNING': add to beginning of list
|
|
** 'WEECHAT_LIST_POS_END': add to end of list
|
|
* 'user_data': any pointer
|
|
|
|
Return value:
|
|
|
|
* pointer to new item
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *my_item =
|
|
weechat_list_add (list, "my data", WEECHAT_LIST_POS_SORT, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_list_search
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search an item in a list.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *weechat_list_search (struct t_weelist *weelist,
|
|
const char *data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'weelist': list pointer
|
|
* 'data': data to search in list
|
|
|
|
Return value:
|
|
|
|
* pointer to item found, NULL if item was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *item = weechat_list_search (list, "my data");
|
|
----------------------------------------
|
|
|
|
weechat_list_casesearch
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search an item in a list, ignoring case.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *weechat_list_casesearch (struct t_weelist *weelist,
|
|
const char *data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'weelist': list pointer
|
|
* 'data': data to search in list
|
|
|
|
Return value:
|
|
|
|
* pointer to item found, NULL if item was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *item = weechat_list_casesearch (list, "my data");
|
|
----------------------------------------
|
|
|
|
weechat_list_get
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
Return an item in a list by position.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *weechat_list_get (struct t_weelist *weelist,
|
|
int position);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'weelist': list pointer
|
|
* 'position': position in list (first item is 0)
|
|
|
|
Return value:
|
|
|
|
* pointer to item found, NULL if item was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *item = weechat_list_get (list, 0); /* first item */
|
|
----------------------------------------
|
|
|
|
weechat_list_set
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
Set new value for an item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_list_set (struct t_weelist_item *item, const char *value);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': item pointer
|
|
* 'value': new value for item
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_list_set (item, "new data");
|
|
----------------------------------------
|
|
|
|
weechat_list_next
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
Return next item in list.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *weechat_list_next (struct t_weelist_item *item);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': item pointer
|
|
|
|
Return value:
|
|
|
|
* pointer to next item, NULL if pointer was last item in list
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *next_item = weechat_list_next_item (item);
|
|
----------------------------------------
|
|
|
|
weechat_list_prev
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
Return previous item in list.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *weechat_list_prev (struct t_weelist_item *item);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': item pointer
|
|
|
|
Return value:
|
|
|
|
* pointer to previous item, NULL if pointer was last item in list
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_weelist_item *prev_item = weechat_list_prev_item (item);
|
|
----------------------------------------
|
|
|
|
weechat_list_string
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return string value of an item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_list_string (struct t_weelist_item *item);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': item pointer
|
|
|
|
Return value:
|
|
|
|
* string value of item
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *value = weechat_list_string (item);
|
|
----------------------------------------
|
|
|
|
weechat_list_size
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
Return size of list (number of items).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_list_size (struct t_weelist *weelist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'weelist': list pointer
|
|
|
|
Return value:
|
|
|
|
* size of list (number of items), 0 if list is empty
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int size = weechat_list_size (list);
|
|
----------------------------------------
|
|
|
|
weechat_list_remove
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Remove an item in a list.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_list_remove (struct t_weelist *weelist,
|
|
struct t_weelist_item *item);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'weelist': list pointer
|
|
* 'item': item pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_list_remove (list, item);
|
|
----------------------------------------
|
|
|
|
weechat_list_remove_all
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Remove all items in a list.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_list_remove_all (struct t_weelist *weelist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'weelist': list pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_list_remove_all (list);
|
|
----------------------------------------
|
|
|
|
weechat_list_free
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
Free a list.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_list_free (struct t_weelist *weelist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'weelist': list pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_list_free (list);
|
|
----------------------------------------
|
|
|
|
[[configuration_files]]
|
|
Configuration files
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
Functions for configuration files.
|
|
|
|
weechat_config_new
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Create a new configuration file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_file *weechat_config_new (const char *name,
|
|
int (*callback_reload)(void *data,
|
|
struct t_config_file *config_file),
|
|
void *callback_reload_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'name': name of configuration file (without path or extension)
|
|
* 'callback_reload': function called when configuration file is reloaded with
|
|
`/reload` (optional, can be NULL), arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_config_file *config_file': configuration file pointer
|
|
* 'callback_reload_data': pointer given to reload callback when it is called
|
|
by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new configuration file, NULL if an error occured
|
|
|
|
[NOTE]
|
|
File is NOT created on disk by this function. It will be created by call to
|
|
function <<_weechat_write_config>>. You should call this function only after
|
|
adding some sections (with <<_weechat_config_new_section>>) and options (with
|
|
<<_weechat_config_new_option>>).
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_config_reload_cb (void *data, struct t_config_file *config_file)
|
|
{
|
|
/* ... */
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
struct t_config_file *config_file = weechat_config_new ("test",
|
|
&my_config_reload_cb,
|
|
NULL);
|
|
----------------------------------------
|
|
|
|
weechat_config_new_section
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Create a new section in configuration file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_section *weechat_config_new_section (
|
|
struct t_config_file *config_file,
|
|
const char *name,
|
|
int user_can_add_options,
|
|
int user_can_delete_options,
|
|
int (*callback_read)(void *data,
|
|
struct t_config_file *config_file,
|
|
struct t_config_section *section,
|
|
const char *option_name,
|
|
const char *value),
|
|
void *callback_read_data,
|
|
int (*callback_write)(void *data,
|
|
struct t_config_file *config_file,
|
|
const char *section_name),
|
|
void *callback_write_data,
|
|
int (*callback_write_default)(void *data,
|
|
struct t_config_file *config_file,
|
|
const char *section_name);
|
|
void *callback_write_default_data,
|
|
int (*callback_create_option)(void *data,
|
|
struct t_config_file *config_file,
|
|
struct t_config_section *section,
|
|
const char *option_name,
|
|
const char *value),
|
|
void *callback_create_option_data,
|
|
int (*callback_delete_option)(void *data,
|
|
struct t_config_file *config_file,
|
|
struct t_config_section *section,
|
|
struct t_config_option *option),
|
|
void *callback_delete_option_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
* 'name': name of section
|
|
* 'user_can_add_options': 1 if user can create new options in section, or 0 if
|
|
it is forbidden
|
|
* 'user_can_delete_options': 1 if user can delete options in section, or 0 if
|
|
it is forbidden
|
|
* 'callback_read': function called when an option in section is read from disk
|
|
(should be NULL in most cases, except if options in section need custom
|
|
function), arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_config_file *config_file': configuration file pointer
|
|
** 'struct t_config_section *section': section pointer
|
|
** 'const char *option_name': name of option
|
|
** 'const char *value': value
|
|
* 'callback_read_data': pointer given to callback when it is called by WeeChat
|
|
* 'callback_write': function called when section is written in file (should be
|
|
NULL for most cases, except if section needs to be written by a custom
|
|
function), arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_config_file *config_file': configuration file pointer
|
|
** 'struct t_config_section *section': section pointer
|
|
** 'const char *option_name': name of option
|
|
* callback_write_data: pointer given to callback when it is called by WeeChat
|
|
* callback_write_default: function called when default values for section must
|
|
be written in file, arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_config_file *config_file': configuration file pointer
|
|
** 'const char *section_name': name of section
|
|
* 'callback_write_default_data': pointer given to callback when it is called by
|
|
WeeChat
|
|
* 'callback_create_option': function called when a new option is created in
|
|
section (NULL if section does not allow new options to be created),
|
|
arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_config_file *config_file': configuration file pointer
|
|
** 'struct t_config_section *section': section pointer
|
|
** 'const char *option_name': name of option
|
|
** 'const char *value': value
|
|
* 'callback_create_option_data': pointer given to callback when it is called by
|
|
WeeChat
|
|
* 'callback_delete_option': function called when an option is deleted in
|
|
section (NULL if section does not allow options to be deleted),
|
|
arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_config_file *config_file': configuration file pointer
|
|
** 'struct t_config_section *section': section pointer
|
|
** 'struct t_config_option *option': option pointer
|
|
* 'callback_delete_option_data': pointer given to callback when it is called by
|
|
WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new section in configuration file, NULL if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_section_read_cb (void *data, struct t_config_file *config_file,
|
|
struct t_config_section *section, const char *option_name,
|
|
const char *value)
|
|
{
|
|
/* ... */
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
int
|
|
my_section_write_cb (void *data, struct t_config_file *config_file,
|
|
const char *section_name)
|
|
{
|
|
/* ... */
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
int
|
|
my_section_write_default_cb (void *data, struct t_config_file *config_file,
|
|
const char *section_name)
|
|
{
|
|
/* ... */
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
int
|
|
my_section_create_option_cb (void *data, struct t_config_file *config_file,
|
|
struct t_config_section *section,
|
|
const char *option_name, const char *value)
|
|
{
|
|
/* ... */
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
int
|
|
my_section_delete_option_cb (void *data, struct t_config_file *config_file,
|
|
struct t_config_section *section,
|
|
struct t_config_option *option)
|
|
{
|
|
/* ... */
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/* standard section, user can not add/delete options */
|
|
struct t_config_section *new_section1 =
|
|
weechat_config_new_section (config_file, "section1", 0, 0,
|
|
NULL, NULL, /* read callback */
|
|
NULL, NULL, /* write callback */
|
|
NULL, NULL, /* write default callback */
|
|
NULL, NULL, /* create option callback */
|
|
NULL, NULL); /* delete option callback */
|
|
|
|
/* special section, user can add/delete options, and options need
|
|
callback to be read/written */
|
|
struct t_config_section *new_section2 =
|
|
weechat_config_new_section (config_file, "section2", 1, 1,
|
|
&my_section_read_cb, NULL,
|
|
&my_section_write_cb, NULL,
|
|
&my_section_write_default_cb, NULL,
|
|
&my_section_create_option_cb, NULL,
|
|
&my_section_delete_option_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_config_search_section
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search a section in a configuration file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_section *weechat_config_search_section (
|
|
struct t_config_file *config_file,
|
|
const char *section_name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
* 'section_name': name of section to search
|
|
|
|
Return value:
|
|
|
|
* pointer to section found, NULL if section was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_section *section = weechat_config_search_section (config_file,
|
|
"section");
|
|
----------------------------------------
|
|
|
|
weechat_config_new_option
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Create a new option in a section of a configuration file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_option *weechat_config_new_option (
|
|
struct t_config_file *config_file,
|
|
struct t_config_section *section,
|
|
const char *name,
|
|
const char *type,
|
|
const char *description,
|
|
const char *string_values,
|
|
int min,
|
|
int max,
|
|
const char *default_value,
|
|
const char *value,
|
|
int null_value_allowed,
|
|
int (*callback_check_value)(void *data,
|
|
struct t_config_option *option,
|
|
const char *value),
|
|
void *callback_check_value_data,
|
|
int (*callback_change)(void *data,
|
|
struct t_config_option *option),
|
|
void *callback_change_data,
|
|
int (*callback_delete)(void *data,
|
|
struct t_config_option *option),
|
|
void *callback_delete_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
* 'section': section pointer
|
|
* 'name': name of option
|
|
* 'type': type of option:
|
|
** 'boolean': boolean value (on/off)
|
|
** 'integer': integer value (with optional strings for values)
|
|
** 'string': string value
|
|
** 'color': color
|
|
* 'description': description of option
|
|
* 'string_values': values as string (separated by "|"), used for type 'integer'
|
|
(optional)
|
|
* 'min': minimum value (for type 'integer')
|
|
* 'max': maximum value (for type 'integer')
|
|
* 'default_value': default value for option (used when option is reset)
|
|
* 'value': value for option
|
|
* 'null_value_allowed': 1 if 'null' (undefined value) is allowed for option,
|
|
otherwise 0
|
|
* 'callback_check_value': function called to check new value for option
|
|
(optional), arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_config_option *option': option pointer
|
|
** 'const char *value': new value for option
|
|
* 'callback_check_value_data': pointer given to check_value callback when it
|
|
is called by WeeChat
|
|
* 'callback_change': function called when value of option has changed
|
|
(optional), arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_config_option *option': option pointer
|
|
* 'callback_change_data': pointer given to change callback when it is called
|
|
by WeeChat
|
|
* 'callback_delete': function called when option will be deleted (optional),
|
|
arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_config_option *option': option pointer
|
|
* 'callback_delete_data': pointer given to delete callback when it is called
|
|
by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new option in section, NULL if an error
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
/* boolean */
|
|
struct t_config_option *option1 =
|
|
weechat_config_new_option (config_file, section,
|
|
"option1", "My option, type boolean"
|
|
NULL, /* string values */
|
|
0, 0, /* min, max */
|
|
"on", /* default */
|
|
"on", /* value */
|
|
0, /* null value allowed */
|
|
NULL, NULL, /* check callback */
|
|
NULL, NULL, /* change callback */
|
|
NULL, NULL); /* delete callback */
|
|
|
|
/* integer */
|
|
struct t_config_option *option2 =
|
|
weechat_config_new_option (config_file, section,
|
|
"option2", "My option, type integer"
|
|
NULL, /* string values */
|
|
0, 100, /* min, max */
|
|
"15", /* default */
|
|
"15", /* value */
|
|
0, /* null value allowed */
|
|
NULL, NULL, /* check callback */
|
|
NULL, NULL, /* change callback */
|
|
NULL, NULL); /* delete callback */
|
|
|
|
/* integer (with string values) */
|
|
struct t_config_option *option3 =
|
|
weechat_config_new_option (config_file, section,
|
|
"option3", "My option, type integer (with string values)"
|
|
"top|bottom|left|right", /* string values */
|
|
0, 0, /* min, max */
|
|
"bottom", /* default */
|
|
"bottom", /* value */
|
|
0, /* null value allowed */
|
|
NULL, NULL, /* check callback */
|
|
NULL, NULL, /* change callback */
|
|
NULL, NULL); /* delete callback */
|
|
|
|
/* string */
|
|
struct t_config_option *option4 =
|
|
weechat_config_new_option (config_file, section,
|
|
"option4", "My option, type string"
|
|
NULL, /* string values */
|
|
0, 0, /* min, max */
|
|
"test", /* default */
|
|
"test", /* value */
|
|
1, /* null value allowed */
|
|
NULL, NULL, /* check callback */
|
|
NULL, NULL, /* change callback */
|
|
NULL, NULL); /* delete callback */
|
|
|
|
/* color */
|
|
struct t_config_option *option5 =
|
|
weechat_config_new_option (config_file, section,
|
|
"option5", "My option, type color"
|
|
NULL, /* string values */
|
|
0, 0, /* min, max */
|
|
"lightblue", /* default */
|
|
"lightblue", /* value */
|
|
0, /* null value allowed */
|
|
NULL, NULL, /* check callback */
|
|
NULL, NULL, /* change callback */
|
|
NULL, NULL); /* delete callback */
|
|
----------------------------------------
|
|
|
|
weechat_config_search_option
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search an option in a section of a configuration file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_option *weechat_config_search_option (
|
|
struct t_config_file *config_file,
|
|
struct t_config_section *section,
|
|
const char *option_name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
* 'section': section pointer
|
|
* 'name': name of option to search
|
|
|
|
Return value:
|
|
|
|
* pointer to option found, NULL if option was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_option *option =
|
|
weechat_config_search_option (config_file, section, "option");
|
|
----------------------------------------
|
|
|
|
weechat_config_search_with_string
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search an option with full name.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_config_search_with_string (const char *option_name,
|
|
struct t_config_file **config_file,
|
|
struct t_config_section **section,
|
|
struct t_config_option **option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option_name': full option name (format: "file.section.option")
|
|
* 'config_file': pointer to configuration file pointer, will be set with
|
|
pointer to configuration file of option found
|
|
* 'section': pointer to section pointer, will be set to section of option, if
|
|
found
|
|
* 'option': pointer to an option pointer, will be set to option pointer, if
|
|
found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_file *ptr_config_file;
|
|
struct t_config_section *ptr_section;
|
|
struct t_config_option *ptr_option;
|
|
|
|
weechat_config_search_with_string ("file.section.option",
|
|
&ptr_config_file,
|
|
&ptr_section,
|
|
&ptr_option);
|
|
if (ptr_option)
|
|
{
|
|
/* option found */
|
|
}
|
|
else
|
|
{
|
|
/* option not found */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_string_to_boolean
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Check if a text is "true" or "false", as boolean value.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_string_to_boolean (const char *text);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'text': text to analyze
|
|
|
|
Return value:
|
|
|
|
* 1 if text is "true" ("on", "yes", "y", "true", "t", "1")
|
|
* 0 if text is "false" ("off", "no", "n", "false", "f", "0")
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_config_string_to_boolean (option_value))
|
|
{
|
|
/* value is "true" */
|
|
}
|
|
else
|
|
{
|
|
/* value is "false" */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_option_reset
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Reset an option to its default value.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_option_reset (struct t_config_option *option,
|
|
int run_callback);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
* 'run_callback': 1 for calling callback if value of option is changed,
|
|
otherwise 0
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_CONFIG_OPTION_SET_OK_CHANGED' if option value has been reset
|
|
* 'WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE' if value was not changed
|
|
* 'WEECHAT_CONFIG_OPTION_SET_ERROR' if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
switch (weechat_config_option_reset (option, 1))
|
|
{
|
|
case WEECHAT_CONFIG_OPTION_SET_OK_CHANGED:
|
|
/* .... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE:
|
|
/* .... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_SET_ERROR:
|
|
/* .... */
|
|
break;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_option_set
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Set new value for an option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_option_set (struct t_config_option *option,
|
|
const char *value, int run_callback);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
* 'value': new value for option
|
|
* 'run_callback': 1 for calling chang callback if value of option is changed,
|
|
otherwise 0
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_CONFIG_OPTION_SET_OK_CHANGED' if option value has been changed
|
|
* 'WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE' if value was not changed
|
|
* 'WEECHAT_CONFIG_OPTION_SET_ERROR' if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
switch (weechat_config_option_set (option, "new_value", 1))
|
|
{
|
|
case WEECHAT_CONFIG_OPTION_SET_OK_CHANGED:
|
|
/* .... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE:
|
|
/* .... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_SET_ERROR:
|
|
/* .... */
|
|
break;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_option_set_null
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Set null (undefined value) for an option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_option_set_null (struct t_config_option *option,
|
|
int run_callback);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
* 'run_callback': 1 for calling chang callback if value of option is changed
|
|
(if it was not null), otherwise 0
|
|
|
|
[NOTE]
|
|
You can set value to null only if it is allowed for option (see
|
|
<<_weechat_config_new_option>>).
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_CONFIG_OPTION_SET_OK_CHANGED' if option value has been changed
|
|
* 'WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE' if value was not changed
|
|
* 'WEECHAT_CONFIG_OPTION_SET_ERROR' if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
switch (weechat_config_option_set_null (option, 1))
|
|
{
|
|
case WEECHAT_CONFIG_OPTION_SET_OK_CHANGED:
|
|
/* .... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE:
|
|
/* .... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_SET_ERROR:
|
|
/* .... */
|
|
break;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_option_unset
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Unset/reset option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_option_unset (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_CONFIG_OPTION_UNSET_OK_NO_RESET' if option value has not been reset
|
|
* 'WEECHAT_CONFIG_OPTION_UNSET_OK_RESET' if option value has been reset
|
|
* 'WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED' if option has been removed
|
|
* 'WEECHAT_CONFIG_OPTION_UNSET_ERROR' if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
switch (weechat_config_option_unset (option))
|
|
{
|
|
case WEECHAT_CONFIG_OPTION_UNSET_OK_NO_RESET:
|
|
/* .... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_UNSET_OK_RESET:
|
|
/* .... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED:
|
|
/* .... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_UNSET_ERROR:
|
|
/* .... */
|
|
break;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_option_rename
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Rename an option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_config_option_rename (struct t_config_option *option,
|
|
const char *new_name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
* 'new_name': new name for option
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_config_option_rename (option, "new_name");
|
|
----------------------------------------
|
|
|
|
weechat_config_option_get_pointer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return a pointer on an option property.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void *weechat_config_option_get_pointer (struct t_config_option *option,
|
|
const char *property);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
* 'property': property name:
|
|
** 'config_file': configuration file pointer ('struct t_config_file *')
|
|
** 'section': section pointer ('struct t_config_section *')
|
|
** 'name': option name ('char *')
|
|
** 'type': option type ('int *')
|
|
** 'description': option description ('char *')
|
|
** 'string_values': string values ('char *')
|
|
** 'min': minimum value ('int *')
|
|
** 'max': maximum value ('int *')
|
|
** 'default_value': default value (depends on type)
|
|
** 'value': current value (depends on type)
|
|
** 'prev_option': previous option pointer ('struct t_config_option *')
|
|
** 'next_option': next option pointer ('struct t_config_option *')
|
|
|
|
Return value:
|
|
|
|
* pointer to property asked
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *description = weechat_config_option_get_pointer (option, "description");
|
|
----------------------------------------
|
|
|
|
weechat_config_option_is_null
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Check if an option is "null" (undefined value).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_option_is_null (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* 1 if value of option is "null"
|
|
* 0 if value of option is not "null"
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_config_option_is_null (option))
|
|
{
|
|
/* value is "null" */
|
|
}
|
|
else
|
|
{
|
|
/* value is not "null" */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_boolean
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return boolean value of option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_boolean (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* boolean value of option (0 or 1)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_config_boolean (option))
|
|
{
|
|
/* value is "true" */
|
|
}
|
|
else
|
|
{
|
|
/* value is "false" */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_boolean_default
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return default boolean value of option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_boolean_default (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* default boolean value of option (0 or 1)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_config_boolean_default (option))
|
|
{
|
|
/* value is "true" */
|
|
}
|
|
else
|
|
{
|
|
/* value is "false" */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_integer
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return integer value of option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_integer (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* integer value of option
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int value = weechat_config_integer (option);
|
|
----------------------------------------
|
|
|
|
weechat_config_integer_default
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return default integer value of option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_integer_default (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* default integer value of option
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int value = weechat_config_integer_default (option);
|
|
----------------------------------------
|
|
|
|
weechat_config_string
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return string value of option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_config_string (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* string value of option
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *value = weechat_config_string (option);
|
|
----------------------------------------
|
|
|
|
weechat_config_string_default
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return default string value of option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_config_integer_default (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* default string value of option
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *value = weechat_config_string_default (option);
|
|
----------------------------------------
|
|
|
|
weechat_config_color
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return color value of option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_config_color (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* color value of option (string with name of color)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *color = weechat_config_color (option);
|
|
----------------------------------------
|
|
|
|
weechat_config_color_default
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return default color value of option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_config_color_default (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Return value:
|
|
|
|
* default color value of option (string with name of color)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *color = weechat_config_color_default (option);
|
|
----------------------------------------
|
|
|
|
weechat_config_write_option
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Write a line in a configuration file with option and its value (this function
|
|
should be called only in "write" or "write_default" callbacks for a section).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_config_write_option (struct t_config_file *config_file,
|
|
struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
* 'option': option pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_section_write_cb (void *data, struct t_config_file *config_file,
|
|
const char *section_name)
|
|
{
|
|
weechat_config_write_line (config_file, "my_section", NULL);
|
|
|
|
weechat_config_write_option (config_file, option);
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_write_line
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Write a line in a configuration file (this function should be called only in
|
|
"write" or "write_default" callbacks for a section).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_config_write_line (struct t_config_file *config_file,
|
|
const char *option_name,
|
|
const char *value, ...);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
* 'option_name': option name
|
|
* 'value': value (if NULL, then line with section name is written, for
|
|
example: "[section]")
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_section_write_cb (void *data, struct t_config_file *config_file,
|
|
const char *section_name)
|
|
{
|
|
weechat_config_write_line (config_file, "my_section", NULL);
|
|
|
|
weechat_config_write_line (config_file, "option", "%s;%d",
|
|
"value", 123);
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_write
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Write configuration file to disk.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_write (struct t_config_file *config_file);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_CONFIG_WRITE_OK' if configuration was written
|
|
* 'WEECHAT_CONFIG_WRITE_MEMORY_ERROR' if there was not enough memory
|
|
* 'WEECHAT_CONFIG_WRITE_ERROR' if another error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
switch (weechat_config_write (config_file))
|
|
{
|
|
case WEECHAT_CONFIG_WRITE_OK:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_WRITE_MEMORY_ERROR:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_WRITE_ERROR:
|
|
/* ... */
|
|
break;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_read
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Read configuration file from disk.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_read (struct t_config_file *config_file);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_CONFIG_READ_OK' if configuration was loaded
|
|
* 'WEECHAT_CONFIG_READ_MEMORY_ERROR' if there was not enough memory
|
|
* 'WEECHAT_CONFIG_READ_FILE_NOT_FOUND' if file was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
switch (weechat_config_read (config_file))
|
|
{
|
|
case WEECHAT_CONFIG_READ_OK:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_READ_MEMORY_ERROR:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_READ_FILE_NOT_FOUND:
|
|
/* ... */
|
|
break;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_reload
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Reload configuration file from disk.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_reload (struct t_config_file *config_file);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_CONFIG_READ_OK' if configuration was reloaded
|
|
* 'WEECHAT_CONFIG_READ_MEMORY_ERROR' if there was not enough memory
|
|
* 'WEECHAT_CONFIG_READ_FILE_NOT_FOUND' if file was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
switch (weechat_config_reload (config_file))
|
|
{
|
|
case WEECHAT_CONFIG_READ_OK:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_READ_MEMORY_ERROR:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_READ_FILE_NOT_FOUND:
|
|
/* ... */
|
|
break;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_option_free
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Free an option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_config_option_free (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_config_option_free (option);
|
|
----------------------------------------
|
|
|
|
weechat_config_section_free_options
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Free all options in a section.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_config_section_free_options (struct t_config_section *section);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'section': section pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_config_section_free_options (section);
|
|
----------------------------------------
|
|
|
|
weechat_config_section_free
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Free a section.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_config_section_free (struct t_config_option *option);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'section': section pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_config_section_free (section);
|
|
----------------------------------------
|
|
|
|
weechat_config_free
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Free a configuration file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_config_free (struct t_config_file *config_file);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'config_file': configuration file pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_config_free (config_file);
|
|
----------------------------------------
|
|
|
|
weechat_config_get
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Search an option with full name.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_option *weechat_config_get (const char *option_name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option_name': full option name (format: "file.section.option")
|
|
|
|
Return value:
|
|
|
|
* pointer to option found, NULL if option was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_config_option *option = weechat_config_get ("weechat.look.item_time_format");
|
|
----------------------------------------
|
|
|
|
weechat_config_get_plugin
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search an option in plugins configuration file (plugins.conf).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_config_get_plugin (const char *option_name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option_name': option name, WeeChat will add prefix "plugins.var.xxxx."
|
|
(where "xxxx" is current plugin name)
|
|
|
|
Return value:
|
|
|
|
* value of option found, NULL if option was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
/* if current plugin is "test", then look for value of option
|
|
"plugins.var.test.option" in file plugins.conf */
|
|
char *value = weechat_config_get_plugin ("option");
|
|
----------------------------------------
|
|
|
|
weechat_config_is_set_plugin
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Check if option is set in plugins configuration file (plugins.conf).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_is_set_plugin (const char *option_name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option_name': option name, WeeChat will add prefix "plugins.var.xxxx."
|
|
(where "xxxx" is current plugin name)
|
|
|
|
Return value:
|
|
|
|
* 1 if option is set, 0 if option does not exist
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_config_is_set_plugin ("option"))
|
|
{
|
|
/* option is set */
|
|
}
|
|
else
|
|
{
|
|
/* option does not exist */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_set_plugin
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Set new value for option in plugins configuration file (plugins.conf).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_set_plugin (const char *option_name, const char *value);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option_name': option name, WeeChat will add prefix "plugins.var.xxxx."
|
|
(where "xxxx" is current plugin name)
|
|
* 'value': new value for option
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_CONFIG_OPTION_SET_OK_CHANGED' if option value has been changed
|
|
* 'WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE' if value was not changed
|
|
* 'WEECHAT_CONFIG_OPTION_SET_OPTION_NOT_FOUND' if option was not found
|
|
* 'WEECHAT_CONFIG_OPTION_SET_ERROR' if other error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
switch (weechat_config_set_plugin ("option", "test_value"))
|
|
{
|
|
case WEECHAT_CONFIG_OPTION_SET_OK_CHANGED:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_SET_OPTION_NOT_FOUND:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_SET_ERROR:
|
|
/* ... */
|
|
break;
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_config_unset_plugin
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Unset option in plugins configuration file (plugins.conf).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_config_unset_plugin (const char *option_name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option_name': option name, WeeChat will add prefix "plugins.var.xxxx."
|
|
(where xxxx is current plugin name)
|
|
|
|
Return value:
|
|
|
|
* 'WEECHAT_CONFIG_OPTION_UNSET_OK_NO_RESET' if option value has not been reset
|
|
* 'WEECHAT_CONFIG_OPTION_UNSET_OK_RESET' if option value has been reset
|
|
* 'WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED' if option has been removed
|
|
* 'WEECHAT_CONFIG_OPTION_UNSET_ERROR' if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
switch (weechat_config_unset_plugin ("option"))
|
|
{
|
|
case WEECHAT_CONFIG_OPTION_UNSET_OK_NO_RESET:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_UNSET_OK_RESET:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_CONFIG_OPTION_UNSET_ERROR:
|
|
/* ... */
|
|
break;
|
|
}
|
|
----------------------------------------
|
|
|
|
[[display]]
|
|
Display
|
|
~~~~~~~
|
|
|
|
Functions to display text in buffers.
|
|
|
|
weechat_prefix
|
|
^^^^^^^^^^^^^^
|
|
|
|
Return a prefix.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_prefix (const char *prefix);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'prefix': name of prefix:
|
|
|
|
[width="60%",cols="^2,^1,^2,5",options="header"]
|
|
|========================================
|
|
| Prefix | Value | Color | Description
|
|
| 'error' | `=!=` | yellow | error message
|
|
| 'network' | `--` | magenta | message from network
|
|
| 'action' | `*` | white | self action
|
|
| 'join' | `-->` | lightgreen | someone joins current chat
|
|
| 'quit' | `<--` | lightred | someone leaves current chat
|
|
|========================================
|
|
|
|
[NOTE]
|
|
Values and colors can be customized with command `/set`.
|
|
|
|
Return value:
|
|
|
|
* prefix value (string with prefix and color codes), empty string if prefix is
|
|
not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "%sThis is an error...", weechat_prefix ("error"));
|
|
----------------------------------------
|
|
|
|
weechat_color
|
|
^^^^^^^^^^^^^
|
|
|
|
Return a string color code for display.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_color (const char *color_name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'color_name': name of color, one of:
|
|
** WeeChat option name (from weechat.color.xxx), for example 'chat_delimiters'
|
|
** color with optional background, for example 'yellow' or 'yellow,red'
|
|
** attribute:
|
|
*** 'bold': set bold
|
|
*** '-bold': remove bold
|
|
*** 'reverse': set reverse
|
|
*** '-reverse': remove reverse
|
|
*** 'italic': set italic
|
|
*** '-italic': remove italic
|
|
*** 'underline': set underline
|
|
*** '-underline': remove underline
|
|
** bar color name:
|
|
*** 'bar_fg': foreground color for bar
|
|
*** 'bar_delim': delimiters color for bar
|
|
*** 'bar_bg': background color for bar
|
|
|
|
Return value:
|
|
|
|
* string with color code, or a "reset color" code if color is not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "Color: %sblue %schat default %syellow on red",
|
|
weechat_color ("blue"),
|
|
weechat_color ("chat"),
|
|
weechat_color ("yellow,red"));
|
|
----------------------------------------
|
|
|
|
weechat_printf
|
|
^^^^^^^^^^^^^^
|
|
|
|
Display a message on a buffer.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_printf (struct t_gui_buffer *buffer, const char *message, ...);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer, if NULL, message is displayed on WeeChat buffer
|
|
* 'message': message to display
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "Hello on WeeChat buffer");
|
|
weechat_printf (buffer, "Hello on this buffer");
|
|
----------------------------------------
|
|
|
|
weechat_printf_date
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Display a message on a buffer, using a custom date.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_printf_date (struct t_gui_buffer *buffer, time_t date,
|
|
const char *message, ...);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer, if NULL, message is displayed on WeeChat buffer
|
|
* 'date': date for message
|
|
* 'message': message to display
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf_date (NULL, time (NULL) - 120, "Hello, 2 minutes ago");
|
|
----------------------------------------
|
|
|
|
weechat_printf_tags
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Display a message on a buffer, using a custom tags.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_printf_tags (struct t_gui_buffer *buffer, const char *tags,
|
|
const char *message, ...);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer, if NULL, message is displayed on WeeChat buffer
|
|
* 'tags': comma separated list of tags
|
|
* 'message': message to display
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf_tags (NULL, "notify_message",
|
|
"Message with a tag 'notify_message'");
|
|
----------------------------------------
|
|
|
|
weechat_printf_date_tags
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Display a message on a buffer, using a custom date and tags.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_printf_date_tags (struct t_gui_buffer *buffer, time_t date,
|
|
const char *tags, const char *message, ...);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer, if NULL, message is displayed on WeeChat buffer
|
|
* 'date': date for message
|
|
* 'tags': comma separated list of tags
|
|
* 'message': message to display
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf_date_tags (NULL, time (NULL) - 120, "notify_message",
|
|
"Message 2 minutes ago, with a tag 'notify_message'");
|
|
----------------------------------------
|
|
|
|
weechat_printf_y
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
Display a message on a line of a buffer with free content.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_printf_y (struct t_gui_buffer *buffer, int y,
|
|
const char *message, ...);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'y': line number (first line is 0)
|
|
* 'message': message to display
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf_y (buffer, 2, "My message on third line");
|
|
----------------------------------------
|
|
|
|
weechat_log_printf
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Write a message in WeeChat log file (weechat.log).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_log_printf (const char *message, ...);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'message': message to write
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_log_printf ("My message in log file");
|
|
----------------------------------------
|
|
|
|
[[hooks]]
|
|
Hooks
|
|
~~~~~
|
|
|
|
weechat_hook_command
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a command.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_command (const char *command,
|
|
const char *description,
|
|
const char *args,
|
|
const char *args_description,
|
|
const char *completion,
|
|
int (*callback)(void *data,
|
|
struct t_gui_buffer *buffer,
|
|
int argc, char **argv,
|
|
char **argv_eol),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'command': command name
|
|
* 'description': description for command (displayed with `/help command`)
|
|
* 'args': arguments for command (displayed with `/help command`)
|
|
* 'args_description': description of arguments (displayed with `/help command`)
|
|
* 'completion': completion template for command: list of completions for each
|
|
argument, separated by space. Many completions are possible for one
|
|
argument, separated by "|". Many templates are possible for same command,
|
|
separated by "||". Default completion codes are:
|
|
include::autogen/plugin_api/completions.txt[]
|
|
** special codes:
|
|
*** '%%command': reuse completion template from command 'command'
|
|
*** '%-': stop completion
|
|
*** '%*': repeat last completion
|
|
* 'callback': function called when command is used, arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_gui_buffer *buffer': buffer where command is executed
|
|
** 'int argc': number of arguments given for command
|
|
** 'char **argv': arguments given for command
|
|
** 'char **argv_eol': arguments given for command (until end of line for each
|
|
argument)
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
For example, if command called is `/command abc def ghi`, then argv and
|
|
argv_eol contain following values:
|
|
|
|
* 'argv':
|
|
** 'argv[0]' == "abc"
|
|
** 'argv[1]' == "def"
|
|
** 'argv[2]' == "ghi"
|
|
* 'argv_eol':
|
|
** 'argv_eol[0]' == "abc def ghi"
|
|
** 'argv_eol[1]' == "def ghi"
|
|
** 'argv_eol[2]' == "ghi"
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_command_cb (void *data, struct t_gui_buffer *buffer, int argc,
|
|
char **argv, char **argv_eol)
|
|
{
|
|
/* ... */
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/* this example is inspired by command /filter */
|
|
struct t_hook *my_command_hook =
|
|
weechat_hook_command (/* command name */
|
|
"myfilter",
|
|
/* description */
|
|
"description of myfilter",
|
|
/* args */
|
|
"[list] | [enable|disable|toggle [name]] | "
|
|
"[add name plugin.buffer tags regex] | "
|
|
"[del name|-all]",
|
|
/* args description */
|
|
"description of arguments...",
|
|
/* completion */
|
|
"list"
|
|
" || enable %(filters_names)"
|
|
" || disable %(filters_names)"
|
|
" || toggle %(filters_names)"
|
|
" || add %(filters_names) %(buffers_plugins_names)|*"
|
|
" || del %(filters_names)|-all",
|
|
/* callback */
|
|
&my_command_cb,
|
|
/* callback_data */
|
|
NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_command_run
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a command when WeeChat runs it.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_command_run (const char *command,
|
|
int (*callback)(void *data,
|
|
struct t_gui_buffer *buffer,
|
|
const char *command),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'command': command to hook, may start or end with "*" as joker
|
|
* 'callback': function called when command is run, arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_gui_buffer *buffer': buffer where command is executed
|
|
** 'const char *command': the command executed, with its arguments
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
[NOTE]
|
|
Callback can return 'WEECHAT_RC_OK' or 'WEECHAT_RC_OK_EAT' (command will not
|
|
be executed by WeeChat after callback).
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_command_run_cb (void *data, struct t_gui_buffer *buffer,
|
|
const char *command)
|
|
{
|
|
weechat_printf (NULL,
|
|
"You want to complete? I'm eating the completion ahah!");
|
|
return WEECHAT_RC_OK_EAT;
|
|
}
|
|
|
|
struct t_hook *my_command_run_hook =
|
|
weechat_hook_command_run ("/input complete*",
|
|
&my_command_run_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_timer
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a timer.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_timer (long interval,
|
|
const char *align_second,
|
|
const char *max_calls,
|
|
int (*callback)(void *data,
|
|
int remaining_calls),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'interval': interval between two calls (milliseconds, so 1000 = 1 second)
|
|
* 'align_second': alignment on a second. For example, if current time is 09:00,
|
|
if interval = 60000 (60 seconds), and align_second = 60, then timer is
|
|
called each minute when second is 00
|
|
* 'max_calls': number of calls to timer (if 0, then timer has no end)
|
|
* 'callback': function called when time is reached, arguments:
|
|
** 'void *data': pointer
|
|
** 'int remaining_calls': remaining calls (-1 if timer has no end)
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_timer_cb (void *data, int remaining_calls)
|
|
{
|
|
/* ... */
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/* timer called each 20 seconds */
|
|
struct t_hook *my_timer_hook =
|
|
weechat_hook_timer (20 * 1000, 0, 0, &my_timer_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_fd
|
|
^^^^^^^^^^^^^^^
|
|
|
|
Hook a file descriptor (file or socket).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_fd (int fd,
|
|
int flag_read,
|
|
int flag_write,
|
|
int flag_exception,
|
|
int (*callback)(void *data, int fd),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'fd': file descriptor
|
|
* 'flag_read': 1 = catch read event, 0 = ignore
|
|
* 'flag_write': 1 = catch write event, 0 = ignore
|
|
* 'flag_exception': 1 = catch exception event, 0 = ignore
|
|
* 'callback': function called a selected event occurs for file (or socket),
|
|
arguments:
|
|
** 'void *data': pointer
|
|
** 'int fd': file descriptor
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_fd_cb (void *data, int fd)
|
|
{
|
|
/* ... */
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
int sock = socket (AF_INET, SOCK_STREAM, 0);
|
|
/* set socket options */
|
|
/* ... */
|
|
struct t_hook *my_fd_hook = weechat_hook_fd (sock, 1, 0, 0, &my_fd_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_process
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a process (launched with fork), and catch output.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_process (const char *command,
|
|
int timeout,
|
|
int (*callback)(void *data,
|
|
const char *command,
|
|
int return_code,
|
|
const char *stdout,
|
|
const char *stderr),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
|
|
Arguments:
|
|
|
|
* 'command': command to launch in child process
|
|
* 'timeout': timeout for command (in milliseconds): after this timeout, child
|
|
process is killed (0 means no timeout)
|
|
* 'callback': function called when data from child is available, or when child
|
|
has ended, arguments:
|
|
** 'void *data': pointer
|
|
** 'const char *command': command executed by child
|
|
** 'int return_code': return code:
|
|
*** '>= 0': child command return code
|
|
*** '< 0': 'WEECHAT_HOOK_PROCESS_OK_RUNNING' (data available, but child still
|
|
running) or 'WEECHAT_HOOK_PROCESS_ERROR' (error when launching command)
|
|
** 'stdout': standard output of command
|
|
** 'stderr': error output of command
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_process_cb (void *data, const char *command, int return_code,
|
|
const char *stdout, const char *stderr)
|
|
{
|
|
if (return_code == WEECHAT_HOOK_PROCESS_ERROR)
|
|
{
|
|
weechat_printf (NULL, "Error with command '%s'", command);
|
|
return;
|
|
}
|
|
|
|
if (return_code >= 0)
|
|
{
|
|
weechat_printf (NULL, "return_code = %d", return_code);
|
|
}
|
|
|
|
if (stdout)
|
|
{
|
|
weechat_printf (NULL, "stdout: %s", stdout);
|
|
}
|
|
|
|
if (stderr)
|
|
{
|
|
weechat_printf (NULL, "stderr: %s", stderr);
|
|
}
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
struct t_hook *my_process_hook = weechat_hook_process ("ls", 5000,
|
|
&my_process_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_connect
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a connection (background connection to a remote host).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_connect (const char *address,
|
|
int port,
|
|
int sock,
|
|
int ipv6,
|
|
void *gnutls_sess,
|
|
const char *local_hostname,
|
|
int (*callback)(void *data,
|
|
int status,
|
|
const char *ip_address),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'address': name or IP address to connect to
|
|
* 'port': port number
|
|
* 'sock': socket used to connect
|
|
* 'ipv6': 1 to use IPv6, 0 to use IPv4
|
|
* 'gnutls_sess': GnuTLS session (optional)
|
|
* 'callback': function called when connection is ok or failed, arguments:
|
|
** 'void *data': pointer
|
|
** 'int status': connection status:
|
|
*** 'WEECHAT_HOOK_CONNECT_OK': connection ok
|
|
*** 'WEECHAT_HOOK_CONNECT_ADDRESS_NOT_FOUND': address not found
|
|
*** 'WEECHAT_HOOK_CONNECT_IP_ADDRESS_NOT_FOUND': IP address not found
|
|
*** 'WEECHAT_HOOK_CONNECT_CONNECTION_REFUSED': connection refused
|
|
*** 'WEECHAT_HOOK_CONNECT_PROXY_ERROR': error with proxy
|
|
*** 'WEECHAT_HOOK_CONNECT_LOCAL_HOSTNAME_ERROR': error with local hostname
|
|
*** 'WEECHAT_HOOK_CONNECT_GNUTLS_INIT_ERROR': GnuTLS init error
|
|
*** 'WEECHAT_HOOK_CONNECT_GNUTLS_HANDSHAKE_ERROR': GnuTLS handshake error
|
|
*** 'WEECHAT_HOOK_CONNECT_MEMORY_ERROR': insufficient memory
|
|
** 'const char *ip_address': IP address found
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_connect_cb (void *data, int status, const char *ip_address)
|
|
{
|
|
switch (status)
|
|
{
|
|
case WEECHAT_HOOK_CONNECT_OK:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_ADDRESS_NOT_FOUND:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_IP_ADDRESS_NOT_FOUND:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_CONNECTION_REFUSED:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_PROXY_ERROR:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_LOCAL_HOSTNAME_ERROR:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_GNUTLS_INIT_ERROR:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_GNUTLS_HANDSHAKE_ERROR:
|
|
/* ... */
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_MEMORY_ERROR:
|
|
/* ... */
|
|
break;
|
|
}
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
struct t_hook *my_connect_hook = weechat_hook_connect ("my.server.org", 1234,
|
|
sock, 0, NULL, NULL,
|
|
&my_connect_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_print
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a message printed.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_print (struct t_gui_buffer *buffer,
|
|
const char *tags,
|
|
const char *message,
|
|
int strip_colors,
|
|
int (*callback)(void *data,
|
|
struct t_gui_buffer *buffer,
|
|
time_t date,
|
|
int tags_count,
|
|
const char **tags,
|
|
int displayed,
|
|
int highlight,
|
|
const char *prefix,
|
|
const char *message),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer, if NULL, messages from any buffer are caught
|
|
* 'tags': only messages with these tags (comma separated list) will be caught
|
|
(optional)
|
|
* 'message': only messages with this string will be caught (optional)
|
|
* 'strip_colors': if 1, colors will be stripped from message displayed, before
|
|
calling callback
|
|
* 'callback': function called when a message is printed, arguments:
|
|
** 'void *data': pointer
|
|
** 'struct t_gui_buffer *buffer': buffer pointer
|
|
** 'time_t date': date
|
|
** 'int tags_count': number of tags for line
|
|
** 'const char **tags': array with tags for line
|
|
** 'int displayed': 1 if line is displayed, 0 if it is filtered (hidden)
|
|
** 'int highlight': 1 if line has highlight, otherwise 0
|
|
** 'const char *prefix': prefix
|
|
** 'const char *message': message
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_print_cb (void *data, struct t_gui_buffer *buffer, time_t date,
|
|
int tags_count, const char **tags,
|
|
int displayed, int highlight,
|
|
const char *prefix, const char *message)
|
|
{
|
|
/* ... */
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/* catch all messages, on all buffers, without color */
|
|
struct t_hook *my_print_hook =
|
|
weechat_hook_print (NULL, NULL, NULL, 1, &my_print_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_signal
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a signal.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_signal (const char *signal,
|
|
int (*callback)(void *data,
|
|
const char *signal,
|
|
const char *type_data,
|
|
void *signal_data),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'signal': signal to catch, can begin or end with "*":
|
|
|
|
[width="80%",cols="^1,^3,^3,5",options="header"]
|
|
|========================================
|
|
| Plugin | Signal | Arguments | Description
|
|
|
|
| irc | xxx,irc_in_yyy ^1^ | string: message |
|
|
irc message from server (before irc plugin uses it)
|
|
|
|
| irc | xxx,irc_in2_yyy ^1^ | string: message |
|
|
irc message from server (after irc plugin uses it)
|
|
|
|
| irc | xxx,irc_out_yyy ^1^ | string: message |
|
|
irc message sent to server
|
|
|
|
| irc | irc_ctcp | string: message |
|
|
CTCP received
|
|
|
|
| irc | irc_dcc | string: message |
|
|
new DCC
|
|
|
|
| irc | irc_pv | string: message |
|
|
private message received
|
|
|
|
| irc | irc_channel_opened | pointer: buffer |
|
|
channel opened
|
|
|
|
| irc | irc_pv_opened | pointer: buffer |
|
|
private opened
|
|
|
|
| irc | irc_server_connecting | string: server name |
|
|
connecting to server
|
|
|
|
| irc | irc_server_connected | string: server name |
|
|
connected to server
|
|
|
|
| irc | irc_server_disconnected | string: server name |
|
|
disconnected from server
|
|
|
|
| irc | irc_ignore_removing | pointer: ignore |
|
|
removing ignore
|
|
|
|
| irc | irc_ignore_removed | - |
|
|
ignore removed
|
|
|
|
| logger | logger_start | pointer: buffer |
|
|
start logging for buffer
|
|
|
|
| logger | logger_stop | pointer: buffer |
|
|
stop logging for buffer
|
|
|
|
| logger | logger_backlog | pointer: buffer |
|
|
display backlog for buffer
|
|
|
|
| weechat | buffer_closing | pointer: buffer |
|
|
closing buffer
|
|
|
|
| weechat | buffer_closed | pointer: buffer |
|
|
buffer closed
|
|
|
|
| weechat | buffer_lines_hidden | pointer: buffer |
|
|
lines hidden in buffer
|
|
|
|
| weechat | buffer_localvar_added | pointer: buffer |
|
|
local variable has been added
|
|
|
|
| weechat | buffer_localvar_changed | pointer: buffer |
|
|
local variable has changed
|
|
|
|
| weechat | buffer_localvar_removed | pointer: buffer |
|
|
local variable has been removed
|
|
|
|
| weechat | buffer_moved | pointer: buffer |
|
|
buffer moved
|
|
|
|
| weechat | buffer_opened | pointer: buffer |
|
|
buffer opened
|
|
|
|
| weechat | buffer_renamed | pointer: buffer |
|
|
buffer renamed
|
|
|
|
| weechat | buffer_switch | pointer: buffer |
|
|
switching buffer
|
|
|
|
| weechat | buffer_title_changed | pointer: buffer |
|
|
title of buffer changed
|
|
|
|
| weechat | buffer_type_changed | pointer: buffer |
|
|
type of buffer changed
|
|
|
|
| weechat | debug_dump | - |
|
|
dump request
|
|
|
|
| weechat | filter_added | pointer: filter |
|
|
filter added
|
|
|
|
| weechat | filter_removing | pointer: filter |
|
|
removing filter
|
|
|
|
| weechat | filter_removed | - |
|
|
filter added
|
|
|
|
| weechat | filter_enabled | - |
|
|
filters enabled
|
|
|
|
| weechat | filter_disabled | - |
|
|
filters disabled
|
|
|
|
| weechat | hotlist_changed | - |
|
|
hotlist changed
|
|
|
|
| weechat | input_paste_pending | - |
|
|
paste pending
|
|
|
|
| weechat | input_search | - |
|
|
text search in buffer
|
|
|
|
| weechat | input_text_changed | - |
|
|
input text changed
|
|
|
|
| weechat | input_text_cursor_moved | - |
|
|
input text cursor moved
|
|
|
|
| weechat | key_pressed | string: key pressed |
|
|
key pressed
|
|
|
|
| weechat | nicklist_changed | - |
|
|
nicklist has changed
|
|
|
|
| weechat | partial_completion | - |
|
|
partial completion happened
|
|
|
|
| weechat | quit | string: arguments for /quit |
|
|
command `/quit` issued by user
|
|
|
|
| weechat | upgrade | - |
|
|
command `/upgrade` issued by user
|
|
|
|
| weechat | weechat_highlight | string: message with prefix |
|
|
highlight happened
|
|
|
|
| weechat | weechat_pv | string: message with prefix |
|
|
private message displayed
|
|
|
|
| weechat | window_scrolled | pointer: window |
|
|
scroll in window
|
|
|
|
| weechat | window_unzooming | pointer: current window |
|
|
unzooming window
|
|
|
|
| weechat | window_unzoomed | pointer: current window |
|
|
window unzoomed
|
|
|
|
| weechat | window_zooming | pointer: current window |
|
|
zomming window
|
|
|
|
| weechat | window_zoomed | pointer: current window |
|
|
window zoomed
|
|
|
|
| xfer | xfer_add | pointer: infolist with xfer info |
|
|
new xfer
|
|
|
|
| xfer | xfer_send_ready | pointer: infolist with xfer info |
|
|
xfer ready
|
|
|
|
| xfer | xfer_accept_resume | pointer: infolist with xfer info |
|
|
xfer accepts resume (send)
|
|
|
|
| xfer | xfer_send_accept_resume | pointer: infolist with xfer info |
|
|
xfer accepts resume (send)
|
|
|
|
| xfer | xfer_start_resume | pointer: infolist with xfer info |
|
|
start resume
|
|
|
|
| xfer | xfer_resume_ready | pointer: infolist with xfer info |
|
|
xfer resume ready
|
|
|========================================
|
|
|
|
[NOTE]
|
|
^1^ 'xxx' is IRC server name, 'yyy' is IRC command name.
|
|
|
|
* 'callback': function called when signal is received, arguments:
|
|
** 'void *data': pointer
|
|
** 'const char *signal': signal received
|
|
** 'const char *type_data': type of data sent with signal:
|
|
*** 'WEECHAT_HOOK_SIGNAL_STRING': string
|
|
*** 'WEECHAT_HOOK_SIGNAL_INT': integer number
|
|
*** 'WEECHAT_HOOK_SIGNAL_POINTER': pointer
|
|
** 'void *signal_data': data sent with signal
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_signal_cb (void *data, const char *signal, const char *type_data,
|
|
void *signal_data)
|
|
{
|
|
/* ... */
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/* catch signal "quit" */
|
|
struct t_hook *my_signal_hook = weechat_hook_signal ("quit",
|
|
&my_signal_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_signal_send
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Send a signal.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_hook_signal_send (const char *signal, const char *type_data,
|
|
void *signal_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'signal': signal to send
|
|
* 'type_data': type of data sent with signal (see <<_weechat_hook_signal>>)
|
|
* 'signal_data': data sent with signal
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_hook_signal_send ("my_signal", WEECHAT_HOOK_SIGNAL_STRING, my_string);
|
|
----------------------------------------
|
|
|
|
weechat_hook_config
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a configuration option.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_config (const char *option,
|
|
int (*callback)(void *data,
|
|
const char *option,
|
|
const char *value),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'option': option, format is full name, as used with command `/set` (for
|
|
example: `weechat.look.item_time_format`)
|
|
* 'callback': function called when configuration option is changed, arguments:
|
|
** 'void *data': pointer
|
|
** 'const char *option': name of option
|
|
** 'const char *value': new value for option
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_config_cb (void *data, const char *option, const char *value)
|
|
{
|
|
/* ... */
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/* catch changes to option "weechat.look.item_time_format" */
|
|
struct t_hook *my_config_hook = weechat_hook_config ("weechat.look.item_time_format",
|
|
&my_config_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_completion
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a completion.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_completion (const char *completion_item,
|
|
int (*callback)(void *data,
|
|
const char *completion_item,
|
|
struct t_gui_buffer *buffer,
|
|
struct t_gui_completion *completion),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'completion_item': name of completion item, after you can use '%(name)' in
|
|
a command hooked (argument 'completion')
|
|
* 'callback': function called when completion item is used (user is completing
|
|
something using this item), artuments:
|
|
** 'void *data': pointer
|
|
** 'const char *completion_item': name of completion item
|
|
** 'struct t_gui_buffer *buffer': buffer where completion is made
|
|
** 'struct t_gui_completion *completion': structure used to add words for
|
|
completion (see <<_weechat_hook_completion_list_add>>)
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
[NOTE]
|
|
Completion names are global (shared accross WeeChat and plugins). So it is
|
|
recommended to choose a name with a unique prefix, like "plugin_xxx" (where
|
|
"xxx" is your item name).
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_completion_cb (void *data, const char *completion_item,
|
|
struct t_gui_buffer *buffer,
|
|
struct t_gui_completion *completion)
|
|
{
|
|
weechat_hook_completion_list_add (completion, "word1",
|
|
0, WEECHAT_LIST_POS_SORT);
|
|
weechat_hook_completion_list_add (completion, "test_word2",
|
|
0, WEECHAT_LIST_POS_SORT);
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
struct t_hook *my_completion_hook = weechat_hook_completion ("plugin_item",
|
|
&my_completion_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_completion_list_add
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add a word for a completion.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_hook_completion_list_add (struct t_gui_completion *completion,
|
|
const char *word,
|
|
int nick_completion,
|
|
const char *where);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'completion': completion pointer
|
|
* 'word': word to add
|
|
* 'nick_completion': 1 if word is a nick, otherwise 0
|
|
* 'where': position where word will be inserted in list:
|
|
** 'WEECHAT_LIST_POS_SORT': any position, to keep list sorted
|
|
** 'WEECHAT_LIST_POS_BEGINNING': beginning of list
|
|
** 'WEECHAT_LIST_POS_END': end of list
|
|
|
|
Example: see <<_weechat_hook_completion>>.
|
|
|
|
weechat_hook_modifier
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook a modifier.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_modifier (const char *modifier,
|
|
char *(*callback)(void *data,
|
|
const char *modifier,
|
|
const char *modifier_data,
|
|
const char *string),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'modifier': modifier name, list of modifiers used by Weechat or plugins:
|
|
|
|
[width="100%",cols="^1,^2,3,4,4",options="header"]
|
|
|========================================
|
|
| Plugin | Modifier | Modifier data | String | Output
|
|
|
|
| charset | charset_decode |
|
|
plugin.buffer_name |
|
|
any string |
|
|
string decoded from charset found for plugin/buffer to UTF-8
|
|
|
|
| charset | charset_encode |
|
|
plugin.buffer_name |
|
|
any string |
|
|
string encoded from UTF-8 to charset found for plugin/buffer
|
|
|
|
| irc | irc_color_decode |
|
|
"1" to keep colors, "0" to remove colors |
|
|
any string |
|
|
string with WeeChat color codes, or without color
|
|
|
|
| irc | irc_color_encode |
|
|
"1" to keep colors, "0" to remove colors |
|
|
any string |
|
|
string with IRC color codes, or without color
|
|
|
|
| irc | irc_in_xxx ^1^ |
|
|
server name |
|
|
content of message received from IRC server |
|
|
new content of message
|
|
|
|
| irc | irc_out_xxx ^1^ |
|
|
server name |
|
|
content of message about to be sent to IRC server |
|
|
new content of message
|
|
|
|
| weechat | input_text_content |
|
|
string with buffer pointer ("0x123..") |
|
|
input buffer (from user) |
|
|
new content of input buffer
|
|
|
|
| weechat | input_text_display |
|
|
string with buffer pointer ("0x123..") |
|
|
input buffer (from user), without cursor tag |
|
|
new content of input buffer, for display only (input buffer is not changed)
|
|
|
|
| weechat | input_text_display_with_cursor |
|
|
string with buffer pointer ("0x123..") |
|
|
input buffer (from user), with cursor tag |
|
|
new content of input buffer, for display only (input buffer is not changed)
|
|
|
|
| weechat | weechat_print |
|
|
plugin;buffer_name;tags |
|
|
message printed |
|
|
new message printed
|
|
|========================================
|
|
|
|
[NOTE]
|
|
^1^ 'xxx' is IRC command name.
|
|
|
|
* 'callback': function called when modifier is used, arguments:
|
|
** 'void *data': pointer
|
|
** 'const char *modifier': name of modifier
|
|
** 'const char *modifier_data': data for modifier
|
|
** 'const char *string': string to modify (function must return copy of this
|
|
string, no changes are allowed in this string)
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *
|
|
my_modifier_cb (void *data, const char *modifier,
|
|
const char *modifier_data,
|
|
const char *string)
|
|
{
|
|
char *result;
|
|
int length;
|
|
|
|
if (!string)
|
|
return NULL;
|
|
|
|
length = strlen (string) + 5;
|
|
result = malloc (length);
|
|
if (result)
|
|
{
|
|
/* add "xxx" to any message printed */
|
|
snprintf (result, length, "%s xxx", string);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
struct t_hook *my_modifier_hook = weechat_hook_modifier ("weechat_print",
|
|
&my_modifier_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_modifier_exec
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Execute modifier(s).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_hook_modifier_exec (const char *modifier,
|
|
const char *modifier_data,
|
|
const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'modifier': modifier name
|
|
* 'modifier_data': modifier data
|
|
* 'string': string to modify
|
|
|
|
Return value:
|
|
|
|
* string modified, NULL if no changes in string were made by modifier(s)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *new_string = weechat_hook_modifier_exec ("my_modifier",
|
|
my_data, my_string);
|
|
----------------------------------------
|
|
|
|
weechat_hook_info
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
Hook an information.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_info (const char *info_name,
|
|
const char *description,
|
|
const char *(*callback)(void *data,
|
|
const char *info_name,
|
|
const char *arguments),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'info_name': name of info
|
|
* 'description': description
|
|
* 'callback': function called when info is asked, arguments:
|
|
** 'void *data': pointer
|
|
** 'const char *info_name': name of info
|
|
** 'const char *arguments': additional arguments, depending on info
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *
|
|
my_info_cb (void *data, const char *info_name, const char *arguments)
|
|
{
|
|
/* ... */
|
|
return pointer_to_string;
|
|
}
|
|
|
|
/* add info "my_info" */
|
|
struct t_hook *my_info_hook = weechat_hook_info ("my_info",
|
|
"Some info",
|
|
&my_info_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_hook_infolist
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Hook an infolist: callback will return pointer to infolist asked.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *weechat_hook_infolist (const char *infolist_name,
|
|
const char *description,
|
|
const char *(*callback)(void *data,
|
|
const char *infolist_name,
|
|
void *pointer,
|
|
const char *arguments),
|
|
void *callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist_name': name of infolist
|
|
* 'description': description
|
|
* 'callback': function called when infolist is asked, arguments:
|
|
** 'void *data': pointer
|
|
** 'const char *infolist_name': name of infolist
|
|
** 'void *pointer': pointer to an object that infolist must return (to get only
|
|
one item in infolist)
|
|
** 'const char *arguments': additional arguments, depending on infolist
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new hook, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist *
|
|
my_infolist_cb (void *data, const char *infolist_name, void *pointer,
|
|
const char *arguments)
|
|
{
|
|
struct t_infolist *my_infolist;
|
|
|
|
/* build infolist */
|
|
/* ... */
|
|
|
|
return my_infolist;
|
|
}
|
|
|
|
/* add infolist "my_infolist" */
|
|
struct t_hook *my_infolist = weechat_hook_infolist ("my_infolist",
|
|
"Infolist with some data",
|
|
&my_infolist_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_unhook
|
|
^^^^^^^^^^^^^^
|
|
|
|
Unhook something hooked.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_unhook (struct t_hook *hook);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'hook': something hooked with "weechat_hook_xxxx()"
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_hook *my_hook = weechat_hook_command ( /* ... */ );
|
|
/* ... */
|
|
weechat_unhook (my_hook);
|
|
----------------------------------------
|
|
|
|
weechat_unhook_all
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Unhook everything that has been hooked by current plugin.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_unhook_all ();
|
|
----------------------------------------
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_unhook_all ();
|
|
----------------------------------------
|
|
|
|
[[buffers]]
|
|
Buffers
|
|
~~~~~~~
|
|
|
|
Functions to create/query/close buffers.
|
|
|
|
weechat_buffer_new
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Open a new buffer.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_buffer *weechat_buffer_new (const char *name,
|
|
int (*input_callback)(void *data,
|
|
struct t_gui_buffer *buffer,
|
|
const char *input_data),
|
|
void *input_callback_data,
|
|
int (*close_callback)(void *data,
|
|
struct t_gui_buffer *buffer),
|
|
void *close_callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'name': name of buffer (must be unique for plugin)
|
|
* 'input_callback': function called when input text is entered on buffer,
|
|
arguments:
|
|
*** 'void *data': pointer
|
|
*** 'struct t_gui_buffer *buffer': buffer pointer
|
|
*** 'const char *input_data': input data
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
* 'close_callback': function called when buffer is closed, arguments:
|
|
*** 'void *data': pointer
|
|
*** 'struct t_gui_buffer *buffer': buffer pointer
|
|
* 'callback_data': pointer given to callback when it is called by WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new buffer, NULL if error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_input_cb (void *data, struct t_gui_buffer *buffer, const char *input_data)
|
|
{
|
|
weechat_printf (buffer, "Text: %s", input_data);
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
int
|
|
my_close_cb (void *data, struct t_gui_buffer *buffer)
|
|
{
|
|
weechat_printf (NULL, "Buffer '%s' will be closed!",
|
|
weechat_buffer_get_string (buffer, "name"));
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
struct t_gui_buffer *my_buffer = weechat_buffer_new ("my_buffer",
|
|
&my_input_cb, NULL,
|
|
&my_close_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_current_buffer
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return pointer to current buffer (buffer displayed by current window).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_buffer *weechat_current_buffer ();
|
|
----------------------------------------
|
|
|
|
Return value:
|
|
|
|
* pointer to current buffer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (weechat_current_buffer (), "Text on current buffer");
|
|
----------------------------------------
|
|
|
|
weechat_buffer_search
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search a buffer by plugin and/or name.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_buffer *weechat_buffer_search (const char *plugin,
|
|
const char *name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'plugin': name of plugin
|
|
* 'name': name of buffer, if it is NULL or empty string, the current buffer is
|
|
returned (buffer displayed by current window)
|
|
|
|
Return value:
|
|
|
|
* pointer to buffer found, NULL if not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_buffer *my_buffer = weechat_buffer_search ("my_plugin",
|
|
"my_buffer");
|
|
----------------------------------------
|
|
|
|
weechat_buffer_search_main
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search WeeChat main buffer ('core' buffer, first buffer displayed when WeeChat
|
|
is starting).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_buffer *weechat_buffer_search_main ();
|
|
----------------------------------------
|
|
|
|
Return value:
|
|
|
|
* pointer to WeeChat main buffer ('core' buffer)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_buffer *weechat_buffer = weechat_buffer_search_main ();
|
|
----------------------------------------
|
|
|
|
weechat_buffer_clear
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Clear content of a buffer.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_buffer_clear (struct t_gui_buffer *buffer);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_buffer *my_buffer = weechat_buffer_search ("my_plugin",
|
|
"my_buffer");
|
|
if (my_buffer)
|
|
{
|
|
weechat_buffer_clear (my_buffer);
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_buffer_close
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Close a buffer.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_buffer_close (struct t_gui_buffer *buffer);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_buffer *my_buffer = weechat_buffer_new ("my_buffer",
|
|
&my_input_cb, NULL,
|
|
&my_close_cb, NULL);
|
|
/* ... */
|
|
weechat_buffer_close (my_buffer);
|
|
----------------------------------------
|
|
|
|
weechat_buffer_merge
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Merge buffer into another buffer: both buffers will still exist separately, but
|
|
with same number, and WeeChat will display lines from both buffers (mixed
|
|
lines).
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_buffer_merge (struct t_gui_buffer *buffer,
|
|
struct t_gui_buffer *target_buffer);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'target_buffer': target buffer, where buffer will be merged
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
/* merge current buffer with weechat "core" buffer */
|
|
weechat_buffer_merge (weechat_current_buffer (),
|
|
weechat_buffer_search_main ());
|
|
----------------------------------------
|
|
|
|
weechat_buffer_unmerge
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Unmerge buffer from a group of merged buffers.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_buffer_unmerge (struct t_gui_buffer *buffer,
|
|
int number);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'number': target number for detached buffer, if it is < 1, then buffer will
|
|
be moved to number of 'buffer' + 1
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_buffer_unmerge (weechat_current_buffer (), 1);
|
|
----------------------------------------
|
|
|
|
weechat_buffer_get_integer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return integer value of a buffer property.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_buffer_get_integer (struct t_gui_buffer *buffer,
|
|
const char *property);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'property': property name:
|
|
** 'number': number of buffer (starts with 1)
|
|
** 'num_displayed': number of windows displaying buffer
|
|
** 'notify': notify level for buffer
|
|
** 'lines_hidden': 1 if at least one line is hidden on buffer (filtered), or 0
|
|
if all lines are displayed
|
|
** 'prefix_max_length': max length for prefix in this buffer
|
|
** 'time_for_each_line': 1 if time is displayed for each line in buffer
|
|
(default), otherwise 0
|
|
** 'text_search': text search type:
|
|
*** 0: no search at this moment
|
|
*** 1: backward search (direction: oldest messages)
|
|
*** 2: forward search (direction: newest messages)
|
|
** 'text_search_exact': 1 if text search is case sensitive
|
|
** 'text_search_found': 1 if text found, otherwise 0
|
|
|
|
Return value:
|
|
|
|
* integer value of property
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "my buffer number is: %d",
|
|
weechat_buffer_get_integer (my_buffer, "number"));
|
|
----------------------------------------
|
|
|
|
weechat_buffer_get_string
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return string value of a buffer property.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_buffer_get_string (struct t_gui_buffer *buffer,
|
|
const char *property);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'property': property name:
|
|
** 'plugin': name of plugin which created this buffer ("core" for WeeChat main
|
|
buffer)
|
|
** 'name': name of buffer
|
|
** 'short_name': short name of buffer
|
|
** 'tilte': title of buffer
|
|
** 'input': input text
|
|
** 'localvar_xxx': get content of local variable "xxx" (replace "xxx" by the
|
|
name of variable to read)
|
|
|
|
Return value:
|
|
|
|
* string value of property
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "name / short name of buffer are: %s / %s",
|
|
weechat_buffer_get_string (my_buffer, "name"),
|
|
weechat_buffer_get_string (my_buffer, "short_name"));
|
|
----------------------------------------
|
|
|
|
weechat_buffer_get_pointer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return pointer value of a buffer property.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_buffer_pointer (struct t_gui_buffer *buffer,
|
|
const char *property);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'property': property name:
|
|
** 'plugin': pointer to plugin which created this buffer (NULL for WeeChat main
|
|
buffer)
|
|
|
|
Return value:
|
|
|
|
* pointer value of property
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "plugin pointer of my buffer: %lx",
|
|
weechat_buffer_get_pointer (my_buffer, "plugin"));
|
|
----------------------------------------
|
|
|
|
weechat_buffer_set
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Set string value of a buffer property.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_buffer_set (struct t_gui_buffer *buffer, const char *property,
|
|
const char *value);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'property' and 'value': property name, with its value:
|
|
|
|
[width="100%",cols="^2,4,8",options="header"]
|
|
|========================================
|
|
| Name | Value | Description
|
|
|
|
| hotlist | "+", "-", WEECHAT_HOTLIST_LOW, WEECHAT_HOTLIST_MESSAGE,
|
|
WEECHAT_HOTLIST_PRIVATE, WEECHAT_HOTLIST_HIGHLIGHT |
|
|
"+": enable hotlist (global setting, buffer pointer is not used) +
|
|
"-": disable hotlist (global setting, buffer pointer is not used) +
|
|
priority: add buffer to hotlist with this priority
|
|
|
|
| unread | (N/A) |
|
|
set unread marker after last line of buffer
|
|
|
|
| display | "1", "auto" |
|
|
"1": switch to this buffer in current window +
|
|
"auto": switch to this buffer in current window, read marker is not reset
|
|
|
|
| name | any string |
|
|
set new name for buffer
|
|
|
|
| short_name | any string |
|
|
set new short name for buffer
|
|
|
|
| type | "formatted" or "free" |
|
|
set type for buffer: "formatted" (for printing chat messages), or "free" (for
|
|
free content)
|
|
|
|
| notify | "0", "1", "2", "3" |
|
|
set notify level for buffer: "0" = never add to hotlist, "1" = add for
|
|
highlights only, "2" = add for highlights and messages, "3" = add for all
|
|
messages
|
|
|
|
| title | any string |
|
|
set new title for buffer
|
|
|
|
| time_for_each_line | "0" or "1" |
|
|
"0" to hide time for all lines in buffer, "1" to see time for all lines
|
|
(default for a new buffer)
|
|
|
|
| nicklist | "0" or "1" |
|
|
"0" to remove nicklist for buffer, "1" to add nicklist for buffer
|
|
|
|
| nicklist_case_sensitive | "0" or "1" |
|
|
"0" to have case insensitive nicklist, "1" to have case sensitive nicklist
|
|
|
|
| nicklist_display_groups | "0" or "1" |
|
|
"0" to hide nicklist groups, "1" to display nicklist groups
|
|
|
|
| highlight_words | "-" or comma separated list of words |
|
|
"-" is a special value to disable any highlight on this buffer, or comma
|
|
separated list of words to highlight in this buffer, for example:
|
|
"abc,def,ghi"
|
|
|
|
| highlight_tags | comma separated list of tags |
|
|
comma separated list of tags to highlight in this buffer
|
|
|
|
| key_bind_xxx | any string |
|
|
bind a new key 'xxx', specific to this buffer, value is command to execute
|
|
for this key
|
|
|
|
| key_unbind_xxx | (N/A) |
|
|
unbind key 'xxx' for this buffer
|
|
|
|
| input | any string |
|
|
set new value for buffer input
|
|
|
|
| input_get_unknown_commands | "0" or "1" |
|
|
"0" to disable unknown commands on this buffer (default behaviour), "1" to
|
|
get unknown commands, for example if user type "/unknowncmd", buffer will
|
|
receive it (no error about unknown command)
|
|
|
|
| localvar_set_xxx | any string |
|
|
set new value for local variable 'xxx' (variable is created if it does not
|
|
exist)
|
|
|
|
| localvar_del_xxx | (N/A) |
|
|
remove local variable 'xxx'
|
|
|========================================
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
/* disable hotlist (for all buffers) */
|
|
weechat_buffer_set (NULL, "hotlist", "-");
|
|
|
|
/* enable again hotlist */
|
|
weechat_buffer_set (NULL, "hotlist", "+");
|
|
|
|
/* change buffer name */
|
|
weechat_buffer_set (my_buffer, "name", "my_new_name");
|
|
|
|
/* add new local variable "toto" with value "abc" */
|
|
weechat_buffer_set (my_buffer, "localvar_set_toto", "abc");
|
|
|
|
/* remove local variable "toto" */
|
|
weechat_buffer_set (my_buffer, "localvar_del_toto", NULL);
|
|
----------------------------------------
|
|
|
|
weechat_buffer_set_pointer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Set pointer value of a buffer property.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_buffer_set_pointer (struct t_gui_buffer *buffer, const char *property,
|
|
void *pointer);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'property' and 'value': property name, with its value:
|
|
** 'close_callback': set close callback function
|
|
** 'close_callback_data': set close callback data
|
|
** 'input_callback': set input callback function
|
|
** 'input_callback_data': set input callback data
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_close_cb (void *data, struct t_gui_buffer *buffer)
|
|
{
|
|
/* ... */
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
weechat_buffer_set_pointer (my_buffer, "close_callback", &my_close_cb);
|
|
----------------------------------------
|
|
|
|
weechat_buffer_string_replace_local_var
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Replace local variables in a string by their values, using buffer local
|
|
variables.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *weechat_buffer_string_replace_local_var (struct t_gui_buffer *buffer,
|
|
const char *string);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'string': string with text and local variables using format "$var"
|
|
|
|
Return value:
|
|
|
|
* string with values of local variables
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_buffer_set (my_buffer, "localvar_set_toto", "abc");
|
|
|
|
char *str = weechat_buffer_string_replace_local_var (my_buffer,
|
|
"test with $toto");
|
|
/* str contains "test with abc" */
|
|
----------------------------------------
|
|
|
|
[[windows]]
|
|
Windows
|
|
~~~~~~~
|
|
|
|
Functions to query windows.
|
|
|
|
weechat_current_window
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return pointer to current window.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_window *weechat_current_window ();
|
|
----------------------------------------
|
|
|
|
Return value:
|
|
|
|
* pointer to current window
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_window *current_window = weechat_current_window ();
|
|
----------------------------------------
|
|
|
|
weechat_window_get_integer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return integer value of a window property.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_window_get_integer (struct t_gui_window *window,
|
|
const char *property);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'window': window pointer
|
|
* 'property': property name:
|
|
** 'win_x': X position of window in terminal (first column is 0)
|
|
** 'win_y': Y position of window in terminal (first line is 0)
|
|
** 'win_width': width of window, in chars
|
|
** 'win_height': height of window, in chars
|
|
** 'win_width_pct': percentage size, compared to parent window (for example 50
|
|
means half size)
|
|
** 'win_height_pct': percentage size, compared to parent window (for example 50
|
|
means half size)
|
|
** 'win_chat_x': X position of chat window in terminal (first column is 0)
|
|
** 'win_chat_y': Y position of chat window in terminal (first line is 0)
|
|
** 'win_chat_width': width of chat window, in chars
|
|
** 'win_chat_height': height of chat window, in chars
|
|
** 'first_line_displayed': 1 if first line of buffer is displayed on screen,
|
|
otherwise 0
|
|
** 'scroll': 1 if scroll is active on window (last line not displayed)
|
|
** 'scroll_lines_after': number of lines not displayed after last one
|
|
displayed (when scrolling)
|
|
|
|
Return value:
|
|
|
|
* integer value of property
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "current window is at position (x,y): (%d,%d)",
|
|
weechat_window_get_integer (weechat_current_window (), "win_x"),
|
|
weechat_window_get_integer (weechat_current_window (), "win_y"));
|
|
----------------------------------------
|
|
|
|
weechat_window_get_string
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return string value of a window property.
|
|
|
|
[NOTE]
|
|
This function is not used today, it is reserved for a future version.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_window_get_string (struct t_gui_window *window,
|
|
const char *property);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'window': window pointer
|
|
* 'property': property name
|
|
|
|
Return value:
|
|
|
|
* string value of property
|
|
|
|
weechat_window_get_pointer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return pointer value of a window property.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void *weechat_window_get_pointer (struct t_gui_window *window,
|
|
const char *property);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'window': window pointer
|
|
* 'property': property name:
|
|
** 'current': current window pointer
|
|
** 'buffer': pointer to buffer displayed by window
|
|
|
|
Return value:
|
|
|
|
* pointer value of property
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL,
|
|
"buffer displayed in current window: %lx",
|
|
weechat_window_get_pointer (weechat_current_window (), "buffer"));
|
|
----------------------------------------
|
|
|
|
[[nicklist]]
|
|
Nicklist
|
|
~~~~~~~~
|
|
|
|
Functions for buffer nicklist.
|
|
|
|
weechat_nicklist_add_group
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add a group in a nicklist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_nick_group *weechat_nicklist_add_group (struct t_gui_buffer *buffer,
|
|
struct t_gui_nick_group *parent_group,
|
|
const char *name,
|
|
const char *color,
|
|
int visible);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'parent_group': pointer to parent of group, NULL if group has no parent
|
|
(nicklist root)
|
|
* 'name': group name
|
|
* 'visible':
|
|
** '1': group and sub-groups/nicks are visible
|
|
** '0': group and sub-groups/nicks are hidden
|
|
* 'color': color option name:
|
|
** WeeChat option name, for example 'weechat.color.nicklist_group'
|
|
** color with optional background, for example 'yellow' or 'yellow,red'
|
|
** bar color name:
|
|
*** 'bar_fg': foreground color for bar
|
|
*** 'bar_delim': delimiters color for bar
|
|
*** 'bar_bg': background color for bar
|
|
|
|
[NOTE]
|
|
The group name can begin with one or more digits, followed by pipe, and then
|
|
group name. When such string is found at beginning, it's used to sort groups
|
|
in nicklist. For example groups "1|test" and "2|abc" will be displayed in that
|
|
order: first "test" then "abc".
|
|
|
|
Return value:
|
|
|
|
* pointer to new group, NULL if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_nick_group *my_group =
|
|
weechat_nicklist_add_group (my_buffer,
|
|
my_parent_group,
|
|
"test_group",
|
|
"weechat.color.nicklist_group",
|
|
1);
|
|
----------------------------------------
|
|
|
|
weechat_nicklist_search_group
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search a group in a nicklist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_nick_group *weechat_nicklist_search_group (struct t_gui_buffer *buffer,
|
|
struct t_gui_nick_group *from_group,
|
|
const char *name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'from_group': search from this group only, if NULL, then search in whole
|
|
nicklist
|
|
* 'name': group name to search
|
|
|
|
Return value:
|
|
|
|
* pointer to group found, NULL if not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_nick_group *ptr_group = weechat_nicklist_search_group (my_buffer,
|
|
NULL, "test_group");
|
|
----------------------------------------
|
|
|
|
weechat_nicklist_add_nick
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add a nick in a group.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_nick_group *weechat_nicklist_add_nick (struct t_gui_buffer *buffer,
|
|
struct t_gui_nick_group *group,
|
|
const char *name,
|
|
const char *color,
|
|
const char *prefix,
|
|
const char *prefix_color,
|
|
int visible);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'group': group pointer
|
|
* 'name': nick name
|
|
* 'color': color option name:
|
|
*** WeeChat option name (from weechat.color.xxx), for example 'chat_delimiters'
|
|
*** color with optional background, for example 'yellow' or 'yellow,red'
|
|
*** bar color name:
|
|
**** 'bar_fg': foreground color for bar
|
|
**** 'bar_delim': delimiters color for bar
|
|
**** 'bar_bg': background color for bar
|
|
* 'prefix': prefix displayed before nick
|
|
* 'prefix_color': color option name:
|
|
** WeeChat option name (from weechat.color.xxx), for example 'chat_delimiters'
|
|
** color with optional background, for example 'yellow' or 'yellow,red'
|
|
** bar color name:
|
|
*** 'bar_fg': foreground color for bar
|
|
*** 'bar_delim': delimiters color for bar
|
|
*** 'bar_bg': background color for bar
|
|
* 'visible':
|
|
** '1': nick is visible
|
|
** '0': nick is hidden
|
|
|
|
Return value:
|
|
|
|
* pointer to new nick, NULL if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_nick *my_nick =
|
|
weechat_nicklist_add_nick (my_buffer, my_group,
|
|
"test_nick",
|
|
(nick_away) ? "weechat.color.nicklist_away" : "bar_fg",
|
|
"@", "lightgreen",
|
|
1);
|
|
----------------------------------------
|
|
|
|
weechat_nicklist_search_nick
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search a nick in a nicklist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_nick *weechat_nicklist_search_nick (struct t_gui_buffer *buffer,
|
|
struct t_gui_nick_group *from_group,
|
|
const char *name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'from_group': search from this group only, if NULL, then search in whole
|
|
nicklist
|
|
* 'name': nick name to search
|
|
|
|
Return value:
|
|
|
|
* pointer to nick found, NULL if not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_nick *ptr_nick = weechat_nicklist_search_nick (my_buffer,
|
|
NULL, "test_nick");
|
|
----------------------------------------
|
|
|
|
weechat_nicklist_remove_group
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Remove a group from a nicklist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_nicklist_remove_group (struct t_gui_buffer *buffer,
|
|
struct t_gui_nick_group *group);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'group': group pointer to remove (all sub-groups/nicks will be removed too)
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_nicklist_remove_group (my_buffer, my_group);
|
|
----------------------------------------
|
|
|
|
weechat_nicklist_remove_nick
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Remove a nick from a nicklist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_nicklist_remove_nick (struct t_gui_buffer *buffer,
|
|
struct t_gui_nick *nick);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
* 'nick': nick pointer to remove
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_nicklist_remove_nick (my_buffer, my_nick);
|
|
----------------------------------------
|
|
|
|
weechat_nicklist_remove_all
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Remove all groups/nicks from a nicklist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_nicklist_remove_all (struct t_gui_buffer *buffer);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_nicklist_remove_all (my_buffer);
|
|
----------------------------------------
|
|
|
|
[[bars]]
|
|
Bars
|
|
~~~~
|
|
|
|
Functions for bars.
|
|
|
|
weechat_bar_item_search
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Search a bar item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_bar_item *weechat_bar_item_search (const char *name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'name': bar item name
|
|
|
|
Return value:
|
|
|
|
* pointer to bar item found, NULL if bar item was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_bar_item *bar_item = weechat_bar_item_search ("myitem");
|
|
----------------------------------------
|
|
|
|
weechat_bar_item_new
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Create a new bar item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_bar_item *weechat_bar_item_new (const char *name,
|
|
char *(build_callback)(void *data,
|
|
struct t_gui_bar_item *item,
|
|
struct t_gui_window *window),
|
|
void *build_callback_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'name': bar item name
|
|
* 'build_callback': function called when bar item is built: it must return
|
|
content of bar item
|
|
* 'build_callback_data': pointer given to build callback, when it is called by
|
|
WeeChat
|
|
|
|
Return value:
|
|
|
|
* pointer to new bar item, NULL if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char *
|
|
my_build_callback (void *data,
|
|
struct t_gui_bar_item *item,
|
|
struct t_gui_window *window)
|
|
{
|
|
return strdup ("my content");
|
|
}
|
|
|
|
struct t_gui_bar_item *my_item = weechat_bar_item_new ("myitem",
|
|
&my_build_callback,
|
|
NULL);
|
|
----------------------------------------
|
|
|
|
weechat_bar_item_update
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Update content of a bar item, by calling its build callback.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_bar_item_update (const char *name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'name': bar item name
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
eechat_bar_item_update ("myitem");
|
|
----------------------------------------
|
|
|
|
weechat_bar_item_remove
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Remove a bar item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
oid weechat_bar_item_remove (struct t_gui_bar_item *item);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': bar item pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_bar_item_remove (&my_item);
|
|
----------------------------------------
|
|
|
|
weechat_bar_search
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Search a bar.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_bar_item *weechat_bar_search (const char *name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'name': bar name
|
|
|
|
Return value:
|
|
|
|
* pointer to bar found, NULL if bar was not found
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_bar *bar = weechat_bar_search ("mybar");
|
|
----------------------------------------
|
|
|
|
weechat_bar_new
|
|
^^^^^^^^^^^^^^^
|
|
|
|
Create a new bar.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_bar *weechat_bar_new (const char *name,
|
|
const char *hidden,
|
|
const char *priority,
|
|
const char *type,
|
|
const char *condition,
|
|
const char *position,
|
|
const char *filling_top_bottom,
|
|
const char *filling_left_right,
|
|
const char *size,
|
|
const char *size_max,
|
|
const char *color_fg,
|
|
const char *color_delim,
|
|
const char *color_bg,
|
|
const char *separator,
|
|
const char *items);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'name': bar name
|
|
* 'hidden':
|
|
** 'on': bar is hidden
|
|
** 'off': bas is visible
|
|
* 'priority': bar priority (integer)
|
|
* 'type':
|
|
** 'root': bar displayed once, outside windows
|
|
** 'window': bar displayed in each window
|
|
* 'condition': condition for displaying bar, one of following:
|
|
** 'active': bar is displayed in active window only
|
|
** 'inactive': bar is displayed in inactive window(s) only
|
|
** 'nicklist': bar is displayed in window(s) with nicklist
|
|
* 'position': 'top', 'bottom', 'left' or 'right'
|
|
* 'filling_top_bottom':
|
|
** 'horizontal': items are filled horizontally (space after each item)
|
|
** 'vertical': items are filled vertically (new line after each item)
|
|
** 'columns_horizontal': items are filled horizontally, displayed with columns
|
|
** 'columns_vertical': items are filled vertically, displayed with columns
|
|
* 'filling_left_right':
|
|
** 'horizontal': items are filled horitontally (space after each item)
|
|
** 'vertical': items are filled verticaly (new line after each item)
|
|
** 'columns_horizontal': items are filled horizontally, displayed with columns
|
|
** 'columns_vertical': items are filled vertically, displayed with columns
|
|
* 'size': bar size in chars (0 means automatic size)
|
|
* 'size_max': max size for bar (0 means no max size)
|
|
* 'color_fg': color for text in bar
|
|
* 'color_delim': color for delimiters in bar
|
|
* 'color_bg': background color for bar
|
|
* 'separator':
|
|
** 'on': bar has separator line with other windows/bars
|
|
** 'off': no separator
|
|
* 'items': list of items in bar, separated by comma (space between items), or
|
|
"+" (glued items)
|
|
|
|
Return value:
|
|
|
|
* pointer to new bar, NULL if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_gui_bar *my_bar = weechat_bar_new ("mybar",
|
|
"off",
|
|
100,
|
|
"window",
|
|
"",
|
|
"top",
|
|
"horizontal",
|
|
"vertical",
|
|
"0",
|
|
"5",
|
|
"default",
|
|
"cyan",
|
|
"blue",
|
|
"off",
|
|
"time,buffer_number+buffer_name");
|
|
----------------------------------------
|
|
|
|
weechat_bar_set
|
|
^^^^^^^^^^^^^^^
|
|
|
|
Set a new value for a bar property.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_bar_set (struct t_gui_bar *bar, const char *property,
|
|
const char *value);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'name': bar name
|
|
* 'property': name, hidden, priority, conditions, position, filling_top_bottom,
|
|
filling_left_right, size, size_max, color_fg, color_delim, color_bg,
|
|
separator, items (see <<_weechat_bar_new>>)
|
|
* 'value': new value for property
|
|
|
|
Return value:
|
|
|
|
* 1 if new value was set, 0 if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_bar_set (mybar, "position", "bottom");
|
|
----------------------------------------
|
|
|
|
weechat_bar_update
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Refresh content of a bar on screen.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_bar_update (const char *name);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'name': bar name
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_bar_update ("mybar");
|
|
----------------------------------------
|
|
|
|
weechat_bar_remove
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
Remove a bar.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_bar_remove (struct t_gui_bar *bar);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'bar': bar pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_bar_remove (mybar);
|
|
----------------------------------------
|
|
|
|
[[commands]]
|
|
Commands
|
|
~~~~~~~~
|
|
|
|
Functions for executing WeeChat commands.
|
|
|
|
weechat_command
|
|
^^^^^^^^^^^^^^^
|
|
|
|
Execute a command.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_command (struct t_gui_buffer *buffer, const char *command);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'buffer': buffer pointer (command is executed on this buffer, use NULL for
|
|
WeeChat core buffer)
|
|
* 'command': command to execute (if beginning with a "/"), or text is sent to
|
|
buffer (without leading "/")
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_command (weechat_buffer_search ("irc", "freenode.#weechat"),
|
|
"/whois FlashCode");
|
|
----------------------------------------
|
|
|
|
[[network]]
|
|
Network
|
|
~~~~~~~
|
|
|
|
Network functions.
|
|
|
|
weechat_network_pass_proxy
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Establish a connection/authentification to a proxy.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_network_pass_proxy (const char *proxy,
|
|
int sock,
|
|
const char *address,
|
|
int port);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'proxy': proxy name to use
|
|
* 'sock': socket to use
|
|
* 'address': address (hostname or IP)
|
|
* 'port': port
|
|
|
|
Return value:
|
|
|
|
* 1 if connection is ok, 0 if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_network_pass_proxy ("my_proxy", sock, "irc.freenode.net", 6667))
|
|
{
|
|
/* OK */
|
|
}
|
|
else
|
|
{
|
|
/* error */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_network_connect_to
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Establish a connection to a remote host.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_network_connect_to (const char *proxy,
|
|
int sock,
|
|
unsigned long address,
|
|
int port);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'proxy': proxy name to use
|
|
* 'sock': socket to use
|
|
* 'address': address (hostname or IP)
|
|
* 'port': port
|
|
|
|
Return value:
|
|
|
|
* 1 if connection is ok, 0 if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct sockaddr_in addr;
|
|
socklen_t length;
|
|
unsigned long address;
|
|
|
|
memset (&addr, 0, sizeof (struct sockaddr_in));
|
|
length = sizeof (addr);
|
|
getsockname (sock, (struct sockaddr *) &addr, &length);
|
|
addr.sin_family = AF_INET;
|
|
address = ntohl (addr.sin_addr.s_addr);
|
|
|
|
if (weechat_network_connect_to (NULL, sock, address, 6667))
|
|
{
|
|
/* OK */
|
|
}
|
|
else
|
|
{
|
|
/* error */
|
|
}
|
|
----------------------------------------
|
|
|
|
[[infos]]
|
|
Infos
|
|
~~~~~
|
|
|
|
Functions to get infos.
|
|
|
|
weechat_info_get
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
Return info from WeeChat or a plugin.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_info_get (const char *info_name, const char *arguments);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'info_name': name of info to read:
|
|
include::autogen/plugin_api/infos.txt[]
|
|
* 'arguments': arguments for info asked (optional, NULL if no argument is
|
|
needed)
|
|
|
|
Return value:
|
|
|
|
* string with info asked, NULL if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "Current WeeChat version is: %s (compiled on %s)",
|
|
weechat_info_get ("version", NULL),
|
|
weechat_info_get ("date", NULL));
|
|
weechat_printf (NULL, "WeeChat home is: %s",
|
|
weechat_info_get ("weechat_dir"));
|
|
----------------------------------------
|
|
|
|
[[infolists]]
|
|
Infolists
|
|
~~~~~~~~~
|
|
|
|
An infolist is a list of "items". Each item contains variables.
|
|
|
|
For example, infolist "irc_server" has N items (N is number of IRC servers
|
|
defined). For each item, there is variables like "name", "buffer",
|
|
"is_connected", ...
|
|
|
|
Each variable has a type and a value. Possible types are:
|
|
|
|
* 'integer': any integer value
|
|
* 'string': any string value
|
|
* 'pointer': any pointer
|
|
* 'buffer': buffer with fixed length, containing any data
|
|
* 'time': time value
|
|
|
|
weechat_infolist_new
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Create a new infolist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist *weechat_infolist_new ();
|
|
----------------------------------------
|
|
|
|
Return value:
|
|
|
|
* pointer to new infolist
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist *infolist = weechat_infolist_new ();
|
|
----------------------------------------
|
|
|
|
weechat_infolist_new_item
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add an item in an infolist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_item *weechat_infolist_new_item (struct t_infolist *infolist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
|
|
Return value:
|
|
|
|
* pointer to new item
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_item *item = weechat_infolist_new_item (infolist);
|
|
----------------------------------------
|
|
|
|
weechat_infolist_new_var_integer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add an integer variable to an infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_var *weechat_infolist_new_var_integer (struct t_infolist_item *item,
|
|
const char *name,
|
|
int value);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': infolist item pointer
|
|
* 'name': variable name
|
|
* 'value': integer value
|
|
|
|
Return value:
|
|
|
|
* pointer to new variable
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_var *var = weechat_infolist_new_variable_integer (item,
|
|
"my_integer", 123);
|
|
----------------------------------------
|
|
|
|
weechat_infolist_new_var_string
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add a string variable to an infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_var *weechat_infolist_new_var_string (struct t_infolist_item *item,
|
|
const char *name,
|
|
const char *value);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': infolist item pointer
|
|
* 'name': variable name
|
|
* 'value': string value
|
|
|
|
Return value:
|
|
|
|
* pointer to new variable
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_var *var = weechat_infolist_new_variable_integer (item,
|
|
"my_string", "value");
|
|
----------------------------------------
|
|
|
|
weechat_infolist_new_var_pointer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add a pointer variable to an infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_var *weechat_infolist_new_var_pointer (struct t_infolist_item *item,
|
|
const char *name,
|
|
void *pointer);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': infolist item pointer
|
|
* 'name': variable name
|
|
* 'pointer': pointer
|
|
|
|
Return value:
|
|
|
|
* pointer to new variable
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_var *var = weechat_infolist_new_variable_pointer (item,
|
|
"my_pointer", &something);
|
|
----------------------------------------
|
|
|
|
weechat_infolist_new_var_buffer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add a buffer variable to an infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_var *weechat_infolist_new_var_buffer (struct t_infolist_item *item,
|
|
const char *name,
|
|
void *pointer,
|
|
int size);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': infolist item pointer
|
|
* 'name': variable name
|
|
* 'pointer': pointer to buffer
|
|
* 'size': size of buffer
|
|
|
|
Return value:
|
|
|
|
* pointer to new variable
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
char buffer[256];
|
|
/* ... */
|
|
struct t_infolist_var *var = weechat_infolist_new_variable_buffer (item, "my_buffer",
|
|
&buffer, sizeof (buffer));
|
|
----------------------------------------
|
|
|
|
weechat_infolist_new_var_time
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Add a time variable to an infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_var *weechat_infolist_new_var_time (struct t_infolist_item *item,
|
|
const char *name,
|
|
time_t time);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'item': infolist item pointer
|
|
* 'name': variable name
|
|
* 'time': time value
|
|
|
|
Return value:
|
|
|
|
* pointer to new variable
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist_var *var = weechat_infolist_new_variable_time (item,
|
|
"my_time", time (NULL));
|
|
----------------------------------------
|
|
|
|
weechat_infolist_get
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return infolist from WeeChat or a plugin.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist *weechat_infolist_get (const char *infolist_name,
|
|
void *pointer,
|
|
const char *arguments);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist_name': name of infolist to read:
|
|
include::autogen/plugin_api/infolists.txt[]
|
|
* 'pointer': pointer to an item, to get only this item in infolist (optional,
|
|
can be NULL)
|
|
* 'arguments': arguments for infolist asked (optional, NULL if no argument is
|
|
needed)
|
|
|
|
Return value:
|
|
|
|
* pointer to infolist, NULL if an error occured
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_infolist *infolist = weechat_infolist_get ("irc_server", NULL, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_infolist_next
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Move "cursor" to next item in an infolist. The first call to this function for
|
|
an infolist moves cursor to first item in infolist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_infolist_next (struct t_infolist *infolist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
|
|
Return value:
|
|
|
|
* 1 if pointer is now on next item, 0 if end of list was reached
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_infolist_next (infolist))
|
|
{
|
|
/* read variables in item... */
|
|
}
|
|
else
|
|
{
|
|
/* no more item available */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_infolist_prev
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Move "cursor" to previous item in an infolist. The first call to this function
|
|
for an infolist moves cursor to last item in infolist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_infolist_prev (struct t_infolist *infolist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
|
|
Return value:
|
|
|
|
* 1 if pointer is now on previous item, 0 if beginning of list was reached
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_infolist_prev (infolist))
|
|
{
|
|
/* read variables in item... */
|
|
}
|
|
else
|
|
{
|
|
/* no more item available */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_infolist_reset_item_cursor
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Reset "cursor" for infolist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_infolist_reset_item_cursor (struct t_infolist *infolist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_infolist_reset_item_cursor (infolist);
|
|
----------------------------------------
|
|
|
|
weechat_infolist_fields
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return list of fields for current infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_infolist_fields (struct t_infolist *infolist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
|
|
Return value:
|
|
|
|
* string with list of fields for current infolist item. List is comma
|
|
separated, and contains letter for type, followed by variable name. Types
|
|
are: "i" (integer), "s" (string), "p" (pointer), "b" (buffer), "t" (time).
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *fields = weechat_infolist_fields (infolist);
|
|
/* fields contains something like:
|
|
"i:my_integer,s:my_string,p:my_pointer,b:my_buffer,t:my_time" */
|
|
----------------------------------------
|
|
|
|
weechat_infolist_integer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return value of integer variable in current infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int weechat_infolist_integer (struct t_infolist *infolist, const char *var);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
* 'var': variable name (must be type "integer")
|
|
|
|
Return value:
|
|
|
|
* integer value of variable
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "integer value = %d",
|
|
weechat_infolist_integer (infolist, "my_integer"));
|
|
----------------------------------------
|
|
|
|
weechat_infolist_string
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return value of string variable in current infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
const char *weechat_infolist_string (struct t_infolist *infolist, const char *var);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
* 'var': variable name (must be type "string")
|
|
|
|
Return value:
|
|
|
|
* string value of variable
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "string value = %s",
|
|
weechat_infolist_string (infolist, "my_string"));
|
|
----------------------------------------
|
|
|
|
weechat_infolist_pointer
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return value of pointer variable in current infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void *weechat_infolist_pointer (struct t_infolist *infolist, const char *var);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
* 'var': variable name (must be type "pointer")
|
|
|
|
Return value:
|
|
|
|
* pointer value of variable
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "pointer value = 0x%lx",
|
|
weechat_infolist_pointer (infolist, "my_pointer"));
|
|
----------------------------------------
|
|
|
|
weechat_infolist_buffer
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return value of buffer variable in current infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void *weechat_infolist_buffer (struct t_infolist *infolist, const char *var,
|
|
int *size);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
* 'var': variable name (must be type "buffer")
|
|
* 'size': pointer to integer variable, will be set with buffer size
|
|
|
|
Return value:
|
|
|
|
* buffer pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int size;
|
|
void *pointer = weechat_infolist_buffer (infolist, "my_buffer", &size);
|
|
weechat_printf (NULL, "buffer pointer = 0x%lx, size = %d",
|
|
pointer, size);
|
|
----------------------------------------
|
|
|
|
weechat_infolist_time
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Return value of time variable in current infolist item.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
time_t weechat_infolist_time (struct t_infolist *infolist, const char *var);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
* 'var': variable name (must be type "time")
|
|
|
|
Return value:
|
|
|
|
* time value of variable
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_printf (NULL, "time value = 0x%ld",
|
|
weechat_infolist_time (infolist, "my_time"));
|
|
----------------------------------------
|
|
|
|
weechat_infolist_free
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Free an infolist.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_infolist_free (struct t_infolist *infolist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'infolist': infolist pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_infolist_free (infolist);
|
|
----------------------------------------
|
|
|
|
[[upgrade]]
|
|
Upgrade
|
|
~~~~~~~
|
|
|
|
Functions for upgrading WeeChat.
|
|
|
|
weechat_upgrade_new
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Create or read a file for upgrade.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_upgrade_file *weechat_upgrade_new (const char *filename, int write);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'filename': name of file (extension ".upgrade" will be added to this name by
|
|
WeeChat)
|
|
* 'write':
|
|
** '1': create file (write mode, before upgrade)
|
|
** '0': read file (after upgrade)
|
|
|
|
Return value:
|
|
|
|
* pointer to new upgrade file
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_upgrade_file *upgrade_file = weechat_upgrade_new ("my_file", 1);
|
|
----------------------------------------
|
|
|
|
weechat_upgrade_write_object
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Write an object in upgrade file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_upgrade_file *weechat_upgrade_write_object (struct t_upgrade_file *upgrade_file,
|
|
int object_id,
|
|
struct t_infolist *infolist);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'upgrade_file': upgrade file pointer
|
|
* 'object_id': id for object
|
|
* 'infolist': infolist to write in file
|
|
|
|
Return value:
|
|
|
|
* 1 if ok, 0 if error
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
if (weechat_upgrade_write_object (upgrade_file, 1, &infolist))
|
|
{
|
|
/* ok */
|
|
}
|
|
else
|
|
{
|
|
/* error */
|
|
}
|
|
----------------------------------------
|
|
|
|
weechat_upgrade_read
|
|
^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Read an upgrade file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
struct t_upgrade_file *weechat_upgrade_read (struct t_upgrade_file *upgrade_file,
|
|
int (*callback_read)(void *data,
|
|
struct t_upgrade_file *upgrade_file,
|
|
int object_id,
|
|
struct t_infolist *infolist),
|
|
void *callback_read_data);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'upgrade_file': upgrade file pointer
|
|
* 'callback_read': function called for each object read in upgrade file
|
|
* 'callback_read_data': pointer given to read callback when it is called by
|
|
WeeChat
|
|
|
|
Return value:
|
|
|
|
* 1 if ok, 0 if error
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
int
|
|
my_upgrade_read_cb (struct t_upgrade_file *upgrade_file,
|
|
int object_id,
|
|
struct t_infolist *infolist)
|
|
{
|
|
/* read variables... */
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
weechat_upgrade_read (upgrade_file, &my_upgrade_read_cb, NULL);
|
|
----------------------------------------
|
|
|
|
weechat_upgrade_close
|
|
^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Close an upgrade file.
|
|
|
|
Prototype:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
void weechat_upgrade_close (struct t_upgrade_file *upgrade_file);
|
|
----------------------------------------
|
|
|
|
Arguments:
|
|
|
|
* 'upgrade_file': upgrade file pointer
|
|
|
|
Example:
|
|
|
|
[source,C]
|
|
----------------------------------------
|
|
weechat_upgrade_close (upgrade_file);
|
|
----------------------------------------
|