diff options
author | Jakub Grzesik <kubecz3k@gmail.com> | 2017-07-12 16:48:43 +0200 |
---|---|---|
committer | Jakub Grzesik <kubecz3k@gmail.com> | 2017-07-18 17:57:02 +0200 |
commit | b5de36b29d1c7a9535e733caf4f2bab73e18f8d2 (patch) | |
tree | 8b65c5e33fd39a143f4a328aa0b5f29ad54fa4f5 /doc | |
parent | 0ee47fefbe4f746d6e00e863e4523398365b4e47 (diff) |
Tabs enhancements: get_tab_rect(), move_tab_from_to()
exposed: get_tab_rect(tab_idx)
new and exposed: move_tab_from_to(idx_from, idx_to)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/base/classes.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 7a81eddd92..49cb4edb89 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -44112,6 +44112,15 @@ <description> </description> </method> + <method name="get_tab_rect"> + <return type="Rect2"> + </return> + <argument index="0" name="tab_idx" type="int"> + </argument> + <description> + Returns tab [Rect2] with local position and size. + </description> + </method> <method name="get_tab_title" qualifiers="const"> <return type="String"> </return> @@ -44120,6 +44129,15 @@ <description> </description> </method> + <method name="move_tab"> + <argument index="0" name="from" type="int"> + </argument> + <argument index="1" name="to" type="int"> + </argument> + <description> + Rearrange tab. + </description> + </method> <method name="remove_tab"> <argument index="0" name="tab_idx" type="int"> </argument> |