diff options
Diffstat (limited to 'doc/de/dev')
-rw-r--r-- | doc/de/dev/plugin_c_api.de.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/de/dev/plugin_c_api.de.xml b/doc/de/dev/plugin_c_api.de.xml index 99bf68902..9e6151850 100644 --- a/doc/de/dev/plugin_c_api.de.xml +++ b/doc/de/dev/plugin_c_api.de.xml @@ -8294,6 +8294,36 @@ weechat_printf (NULL, "current window pointer is: %lx, buffer displayed is: %lx" </para> </section> + <section id="secPluginCApi_weechat_window_set_title"> + <title>weechat_window_set_title</title> + + <para> + Prototype: +<programlisting> +void weechat_window_set_title (const char *title); +</programlisting> + </para> + <para> + Set title for window (terminal for Curses interface). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>title</option>: new title (if empty, then title is reset) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Example: +<screen> +weechat_window_set_title ("new title"); +</screen> + </para> + </section> + </section> <!-- ============================[ nicklist ]============================ --> |