2017-09-12 22:42:36 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2018-01-25 08:50:56 +01:00
|
|
|
<class name="Tabs" inherits="Control" category="Core" version="3.0-stable">
|
2017-09-12 22:42:36 +02:00
|
|
|
<brief_description>
|
|
|
|
Tabs Control.
|
|
|
|
</brief_description>
|
|
|
|
<description>
|
|
|
|
Simple tabs control, similar to [TabContainer] but is only in charge of drawing tabs, not interact with children.
|
|
|
|
</description>
|
|
|
|
<tutorials>
|
|
|
|
</tutorials>
|
|
|
|
<demos>
|
|
|
|
</demos>
|
|
|
|
<methods>
|
|
|
|
<method name="add_tab">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="title" type="String" default="""">
|
|
|
|
</argument>
|
|
|
|
<argument index="1" name="icon" type="Texture" default="null">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="ensure_tab_visible">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="idx" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
2017-11-24 09:16:27 +01:00
|
|
|
<method name="get_offset_buttons_visible" qualifiers="const">
|
|
|
|
<return type="bool">
|
|
|
|
</return>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
2017-09-12 22:42:36 +02:00
|
|
|
<method name="get_tab_count" qualifiers="const">
|
|
|
|
<return type="int">
|
|
|
|
</return>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="get_tab_disabled" qualifiers="const">
|
|
|
|
<return type="bool">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="tab_idx" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="get_tab_icon" qualifiers="const">
|
|
|
|
<return type="Texture">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="tab_idx" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
2017-11-24 09:16:27 +01:00
|
|
|
<method name="get_tab_offset" qualifiers="const">
|
|
|
|
<return type="int">
|
|
|
|
</return>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
2017-09-12 22:42:36 +02:00
|
|
|
<method name="get_tab_rect" qualifiers="const">
|
|
|
|
<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>
|
|
|
|
<argument index="0" name="tab_idx" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="move_tab">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
|
|
|
<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">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="tab_idx" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="set_tab_disabled">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="tab_idx" type="int">
|
|
|
|
</argument>
|
|
|
|
<argument index="1" name="disabled" type="bool">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="set_tab_icon">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="tab_idx" type="int">
|
|
|
|
</argument>
|
|
|
|
<argument index="1" name="icon" type="Texture">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="set_tab_title">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
|
|
|
<argument index="0" name="tab_idx" type="int">
|
|
|
|
</argument>
|
|
|
|
<argument index="1" name="title" type="String">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
</methods>
|
|
|
|
<members>
|
2017-09-13 08:49:40 +02:00
|
|
|
<member name="current_tab" type="int" setter="set_current_tab" getter="get_current_tab">
|
2017-09-12 22:42:36 +02:00
|
|
|
</member>
|
2017-11-24 09:16:27 +01:00
|
|
|
<member name="scrolling_enabled" type="bool" setter="set_scrolling_enabled" getter="get_scrolling_enabled">
|
|
|
|
</member>
|
2018-01-11 23:38:35 +01:00
|
|
|
<member name="tab_align" type="int" setter="set_tab_align" getter="get_tab_align" enum="Tabs.TabAlign">
|
|
|
|
</member>
|
2017-09-13 08:49:40 +02:00
|
|
|
<member name="tab_close_display_policy" type="int" setter="set_tab_close_display_policy" getter="get_tab_close_display_policy" enum="Tabs.CloseButtonDisplayPolicy">
|
2017-09-12 22:42:36 +02:00
|
|
|
</member>
|
|
|
|
</members>
|
|
|
|
<signals>
|
|
|
|
<signal name="reposition_active_tab_request">
|
|
|
|
<argument index="0" name="idx_to" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</signal>
|
|
|
|
<signal name="right_button_pressed">
|
|
|
|
<argument index="0" name="tab" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</signal>
|
|
|
|
<signal name="tab_changed">
|
|
|
|
<argument index="0" name="tab" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</signal>
|
|
|
|
<signal name="tab_clicked">
|
|
|
|
<argument index="0" name="tab" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</signal>
|
|
|
|
<signal name="tab_close">
|
|
|
|
<argument index="0" name="tab" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</signal>
|
|
|
|
<signal name="tab_hover">
|
|
|
|
<argument index="0" name="tab" type="int">
|
|
|
|
</argument>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</signal>
|
|
|
|
</signals>
|
|
|
|
<constants>
|
2017-11-24 23:16:30 +01:00
|
|
|
<constant name="ALIGN_LEFT" value="0" enum="TabAlign">
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
2017-11-24 23:16:30 +01:00
|
|
|
<constant name="ALIGN_CENTER" value="1" enum="TabAlign">
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
2017-11-24 23:16:30 +01:00
|
|
|
<constant name="ALIGN_RIGHT" value="2" enum="TabAlign">
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
2017-11-24 23:16:30 +01:00
|
|
|
<constant name="ALIGN_MAX" value="3" enum="TabAlign">
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
2017-11-24 23:16:30 +01:00
|
|
|
<constant name="CLOSE_BUTTON_SHOW_NEVER" value="0" enum="CloseButtonDisplayPolicy">
|
2017-10-22 12:56:11 +02:00
|
|
|
</constant>
|
2017-11-24 23:16:30 +01:00
|
|
|
<constant name="CLOSE_BUTTON_SHOW_ACTIVE_ONLY" value="1" enum="CloseButtonDisplayPolicy">
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
2017-11-24 23:16:30 +01:00
|
|
|
<constant name="CLOSE_BUTTON_SHOW_ALWAYS" value="2" enum="CloseButtonDisplayPolicy">
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
2017-11-24 23:16:30 +01:00
|
|
|
<constant name="CLOSE_BUTTON_MAX" value="3" enum="CloseButtonDisplayPolicy">
|
2017-09-12 22:42:36 +02:00
|
|
|
</constant>
|
|
|
|
</constants>
|
|
|
|
<theme_items>
|
|
|
|
<theme_item name="button" type="StyleBox">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="button_pressed" type="StyleBox">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="close" type="Texture">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="decrement" type="Texture">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="decrement_highlight" type="Texture">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="font" type="Font">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="font_color_bg" type="Color">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="font_color_disabled" type="Color">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="font_color_fg" type="Color">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="hseparation" type="int">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="increment" type="Texture">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="increment_highlight" type="Texture">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="label_valign_bg" type="int">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="label_valign_fg" type="int">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="panel" type="StyleBox">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="tab_bg" type="StyleBox">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="tab_fg" type="StyleBox">
|
|
|
|
</theme_item>
|
|
|
|
<theme_item name="top_margin" type="int">
|
|
|
|
</theme_item>
|
|
|
|
</theme_items>
|
|
|
|
</class>
|