summaryrefslogtreecommitdiff
path: root/doc/it/weechat_plugin_api.it.adoc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2017-05-30 20:23:01 +0200
committerSébastien Helleu <flashcode@flashtux.org>2017-05-30 20:28:01 +0200
commitf6a8c28d2dcf4d4ed6f87e7e94574b331455b40a (patch)
treed3c76b7ab7b439c54bf08050cfa63dca66ea994a /doc/it/weechat_plugin_api.it.adoc
parentf131b9f7defeee9e48eb8ed077d491bcdfcf0e03 (diff)
downloadweechat-f6a8c28d2dcf4d4ed6f87e7e94574b331455b40a.zip
api: add function config_option_get_string in plugin API
Diffstat (limited to 'doc/it/weechat_plugin_api.it.adoc')
-rw-r--r--doc/it/weechat_plugin_api.it.adoc44
1 files changed, 44 insertions, 0 deletions
diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc
index b2a8d78c3..795aa9cbd 100644
--- a/doc/it/weechat_plugin_api.it.adoc
+++ b/doc/it/weechat_plugin_api.it.adoc
@@ -6255,6 +6255,50 @@ weechat.config_option_rename(option, new_name)
weechat.config_option_rename(option, "new_name")
----
+==== config_option_get_string
+
+_WeeChat ≥ 1.9._
+
+// TRANSLATION MISSING
+Return string value of an option property.
+
+Prototype:
+
+[source,C]
+----
+const char *weechat_config_option_get_string (struct t_config_option *option,
+ const char *property);
+----
+
+Argomenti:
+
+// TRANSLATION MISSING
+* _option_: puntatore all'opzione
+* _property_: nome della proprietà:
+** _name_: option name
+** _parent_name_: name of parent option
+** _type_: option type, one of:
+*** _boolean_
+*** _integer_
+*** _string_
+*** _color_
+** _description_: option description
+
+Valore restituito:
+
+// TRANSLATION MISSING
+* string value of property
+
+Esempio in C:
+
+[source,C]
+----
+const char *type = weechat_config_option_get_string (option, "type");
+----
+
+[NOTE]
+Questa funzione non è disponibile nelle API per lo scripting.
+
==== config_option_get_pointer
Restituisce un puntatore alla proprietà di un'opzione.