summaryrefslogtreecommitdiff
path: root/doc/de/dev
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2009-05-10 01:22:08 +0200
committerSebastien Helleu <flashcode@flashtux.org>2009-05-10 01:22:08 +0200
commit57c6478b9184979ad1a09336076b0c07cd7fc56b (patch)
tree60a01bcb7d788217b5c47431c0c1db12dcc053b3 /doc/de/dev
parent09c42f4cf0787a72a70dd5273da355e522e9fdf5 (diff)
downloadweechat-57c6478b9184979ad1a09336076b0c07cd7fc56b.zip
Add function window_set_title in API (task #9361)
Diffstat (limited to 'doc/de/dev')
-rw-r--r--doc/de/dev/plugin_c_api.de.xml30
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 ]============================ -->