summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorJakub Grzesik <kubecz3k@gmail.com>2017-08-09 09:41:26 +0200
committerJakub Grzesik <kubecz3k@gmail.com>2017-08-09 09:41:26 +0200
commit7e82ff1d70ba5fdd7cbfbfb7dad5c706f386cafb (patch)
treefae3d648a5ddde59aa0569d687df8fbe24be8219 /scene
parent1536cc438128fe4036fa7da5ec305513a781d3c8 (diff)
tab_clicked signal for Tabs
Diffstat (limited to 'scene')
-rw-r--r--scene/gui/tabs.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/tabs.cpp b/scene/gui/tabs.cpp
index a2deef4eea..78c0960dae 100644
--- a/scene/gui/tabs.cpp
+++ b/scene/gui/tabs.cpp
@@ -226,6 +226,7 @@ void Tabs::_gui_input(const Ref<InputEvent> &p_event) {
if (found != -1) {
set_current_tab(found);
+ emit_signal("tab_clicked", found);
}
}
}
@@ -809,6 +810,7 @@ void Tabs::_bind_methods() {
ADD_SIGNAL(MethodInfo("tab_close", PropertyInfo(Variant::INT, "tab")));
ADD_SIGNAL(MethodInfo("tab_hover", PropertyInfo(Variant::INT, "tab")));
ADD_SIGNAL(MethodInfo("reposition_active_tab_request", PropertyInfo(Variant::INT, "idx_to")));
+ ADD_SIGNAL(MethodInfo("tab_clicked", PropertyInfo(Variant::INT, "tab")));
ADD_PROPERTY(PropertyInfo(Variant::INT, "current_tab", PROPERTY_HINT_RANGE, "-1,4096,1", PROPERTY_USAGE_EDITOR), "set_current_tab", "get_current_tab");
ADD_PROPERTYNZ(PropertyInfo(Variant::INT, "tab_close_display_policy", PROPERTY_HINT_ENUM, "Show Never,Show Active Only,Show Always"), "set_tab_close_display_policy", "get_tab_close_display_policy");