mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Merge pull request #76374 from OverloadedOrama/more-tab-container-signals
Add missing `TabBar` signals to `TabContainer`
This commit is contained in:
@@ -184,6 +184,12 @@
|
||||
</member>
|
||||
</members>
|
||||
<signals>
|
||||
<signal name="active_tab_rearranged">
|
||||
<param index="0" name="idx_to" type="int" />
|
||||
<description>
|
||||
Emitted when the active tab is rearranged via mouse drag. See [member drag_to_rearrange_enabled].
|
||||
</description>
|
||||
</signal>
|
||||
<signal name="pre_popup_pressed">
|
||||
<description>
|
||||
Emitted when the [TabContainer]'s [Popup] button is clicked. See [method set_popup] for details.
|
||||
@@ -201,6 +207,18 @@
|
||||
Emitted when switching to another tab.
|
||||
</description>
|
||||
</signal>
|
||||
<signal name="tab_clicked">
|
||||
<param index="0" name="tab" type="int" />
|
||||
<description>
|
||||
Emitted when a tab is clicked, even if it is the current tab.
|
||||
</description>
|
||||
</signal>
|
||||
<signal name="tab_hovered">
|
||||
<param index="0" name="tab" type="int" />
|
||||
<description>
|
||||
Emitted when a tab is hovered by the mouse.
|
||||
</description>
|
||||
</signal>
|
||||
<signal name="tab_selected">
|
||||
<param index="0" name="tab" type="int" />
|
||||
<description>
|
||||
|
||||
Reference in New Issue
Block a user