diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-03-05 12:03:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-05 12:03:09 +0100 |
commit | 630158c992d62ab1722bf77c26f1be8955b1bce9 (patch) | |
tree | bebaa7a51415a2fa127fc4bd3c6bc989ae0674f7 /doc/base | |
parent | 94103c0c025f04e75d5e163d9f0bdde27bb0c848 (diff) | |
parent | c9bda06dfddd4cdd28517ff02df5c556fc70da0f (diff) |
Merge pull request #7916 from RebelliousX/tab_container
TabContainer's signal changes (v3)
Diffstat (limited to 'doc/base')
-rw-r--r-- | doc/base/classes.xml | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 17f45c64a2..71594887fc 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -40633,9 +40633,16 @@ <return type="int"> </return> <description> - Return the current tab that is being showed. + Return the current tab index that is being shown. </description> </method> + <method name="get_previous_tab" qualifiers="const"> + <return type="int"> + </return> + <description> + Return the previous tab index that was being shown. + </description> + </method> <method name="get_current_tab_control" qualifiers="const"> <return type="Control"> </return> @@ -40661,6 +40668,7 @@ <argument index="0" name="idx" type="int"> </argument> <description> + Return the current tab control that is being shown. </description> </method> <method name="get_tab_count" qualifiers="const"> @@ -40742,7 +40750,14 @@ <argument index="0" name="tab" type="int"> </argument> <description> - Emitted when the current tab changes. + Emitted only when the current tab changes. + </description> + </signal> + <signal name="tab_selected"> + <argument index="0" name="tab" type="int"> + </argument> + <description> + Emitted when a tab is being selected, even if it is the same tab. </description> </signal> </signals> |