summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/de/autogen/plugin_api/hdata.txt35
-rw-r--r--doc/de/autogen/plugin_api/infolists.txt2
-rw-r--r--doc/en/autogen/plugin_api/hdata.txt35
-rw-r--r--doc/en/autogen/plugin_api/infolists.txt2
-rw-r--r--doc/fr/autogen/plugin_api/hdata.txt35
-rw-r--r--doc/fr/autogen/plugin_api/infolists.txt2
-rw-r--r--doc/it/autogen/plugin_api/hdata.txt35
-rw-r--r--doc/it/autogen/plugin_api/infolists.txt2
-rw-r--r--doc/ja/autogen/plugin_api/hdata.txt35
-rw-r--r--doc/ja/autogen/plugin_api/infolists.txt2
10 files changed, 185 insertions, 0 deletions
diff --git a/doc/de/autogen/plugin_api/hdata.txt b/doc/de/autogen/plugin_api/hdata.txt
index 69140d35e..6ffb42681 100644
--- a/doc/de/autogen/plugin_api/hdata.txt
+++ b/doc/de/autogen/plugin_api/hdata.txt
@@ -619,6 +619,41 @@
'last_gui_key_mouse' +
'last_gui_key_search'
+| weechat | layout | layout |
+ 'name' (string) +
+ 'layout_buffers' (pointer, hdata: "layout_buffer") +
+ 'last_layout_buffer' (pointer, hdata: "layout_buffer") +
+ 'layout_windows' (pointer, hdata: "layout_window") +
+ 'internal_id' (integer) +
+ 'internal_id_current_window' (integer) +
+ 'prev_layout' (pointer, hdata: "layout") +
+ 'next_layout' (pointer, hdata: "layout") |
+ |
+ 'gui_layout_current' +
+ 'gui_layouts' +
+ 'last_gui_layout'
+
+| weechat | layout_buffer | buffer layout |
+ 'plugin_name' (string) +
+ 'buffer_name' (string) +
+ 'number' (integer) +
+ 'prev_layout' (pointer, hdata: "layout_buffer") +
+ 'next_layout' (pointer, hdata: "layout_buffer") |
+ |
+ -
+
+| weechat | layout_window | window layout |
+ 'internal_id' (integer) +
+ 'parent_node' (pointer, hdata: "layout_window") +
+ 'split_pct' (integer) +
+ 'split_horiz' (integer) +
+ 'child1' (pointer, hdata: "layout_window") +
+ 'child2' (pointer, hdata: "layout_window") +
+ 'plugin_name' (string) +
+ 'buffer_name' (string) |
+ |
+ -
+
| weechat | line | Struktur mit einer Zeile |
'data' (pointer, hdata: "line_data") +
'prev_line' (pointer, hdata: "line") +
diff --git a/doc/de/autogen/plugin_api/infolists.txt b/doc/de/autogen/plugin_api/infolists.txt
index b7003e702..8aa6117ee 100644
--- a/doc/de/autogen/plugin_api/infolists.txt
+++ b/doc/de/autogen/plugin_api/infolists.txt
@@ -54,6 +54,8 @@
| weechat | key | Auflistung der Tastenzuweisungen | - | Kontext ("default", "search", "cursor" oder "mouse") (optional)
+| weechat | layout | list of layouts | - | -
+
| weechat | nicklist | Nicks in Nickliste für einen Buffer | Buffer Pointer | nick_xxx oder group_xxx um nur den Nick/Group xxx abzufragen (optional)
| weechat | option | Auflistung der Optionen | - | Name einer Option (darf mit einem "*" als Platzhalter beginnen oder enden) (optional)
diff --git a/doc/en/autogen/plugin_api/hdata.txt b/doc/en/autogen/plugin_api/hdata.txt
index bd48a5e19..51c552a09 100644
--- a/doc/en/autogen/plugin_api/hdata.txt
+++ b/doc/en/autogen/plugin_api/hdata.txt
@@ -619,6 +619,41 @@
'last_gui_key_mouse' +
'last_gui_key_search'
+| weechat | layout | layout |
+ 'name' (string) +
+ 'layout_buffers' (pointer, hdata: "layout_buffer") +
+ 'last_layout_buffer' (pointer, hdata: "layout_buffer") +
+ 'layout_windows' (pointer, hdata: "layout_window") +
+ 'internal_id' (integer) +
+ 'internal_id_current_window' (integer) +
+ 'prev_layout' (pointer, hdata: "layout") +
+ 'next_layout' (pointer, hdata: "layout") |
+ |
+ 'gui_layout_current' +
+ 'gui_layouts' +
+ 'last_gui_layout'
+
+| weechat | layout_buffer | buffer layout |
+ 'plugin_name' (string) +
+ 'buffer_name' (string) +
+ 'number' (integer) +
+ 'prev_layout' (pointer, hdata: "layout_buffer") +
+ 'next_layout' (pointer, hdata: "layout_buffer") |
+ |
+ -
+
+| weechat | layout_window | window layout |
+ 'internal_id' (integer) +
+ 'parent_node' (pointer, hdata: "layout_window") +
+ 'split_pct' (integer) +
+ 'split_horiz' (integer) +
+ 'child1' (pointer, hdata: "layout_window") +
+ 'child2' (pointer, hdata: "layout_window") +
+ 'plugin_name' (string) +
+ 'buffer_name' (string) |
+ |
+ -
+
| weechat | line | structure with one line |
'data' (pointer, hdata: "line_data") +
'prev_line' (pointer, hdata: "line") +
diff --git a/doc/en/autogen/plugin_api/infolists.txt b/doc/en/autogen/plugin_api/infolists.txt
index ba4720c4f..4c4372d64 100644
--- a/doc/en/autogen/plugin_api/infolists.txt
+++ b/doc/en/autogen/plugin_api/infolists.txt
@@ -54,6 +54,8 @@
| weechat | key | list of key bindings | - | context ("default", "search", "cursor" or "mouse") (optional)
+| weechat | layout | list of layouts | - | -
+
| weechat | nicklist | nicks in nicklist for a buffer | buffer pointer | nick_xxx or group_xxx to get only nick/group xxx (optional)
| weechat | option | list of options | - | option name (can start or end with "*" as wildcard) (optional)
diff --git a/doc/fr/autogen/plugin_api/hdata.txt b/doc/fr/autogen/plugin_api/hdata.txt
index c3a14860d..25fefd37f 100644
--- a/doc/fr/autogen/plugin_api/hdata.txt
+++ b/doc/fr/autogen/plugin_api/hdata.txt
@@ -619,6 +619,41 @@
'last_gui_key_mouse' +
'last_gui_key_search'
+| weechat | layout | disposition |
+ 'name' (string) +
+ 'layout_buffers' (pointer, hdata: "layout_buffer") +
+ 'last_layout_buffer' (pointer, hdata: "layout_buffer") +
+ 'layout_windows' (pointer, hdata: "layout_window") +
+ 'internal_id' (integer) +
+ 'internal_id_current_window' (integer) +
+ 'prev_layout' (pointer, hdata: "layout") +
+ 'next_layout' (pointer, hdata: "layout") |
+ |
+ 'gui_layout_current' +
+ 'gui_layouts' +
+ 'last_gui_layout'
+
+| weechat | layout_buffer | disposition de tampon |
+ 'plugin_name' (string) +
+ 'buffer_name' (string) +
+ 'number' (integer) +
+ 'prev_layout' (pointer, hdata: "layout_buffer") +
+ 'next_layout' (pointer, hdata: "layout_buffer") |
+ |
+ -
+
+| weechat | layout_window | disposition de fenêtre |
+ 'internal_id' (integer) +
+ 'parent_node' (pointer, hdata: "layout_window") +
+ 'split_pct' (integer) +
+ 'split_horiz' (integer) +
+ 'child1' (pointer, hdata: "layout_window") +
+ 'child2' (pointer, hdata: "layout_window") +
+ 'plugin_name' (string) +
+ 'buffer_name' (string) |
+ |
+ -
+
| weechat | line | structure avec une ligne |
'data' (pointer, hdata: "line_data") +
'prev_line' (pointer, hdata: "line") +
diff --git a/doc/fr/autogen/plugin_api/infolists.txt b/doc/fr/autogen/plugin_api/infolists.txt
index 527551138..cf6a717d1 100644
--- a/doc/fr/autogen/plugin_api/infolists.txt
+++ b/doc/fr/autogen/plugin_api/infolists.txt
@@ -54,6 +54,8 @@
| weechat | key | liste des associations de touches | - | contexte ("default", "search", "cursor" ou "mouse") (optionnel)
+| weechat | layout | liste des dispositions | - | -
+
| weechat | nicklist | pseudos dans la liste des pseudos pour un tampon | pointeur vers le tampon | nick_xxx ou group_xxx pour avoir seulement le pseudo/groupe xxx (optionnel)
| weechat | option | liste des options | - | nom d'option (peut démarrer ou se terminer par "*" comme joker) (optionnel)
diff --git a/doc/it/autogen/plugin_api/hdata.txt b/doc/it/autogen/plugin_api/hdata.txt
index ab1c212f4..ab59729cf 100644
--- a/doc/it/autogen/plugin_api/hdata.txt
+++ b/doc/it/autogen/plugin_api/hdata.txt
@@ -619,6 +619,41 @@
'last_gui_key_mouse' +
'last_gui_key_search'
+| weechat | layout | layout |
+ 'name' (string) +
+ 'layout_buffers' (pointer, hdata: "layout_buffer") +
+ 'last_layout_buffer' (pointer, hdata: "layout_buffer") +
+ 'layout_windows' (pointer, hdata: "layout_window") +
+ 'internal_id' (integer) +
+ 'internal_id_current_window' (integer) +
+ 'prev_layout' (pointer, hdata: "layout") +
+ 'next_layout' (pointer, hdata: "layout") |
+ |
+ 'gui_layout_current' +
+ 'gui_layouts' +
+ 'last_gui_layout'
+
+| weechat | layout_buffer | buffer layout |
+ 'plugin_name' (string) +
+ 'buffer_name' (string) +
+ 'number' (integer) +
+ 'prev_layout' (pointer, hdata: "layout_buffer") +
+ 'next_layout' (pointer, hdata: "layout_buffer") |
+ |
+ -
+
+| weechat | layout_window | window layout |
+ 'internal_id' (integer) +
+ 'parent_node' (pointer, hdata: "layout_window") +
+ 'split_pct' (integer) +
+ 'split_horiz' (integer) +
+ 'child1' (pointer, hdata: "layout_window") +
+ 'child2' (pointer, hdata: "layout_window") +
+ 'plugin_name' (string) +
+ 'buffer_name' (string) |
+ |
+ -
+
| weechat | line | struttura con una sola riga |
'data' (pointer, hdata: "line_data") +
'prev_line' (pointer, hdata: "line") +
diff --git a/doc/it/autogen/plugin_api/infolists.txt b/doc/it/autogen/plugin_api/infolists.txt
index 6c8b9d29b..c0016d5e9 100644
--- a/doc/it/autogen/plugin_api/infolists.txt
+++ b/doc/it/autogen/plugin_api/infolists.txt
@@ -54,6 +54,8 @@
| weechat | key | elenco di tasti associati | - | contesto ("default", "search", "cursor" o "mouse") (opzionale)
+| weechat | layout | list of layouts | - | -
+
| weechat | nicklist | nick nella lista nick per un buffer | puntatore al buffer | nick_xxx o group_xxx per ottenere solo xxx di nick/group (opzionale)
| weechat | option | elenco delle opzioni | - | nome opzione (può iniziare o terminare con "*" come carattere jolly) (opzionale)
diff --git a/doc/ja/autogen/plugin_api/hdata.txt b/doc/ja/autogen/plugin_api/hdata.txt
index d4ddf64aa..7bfa20d27 100644
--- a/doc/ja/autogen/plugin_api/hdata.txt
+++ b/doc/ja/autogen/plugin_api/hdata.txt
@@ -619,6 +619,41 @@
'last_gui_key_mouse' +
'last_gui_key_search'
+| weechat | layout | layout |
+ 'name' (string) +
+ 'layout_buffers' (pointer, hdata: "layout_buffer") +
+ 'last_layout_buffer' (pointer, hdata: "layout_buffer") +
+ 'layout_windows' (pointer, hdata: "layout_window") +
+ 'internal_id' (integer) +
+ 'internal_id_current_window' (integer) +
+ 'prev_layout' (pointer, hdata: "layout") +
+ 'next_layout' (pointer, hdata: "layout") |
+ |
+ 'gui_layout_current' +
+ 'gui_layouts' +
+ 'last_gui_layout'
+
+| weechat | layout_buffer | buffer layout |
+ 'plugin_name' (string) +
+ 'buffer_name' (string) +
+ 'number' (integer) +
+ 'prev_layout' (pointer, hdata: "layout_buffer") +
+ 'next_layout' (pointer, hdata: "layout_buffer") |
+ |
+ -
+
+| weechat | layout_window | window layout |
+ 'internal_id' (integer) +
+ 'parent_node' (pointer, hdata: "layout_window") +
+ 'split_pct' (integer) +
+ 'split_horiz' (integer) +
+ 'child1' (pointer, hdata: "layout_window") +
+ 'child2' (pointer, hdata: "layout_window") +
+ 'plugin_name' (string) +
+ 'buffer_name' (string) |
+ |
+ -
+
| weechat | line | 1 行の構造 |
'data' (pointer, hdata: "line_data") +
'prev_line' (pointer, hdata: "line") +
diff --git a/doc/ja/autogen/plugin_api/infolists.txt b/doc/ja/autogen/plugin_api/infolists.txt
index 2f079f237..06db5d061 100644
--- a/doc/ja/autogen/plugin_api/infolists.txt
+++ b/doc/ja/autogen/plugin_api/infolists.txt
@@ -54,6 +54,8 @@
| weechat | key | キー割り当てのリスト | - | コンテキスト ("default"、"search"、"cursor"、"mouse") (オプション)
+| weechat | layout | list of layouts | - | -
+
| weechat | nicklist | バッファのニックネームリスト内のニックネーム | バッファポインタ | ニックネーム/グループ xxx のみについて取得するには nick_xxx または group_xxx を使う (オプション)
| weechat | option | オプションリスト | - | オプション名 (ワイルドカードとして "*" で始めるか終われる) (オプション)